@quantiya/codevibe-codex-plugin 2.0.4 → 2.0.6

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 (1092) hide show
  1. package/node_modules/@quantiya/codevibe-core/dist/index.js +198 -196
  2. package/node_modules/@quantiya/codevibe-core/dist/local-model/manager.d.ts +18 -6
  3. package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +38 -1
  4. package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-types.d.ts +9 -4
  5. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/mobile-user-prompt-return.test.d.ts +1 -0
  6. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/runOrchestrationShell-session-retire.test.d.ts +1 -0
  7. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +10 -0
  8. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +1155 -824
  9. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/InputBar.d.ts +67 -0
  10. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/emit-shell-event.d.ts +1 -1
  11. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +119 -2
  12. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/ink-runtime.d.ts +11 -1
  13. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mode-selection.d.ts +5 -9
  14. package/node_modules/@quantiya/codevibe-core/dist/types/session.d.ts +2 -1
  15. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/LICENSE +21 -0
  16. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/README.md +278 -0
  17. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.d.ts +7 -0
  18. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js +57 -0
  19. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js.map +1 -0
  20. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/consts.d.ts +17 -0
  21. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/consts.js +28 -0
  22. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/consts.js.map +1 -0
  23. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/diff.js +26 -0
  24. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/diff.js.map +1 -0
  25. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/reduce.js +37 -0
  26. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/reduce.js.map +1 -0
  27. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/tokenize.d.ts +16 -0
  28. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js +194 -0
  29. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js.map +1 -0
  30. package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/package.json +55 -0
  31. package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/index.d.ts +122 -0
  32. package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/index.js +3 -0
  33. package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/package.json +49 -0
  34. package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/readme.md +103 -0
  35. package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/index.d.ts +118 -0
  36. package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/index.js +194 -0
  37. package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/package.json +52 -0
  38. package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/readme.md +153 -0
  39. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ansi-tokenizer.d.ts +38 -0
  40. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ansi-tokenizer.js +316 -0
  41. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ansi-tokenizer.js.map +1 -0
  42. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AccessibilityContext.d.ts +3 -0
  43. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AccessibilityContext.js +5 -0
  44. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AccessibilityContext.js.map +1 -0
  45. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AnimationContext.d.ts +9 -0
  46. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AnimationContext.js +13 -0
  47. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AnimationContext.js.map +1 -0
  48. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/App.d.ts +24 -0
  49. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/App.js +554 -0
  50. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/App.js.map +1 -0
  51. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AppContext.d.ts +80 -0
  52. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AppContext.js +25 -0
  53. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AppContext.js.map +1 -0
  54. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/BackgroundContext.d.ts +4 -0
  55. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/BackgroundContext.js +3 -0
  56. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/BackgroundContext.js.map +1 -0
  57. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Box.d.ts +130 -0
  58. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Box.js +34 -0
  59. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Box.js.map +1 -0
  60. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/CursorContext.d.ts +11 -0
  61. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/CursorContext.js +8 -0
  62. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/CursorContext.js.map +1 -0
  63. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorBoundary.d.ts +18 -0
  64. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorBoundary.js +23 -0
  65. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorBoundary.js.map +1 -0
  66. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorOverview.js +90 -0
  67. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorOverview.js.map +1 -0
  68. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Newline.d.ts +13 -0
  69. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Newline.js +8 -0
  70. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Newline.js.map +1 -0
  71. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Spacer.d.ts +7 -0
  72. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Spacer.js +11 -0
  73. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Spacer.js.map +1 -0
  74. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Static.d.ts +24 -0
  75. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Static.js +28 -0
  76. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Static.js.map +1 -0
  77. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StderrContext.d.ts +15 -0
  78. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StderrContext.js +13 -0
  79. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StderrContext.js.map +1 -0
  80. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdinContext.d.ts +28 -0
  81. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdinContext.js +20 -0
  82. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdinContext.js.map +1 -0
  83. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdoutContext.d.ts +15 -0
  84. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdoutContext.js +13 -0
  85. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdoutContext.js.map +1 -0
  86. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Text.d.ts +55 -0
  87. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Text.js +50 -0
  88. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Text.js.map +1 -0
  89. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Transform.d.ts +16 -0
  90. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Transform.js +15 -0
  91. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Transform.js.map +1 -0
  92. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/cursor-helpers.d.ts +38 -0
  93. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/cursor-helpers.js +56 -0
  94. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/cursor-helpers.js.map +1 -0
  95. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools-window-polyfill.d.ts +1 -0
  96. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools-window-polyfill.js +68 -0
  97. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools-window-polyfill.js.map +1 -0
  98. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools.js +36 -0
  99. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools.js.map +1 -0
  100. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/dom.d.ts +62 -0
  101. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/dom.js +143 -0
  102. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/dom.js.map +1 -0
  103. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-animation.d.ts +49 -0
  104. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-animation.js +87 -0
  105. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-animation.js.map +1 -0
  106. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-app.d.ts +5 -0
  107. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-app.js +8 -0
  108. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-app.js.map +1 -0
  109. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-box-metrics.d.ts +59 -0
  110. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-box-metrics.js +81 -0
  111. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-box-metrics.js.map +1 -0
  112. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-cursor.d.ts +12 -0
  113. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-cursor.js +29 -0
  114. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-cursor.js.map +1 -0
  115. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus-manager.d.ts +43 -0
  116. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus-manager.js +18 -0
  117. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus-manager.js.map +1 -0
  118. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus.d.ts +30 -0
  119. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus.js +43 -0
  120. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus.js.map +1 -0
  121. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-input.d.ts +132 -0
  122. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-input.js +126 -0
  123. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-input.js.map +1 -0
  124. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-is-screen-reader-enabled.d.ts +6 -0
  125. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-is-screen-reader-enabled.js +12 -0
  126. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-is-screen-reader-enabled.js.map +1 -0
  127. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-paste.d.ts +35 -0
  128. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-paste.js +62 -0
  129. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-paste.js.map +1 -0
  130. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stderr.d.ts +5 -0
  131. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stderr.js +8 -0
  132. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stderr.js.map +1 -0
  133. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdin.d.ts +7 -0
  134. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdin.js +9 -0
  135. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdin.js.map +1 -0
  136. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdout.d.ts +5 -0
  137. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdout.js +8 -0
  138. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdout.js.map +1 -0
  139. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-window-size.d.ts +18 -0
  140. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-window-size.js +22 -0
  141. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-window-size.js.map +1 -0
  142. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/index.d.ts +42 -0
  143. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/index.js +24 -0
  144. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/index.js.map +1 -0
  145. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ink.d.ts +146 -0
  146. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ink.js +950 -0
  147. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ink.js.map +1 -0
  148. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/input-parser.d.ts +10 -0
  149. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/input-parser.js +194 -0
  150. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/input-parser.js.map +1 -0
  151. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/kitty-keyboard.d.ts +23 -0
  152. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/kitty-keyboard.js +32 -0
  153. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/kitty-keyboard.js.map +1 -0
  154. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/log-update.d.ts +20 -0
  155. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/log-update.js +254 -0
  156. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/log-update.js.map +1 -0
  157. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-element.d.ts +20 -0
  158. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-element.js +13 -0
  159. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-element.js.map +1 -0
  160. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-text.js +21 -0
  161. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-text.js.map +1 -0
  162. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/output.d.ts +35 -0
  163. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/output.js +208 -0
  164. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/output.js.map +1 -0
  165. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/parse-keypress.d.ts +20 -0
  166. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/parse-keypress.js +495 -0
  167. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/parse-keypress.js.map +1 -0
  168. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/reconciler.d.ts +4 -0
  169. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/reconciler.js +306 -0
  170. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/reconciler.js.map +1 -0
  171. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-background.d.ts +4 -0
  172. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-background.js +25 -0
  173. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-background.js.map +1 -0
  174. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-border.js +84 -0
  175. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-border.js.map +1 -0
  176. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-node-to-output.d.ts +14 -0
  177. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-node-to-output.js +147 -0
  178. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-node-to-output.js.map +1 -0
  179. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-to-string.d.ts +38 -0
  180. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-to-string.js +116 -0
  181. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-to-string.js.map +1 -0
  182. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render.d.ts +176 -0
  183. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render.js +62 -0
  184. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render.js.map +1 -0
  185. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/renderer.d.ts +8 -0
  186. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/renderer.js +55 -0
  187. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/renderer.js.map +1 -0
  188. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/sanitize-ansi.d.ts +2 -0
  189. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/sanitize-ansi.js +27 -0
  190. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/sanitize-ansi.js.map +1 -0
  191. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/squash-text-nodes.js +36 -0
  192. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/squash-text-nodes.js.map +1 -0
  193. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/styles.d.ts +302 -0
  194. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/styles.js +303 -0
  195. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/styles.js.map +1 -0
  196. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/utils.d.ts +9 -0
  197. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/utils.js +19 -0
  198. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/utils.js.map +1 -0
  199. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/wrap-text.js +38 -0
  200. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/wrap-text.js.map +1 -0
  201. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/write-synchronized.d.ts +4 -0
  202. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/write-synchronized.js +9 -0
  203. package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/write-synchronized.js.map +1 -0
  204. package/node_modules/@quantiya/codevibe-core/node_modules/ink/license +10 -0
  205. package/node_modules/@quantiya/codevibe-core/node_modules/ink/package.json +137 -0
  206. package/node_modules/@quantiya/codevibe-core/node_modules/ink/readme.md +3192 -0
  207. package/node_modules/@quantiya/codevibe-core/node_modules/is-in-ci/index.js +7 -0
  208. package/node_modules/@quantiya/codevibe-core/node_modules/is-in-ci/package.json +49 -0
  209. package/node_modules/@quantiya/codevibe-core/node_modules/is-in-ci/readme.md +44 -0
  210. package/node_modules/@quantiya/codevibe-core/node_modules/react/LICENSE +21 -0
  211. package/node_modules/@quantiya/codevibe-core/node_modules/react/README.md +37 -0
  212. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
  213. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
  214. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
  215. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
  216. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
  217. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
  218. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
  219. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
  220. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
  221. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
  222. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
  223. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
  224. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
  225. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.development.js +1284 -0
  226. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.production.js +542 -0
  227. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.react-server.development.js +848 -0
  228. package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.react-server.production.js +423 -0
  229. package/node_modules/@quantiya/codevibe-core/node_modules/react/compiler-runtime.js +14 -0
  230. package/node_modules/@quantiya/codevibe-core/node_modules/react/index.js +7 -0
  231. package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-dev-runtime.js +7 -0
  232. package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
  233. package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-runtime.js +7 -0
  234. package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-runtime.react-server.js +7 -0
  235. package/node_modules/@quantiya/codevibe-core/node_modules/react/package.json +51 -0
  236. package/node_modules/@quantiya/codevibe-core/node_modules/react/react.react-server.js +7 -0
  237. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/README.md +152 -0
  238. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/backend.js +1 -0
  239. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/backend.js +18302 -0
  240. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/backend.js.map +1 -0
  241. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/importFile.worker.worker.js +2 -0
  242. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/importFile.worker.worker.js.map +1 -0
  243. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseHookNames.chunk.js +2 -0
  244. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseHookNames.chunk.js.map +1 -0
  245. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseSourceAndMetadata.worker.worker.js +2 -0
  246. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseSourceAndMetadata.worker.worker.js.map +1 -0
  247. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/standalone.js +3 -0
  248. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/standalone.js.LICENSE.txt +41 -0
  249. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/standalone.js.map +1 -0
  250. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/LICENSE +21 -0
  251. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/README.md +495 -0
  252. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/browser.js +8 -0
  253. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/index.js +10 -0
  254. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/buffer-util.js +129 -0
  255. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/constants.js +10 -0
  256. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/event-target.js +184 -0
  257. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/extension.js +223 -0
  258. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/limiter.js +55 -0
  259. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/permessage-deflate.js +518 -0
  260. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/receiver.js +664 -0
  261. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/sender.js +409 -0
  262. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/stream.js +180 -0
  263. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/validation.js +104 -0
  264. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/websocket-server.js +461 -0
  265. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/websocket.js +1215 -0
  266. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/package.json +56 -0
  267. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/package.json +38 -0
  268. package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/standalone.js +1 -0
  269. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/LICENSE +21 -0
  270. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/README.md +353 -0
  271. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-constants.development.js +19 -0
  272. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-constants.production.js +18 -0
  273. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-reflection.development.js +394 -0
  274. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-reflection.production.js +382 -0
  275. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler.development.js +19736 -0
  276. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler.production.js +11594 -0
  277. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler.profiling.js +13427 -0
  278. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/constants.js +7 -0
  279. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/index.js +7 -0
  280. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/package.json +34 -0
  281. package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/reflection.js +7 -0
  282. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/LICENSE +21 -0
  283. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +414 -0
  284. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_mock.production.js +406 -0
  285. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +150 -0
  286. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.js +140 -0
  287. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.development.js +364 -0
  288. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.native.development.js +350 -0
  289. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.native.production.js +330 -0
  290. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.production.js +340 -0
  291. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/index.js +7 -0
  292. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/index.native.js +7 -0
  293. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/package.json +27 -0
  294. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/unstable_mock.js +7 -0
  295. package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/unstable_post_task.js +7 -0
  296. package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/index.d.ts +19 -0
  297. package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/index.js +317 -0
  298. package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/package.json +59 -0
  299. package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/readme.md +55 -0
  300. package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/tokenize-ansi.js +752 -0
  301. package/node_modules/@quantiya/codevibe-core/node_modules/string-width/index.js +203 -0
  302. package/node_modules/@quantiya/codevibe-core/node_modules/string-width/package.json +65 -0
  303. package/node_modules/@quantiya/codevibe-core/node_modules/string-width/readme.md +66 -0
  304. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/index.d.ts +227 -0
  305. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/package.json +75 -0
  306. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/readme.md +1085 -0
  307. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/absolute.d.ts +52 -0
  308. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/all-extend.d.ts +121 -0
  309. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/all-union-fields.d.ts +91 -0
  310. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/and-all.d.ts +76 -0
  311. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/and.d.ts +82 -0
  312. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-element.d.ts +46 -0
  313. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-indices.d.ts +25 -0
  314. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-length.d.ts +36 -0
  315. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-reverse.d.ts +85 -0
  316. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-slice.d.ts +132 -0
  317. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-splice.d.ts +104 -0
  318. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-tail.d.ts +70 -0
  319. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-values.d.ts +24 -0
  320. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/arrayable.d.ts +31 -0
  321. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/async-return-type.d.ts +28 -0
  322. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/asyncify.d.ts +25 -0
  323. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/basic.d.ts +38 -0
  324. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/camel-case.d.ts +125 -0
  325. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +106 -0
  326. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/camel-cased-properties.d.ts +49 -0
  327. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/characters.d.ts +67 -0
  328. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-except.d.ts +47 -0
  329. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-keys.d.ts +63 -0
  330. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-pick-deep.d.ts +122 -0
  331. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-pick.d.ts +48 -0
  332. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-simplify-deep.d.ts +73 -0
  333. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-simplify.d.ts +50 -0
  334. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/delimiter-case.d.ts +79 -0
  335. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +115 -0
  336. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/delimiter-cased-properties.d.ts +52 -0
  337. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/distributed-omit.d.ts +96 -0
  338. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/distributed-pick.d.ts +92 -0
  339. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/empty-object.d.ts +51 -0
  340. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/entries.d.ts +64 -0
  341. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/entry.d.ts +67 -0
  342. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exact.d.ts +73 -0
  343. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/except.d.ts +112 -0
  344. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclude-exactly.d.ts +57 -0
  345. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclude-rest-element.d.ts +40 -0
  346. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclude-strict.d.ts +51 -0
  347. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclusify-union.d.ts +147 -0
  348. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extends-strict.d.ts +151 -0
  349. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extract-exactly.d.ts +56 -0
  350. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extract-rest-element.d.ts +30 -0
  351. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extract-strict.d.ts +51 -0
  352. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/find-global-type.d.ts +68 -0
  353. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/fixed-length-array.d.ts +97 -0
  354. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/get.d.ts +227 -0
  355. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/global-this.d.ts +24 -0
  356. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/globals/index.d.ts +3 -0
  357. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/globals/observable-like.d.ts +78 -0
  358. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/greater-than-or-equal.d.ts +63 -0
  359. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/greater-than.d.ts +92 -0
  360. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-optional-keys.d.ts +23 -0
  361. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-readonly-keys.d.ts +23 -0
  362. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-required-keys.d.ts +61 -0
  363. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-writable-keys.d.ts +23 -0
  364. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-any.d.ts +28 -0
  365. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-empty-object.d.ts +30 -0
  366. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-never.d.ts +28 -0
  367. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-null.d.ts +28 -0
  368. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-unknown.d.ts +28 -0
  369. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if.d.ts +102 -0
  370. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/includes.d.ts +24 -0
  371. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/int-closed-range.d.ts +45 -0
  372. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/int-range.d.ts +67 -0
  373. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/array.d.ts +144 -0
  374. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/characters.d.ts +65 -0
  375. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/enforce-optional.d.ts +49 -0
  376. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/index.d.ts +11 -0
  377. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/keys.d.ts +100 -0
  378. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/numeric.d.ts +143 -0
  379. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/object.d.ts +301 -0
  380. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/string.d.ts +127 -0
  381. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/tuple.d.ts +79 -0
  382. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/type.d.ts +171 -0
  383. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/invariant-of.d.ts +85 -0
  384. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-any.d.ts +31 -0
  385. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-equal.d.ts +41 -0
  386. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-float.d.ts +43 -0
  387. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-integer.d.ts +60 -0
  388. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-literal.d.ts +317 -0
  389. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-lowercase.d.ts +38 -0
  390. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-never.d.ts +56 -0
  391. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-null.d.ts +22 -0
  392. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-nullable.d.ts +30 -0
  393. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-optional-key-of.d.ts +51 -0
  394. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-optional.d.ts +28 -0
  395. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-readonly-key-of.d.ts +55 -0
  396. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-required-key-of.d.ts +51 -0
  397. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-tuple.d.ts +92 -0
  398. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-undefined.d.ts +22 -0
  399. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-union.d.ts +40 -0
  400. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-unknown.d.ts +43 -0
  401. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-uppercase.d.ts +38 -0
  402. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-writable-key-of.d.ts +51 -0
  403. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/iterable-element.d.ts +66 -0
  404. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/join.d.ts +79 -0
  405. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/json-value.d.ts +33 -0
  406. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/jsonifiable.d.ts +37 -0
  407. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/jsonify.d.ts +127 -0
  408. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/kebab-case.d.ts +47 -0
  409. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +72 -0
  410. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/kebab-cased-properties.d.ts +46 -0
  411. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/key-as-string.d.ts +27 -0
  412. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/keys-of-union.d.ts +44 -0
  413. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/last-array-element.d.ts +89 -0
  414. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/less-than-or-equal.d.ts +60 -0
  415. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/less-than.d.ts +60 -0
  416. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/literal-to-primitive-deep.d.ts +71 -0
  417. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/literal-to-primitive.d.ts +38 -0
  418. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/literal-union.d.ts +39 -0
  419. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/merge-deep.d.ts +495 -0
  420. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/merge-exclusive.d.ts +45 -0
  421. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/merge.d.ts +87 -0
  422. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/multidimensional-array.d.ts +38 -0
  423. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +38 -0
  424. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-empty-object.d.ts +38 -0
  425. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-empty-string.d.ts +32 -0
  426. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-empty-tuple.d.ts +24 -0
  427. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-nullable-deep.d.ts +102 -0
  428. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/numeric.d.ts +226 -0
  429. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/object-merge.d.ts +199 -0
  430. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/omit-deep.d.ts +153 -0
  431. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/omit-index-signature.d.ts +98 -0
  432. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/opaque.d.ts +3 -0
  433. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/optional-keys-of.d.ts +46 -0
  434. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/optional.d.ts +31 -0
  435. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/or-all.d.ts +73 -0
  436. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/or.d.ts +82 -0
  437. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/override-properties.d.ts +43 -0
  438. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/package-json.d.ts +710 -0
  439. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/partial-deep.d.ts +157 -0
  440. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +81 -0
  441. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pascal-case.d.ts +52 -0
  442. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +79 -0
  443. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pascal-cased-properties.d.ts +46 -0
  444. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/paths.d.ts +241 -0
  445. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pick-deep.d.ts +139 -0
  446. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pick-index-signature.d.ts +52 -0
  447. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/primitive.d.ts +15 -0
  448. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/promisable.d.ts +27 -0
  449. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/readonly-deep.d.ts +118 -0
  450. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/readonly-keys-of.d.ts +38 -0
  451. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/readonly-tuple.d.ts +34 -0
  452. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/remove-prefix.d.ts +114 -0
  453. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/remove-suffix.d.ts +114 -0
  454. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/replace.d.ts +87 -0
  455. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-all-or-none.d.ts +54 -0
  456. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-at-least-one.d.ts +48 -0
  457. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-exactly-one.d.ts +48 -0
  458. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-one-or-none.d.ts +49 -0
  459. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/required-deep.d.ts +78 -0
  460. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/required-keys-of.d.ts +38 -0
  461. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/schema.d.ts +127 -0
  462. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/screaming-snake-case.d.ts +31 -0
  463. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-field-type.d.ts +67 -0
  464. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-non-nullable-deep.d.ts +89 -0
  465. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-non-nullable.d.ts +34 -0
  466. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-optional.d.ts +42 -0
  467. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-parameter-type.d.ts +125 -0
  468. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-readonly.d.ts +40 -0
  469. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-required-deep.d.ts +65 -0
  470. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-required.d.ts +75 -0
  471. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-return-type.d.ts +31 -0
  472. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/shared-union-fields-deep.d.ts +180 -0
  473. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/shared-union-fields.d.ts +79 -0
  474. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/simplify-deep.d.ts +117 -0
  475. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/simplify.d.ts +61 -0
  476. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/single-key-object.d.ts +28 -0
  477. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/snake-case.d.ts +48 -0
  478. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +72 -0
  479. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/snake-cased-properties.d.ts +46 -0
  480. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/some-extend.d.ts +115 -0
  481. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/split-on-rest-element.d.ts +108 -0
  482. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/split.d.ts +90 -0
  483. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/spread.d.ts +78 -0
  484. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-length.d.ts +38 -0
  485. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-repeat.d.ts +76 -0
  486. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-slice.d.ts +39 -0
  487. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-to-array.d.ts +97 -0
  488. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-to-number.d.ts +67 -0
  489. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/stringified.d.ts +25 -0
  490. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/structured-cloneable.d.ts +89 -0
  491. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/subtract.d.ts +87 -0
  492. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/sum.d.ts +82 -0
  493. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tagged-union.d.ts +53 -0
  494. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tagged.d.ts +261 -0
  495. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/trim.d.ts +29 -0
  496. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tsconfig-json.d.ts +1356 -0
  497. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tuple-of.d.ts +114 -0
  498. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tuple-to-object.d.ts +47 -0
  499. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tuple-to-union.d.ts +54 -0
  500. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/typed-array.d.ts +19 -0
  501. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/undefined-on-partial-deep.d.ts +83 -0
  502. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-length.d.ts +27 -0
  503. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-member.d.ts +65 -0
  504. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-to-intersection.d.ts +35 -0
  505. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-to-tuple.d.ts +49 -0
  506. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-array.d.ts +27 -0
  507. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-map.d.ts +26 -0
  508. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-record.d.ts +33 -0
  509. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-set.d.ts +26 -0
  510. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unwrap-partial.d.ts +33 -0
  511. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unwrap-required.d.ts +37 -0
  512. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/value-of.d.ts +24 -0
  513. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/words.d.ts +148 -0
  514. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/writable-deep.d.ts +84 -0
  515. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/writable-keys-of.d.ts +34 -0
  516. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/writable.d.ts +68 -0
  517. package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/xor.d.ts +83 -0
  518. package/node_modules/@quantiya/codevibe-core/node_modules/widest-line/package.json +60 -0
  519. package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/index.d.ts +41 -0
  520. package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/index.js +468 -0
  521. package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/package.json +69 -0
  522. package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/readme.md +77 -0
  523. package/node_modules/@quantiya/codevibe-core/node_modules/ws/LICENSE +20 -0
  524. package/node_modules/@quantiya/codevibe-core/node_modules/ws/README.md +548 -0
  525. package/node_modules/@quantiya/codevibe-core/node_modules/ws/browser.js +8 -0
  526. package/node_modules/@quantiya/codevibe-core/node_modules/ws/index.js +22 -0
  527. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/buffer-util.js +131 -0
  528. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/constants.js +19 -0
  529. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/event-target.js +292 -0
  530. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/extension.js +203 -0
  531. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/limiter.js +55 -0
  532. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/permessage-deflate.js +528 -0
  533. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/receiver.js +760 -0
  534. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/sender.js +607 -0
  535. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/stream.js +161 -0
  536. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/subprotocol.js +62 -0
  537. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/validation.js +152 -0
  538. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/websocket-server.js +562 -0
  539. package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/websocket.js +1407 -0
  540. package/node_modules/@quantiya/codevibe-core/node_modules/ws/package.json +70 -0
  541. package/node_modules/@quantiya/codevibe-core/node_modules/ws/wrapper.mjs +21 -0
  542. package/node_modules/@quantiya/codevibe-core/package.json +6 -5
  543. package/node_modules/shell-quote/.github/FUNDING.yml +12 -0
  544. package/node_modules/shell-quote/.nycrc +14 -0
  545. package/node_modules/shell-quote/LICENSE +24 -0
  546. package/node_modules/shell-quote/README.md +168 -0
  547. package/node_modules/shell-quote/eslint.config.mjs +29 -0
  548. package/node_modules/shell-quote/index.d.ts +28 -0
  549. package/node_modules/shell-quote/index.js +4 -0
  550. package/node_modules/shell-quote/package.json +76 -0
  551. package/node_modules/shell-quote/parse.d.ts +46 -0
  552. package/node_modules/shell-quote/parse.js +261 -0
  553. package/node_modules/shell-quote/quote.d.ts +15 -0
  554. package/node_modules/shell-quote/quote.js +65 -0
  555. package/node_modules/shell-quote/security.md +11 -0
  556. package/node_modules/shell-quote/test/comment.js +16 -0
  557. package/node_modules/shell-quote/test/env.js +52 -0
  558. package/node_modules/shell-quote/test/env_fn.js +21 -0
  559. package/node_modules/shell-quote/test/op.js +102 -0
  560. package/node_modules/shell-quote/test/parse.js +67 -0
  561. package/node_modules/shell-quote/test/quote.js +128 -0
  562. package/node_modules/shell-quote/test/set.js +31 -0
  563. package/node_modules/shell-quote/tsconfig.json +10 -0
  564. package/node_modules/tagged-tag/index.d.ts +3 -0
  565. package/node_modules/tagged-tag/package.json +36 -0
  566. package/node_modules/tagged-tag/readme.md +5 -0
  567. package/node_modules/terminal-size/index.d.ts +17 -0
  568. package/node_modules/terminal-size/index.js +139 -0
  569. package/node_modules/terminal-size/package.json +49 -0
  570. package/node_modules/terminal-size/readme.md +32 -0
  571. package/package.json +14 -4
  572. package/node_modules/@alcalzone/ansi-tokenize/README.md +0 -248
  573. package/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.d.ts +0 -11
  574. package/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js +0 -41
  575. package/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js.map +0 -1
  576. package/node_modules/@alcalzone/ansi-tokenize/build/diff.js +0 -17
  577. package/node_modules/@alcalzone/ansi-tokenize/build/diff.js.map +0 -1
  578. package/node_modules/@alcalzone/ansi-tokenize/build/reduce.js +0 -27
  579. package/node_modules/@alcalzone/ansi-tokenize/build/reduce.js.map +0 -1
  580. package/node_modules/@alcalzone/ansi-tokenize/build/tokenize.d.ts +0 -12
  581. package/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js +0 -70
  582. package/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js.map +0 -1
  583. package/node_modules/@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point/index.js +0 -40
  584. package/node_modules/@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point/package.json +0 -45
  585. package/node_modules/@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point/readme.md +0 -43
  586. package/node_modules/@alcalzone/ansi-tokenize/package.json +0 -63
  587. package/node_modules/cli-boxes/index.d.ts +0 -127
  588. package/node_modules/cli-boxes/index.js +0 -6
  589. package/node_modules/cli-boxes/package.json +0 -42
  590. package/node_modules/cli-boxes/readme.md +0 -115
  591. package/node_modules/cli-truncate/index.d.ts +0 -116
  592. package/node_modules/cli-truncate/index.js +0 -99
  593. package/node_modules/cli-truncate/node_modules/ansi-styles/index.d.ts +0 -236
  594. package/node_modules/cli-truncate/node_modules/ansi-styles/package.json +0 -54
  595. package/node_modules/cli-truncate/node_modules/ansi-styles/readme.md +0 -173
  596. package/node_modules/cli-truncate/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
  597. package/node_modules/cli-truncate/node_modules/emoji-regex/README.md +0 -107
  598. package/node_modules/cli-truncate/node_modules/emoji-regex/index.d.ts +0 -3
  599. package/node_modules/cli-truncate/node_modules/emoji-regex/index.js +0 -4
  600. package/node_modules/cli-truncate/node_modules/emoji-regex/index.mjs +0 -4
  601. package/node_modules/cli-truncate/node_modules/emoji-regex/package.json +0 -45
  602. package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
  603. package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/index.js +0 -40
  604. package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/package.json +0 -45
  605. package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/readme.md +0 -43
  606. package/node_modules/cli-truncate/node_modules/slice-ansi/index.js +0 -105
  607. package/node_modules/cli-truncate/node_modules/slice-ansi/package.json +0 -53
  608. package/node_modules/cli-truncate/node_modules/slice-ansi/readme.md +0 -66
  609. package/node_modules/cli-truncate/node_modules/string-width/index.js +0 -82
  610. package/node_modules/cli-truncate/node_modules/string-width/package.json +0 -64
  611. package/node_modules/cli-truncate/node_modules/string-width/readme.md +0 -66
  612. package/node_modules/cli-truncate/package.json +0 -51
  613. package/node_modules/cli-truncate/readme.md +0 -150
  614. package/node_modules/ink/build/apply-styles.js +0 -175
  615. package/node_modules/ink/build/build-layout.js +0 -77
  616. package/node_modules/ink/build/calculate-wrapped-text.js +0 -53
  617. package/node_modules/ink/build/components/App.d.ts +0 -59
  618. package/node_modules/ink/build/components/App.js +0 -286
  619. package/node_modules/ink/build/components/App.js.map +0 -1
  620. package/node_modules/ink/build/components/AppContext.d.ts +0 -11
  621. package/node_modules/ink/build/components/AppContext.js +0 -11
  622. package/node_modules/ink/build/components/AppContext.js.map +0 -1
  623. package/node_modules/ink/build/components/Box.d.ts +0 -62
  624. package/node_modules/ink/build/components/Box.js +0 -20
  625. package/node_modules/ink/build/components/Box.js.map +0 -1
  626. package/node_modules/ink/build/components/Color.js +0 -62
  627. package/node_modules/ink/build/components/ErrorOverview.js +0 -79
  628. package/node_modules/ink/build/components/ErrorOverview.js.map +0 -1
  629. package/node_modules/ink/build/components/Newline.d.ts +0 -13
  630. package/node_modules/ink/build/components/Newline.js +0 -8
  631. package/node_modules/ink/build/components/Newline.js.map +0 -1
  632. package/node_modules/ink/build/components/Spacer.d.ts +0 -6
  633. package/node_modules/ink/build/components/Spacer.js +0 -10
  634. package/node_modules/ink/build/components/Spacer.js.map +0 -1
  635. package/node_modules/ink/build/components/Static.d.ts +0 -31
  636. package/node_modules/ink/build/components/Static.js +0 -33
  637. package/node_modules/ink/build/components/Static.js.map +0 -1
  638. package/node_modules/ink/build/components/StderrContext.d.ts +0 -17
  639. package/node_modules/ink/build/components/StderrContext.js +0 -13
  640. package/node_modules/ink/build/components/StderrContext.js.map +0 -1
  641. package/node_modules/ink/build/components/StdinContext.d.ts +0 -23
  642. package/node_modules/ink/build/components/StdinContext.js +0 -19
  643. package/node_modules/ink/build/components/StdinContext.js.map +0 -1
  644. package/node_modules/ink/build/components/StdoutContext.d.ts +0 -17
  645. package/node_modules/ink/build/components/StdoutContext.js +0 -13
  646. package/node_modules/ink/build/components/StdoutContext.js.map +0 -1
  647. package/node_modules/ink/build/components/Text.d.ts +0 -49
  648. package/node_modules/ink/build/components/Text.js +0 -40
  649. package/node_modules/ink/build/components/Text.js.map +0 -1
  650. package/node_modules/ink/build/components/Transform.d.ts +0 -15
  651. package/node_modules/ink/build/components/Transform.js +0 -14
  652. package/node_modules/ink/build/components/Transform.js.map +0 -1
  653. package/node_modules/ink/build/devtools-window-polyfill.js +0 -64
  654. package/node_modules/ink/build/devtools-window-polyfill.js.map +0 -1
  655. package/node_modules/ink/build/devtools.js +0 -9
  656. package/node_modules/ink/build/devtools.js.map +0 -1
  657. package/node_modules/ink/build/dom.d.ts +0 -42
  658. package/node_modules/ink/build/dom.js +0 -117
  659. package/node_modules/ink/build/dom.js.map +0 -1
  660. package/node_modules/ink/build/experimental/apply-style.js +0 -140
  661. package/node_modules/ink/build/experimental/dom.js +0 -123
  662. package/node_modules/ink/build/experimental/output.js +0 -91
  663. package/node_modules/ink/build/experimental/reconciler.js +0 -141
  664. package/node_modules/ink/build/experimental/renderer.js +0 -81
  665. package/node_modules/ink/build/hooks/use-app.d.ts +0 -5
  666. package/node_modules/ink/build/hooks/use-app.js +0 -8
  667. package/node_modules/ink/build/hooks/use-app.js.map +0 -1
  668. package/node_modules/ink/build/hooks/use-focus-manager.d.ts +0 -34
  669. package/node_modules/ink/build/hooks/use-focus-manager.js +0 -18
  670. package/node_modules/ink/build/hooks/use-focus-manager.js.map +0 -1
  671. package/node_modules/ink/build/hooks/use-focus.d.ts +0 -34
  672. package/node_modules/ink/build/hooks/use-focus.js +0 -47
  673. package/node_modules/ink/build/hooks/use-focus.js.map +0 -1
  674. package/node_modules/ink/build/hooks/use-input.d.ts +0 -97
  675. package/node_modules/ink/build/hooks/use-input.js +0 -96
  676. package/node_modules/ink/build/hooks/use-input.js.map +0 -1
  677. package/node_modules/ink/build/hooks/use-stderr.d.ts +0 -5
  678. package/node_modules/ink/build/hooks/use-stderr.js +0 -8
  679. package/node_modules/ink/build/hooks/use-stderr.js.map +0 -1
  680. package/node_modules/ink/build/hooks/use-stdin.d.ts +0 -5
  681. package/node_modules/ink/build/hooks/use-stdin.js +0 -8
  682. package/node_modules/ink/build/hooks/use-stdin.js.map +0 -1
  683. package/node_modules/ink/build/hooks/use-stdout.d.ts +0 -5
  684. package/node_modules/ink/build/hooks/use-stdout.js +0 -8
  685. package/node_modules/ink/build/hooks/use-stdout.js.map +0 -1
  686. package/node_modules/ink/build/hooks/useInput.js +0 -38
  687. package/node_modules/ink/build/index.d.ts +0 -27
  688. package/node_modules/ink/build/index.js +0 -16
  689. package/node_modules/ink/build/index.js.map +0 -1
  690. package/node_modules/ink/build/ink.d.ts +0 -37
  691. package/node_modules/ink/build/ink.js +0 -235
  692. package/node_modules/ink/build/ink.js.map +0 -1
  693. package/node_modules/ink/build/instance.js +0 -205
  694. package/node_modules/ink/build/log-update.d.ts +0 -12
  695. package/node_modules/ink/build/log-update.js +0 -37
  696. package/node_modules/ink/build/log-update.js.map +0 -1
  697. package/node_modules/ink/build/measure-element.d.ts +0 -16
  698. package/node_modules/ink/build/measure-element.js +0 -9
  699. package/node_modules/ink/build/measure-element.js.map +0 -1
  700. package/node_modules/ink/build/measure-text.js +0 -20
  701. package/node_modules/ink/build/measure-text.js.map +0 -1
  702. package/node_modules/ink/build/output.d.ts +0 -35
  703. package/node_modules/ink/build/output.js +0 -148
  704. package/node_modules/ink/build/output.js.map +0 -1
  705. package/node_modules/ink/build/parse-keypress.d.ts +0 -14
  706. package/node_modules/ink/build/parse-keypress.js +0 -225
  707. package/node_modules/ink/build/parse-keypress.js.map +0 -1
  708. package/node_modules/ink/build/reconciler.d.ts +0 -4
  709. package/node_modules/ink/build/reconciler.js +0 -219
  710. package/node_modules/ink/build/reconciler.js.map +0 -1
  711. package/node_modules/ink/build/render-border.js +0 -73
  712. package/node_modules/ink/build/render-border.js.map +0 -1
  713. package/node_modules/ink/build/render-node-to-output.d.ts +0 -10
  714. package/node_modules/ink/build/render-node-to-output.js +0 -99
  715. package/node_modules/ink/build/render-node-to-output.js.map +0 -1
  716. package/node_modules/ink/build/render.d.ts +0 -63
  717. package/node_modules/ink/build/render.js +0 -48
  718. package/node_modules/ink/build/render.js.map +0 -1
  719. package/node_modules/ink/build/renderer.d.ts +0 -8
  720. package/node_modules/ink/build/renderer.js +0 -36
  721. package/node_modules/ink/build/renderer.js.map +0 -1
  722. package/node_modules/ink/build/squash-text-nodes.js +0 -35
  723. package/node_modules/ink/build/squash-text-nodes.js.map +0 -1
  724. package/node_modules/ink/build/styles.d.ts +0 -243
  725. package/node_modules/ink/build/styles.js +0 -232
  726. package/node_modules/ink/build/styles.js.map +0 -1
  727. package/node_modules/ink/build/wrap-text.js +0 -31
  728. package/node_modules/ink/build/wrap-text.js.map +0 -1
  729. package/node_modules/ink/license +0 -9
  730. package/node_modules/ink/node_modules/ansi-styles/index.d.ts +0 -236
  731. package/node_modules/ink/node_modules/ansi-styles/index.js +0 -223
  732. package/node_modules/ink/node_modules/ansi-styles/package.json +0 -54
  733. package/node_modules/ink/node_modules/ansi-styles/readme.md +0 -173
  734. package/node_modules/ink/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
  735. package/node_modules/ink/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
  736. package/node_modules/ink/node_modules/emoji-regex/README.md +0 -107
  737. package/node_modules/ink/node_modules/emoji-regex/index.d.ts +0 -3
  738. package/node_modules/ink/node_modules/emoji-regex/index.js +0 -4
  739. package/node_modules/ink/node_modules/emoji-regex/index.mjs +0 -4
  740. package/node_modules/ink/node_modules/emoji-regex/package.json +0 -45
  741. package/node_modules/ink/node_modules/string-width/index.d.ts +0 -39
  742. package/node_modules/ink/node_modules/string-width/index.js +0 -82
  743. package/node_modules/ink/node_modules/string-width/package.json +0 -64
  744. package/node_modules/ink/node_modules/string-width/readme.md +0 -66
  745. package/node_modules/ink/node_modules/type-fest/index.d.ts +0 -178
  746. package/node_modules/ink/node_modules/type-fest/package.json +0 -91
  747. package/node_modules/ink/node_modules/type-fest/readme.md +0 -1060
  748. package/node_modules/ink/node_modules/type-fest/source/all-union-fields.d.ts +0 -88
  749. package/node_modules/ink/node_modules/type-fest/source/and.d.ts +0 -25
  750. package/node_modules/ink/node_modules/type-fest/source/array-indices.d.ts +0 -23
  751. package/node_modules/ink/node_modules/type-fest/source/array-slice.d.ts +0 -109
  752. package/node_modules/ink/node_modules/type-fest/source/array-splice.d.ts +0 -99
  753. package/node_modules/ink/node_modules/type-fest/source/array-tail.d.ts +0 -76
  754. package/node_modules/ink/node_modules/type-fest/source/array-values.d.ts +0 -22
  755. package/node_modules/ink/node_modules/type-fest/source/arrayable.d.ts +0 -29
  756. package/node_modules/ink/node_modules/type-fest/source/async-return-type.d.ts +0 -23
  757. package/node_modules/ink/node_modules/type-fest/source/asyncify.d.ts +0 -32
  758. package/node_modules/ink/node_modules/type-fest/source/basic.d.ts +0 -68
  759. package/node_modules/ink/node_modules/type-fest/source/camel-case.d.ts +0 -89
  760. package/node_modules/ink/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +0 -97
  761. package/node_modules/ink/node_modules/type-fest/source/camel-cased-properties.d.ts +0 -43
  762. package/node_modules/ink/node_modules/type-fest/source/conditional-except.d.ts +0 -45
  763. package/node_modules/ink/node_modules/type-fest/source/conditional-keys.d.ts +0 -47
  764. package/node_modules/ink/node_modules/type-fest/source/conditional-pick-deep.d.ts +0 -118
  765. package/node_modules/ink/node_modules/type-fest/source/conditional-pick.d.ts +0 -44
  766. package/node_modules/ink/node_modules/type-fest/source/conditional-simplify.d.ts +0 -32
  767. package/node_modules/ink/node_modules/type-fest/source/delimiter-case.d.ts +0 -78
  768. package/node_modules/ink/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +0 -106
  769. package/node_modules/ink/node_modules/type-fest/source/delimiter-cased-properties.d.ts +0 -46
  770. package/node_modules/ink/node_modules/type-fest/source/distributed-omit.d.ts +0 -89
  771. package/node_modules/ink/node_modules/type-fest/source/distributed-pick.d.ts +0 -85
  772. package/node_modules/ink/node_modules/type-fest/source/empty-object.d.ts +0 -46
  773. package/node_modules/ink/node_modules/type-fest/source/enforce-optional.d.ts +0 -47
  774. package/node_modules/ink/node_modules/type-fest/source/entries.d.ts +0 -62
  775. package/node_modules/ink/node_modules/type-fest/source/entry.d.ts +0 -65
  776. package/node_modules/ink/node_modules/type-fest/source/exact.d.ts +0 -68
  777. package/node_modules/ink/node_modules/type-fest/source/except.d.ts +0 -108
  778. package/node_modules/ink/node_modules/type-fest/source/find-global-type.d.ts +0 -64
  779. package/node_modules/ink/node_modules/type-fest/source/fixed-length-array.d.ts +0 -43
  780. package/node_modules/ink/node_modules/type-fest/source/get.d.ts +0 -219
  781. package/node_modules/ink/node_modules/type-fest/source/global-this.d.ts +0 -21
  782. package/node_modules/ink/node_modules/type-fest/source/greater-than-or-equal.d.ts +0 -22
  783. package/node_modules/ink/node_modules/type-fest/source/greater-than.d.ts +0 -56
  784. package/node_modules/ink/node_modules/type-fest/source/has-optional-keys.d.ts +0 -21
  785. package/node_modules/ink/node_modules/type-fest/source/has-readonly-keys.d.ts +0 -21
  786. package/node_modules/ink/node_modules/type-fest/source/has-required-keys.d.ts +0 -59
  787. package/node_modules/ink/node_modules/type-fest/source/has-writable-keys.d.ts +0 -21
  788. package/node_modules/ink/node_modules/type-fest/source/if-any.d.ts +0 -24
  789. package/node_modules/ink/node_modules/type-fest/source/if-empty-object.d.ts +0 -26
  790. package/node_modules/ink/node_modules/type-fest/source/if-never.d.ts +0 -24
  791. package/node_modules/ink/node_modules/type-fest/source/if-null.d.ts +0 -24
  792. package/node_modules/ink/node_modules/type-fest/source/if-unknown.d.ts +0 -24
  793. package/node_modules/ink/node_modules/type-fest/source/includes.d.ts +0 -22
  794. package/node_modules/ink/node_modules/type-fest/source/int-closed-range.d.ts +0 -35
  795. package/node_modules/ink/node_modules/type-fest/source/int-range.d.ts +0 -55
  796. package/node_modules/ink/node_modules/type-fest/source/internal/array.d.ts +0 -126
  797. package/node_modules/ink/node_modules/type-fest/source/internal/characters.d.ts +0 -67
  798. package/node_modules/ink/node_modules/type-fest/source/internal/index.d.ts +0 -8
  799. package/node_modules/ink/node_modules/type-fest/source/internal/keys.d.ts +0 -97
  800. package/node_modules/ink/node_modules/type-fest/source/internal/numeric.d.ts +0 -118
  801. package/node_modules/ink/node_modules/type-fest/source/internal/object.d.ts +0 -236
  802. package/node_modules/ink/node_modules/type-fest/source/internal/string.d.ts +0 -210
  803. package/node_modules/ink/node_modules/type-fest/source/internal/tuple.d.ts +0 -90
  804. package/node_modules/ink/node_modules/type-fest/source/internal/type.d.ts +0 -139
  805. package/node_modules/ink/node_modules/type-fest/source/invariant-of.d.ts +0 -76
  806. package/node_modules/ink/node_modules/type-fest/source/is-any.d.ts +0 -33
  807. package/node_modules/ink/node_modules/type-fest/source/is-equal.d.ts +0 -31
  808. package/node_modules/ink/node_modules/type-fest/source/is-float.d.ts +0 -41
  809. package/node_modules/ink/node_modules/type-fest/source/is-integer.d.ts +0 -58
  810. package/node_modules/ink/node_modules/type-fest/source/is-literal.d.ts +0 -296
  811. package/node_modules/ink/node_modules/type-fest/source/is-never.d.ts +0 -42
  812. package/node_modules/ink/node_modules/type-fest/source/is-null.d.ts +0 -20
  813. package/node_modules/ink/node_modules/type-fest/source/is-tuple.d.ts +0 -89
  814. package/node_modules/ink/node_modules/type-fest/source/is-unknown.d.ts +0 -52
  815. package/node_modules/ink/node_modules/type-fest/source/iterable-element.d.ts +0 -64
  816. package/node_modules/ink/node_modules/type-fest/source/join.d.ts +0 -68
  817. package/node_modules/ink/node_modules/type-fest/source/jsonifiable.d.ts +0 -37
  818. package/node_modules/ink/node_modules/type-fest/source/jsonify.d.ts +0 -122
  819. package/node_modules/ink/node_modules/type-fest/source/kebab-case.d.ts +0 -44
  820. package/node_modules/ink/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +0 -63
  821. package/node_modules/ink/node_modules/type-fest/source/kebab-cased-properties.d.ts +0 -40
  822. package/node_modules/ink/node_modules/type-fest/source/keys-of-union.d.ts +0 -42
  823. package/node_modules/ink/node_modules/type-fest/source/last-array-element.d.ts +0 -38
  824. package/node_modules/ink/node_modules/type-fest/source/less-than-or-equal.d.ts +0 -22
  825. package/node_modules/ink/node_modules/type-fest/source/less-than.d.ts +0 -26
  826. package/node_modules/ink/node_modules/type-fest/source/literal-to-primitive-deep.d.ts +0 -36
  827. package/node_modules/ink/node_modules/type-fest/source/literal-to-primitive.d.ts +0 -36
  828. package/node_modules/ink/node_modules/type-fest/source/literal-union.d.ts +0 -37
  829. package/node_modules/ink/node_modules/type-fest/source/merge-deep.d.ts +0 -486
  830. package/node_modules/ink/node_modules/type-fest/source/merge-exclusive.d.ts +0 -41
  831. package/node_modules/ink/node_modules/type-fest/source/merge.d.ts +0 -48
  832. package/node_modules/ink/node_modules/type-fest/source/multidimensional-array.d.ts +0 -44
  833. package/node_modules/ink/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +0 -48
  834. package/node_modules/ink/node_modules/type-fest/source/non-empty-object.d.ts +0 -35
  835. package/node_modules/ink/node_modules/type-fest/source/non-empty-string.d.ts +0 -28
  836. package/node_modules/ink/node_modules/type-fest/source/non-empty-tuple.d.ts +0 -21
  837. package/node_modules/ink/node_modules/type-fest/source/numeric.d.ts +0 -222
  838. package/node_modules/ink/node_modules/type-fest/source/observable-like.d.ts +0 -63
  839. package/node_modules/ink/node_modules/type-fest/source/omit-deep.d.ts +0 -167
  840. package/node_modules/ink/node_modules/type-fest/source/omit-index-signature.d.ts +0 -95
  841. package/node_modules/ink/node_modules/type-fest/source/opaque.d.ts +0 -1
  842. package/node_modules/ink/node_modules/type-fest/source/optional-keys-of.d.ts +0 -39
  843. package/node_modules/ink/node_modules/type-fest/source/or.d.ts +0 -25
  844. package/node_modules/ink/node_modules/type-fest/source/override-properties.d.ts +0 -36
  845. package/node_modules/ink/node_modules/type-fest/source/package-json.d.ts +0 -676
  846. package/node_modules/ink/node_modules/type-fest/source/partial-deep.d.ts +0 -151
  847. package/node_modules/ink/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +0 -78
  848. package/node_modules/ink/node_modules/type-fest/source/pascal-case.d.ts +0 -42
  849. package/node_modules/ink/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +0 -62
  850. package/node_modules/ink/node_modules/type-fest/source/pascal-cased-properties.d.ts +0 -36
  851. package/node_modules/ink/node_modules/type-fest/source/paths.d.ts +0 -262
  852. package/node_modules/ink/node_modules/type-fest/source/pick-deep.d.ts +0 -149
  853. package/node_modules/ink/node_modules/type-fest/source/pick-index-signature.d.ts +0 -50
  854. package/node_modules/ink/node_modules/type-fest/source/primitive.d.ts +0 -13
  855. package/node_modules/ink/node_modules/type-fest/source/promisable.d.ts +0 -25
  856. package/node_modules/ink/node_modules/type-fest/source/readonly-deep.d.ts +0 -81
  857. package/node_modules/ink/node_modules/type-fest/source/readonly-keys-of.d.ts +0 -30
  858. package/node_modules/ink/node_modules/type-fest/source/readonly-tuple.d.ts +0 -41
  859. package/node_modules/ink/node_modules/type-fest/source/replace.d.ts +0 -85
  860. package/node_modules/ink/node_modules/type-fest/source/require-all-or-none.d.ts +0 -51
  861. package/node_modules/ink/node_modules/type-fest/source/require-at-least-one.d.ts +0 -47
  862. package/node_modules/ink/node_modules/type-fest/source/require-exactly-one.d.ts +0 -45
  863. package/node_modules/ink/node_modules/type-fest/source/require-one-or-none.d.ts +0 -46
  864. package/node_modules/ink/node_modules/type-fest/source/required-deep.d.ts +0 -78
  865. package/node_modules/ink/node_modules/type-fest/source/required-keys-of.d.ts +0 -30
  866. package/node_modules/ink/node_modules/type-fest/source/schema.d.ts +0 -114
  867. package/node_modules/ink/node_modules/type-fest/source/screaming-snake-case.d.ts +0 -28
  868. package/node_modules/ink/node_modules/type-fest/source/set-field-type.d.ts +0 -65
  869. package/node_modules/ink/node_modules/type-fest/source/set-non-nullable-deep.d.ts +0 -83
  870. package/node_modules/ink/node_modules/type-fest/source/set-non-nullable.d.ts +0 -39
  871. package/node_modules/ink/node_modules/type-fest/source/set-optional.d.ts +0 -38
  872. package/node_modules/ink/node_modules/type-fest/source/set-parameter-type.d.ts +0 -117
  873. package/node_modules/ink/node_modules/type-fest/source/set-readonly.d.ts +0 -39
  874. package/node_modules/ink/node_modules/type-fest/source/set-required-deep.d.ts +0 -68
  875. package/node_modules/ink/node_modules/type-fest/source/set-required.d.ts +0 -70
  876. package/node_modules/ink/node_modules/type-fest/source/set-return-type.d.ts +0 -29
  877. package/node_modules/ink/node_modules/type-fest/source/shared-union-fields-deep.d.ts +0 -178
  878. package/node_modules/ink/node_modules/type-fest/source/shared-union-fields.d.ts +0 -76
  879. package/node_modules/ink/node_modules/type-fest/source/simplify-deep.d.ts +0 -115
  880. package/node_modules/ink/node_modules/type-fest/source/simplify.d.ts +0 -58
  881. package/node_modules/ink/node_modules/type-fest/source/single-key-object.d.ts +0 -29
  882. package/node_modules/ink/node_modules/type-fest/source/snake-case.d.ts +0 -45
  883. package/node_modules/ink/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +0 -63
  884. package/node_modules/ink/node_modules/type-fest/source/snake-cased-properties.d.ts +0 -40
  885. package/node_modules/ink/node_modules/type-fest/source/split.d.ts +0 -88
  886. package/node_modules/ink/node_modules/type-fest/source/spread.d.ts +0 -84
  887. package/node_modules/ink/node_modules/type-fest/source/string-key-of.d.ts +0 -25
  888. package/node_modules/ink/node_modules/type-fest/source/string-repeat.d.ts +0 -47
  889. package/node_modules/ink/node_modules/type-fest/source/string-slice.d.ts +0 -37
  890. package/node_modules/ink/node_modules/type-fest/source/stringified.d.ts +0 -23
  891. package/node_modules/ink/node_modules/type-fest/source/structured-cloneable.d.ts +0 -92
  892. package/node_modules/ink/node_modules/type-fest/source/subtract.d.ts +0 -83
  893. package/node_modules/ink/node_modules/type-fest/source/sum.d.ts +0 -78
  894. package/node_modules/ink/node_modules/type-fest/source/tagged-union.d.ts +0 -51
  895. package/node_modules/ink/node_modules/type-fest/source/tagged.d.ts +0 -256
  896. package/node_modules/ink/node_modules/type-fest/source/trim.d.ts +0 -27
  897. package/node_modules/ink/node_modules/type-fest/source/tsconfig-json.d.ts +0 -1294
  898. package/node_modules/ink/node_modules/type-fest/source/tuple-to-object.d.ts +0 -42
  899. package/node_modules/ink/node_modules/type-fest/source/tuple-to-union.d.ts +0 -51
  900. package/node_modules/ink/node_modules/type-fest/source/typed-array.d.ts +0 -17
  901. package/node_modules/ink/node_modules/type-fest/source/undefined-on-partial-deep.d.ts +0 -80
  902. package/node_modules/ink/node_modules/type-fest/source/union-to-intersection.d.ts +0 -61
  903. package/node_modules/ink/node_modules/type-fest/source/union-to-tuple.d.ts +0 -56
  904. package/node_modules/ink/node_modules/type-fest/source/unknown-array.d.ts +0 -25
  905. package/node_modules/ink/node_modules/type-fest/source/unknown-map.d.ts +0 -24
  906. package/node_modules/ink/node_modules/type-fest/source/unknown-record.d.ts +0 -31
  907. package/node_modules/ink/node_modules/type-fest/source/unknown-set.d.ts +0 -24
  908. package/node_modules/ink/node_modules/type-fest/source/value-of.d.ts +0 -42
  909. package/node_modules/ink/node_modules/type-fest/source/words.d.ts +0 -118
  910. package/node_modules/ink/node_modules/type-fest/source/writable-deep.d.ts +0 -83
  911. package/node_modules/ink/node_modules/type-fest/source/writable-keys-of.d.ts +0 -33
  912. package/node_modules/ink/node_modules/type-fest/source/writable.d.ts +0 -68
  913. package/node_modules/ink/node_modules/wrap-ansi/index.d.ts +0 -41
  914. package/node_modules/ink/node_modules/wrap-ansi/index.js +0 -222
  915. package/node_modules/ink/node_modules/wrap-ansi/package.json +0 -69
  916. package/node_modules/ink/node_modules/wrap-ansi/readme.md +0 -75
  917. package/node_modules/ink/package.json +0 -196
  918. package/node_modules/ink/readme.md +0 -2162
  919. package/node_modules/is-in-ci/index.js +0 -11
  920. package/node_modules/is-in-ci/license +0 -9
  921. package/node_modules/is-in-ci/package.json +0 -49
  922. package/node_modules/is-in-ci/readme.md +0 -44
  923. package/node_modules/js-tokens/CHANGELOG.md +0 -151
  924. package/node_modules/js-tokens/LICENSE +0 -21
  925. package/node_modules/js-tokens/README.md +0 -240
  926. package/node_modules/js-tokens/index.js +0 -23
  927. package/node_modules/js-tokens/package.json +0 -30
  928. package/node_modules/loose-envify/LICENSE +0 -21
  929. package/node_modules/loose-envify/README.md +0 -45
  930. package/node_modules/loose-envify/cli.js +0 -16
  931. package/node_modules/loose-envify/custom.js +0 -4
  932. package/node_modules/loose-envify/index.js +0 -3
  933. package/node_modules/loose-envify/loose-envify.js +0 -36
  934. package/node_modules/loose-envify/package.json +0 -36
  935. package/node_modules/loose-envify/replace.js +0 -65
  936. package/node_modules/react/LICENSE +0 -21
  937. package/node_modules/react/README.md +0 -37
  938. package/node_modules/react/cjs/react-jsx-dev-runtime.development.js +0 -1315
  939. package/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +0 -10
  940. package/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +0 -10
  941. package/node_modules/react/cjs/react-jsx-runtime.development.js +0 -1333
  942. package/node_modules/react/cjs/react-jsx-runtime.production.min.js +0 -11
  943. package/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +0 -11
  944. package/node_modules/react/cjs/react.development.js +0 -2740
  945. package/node_modules/react/cjs/react.production.min.js +0 -26
  946. package/node_modules/react/cjs/react.shared-subset.development.js +0 -20
  947. package/node_modules/react/cjs/react.shared-subset.production.min.js +0 -10
  948. package/node_modules/react/index.js +0 -7
  949. package/node_modules/react/jsx-dev-runtime.js +0 -7
  950. package/node_modules/react/jsx-runtime.js +0 -7
  951. package/node_modules/react/package.json +0 -47
  952. package/node_modules/react/react.shared-subset.js +0 -7
  953. package/node_modules/react/umd/react.development.js +0 -3343
  954. package/node_modules/react/umd/react.production.min.js +0 -31
  955. package/node_modules/react/umd/react.profiling.min.js +0 -31
  956. package/node_modules/react-reconciler/LICENSE +0 -21
  957. package/node_modules/react-reconciler/README.md +0 -337
  958. package/node_modules/react-reconciler/cjs/react-reconciler-constants.development.js +0 -45
  959. package/node_modules/react-reconciler/cjs/react-reconciler-constants.production.min.js +0 -10
  960. package/node_modules/react-reconciler/cjs/react-reconciler-reflection.development.js +0 -660
  961. package/node_modules/react-reconciler/cjs/react-reconciler-reflection.production.min.js +0 -15
  962. package/node_modules/react-reconciler/cjs/react-reconciler.development.js +0 -21531
  963. package/node_modules/react-reconciler/cjs/react-reconciler.production.min.js +0 -234
  964. package/node_modules/react-reconciler/cjs/react-reconciler.profiling.min.js +0 -255
  965. package/node_modules/react-reconciler/constants.js +0 -7
  966. package/node_modules/react-reconciler/index.js +0 -7
  967. package/node_modules/react-reconciler/package.json +0 -40
  968. package/node_modules/react-reconciler/reflection.js +0 -7
  969. package/node_modules/scheduler/LICENSE +0 -21
  970. package/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +0 -700
  971. package/node_modules/scheduler/cjs/scheduler-unstable_mock.production.min.js +0 -20
  972. package/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +0 -207
  973. package/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.min.js +0 -14
  974. package/node_modules/scheduler/cjs/scheduler.development.js +0 -634
  975. package/node_modules/scheduler/cjs/scheduler.production.min.js +0 -19
  976. package/node_modules/scheduler/index.js +0 -7
  977. package/node_modules/scheduler/package.json +0 -36
  978. package/node_modules/scheduler/umd/scheduler-unstable_mock.development.js +0 -699
  979. package/node_modules/scheduler/umd/scheduler-unstable_mock.production.min.js +0 -19
  980. package/node_modules/scheduler/umd/scheduler.development.js +0 -152
  981. package/node_modules/scheduler/umd/scheduler.production.min.js +0 -146
  982. package/node_modules/scheduler/umd/scheduler.profiling.min.js +0 -146
  983. package/node_modules/scheduler/unstable_mock.js +0 -7
  984. package/node_modules/scheduler/unstable_post_task.js +0 -7
  985. package/node_modules/slice-ansi/index.d.ts +0 -19
  986. package/node_modules/slice-ansi/index.js +0 -169
  987. package/node_modules/slice-ansi/license +0 -10
  988. package/node_modules/slice-ansi/node_modules/ansi-styles/index.d.ts +0 -236
  989. package/node_modules/slice-ansi/node_modules/ansi-styles/index.js +0 -223
  990. package/node_modules/slice-ansi/node_modules/ansi-styles/license +0 -9
  991. package/node_modules/slice-ansi/node_modules/ansi-styles/package.json +0 -54
  992. package/node_modules/slice-ansi/node_modules/ansi-styles/readme.md +0 -173
  993. package/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
  994. package/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/license +0 -9
  995. package/node_modules/slice-ansi/package.json +0 -58
  996. package/node_modules/slice-ansi/readme.md +0 -54
  997. package/node_modules/widest-line/license +0 -9
  998. package/node_modules/widest-line/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
  999. package/node_modules/widest-line/node_modules/emoji-regex/README.md +0 -107
  1000. package/node_modules/widest-line/node_modules/emoji-regex/index.d.ts +0 -3
  1001. package/node_modules/widest-line/node_modules/emoji-regex/index.js +0 -4
  1002. package/node_modules/widest-line/node_modules/emoji-regex/index.mjs +0 -4
  1003. package/node_modules/widest-line/node_modules/emoji-regex/package.json +0 -45
  1004. package/node_modules/widest-line/node_modules/string-width/index.d.ts +0 -39
  1005. package/node_modules/widest-line/node_modules/string-width/index.js +0 -82
  1006. package/node_modules/widest-line/node_modules/string-width/license +0 -9
  1007. package/node_modules/widest-line/node_modules/string-width/package.json +0 -64
  1008. package/node_modules/widest-line/node_modules/string-width/readme.md +0 -66
  1009. package/node_modules/widest-line/package.json +0 -60
  1010. /package/node_modules/{ink/build/devtools-window-polyfill.d.ts → @quantiya/codevibe-core/dist/orchestration-shell/__tests__/companion-turn-mirror.test.d.ts} +0 -0
  1011. /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/diff.d.ts +0 -0
  1012. /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/index.d.ts +0 -0
  1013. /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/index.js +0 -0
  1014. /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/index.js.map +0 -0
  1015. /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/reduce.d.ts +0 -0
  1016. /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/styledChars.d.ts +0 -0
  1017. /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/styledChars.js +0 -0
  1018. /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/styledChars.js.map +0 -0
  1019. /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/undo.d.ts +0 -0
  1020. /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/undo.js +0 -0
  1021. /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/undo.js.map +0 -0
  1022. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/base.d.ts +0 -0
  1023. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/base.js +0 -0
  1024. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/index.d.ts +0 -0
  1025. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/index.js +0 -0
  1026. /package/node_modules/{@alcalzone/ansi-tokenize/node_modules/ansi-styles → @quantiya/codevibe-core/node_modules/ansi-escapes}/license +0 -0
  1027. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/package.json +0 -0
  1028. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/readme.md +0 -0
  1029. /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/index.d.ts +0 -0
  1030. /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/index.js +0 -0
  1031. /package/node_modules/{@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point → @quantiya/codevibe-core/node_modules/ansi-styles}/license +0 -0
  1032. /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/package.json +0 -0
  1033. /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/readme.md +0 -0
  1034. /package/node_modules/{cli-boxes → @quantiya/codevibe-core/node_modules/chalk}/license +0 -0
  1035. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/package.json +0 -0
  1036. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/readme.md +0 -0
  1037. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/index.d.ts +0 -0
  1038. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/index.js +0 -0
  1039. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/utilities.js +0 -0
  1040. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +0 -0
  1041. /package/node_modules/{cli-truncate/node_modules → @quantiya/codevibe-core/node_modules/chalk/source/vendor}/ansi-styles/index.js +0 -0
  1042. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/browser.d.ts +0 -0
  1043. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/browser.js +0 -0
  1044. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/index.d.ts +0 -0
  1045. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/index.js +0 -0
  1046. /package/node_modules/{cli-boxes → @quantiya/codevibe-core/node_modules/cli-boxes}/boxes.json +0 -0
  1047. /package/node_modules/{cli-truncate → @quantiya/codevibe-core/node_modules/cli-boxes}/license +0 -0
  1048. /package/node_modules/{cli-truncate/node_modules/ansi-styles → @quantiya/codevibe-core/node_modules/cli-truncate}/license +0 -0
  1049. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/colorize.d.ts +0 -0
  1050. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/colorize.js +0 -0
  1051. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/colorize.js.map +0 -0
  1052. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/ErrorOverview.d.ts +0 -0
  1053. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/FocusContext.d.ts +0 -0
  1054. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/FocusContext.js +0 -0
  1055. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/FocusContext.js.map +0 -0
  1056. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/devtools.d.ts +0 -0
  1057. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/get-max-width.d.ts +0 -0
  1058. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/get-max-width.js +0 -0
  1059. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/get-max-width.js.map +0 -0
  1060. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/instances.d.ts +0 -0
  1061. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/instances.js +0 -0
  1062. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/instances.js.map +0 -0
  1063. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/measure-text.d.ts +0 -0
  1064. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/render-border.d.ts +0 -0
  1065. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/squash-text-nodes.d.ts +0 -0
  1066. /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/wrap-text.d.ts +0 -0
  1067. /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/index.d.ts +0 -0
  1068. /package/node_modules/{slice-ansi → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/index.js +0 -0
  1069. /package/node_modules/{cli-truncate → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/license +0 -0
  1070. /package/node_modules/{slice-ansi → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/package.json +0 -0
  1071. /package/node_modules/{slice-ansi → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/readme.md +0 -0
  1072. /package/node_modules/{is-in-ci → @quantiya/codevibe-core/node_modules/is-in-ci}/cli.js +0 -0
  1073. /package/node_modules/{is-in-ci → @quantiya/codevibe-core/node_modules/is-in-ci}/index.d.ts +0 -0
  1074. /package/node_modules/{cli-truncate/node_modules/string-width → @quantiya/codevibe-core/node_modules/is-in-ci}/license +0 -0
  1075. /package/node_modules/{scheduler → @quantiya/codevibe-core/node_modules/scheduler}/README.md +0 -0
  1076. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/LICENSE.txt +0 -0
  1077. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/README.md +0 -0
  1078. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/index.js +0 -0
  1079. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/package.json +0 -0
  1080. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/signals.js +0 -0
  1081. /package/node_modules/{cli-truncate → @quantiya/codevibe-core}/node_modules/slice-ansi/license +0 -0
  1082. /package/node_modules/{cli-truncate → @quantiya/codevibe-core}/node_modules/string-width/index.d.ts +0 -0
  1083. /package/node_modules/{ink/node_modules/ansi-escapes → @quantiya/codevibe-core/node_modules/string-width}/license +0 -0
  1084. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/type-fest/license-cc0 +0 -0
  1085. /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/type-fest/license-mit +0 -0
  1086. /package/node_modules/{widest-line → @quantiya/codevibe-core/node_modules/widest-line}/index.d.ts +0 -0
  1087. /package/node_modules/{widest-line → @quantiya/codevibe-core/node_modules/widest-line}/index.js +0 -0
  1088. /package/node_modules/{ink/node_modules/ansi-styles → @quantiya/codevibe-core/node_modules/widest-line}/license +0 -0
  1089. /package/node_modules/{widest-line → @quantiya/codevibe-core/node_modules/widest-line}/readme.md +0 -0
  1090. /package/node_modules/{ink/node_modules/chalk → @quantiya/codevibe-core/node_modules/wrap-ansi}/license +0 -0
  1091. /package/node_modules/{ink/node_modules/string-width → tagged-tag}/license +0 -0
  1092. /package/node_modules/{ink/node_modules/wrap-ansi → terminal-size}/license +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ink.js","sourceRoot":"","sources":["../src/ink.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,10 @@
1
+ export type InputEvent = string | {
2
+ readonly paste: string;
3
+ };
4
+ export type InputParser = {
5
+ push: (chunk: string) => InputEvent[];
6
+ hasPendingEscape: () => boolean;
7
+ flushPendingEscape: () => string | undefined;
8
+ reset: () => void;
9
+ };
10
+ export declare const createInputParser: () => InputParser;
@@ -0,0 +1,194 @@
1
+ const escape = '\u001B';
2
+ const pasteStart = '\u001B[200~';
3
+ const pasteEnd = '\u001B[201~';
4
+ const isCsiParameterByte = (byte) => {
5
+ return byte >= 0x30 && byte <= 0x3f;
6
+ };
7
+ const isCsiIntermediateByte = (byte) => {
8
+ return byte >= 0x20 && byte <= 0x2f;
9
+ };
10
+ const isCsiFinalByte = (byte) => {
11
+ return byte >= 0x40 && byte <= 0x7e;
12
+ };
13
+ const parseCsiSequence = (input, startIndex, prefixLength) => {
14
+ const csiPayloadStart = startIndex + prefixLength + 1;
15
+ let index = csiPayloadStart;
16
+ for (; index < input.length; index++) {
17
+ const byte = input.codePointAt(index);
18
+ if (byte === undefined) {
19
+ return 'pending';
20
+ }
21
+ if (isCsiParameterByte(byte) || isCsiIntermediateByte(byte)) {
22
+ continue;
23
+ }
24
+ // Preserve legacy terminal function-key sequences like ESC[[A and ESC[[5~.
25
+ if (byte === 0x5b && index === csiPayloadStart) {
26
+ continue;
27
+ }
28
+ if (isCsiFinalByte(byte)) {
29
+ return {
30
+ sequence: input.slice(startIndex, index + 1),
31
+ nextIndex: index + 1,
32
+ };
33
+ }
34
+ return undefined;
35
+ }
36
+ return 'pending';
37
+ };
38
+ const parseSs3Sequence = (input, startIndex, prefixLength) => {
39
+ const nextIndex = startIndex + prefixLength + 2;
40
+ if (nextIndex > input.length) {
41
+ return 'pending';
42
+ }
43
+ const finalByte = input.codePointAt(nextIndex - 1);
44
+ if (finalByte === undefined || !isCsiFinalByte(finalByte)) {
45
+ return undefined;
46
+ }
47
+ return {
48
+ sequence: input.slice(startIndex, nextIndex),
49
+ nextIndex,
50
+ };
51
+ };
52
+ const parseControlSequence = (input, startIndex, prefixLength) => {
53
+ const sequenceType = input[startIndex + prefixLength];
54
+ if (sequenceType === undefined) {
55
+ return 'pending';
56
+ }
57
+ if (sequenceType === '[') {
58
+ return parseCsiSequence(input, startIndex, prefixLength);
59
+ }
60
+ if (sequenceType === 'O') {
61
+ return parseSs3Sequence(input, startIndex, prefixLength);
62
+ }
63
+ return undefined;
64
+ };
65
+ const parseEscapedCodePoint = (input, escapeIndex) => {
66
+ const nextCodePoint = input.codePointAt(escapeIndex + 1);
67
+ const nextCodePointLength = nextCodePoint !== undefined && nextCodePoint > 0xff_ff ? 2 : 1;
68
+ const nextIndex = escapeIndex + 1 + nextCodePointLength;
69
+ return {
70
+ sequence: input.slice(escapeIndex, nextIndex),
71
+ nextIndex,
72
+ };
73
+ };
74
+ const parseEscapeSequence = (input, escapeIndex) => {
75
+ if (escapeIndex === input.length - 1) {
76
+ return 'pending';
77
+ }
78
+ const next = input[escapeIndex + 1];
79
+ if (next === escape) {
80
+ if (escapeIndex + 2 >= input.length) {
81
+ return 'pending';
82
+ }
83
+ const doubleEscapeSequence = parseControlSequence(input, escapeIndex, 2);
84
+ if (doubleEscapeSequence === 'pending') {
85
+ return 'pending';
86
+ }
87
+ if (doubleEscapeSequence) {
88
+ return doubleEscapeSequence;
89
+ }
90
+ return {
91
+ sequence: input.slice(escapeIndex, escapeIndex + 2),
92
+ nextIndex: escapeIndex + 2,
93
+ };
94
+ }
95
+ const controlSequence = parseControlSequence(input, escapeIndex, 1);
96
+ if (controlSequence === 'pending') {
97
+ return 'pending';
98
+ }
99
+ if (controlSequence) {
100
+ return controlSequence;
101
+ }
102
+ return parseEscapedCodePoint(input, escapeIndex);
103
+ };
104
+ /**
105
+ Split a chunk of non-escape text so that backspace bytes (`0x7F` and `0x08`) become individual events. When a user holds the backspace key, the terminal sends repeated bytes in a single stdin chunk. Without splitting, `parseKeypress` receives the multi-byte string and fails to recognize it as a key event, corrupting the input state.
106
+
107
+ Other control characters like `\r` and `\t` are NOT split because they can legitimately appear inside pasted text.
108
+ */
109
+ const splitBackspaceBytes = (text, events) => {
110
+ let textSegmentStart = 0;
111
+ for (let index = 0; index < text.length; index++) {
112
+ const character = text[index];
113
+ if (character === '\u007F' || character === '\u0008') {
114
+ if (index > textSegmentStart) {
115
+ events.push(text.slice(textSegmentStart, index));
116
+ }
117
+ events.push(character);
118
+ textSegmentStart = index + 1;
119
+ }
120
+ }
121
+ if (textSegmentStart < text.length) {
122
+ events.push(text.slice(textSegmentStart));
123
+ }
124
+ };
125
+ const parseKeypresses = (input) => {
126
+ const events = [];
127
+ let index = 0;
128
+ const pendingFrom = (pendingStartIndex) => ({
129
+ events,
130
+ pending: input.slice(pendingStartIndex),
131
+ });
132
+ while (index < input.length) {
133
+ const escapeIndex = input.indexOf(escape, index);
134
+ if (escapeIndex === -1) {
135
+ splitBackspaceBytes(input.slice(index), events);
136
+ return {
137
+ events,
138
+ pending: '',
139
+ };
140
+ }
141
+ if (escapeIndex > index) {
142
+ splitBackspaceBytes(input.slice(index, escapeIndex), events);
143
+ }
144
+ const parsedEscapeSequence = parseEscapeSequence(input, escapeIndex);
145
+ if (parsedEscapeSequence === 'pending') {
146
+ return pendingFrom(escapeIndex);
147
+ }
148
+ if (parsedEscapeSequence.sequence === pasteStart) {
149
+ const afterStart = parsedEscapeSequence.nextIndex;
150
+ const endIndex = input.indexOf(pasteEnd, afterStart);
151
+ if (endIndex === -1) {
152
+ return pendingFrom(escapeIndex);
153
+ }
154
+ events.push({ paste: input.slice(afterStart, endIndex) });
155
+ index = endIndex + pasteEnd.length;
156
+ continue;
157
+ }
158
+ events.push(parsedEscapeSequence.sequence);
159
+ index = parsedEscapeSequence.nextIndex;
160
+ }
161
+ return {
162
+ events,
163
+ pending: '',
164
+ };
165
+ };
166
+ export const createInputParser = () => {
167
+ let pending = '';
168
+ return {
169
+ push(chunk) {
170
+ const parsedInput = parseKeypresses(pending + chunk);
171
+ pending = parsedInput.pending;
172
+ return parsedInput.events;
173
+ },
174
+ hasPendingEscape() {
175
+ // Don't trigger the escape flush timer while assembling a paste start
176
+ // marker (`\u001B[200` and then `~`) or while waiting for paste end.
177
+ return (pending.startsWith(escape) &&
178
+ !pending.startsWith(pasteStart) &&
179
+ pending !== '\u001B[200');
180
+ },
181
+ flushPendingEscape() {
182
+ if (!pending.startsWith(escape)) {
183
+ return undefined;
184
+ }
185
+ const pendingEscape = pending;
186
+ pending = '';
187
+ return pendingEscape;
188
+ },
189
+ reset() {
190
+ pending = '';
191
+ },
192
+ };
193
+ };
194
+ //# sourceMappingURL=input-parser.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"input-parser.js","sourceRoot":"","sources":["../src/input-parser.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,23 @@
1
+ export declare const kittyFlags: {
2
+ readonly disambiguateEscapeCodes: 1;
3
+ readonly reportEventTypes: 2;
4
+ readonly reportAlternateKeys: 4;
5
+ readonly reportAllKeysAsEscapeCodes: 8;
6
+ readonly reportAssociatedText: 16;
7
+ };
8
+ export type KittyFlagName = keyof typeof kittyFlags;
9
+ export declare function resolveFlags(flags: KittyFlagName[]): number;
10
+ export declare const kittyModifiers: {
11
+ readonly shift: 1;
12
+ readonly alt: 2;
13
+ readonly ctrl: 4;
14
+ readonly super: 8;
15
+ readonly hyper: 16;
16
+ readonly meta: 32;
17
+ readonly capsLock: 64;
18
+ readonly numLock: 128;
19
+ };
20
+ export type KittyKeyboardOptions = {
21
+ mode?: 'auto' | 'enabled' | 'disabled';
22
+ flags?: KittyFlagName[];
23
+ };
@@ -0,0 +1,32 @@
1
+ // Kitty keyboard protocol flags.
2
+ // @see https://sw.kovidgoyal.net/kitty/keyboard-protocol/
3
+ export const kittyFlags = {
4
+ disambiguateEscapeCodes: 1,
5
+ reportEventTypes: 2,
6
+ reportAlternateKeys: 4,
7
+ reportAllKeysAsEscapeCodes: 8,
8
+ reportAssociatedText: 16,
9
+ };
10
+ // Converts an array of flag names to the corresponding bitmask value.
11
+ export function resolveFlags(flags) {
12
+ let result = 0;
13
+ for (const flag of flags) {
14
+ // eslint-disable-next-line no-bitwise
15
+ result |= kittyFlags[flag];
16
+ }
17
+ return result;
18
+ }
19
+ // Kitty keyboard modifier bits.
20
+ // These are used in the modifier parameter of CSI u sequences.
21
+ // Note: The actual modifier value is (modifiers - 1) as per the protocol.
22
+ export const kittyModifiers = {
23
+ shift: 1,
24
+ alt: 2,
25
+ ctrl: 4,
26
+ super: 8,
27
+ hyper: 16,
28
+ meta: 32,
29
+ capsLock: 64,
30
+ numLock: 128,
31
+ };
32
+ //# sourceMappingURL=kitty-keyboard.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"kitty-keyboard.js","sourceRoot":"","sources":["../src/kitty-keyboard.ts"],"names":[],"mappings":"AAAA,iCAAiC;AACjC,0DAA0D;AAC1D,MAAM,CAAC,MAAM,UAAU,GAAG;IACzB,uBAAuB,EAAE,CAAC;IAC1B,gBAAgB,EAAE,CAAC;IACnB,mBAAmB,EAAE,CAAC;IACtB,0BAA0B,EAAE,CAAC;IAC7B,oBAAoB,EAAE,EAAE;CACf,CAAC;AAKX,sEAAsE;AACtE,MAAM,UAAU,YAAY,CAAC,KAAsB;IAClD,IAAI,MAAM,GAAG,CAAC,CAAC;IACf,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;QAC1B,sCAAsC;QACtC,MAAM,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC;IAC5B,CAAC;IAED,OAAO,MAAM,CAAC;AACf,CAAC;AAED,gCAAgC;AAChC,+DAA+D;AAC/D,0EAA0E;AAC1E,MAAM,CAAC,MAAM,cAAc,GAAG;IAC7B,KAAK,EAAE,CAAC;IACR,GAAG,EAAE,CAAC;IACN,IAAI,EAAE,CAAC;IACP,KAAK,EAAE,CAAC;IACR,KAAK,EAAE,EAAE;IACT,IAAI,EAAE,EAAE;IACR,QAAQ,EAAE,EAAE;IACZ,OAAO,EAAE,GAAG;CACH,CAAC"}
@@ -0,0 +1,20 @@
1
+ import { type Writable } from 'node:stream';
2
+ import { type CursorPosition } from './cursor-helpers.js';
3
+ export type { CursorPosition } from './cursor-helpers.js';
4
+ export type LogUpdate = {
5
+ clear: () => void;
6
+ done: () => void;
7
+ reset: () => void;
8
+ sync: (str: string) => void;
9
+ setCursorPosition: (position: CursorPosition | undefined) => void;
10
+ isCursorDirty: () => boolean;
11
+ willRender: (str: string) => boolean;
12
+ (str: string): boolean;
13
+ };
14
+ declare const logUpdate: {
15
+ create: (stream: Writable, { showCursor, incremental }?: {
16
+ showCursor?: boolean | undefined;
17
+ incremental?: boolean | undefined;
18
+ }) => LogUpdate;
19
+ };
20
+ export default logUpdate;
@@ -0,0 +1,254 @@
1
+ import ansiEscapes from 'ansi-escapes';
2
+ import cliCursor from 'cli-cursor';
3
+ import { cursorPositionChanged, buildCursorSuffix, buildCursorOnlySequence, buildReturnToBottomPrefix, hideCursorEscape, } from './cursor-helpers.js';
4
+ // Count visible lines in a string, ignoring the trailing empty element
5
+ // that `split('\n')` produces when the string ends with '\n'.
6
+ const visibleLineCount = (lines, str) => str.endsWith('\n') ? lines.length - 1 : lines.length;
7
+ const createStandard = (stream, { showCursor = false } = {}) => {
8
+ let previousLineCount = 0;
9
+ let previousOutput = '';
10
+ let hasHiddenCursor = false;
11
+ let cursorPosition;
12
+ let cursorDirty = false;
13
+ let previousCursorPosition;
14
+ let cursorWasShown = false;
15
+ const getActiveCursor = () => (cursorDirty ? cursorPosition : undefined);
16
+ const hasChanges = (str, activeCursor) => {
17
+ const cursorChanged = cursorPositionChanged(activeCursor, previousCursorPosition);
18
+ return str !== previousOutput || cursorChanged;
19
+ };
20
+ const render = (str) => {
21
+ if (!showCursor && !hasHiddenCursor) {
22
+ cliCursor.hide(stream);
23
+ hasHiddenCursor = true;
24
+ }
25
+ // Only use cursor if setCursorPosition was called since last render.
26
+ // This ensures stale positions don't persist after component unmount.
27
+ const activeCursor = getActiveCursor();
28
+ cursorDirty = false;
29
+ const cursorChanged = cursorPositionChanged(activeCursor, previousCursorPosition);
30
+ if (!hasChanges(str, activeCursor)) {
31
+ return false;
32
+ }
33
+ const lines = str.split('\n');
34
+ const visibleCount = visibleLineCount(lines, str);
35
+ const cursorSuffix = buildCursorSuffix(visibleCount, activeCursor);
36
+ if (str === previousOutput && cursorChanged) {
37
+ stream.write(buildCursorOnlySequence({
38
+ cursorWasShown,
39
+ previousLineCount,
40
+ previousCursorPosition,
41
+ visibleLineCount: visibleCount,
42
+ cursorPosition: activeCursor,
43
+ }));
44
+ }
45
+ else {
46
+ previousOutput = str;
47
+ const returnPrefix = buildReturnToBottomPrefix(cursorWasShown, previousLineCount, previousCursorPosition);
48
+ stream.write(returnPrefix +
49
+ ansiEscapes.eraseLines(previousLineCount) +
50
+ str +
51
+ cursorSuffix);
52
+ previousLineCount = lines.length;
53
+ }
54
+ previousCursorPosition = activeCursor ? { ...activeCursor } : undefined;
55
+ cursorWasShown = activeCursor !== undefined;
56
+ return true;
57
+ };
58
+ render.clear = () => {
59
+ const prefix = buildReturnToBottomPrefix(cursorWasShown, previousLineCount, previousCursorPosition);
60
+ stream.write(prefix + ansiEscapes.eraseLines(previousLineCount));
61
+ previousOutput = '';
62
+ previousLineCount = 0;
63
+ previousCursorPosition = undefined;
64
+ cursorWasShown = false;
65
+ };
66
+ render.done = () => {
67
+ previousOutput = '';
68
+ previousLineCount = 0;
69
+ previousCursorPosition = undefined;
70
+ cursorWasShown = false;
71
+ if (!showCursor) {
72
+ cliCursor.show(stream);
73
+ hasHiddenCursor = false;
74
+ }
75
+ };
76
+ render.reset = () => {
77
+ previousOutput = '';
78
+ previousLineCount = 0;
79
+ previousCursorPosition = undefined;
80
+ cursorWasShown = false;
81
+ };
82
+ render.sync = (str) => {
83
+ const activeCursor = cursorDirty ? cursorPosition : undefined;
84
+ cursorDirty = false;
85
+ const lines = str.split('\n');
86
+ previousOutput = str;
87
+ previousLineCount = lines.length;
88
+ if (!activeCursor && cursorWasShown) {
89
+ stream.write(hideCursorEscape);
90
+ }
91
+ if (activeCursor) {
92
+ stream.write(buildCursorSuffix(visibleLineCount(lines, str), activeCursor));
93
+ }
94
+ previousCursorPosition = activeCursor ? { ...activeCursor } : undefined;
95
+ cursorWasShown = activeCursor !== undefined;
96
+ };
97
+ render.setCursorPosition = (position) => {
98
+ cursorPosition = position;
99
+ cursorDirty = true;
100
+ };
101
+ render.isCursorDirty = () => cursorDirty;
102
+ render.willRender = (str) => hasChanges(str, getActiveCursor());
103
+ return render;
104
+ };
105
+ const createIncremental = (stream, { showCursor = false } = {}) => {
106
+ let previousLines = [];
107
+ let previousOutput = '';
108
+ let hasHiddenCursor = false;
109
+ let cursorPosition;
110
+ let cursorDirty = false;
111
+ let previousCursorPosition;
112
+ let cursorWasShown = false;
113
+ const getActiveCursor = () => (cursorDirty ? cursorPosition : undefined);
114
+ const hasChanges = (str, activeCursor) => {
115
+ const cursorChanged = cursorPositionChanged(activeCursor, previousCursorPosition);
116
+ return str !== previousOutput || cursorChanged;
117
+ };
118
+ const render = (str) => {
119
+ if (!showCursor && !hasHiddenCursor) {
120
+ cliCursor.hide(stream);
121
+ hasHiddenCursor = true;
122
+ }
123
+ // Only use cursor if setCursorPosition was called since last render.
124
+ // This ensures stale positions don't persist after component unmount.
125
+ const activeCursor = getActiveCursor();
126
+ cursorDirty = false;
127
+ const cursorChanged = cursorPositionChanged(activeCursor, previousCursorPosition);
128
+ if (!hasChanges(str, activeCursor)) {
129
+ return false;
130
+ }
131
+ const nextLines = str.split('\n');
132
+ const visibleCount = visibleLineCount(nextLines, str);
133
+ const previousVisible = visibleLineCount(previousLines, previousOutput);
134
+ if (str === previousOutput && cursorChanged) {
135
+ stream.write(buildCursorOnlySequence({
136
+ cursorWasShown,
137
+ previousLineCount: previousLines.length,
138
+ previousCursorPosition,
139
+ visibleLineCount: visibleCount,
140
+ cursorPosition: activeCursor,
141
+ }));
142
+ previousCursorPosition = activeCursor ? { ...activeCursor } : undefined;
143
+ cursorWasShown = activeCursor !== undefined;
144
+ return true;
145
+ }
146
+ const returnPrefix = buildReturnToBottomPrefix(cursorWasShown, previousLines.length, previousCursorPosition);
147
+ if (str === '\n' || previousOutput.length === 0) {
148
+ const cursorSuffix = buildCursorSuffix(visibleCount, activeCursor);
149
+ stream.write(returnPrefix +
150
+ ansiEscapes.eraseLines(previousLines.length) +
151
+ str +
152
+ cursorSuffix);
153
+ cursorWasShown = activeCursor !== undefined;
154
+ previousCursorPosition = activeCursor ? { ...activeCursor } : undefined;
155
+ previousOutput = str;
156
+ previousLines = nextLines;
157
+ return true;
158
+ }
159
+ const hasTrailingNewline = str.endsWith('\n');
160
+ // We aggregate all chunks for incremental rendering into a buffer, and then write them to stdout at the end.
161
+ const buffer = [];
162
+ buffer.push(returnPrefix);
163
+ // Clear extra lines if the current content's line count is lower than the previous.
164
+ if (visibleCount < previousVisible) {
165
+ const previousHadTrailingNewline = previousOutput.endsWith('\n');
166
+ const extraSlot = previousHadTrailingNewline ? 1 : 0;
167
+ buffer.push(ansiEscapes.eraseLines(previousVisible - visibleCount + extraSlot), ansiEscapes.cursorUp(visibleCount));
168
+ }
169
+ else {
170
+ buffer.push(ansiEscapes.cursorUp(previousLines.length - 1));
171
+ }
172
+ for (let i = 0; i < visibleCount; i++) {
173
+ const isLastLine = i === visibleCount - 1;
174
+ // We do not write lines if the contents are the same. This prevents flickering during renders.
175
+ if (nextLines[i] === previousLines[i]) {
176
+ // Don't move past the last line when there's no trailing newline,
177
+ // otherwise the cursor overshoots the rendered block.
178
+ if (!isLastLine || hasTrailingNewline) {
179
+ buffer.push(ansiEscapes.cursorNextLine);
180
+ }
181
+ continue;
182
+ }
183
+ buffer.push(ansiEscapes.cursorTo(0) +
184
+ nextLines[i] +
185
+ ansiEscapes.eraseEndLine +
186
+ // Don't append newline after the last line when the input
187
+ // has no trailing newline (fullscreen mode).
188
+ (isLastLine && !hasTrailingNewline ? '' : '\n'));
189
+ }
190
+ const cursorSuffix = buildCursorSuffix(visibleCount, activeCursor);
191
+ buffer.push(cursorSuffix);
192
+ stream.write(buffer.join(''));
193
+ cursorWasShown = activeCursor !== undefined;
194
+ previousCursorPosition = activeCursor ? { ...activeCursor } : undefined;
195
+ previousOutput = str;
196
+ previousLines = nextLines;
197
+ return true;
198
+ };
199
+ render.clear = () => {
200
+ const prefix = buildReturnToBottomPrefix(cursorWasShown, previousLines.length, previousCursorPosition);
201
+ stream.write(prefix + ansiEscapes.eraseLines(previousLines.length));
202
+ previousOutput = '';
203
+ previousLines = [];
204
+ previousCursorPosition = undefined;
205
+ cursorWasShown = false;
206
+ };
207
+ render.done = () => {
208
+ previousOutput = '';
209
+ previousLines = [];
210
+ previousCursorPosition = undefined;
211
+ cursorWasShown = false;
212
+ if (!showCursor) {
213
+ cliCursor.show(stream);
214
+ hasHiddenCursor = false;
215
+ }
216
+ };
217
+ render.reset = () => {
218
+ previousOutput = '';
219
+ previousLines = [];
220
+ previousCursorPosition = undefined;
221
+ cursorWasShown = false;
222
+ };
223
+ render.sync = (str) => {
224
+ const activeCursor = cursorDirty ? cursorPosition : undefined;
225
+ cursorDirty = false;
226
+ const lines = str.split('\n');
227
+ previousOutput = str;
228
+ previousLines = lines;
229
+ if (!activeCursor && cursorWasShown) {
230
+ stream.write(hideCursorEscape);
231
+ }
232
+ if (activeCursor) {
233
+ stream.write(buildCursorSuffix(visibleLineCount(lines, str), activeCursor));
234
+ }
235
+ previousCursorPosition = activeCursor ? { ...activeCursor } : undefined;
236
+ cursorWasShown = activeCursor !== undefined;
237
+ };
238
+ render.setCursorPosition = (position) => {
239
+ cursorPosition = position;
240
+ cursorDirty = true;
241
+ };
242
+ render.isCursorDirty = () => cursorDirty;
243
+ render.willRender = (str) => hasChanges(str, getActiveCursor());
244
+ return render;
245
+ };
246
+ const create = (stream, { showCursor = false, incremental = false } = {}) => {
247
+ if (incremental) {
248
+ return createIncremental(stream, { showCursor });
249
+ }
250
+ return createStandard(stream, { showCursor });
251
+ };
252
+ const logUpdate = { create };
253
+ export default logUpdate;
254
+ //# sourceMappingURL=log-update.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"log-update.js","sourceRoot":"","sources":["../src/log-update.ts"],"names":[],"mappings":"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"}