@code-yeongyu/senpi 2026.5.20-4 → 2026.5.21

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 (794) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/cli.d.ts.map +1 -1
  3. package/dist/cli.js +4 -10
  4. package/dist/cli.js.map +1 -1
  5. package/dist/config.d.ts.map +1 -1
  6. package/dist/config.js +10 -4
  7. package/dist/config.js.map +1 -1
  8. package/dist/core/agent-session-runtime.d.ts.map +1 -1
  9. package/dist/core/agent-session-runtime.js +2 -3
  10. package/dist/core/agent-session-runtime.js.map +1 -1
  11. package/dist/core/http-dispatcher.d.ts +21 -0
  12. package/dist/core/http-dispatcher.d.ts.map +1 -0
  13. package/dist/core/http-dispatcher.js +48 -0
  14. package/dist/core/http-dispatcher.js.map +1 -0
  15. package/dist/core/package-manager.d.ts.map +1 -1
  16. package/dist/core/package-manager.js +2 -1
  17. package/dist/core/package-manager.js.map +1 -1
  18. package/dist/core/settings-manager.d.ts +3 -0
  19. package/dist/core/settings-manager.d.ts.map +1 -1
  20. package/dist/core/settings-manager.js +20 -0
  21. package/dist/core/settings-manager.js.map +1 -1
  22. package/dist/main.d.ts.map +1 -1
  23. package/dist/main.js +2 -0
  24. package/dist/main.js.map +1 -1
  25. package/dist/modes/interactive/components/settings-selector.d.ts +2 -0
  26. package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
  27. package/dist/modes/interactive/components/settings-selector.js +15 -0
  28. package/dist/modes/interactive/components/settings-selector.js.map +1 -1
  29. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  30. package/dist/modes/interactive/interactive-mode.js +10 -1
  31. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  32. package/dist/senpi +4 -10
  33. package/dist/utils/paths.d.ts +1 -0
  34. package/dist/utils/paths.d.ts.map +1 -1
  35. package/dist/utils/paths.js +16 -0
  36. package/dist/utils/paths.js.map +1 -1
  37. package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
  38. package/examples/extensions/custom-provider-anthropic/package.json +2 -2
  39. package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
  40. package/examples/extensions/sandbox/package-lock.json +2 -2
  41. package/examples/extensions/sandbox/package.json +2 -2
  42. package/examples/extensions/with-deps/package-lock.json +2 -2
  43. package/examples/extensions/with-deps/package.json +3 -3
  44. package/node_modules/@earendil-works/pi-agent-core/README.md +488 -0
  45. package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.d.ts +24 -0
  46. package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.d.ts.map +1 -0
  47. package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js +610 -0
  48. package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js.map +1 -0
  49. package/node_modules/@earendil-works/pi-agent-core/dist/agent.d.ts +120 -0
  50. package/node_modules/@earendil-works/pi-agent-core/dist/agent.d.ts.map +1 -0
  51. package/node_modules/@earendil-works/pi-agent-core/dist/agent.js +405 -0
  52. package/node_modules/@earendil-works/pi-agent-core/dist/agent.js.map +1 -0
  53. package/node_modules/@earendil-works/pi-agent-core/dist/harness/agent-harness.d.ts +92 -0
  54. package/node_modules/@earendil-works/pi-agent-core/dist/harness/agent-harness.d.ts.map +1 -0
  55. package/node_modules/@earendil-works/pi-agent-core/dist/harness/agent-harness.js +904 -0
  56. package/node_modules/@earendil-works/pi-agent-core/dist/harness/agent-harness.js.map +1 -0
  57. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/branch-summarization.d.ts +53 -0
  58. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/branch-summarization.d.ts.map +1 -0
  59. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/branch-summarization.js +174 -0
  60. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/branch-summarization.js.map +1 -0
  61. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.d.ts +95 -0
  62. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.d.ts.map +1 -0
  63. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.js +533 -0
  64. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.js.map +1 -0
  65. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/utils.d.ts +25 -0
  66. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/utils.d.ts.map +1 -0
  67. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/utils.js +131 -0
  68. package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/utils.js.map +1 -0
  69. package/node_modules/@earendil-works/pi-agent-core/dist/harness/env/nodejs.d.ts +51 -0
  70. package/node_modules/@earendil-works/pi-agent-core/dist/harness/env/nodejs.d.ts.map +1 -0
  71. package/node_modules/@earendil-works/pi-agent-core/dist/harness/env/nodejs.js +486 -0
  72. package/node_modules/@earendil-works/pi-agent-core/dist/harness/env/nodejs.js.map +1 -0
  73. package/node_modules/@earendil-works/pi-agent-core/dist/harness/messages.d.ts +52 -0
  74. package/node_modules/@earendil-works/pi-agent-core/dist/harness/messages.d.ts.map +1 -0
  75. package/node_modules/@earendil-works/pi-agent-core/dist/harness/messages.js +102 -0
  76. package/node_modules/@earendil-works/pi-agent-core/dist/harness/messages.js.map +1 -0
  77. package/node_modules/@earendil-works/pi-agent-core/dist/harness/prompt-templates.d.ts +48 -0
  78. package/node_modules/@earendil-works/pi-agent-core/dist/harness/prompt-templates.d.ts.map +1 -0
  79. package/node_modules/@earendil-works/pi-agent-core/dist/harness/prompt-templates.js +230 -0
  80. package/node_modules/@earendil-works/pi-agent-core/dist/harness/prompt-templates.js.map +1 -0
  81. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-repo.d.ts +26 -0
  82. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-repo.d.ts.map +1 -0
  83. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-repo.js +101 -0
  84. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-repo.js.map +1 -0
  85. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-storage.d.ts +33 -0
  86. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-storage.d.ts.map +1 -0
  87. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-storage.js +231 -0
  88. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-storage.js.map +1 -0
  89. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-repo.d.ts +18 -0
  90. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-repo.d.ts.map +1 -0
  91. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-repo.js +42 -0
  92. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-repo.js.map +1 -0
  93. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-storage.d.ts +25 -0
  94. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-storage.d.ts.map +1 -0
  95. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-storage.js +114 -0
  96. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-storage.js.map +1 -0
  97. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo-utils.d.ts +11 -0
  98. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo-utils.d.ts.map +1 -0
  99. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo-utils.js +39 -0
  100. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo-utils.js.map +1 -0
  101. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/session.d.ts +32 -0
  102. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/session.d.ts.map +1 -0
  103. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/session.js +197 -0
  104. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/session.js.map +1 -0
  105. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/uuid.d.ts +2 -0
  106. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/uuid.d.ts.map +1 -0
  107. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/uuid.js +50 -0
  108. package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/uuid.js.map +1 -0
  109. package/node_modules/@earendil-works/pi-agent-core/dist/harness/skills.d.ts +44 -0
  110. package/node_modules/@earendil-works/pi-agent-core/dist/harness/skills.d.ts.map +1 -0
  111. package/node_modules/@earendil-works/pi-agent-core/dist/harness/skills.js +311 -0
  112. package/node_modules/@earendil-works/pi-agent-core/dist/harness/skills.js.map +1 -0
  113. package/node_modules/@earendil-works/pi-agent-core/dist/harness/system-prompt.d.ts +3 -0
  114. package/node_modules/@earendil-works/pi-agent-core/dist/harness/system-prompt.d.ts.map +1 -0
  115. package/node_modules/@earendil-works/pi-agent-core/dist/harness/system-prompt.js +30 -0
  116. package/node_modules/@earendil-works/pi-agent-core/dist/harness/system-prompt.js.map +1 -0
  117. package/node_modules/@earendil-works/pi-agent-core/dist/harness/types.d.ts +604 -0
  118. package/node_modules/@earendil-works/pi-agent-core/dist/harness/types.d.ts.map +1 -0
  119. package/node_modules/@earendil-works/pi-agent-core/dist/harness/types.js +103 -0
  120. package/node_modules/@earendil-works/pi-agent-core/dist/harness/types.js.map +1 -0
  121. package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/shell-output.d.ts +14 -0
  122. package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/shell-output.d.ts.map +1 -0
  123. package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/shell-output.js +126 -0
  124. package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/shell-output.js.map +1 -0
  125. package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/truncate.d.ts +70 -0
  126. package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/truncate.d.ts.map +1 -0
  127. package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/truncate.js +290 -0
  128. package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/truncate.js.map +1 -0
  129. package/node_modules/@earendil-works/pi-agent-core/dist/index.d.ts +20 -0
  130. package/node_modules/@earendil-works/pi-agent-core/dist/index.d.ts.map +1 -0
  131. package/node_modules/@earendil-works/pi-agent-core/dist/index.js +25 -0
  132. package/node_modules/@earendil-works/pi-agent-core/dist/index.js.map +1 -0
  133. package/node_modules/@earendil-works/pi-agent-core/dist/node.d.ts +3 -0
  134. package/node_modules/@earendil-works/pi-agent-core/dist/node.d.ts.map +1 -0
  135. package/node_modules/@earendil-works/pi-agent-core/dist/node.js +3 -0
  136. package/node_modules/@earendil-works/pi-agent-core/dist/node.js.map +1 -0
  137. package/node_modules/@earendil-works/pi-agent-core/dist/proxy.d.ts +69 -0
  138. package/node_modules/@earendil-works/pi-agent-core/dist/proxy.d.ts.map +1 -0
  139. package/node_modules/@earendil-works/pi-agent-core/dist/proxy.js +278 -0
  140. package/node_modules/@earendil-works/pi-agent-core/dist/proxy.js.map +1 -0
  141. package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts +394 -0
  142. package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts.map +1 -0
  143. package/node_modules/@earendil-works/pi-agent-core/dist/types.js +2 -0
  144. package/node_modules/@earendil-works/pi-agent-core/dist/types.js.map +1 -0
  145. package/node_modules/@earendil-works/pi-agent-core/package.json +61 -0
  146. package/node_modules/@earendil-works/pi-ai/README.md +1386 -0
  147. package/node_modules/@earendil-works/pi-ai/dist/api-registry.d.ts +20 -0
  148. package/node_modules/@earendil-works/pi-ai/dist/api-registry.d.ts.map +1 -0
  149. package/node_modules/@earendil-works/pi-ai/dist/api-registry.js +44 -0
  150. package/node_modules/@earendil-works/pi-ai/dist/api-registry.js.map +1 -0
  151. package/node_modules/@earendil-works/pi-ai/dist/bedrock-provider.d.ts +5 -0
  152. package/node_modules/@earendil-works/pi-ai/dist/bedrock-provider.d.ts.map +1 -0
  153. package/node_modules/@earendil-works/pi-ai/dist/bedrock-provider.js +6 -0
  154. package/node_modules/@earendil-works/pi-ai/dist/bedrock-provider.js.map +1 -0
  155. package/node_modules/@earendil-works/pi-ai/dist/cli.d.ts +3 -0
  156. package/node_modules/@earendil-works/pi-ai/dist/cli.d.ts.map +1 -0
  157. package/node_modules/@earendil-works/pi-ai/dist/cli.js +116 -0
  158. package/node_modules/@earendil-works/pi-ai/dist/cli.js.map +1 -0
  159. package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.d.ts +18 -0
  160. package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.d.ts.map +1 -0
  161. package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.js +178 -0
  162. package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.js.map +1 -0
  163. package/node_modules/@earendil-works/pi-ai/dist/image-models.d.ts +10 -0
  164. package/node_modules/@earendil-works/pi-ai/dist/image-models.d.ts.map +1 -0
  165. package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.d.ts +440 -0
  166. package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.d.ts.map +1 -0
  167. package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.js +442 -0
  168. package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.js.map +1 -0
  169. package/node_modules/@earendil-works/pi-ai/dist/image-models.js +23 -0
  170. package/node_modules/@earendil-works/pi-ai/dist/image-models.js.map +1 -0
  171. package/node_modules/@earendil-works/pi-ai/dist/images-api-registry.d.ts +14 -0
  172. package/node_modules/@earendil-works/pi-ai/dist/images-api-registry.d.ts.map +1 -0
  173. package/node_modules/@earendil-works/pi-ai/dist/images-api-registry.js +22 -0
  174. package/node_modules/@earendil-works/pi-ai/dist/images-api-registry.js.map +1 -0
  175. package/node_modules/@earendil-works/pi-ai/dist/images.d.ts +4 -0
  176. package/node_modules/@earendil-works/pi-ai/dist/images.d.ts.map +1 -0
  177. package/node_modules/@earendil-works/pi-ai/dist/images.js +14 -0
  178. package/node_modules/@earendil-works/pi-ai/dist/images.js.map +1 -0
  179. package/node_modules/@earendil-works/pi-ai/dist/index.d.ts +33 -0
  180. package/node_modules/@earendil-works/pi-ai/dist/index.d.ts.map +1 -0
  181. package/node_modules/@earendil-works/pi-ai/dist/index.js +21 -0
  182. package/node_modules/@earendil-works/pi-ai/dist/index.js.map +1 -0
  183. package/node_modules/@earendil-works/pi-ai/dist/models.d.ts +37 -0
  184. package/node_modules/@earendil-works/pi-ai/dist/models.d.ts.map +1 -0
  185. package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts +17658 -0
  186. package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts.map +1 -0
  187. package/node_modules/@earendil-works/pi-ai/dist/models.generated.js +16510 -0
  188. package/node_modules/@earendil-works/pi-ai/dist/models.generated.js.map +1 -0
  189. package/node_modules/@earendil-works/pi-ai/dist/models.js +114 -0
  190. package/node_modules/@earendil-works/pi-ai/dist/models.js.map +1 -0
  191. package/node_modules/@earendil-works/pi-ai/dist/oauth.d.ts +2 -0
  192. package/node_modules/@earendil-works/pi-ai/dist/oauth.d.ts.map +1 -0
  193. package/node_modules/@earendil-works/pi-ai/dist/oauth.js +2 -0
  194. package/node_modules/@earendil-works/pi-ai/dist/oauth.js.map +1 -0
  195. package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.d.ts +38 -0
  196. package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.d.ts.map +1 -0
  197. package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.js +787 -0
  198. package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.js.map +1 -0
  199. package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.d.ts +52 -0
  200. package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.d.ts.map +1 -0
  201. package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.js +1127 -0
  202. package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.js.map +1 -0
  203. package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.d.ts +15 -0
  204. package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.d.ts.map +1 -0
  205. package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.js +229 -0
  206. package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.js.map +1 -0
  207. package/node_modules/@earendil-works/pi-ai/dist/providers/cloudflare.d.ts +13 -0
  208. package/node_modules/@earendil-works/pi-ai/dist/providers/cloudflare.d.ts.map +1 -0
  209. package/node_modules/@earendil-works/pi-ai/dist/providers/cloudflare.js +26 -0
  210. package/node_modules/@earendil-works/pi-ai/dist/providers/cloudflare.js.map +1 -0
  211. package/node_modules/@earendil-works/pi-ai/dist/providers/faux.d.ts +66 -0
  212. package/node_modules/@earendil-works/pi-ai/dist/providers/faux.d.ts.map +1 -0
  213. package/node_modules/@earendil-works/pi-ai/dist/providers/faux.js +401 -0
  214. package/node_modules/@earendil-works/pi-ai/dist/providers/faux.js.map +1 -0
  215. package/node_modules/@earendil-works/pi-ai/dist/providers/github-copilot-headers.d.ts +8 -0
  216. package/node_modules/@earendil-works/pi-ai/dist/providers/github-copilot-headers.d.ts.map +1 -0
  217. package/node_modules/@earendil-works/pi-ai/dist/providers/github-copilot-headers.js +29 -0
  218. package/node_modules/@earendil-works/pi-ai/dist/providers/github-copilot-headers.js.map +1 -0
  219. package/node_modules/@earendil-works/pi-ai/dist/providers/google-shared.d.ts +73 -0
  220. package/node_modules/@earendil-works/pi-ai/dist/providers/google-shared.d.ts.map +1 -0
  221. package/node_modules/@earendil-works/pi-ai/dist/providers/google-shared.js +359 -0
  222. package/node_modules/@earendil-works/pi-ai/dist/providers/google-shared.js.map +1 -0
  223. package/node_modules/@earendil-works/pi-ai/dist/providers/google-vertex.d.ts +15 -0
  224. package/node_modules/@earendil-works/pi-ai/dist/providers/google-vertex.d.ts.map +1 -0
  225. package/node_modules/@earendil-works/pi-ai/dist/providers/google-vertex.js +465 -0
  226. package/node_modules/@earendil-works/pi-ai/dist/providers/google-vertex.js.map +1 -0
  227. package/node_modules/@earendil-works/pi-ai/dist/providers/google.d.ts +13 -0
  228. package/node_modules/@earendil-works/pi-ai/dist/providers/google.d.ts.map +1 -0
  229. package/node_modules/@earendil-works/pi-ai/dist/providers/google.js +431 -0
  230. package/node_modules/@earendil-works/pi-ai/dist/providers/google.js.map +1 -0
  231. package/node_modules/@earendil-works/pi-ai/dist/providers/images/openrouter.d.ts +3 -0
  232. package/node_modules/@earendil-works/pi-ai/dist/providers/images/openrouter.d.ts.map +1 -0
  233. package/node_modules/@earendil-works/pi-ai/dist/providers/images/openrouter.js +129 -0
  234. package/node_modules/@earendil-works/pi-ai/dist/providers/images/openrouter.js.map +1 -0
  235. package/node_modules/@earendil-works/pi-ai/dist/providers/images/register-builtins.d.ts +4 -0
  236. package/node_modules/@earendil-works/pi-ai/dist/providers/images/register-builtins.d.ts.map +1 -0
  237. package/node_modules/@earendil-works/pi-ai/dist/providers/images/register-builtins.js +34 -0
  238. package/node_modules/@earendil-works/pi-ai/dist/providers/images/register-builtins.js.map +1 -0
  239. package/node_modules/@earendil-works/pi-ai/dist/providers/mistral.d.ts +25 -0
  240. package/node_modules/@earendil-works/pi-ai/dist/providers/mistral.d.ts.map +1 -0
  241. package/node_modules/@earendil-works/pi-ai/dist/providers/mistral.js +542 -0
  242. package/node_modules/@earendil-works/pi-ai/dist/providers/mistral.js.map +1 -0
  243. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.d.ts +30 -0
  244. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.d.ts.map +1 -0
  245. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.js +1112 -0
  246. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.js.map +1 -0
  247. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.d.ts +22 -0
  248. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.d.ts.map +1 -0
  249. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.js +977 -0
  250. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.js.map +1 -0
  251. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-prompt-cache.d.ts +3 -0
  252. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-prompt-cache.d.ts.map +1 -0
  253. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-prompt-cache.js +10 -0
  254. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-prompt-cache.js.map +1 -0
  255. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.d.ts +19 -0
  256. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.d.ts.map +1 -0
  257. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.js +579 -0
  258. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.js.map +1 -0
  259. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.d.ts +13 -0
  260. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.d.ts.map +1 -0
  261. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.js +651 -0
  262. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.js.map +1 -0
  263. package/node_modules/@earendil-works/pi-ai/dist/providers/register-builtins.d.ts +35 -0
  264. package/node_modules/@earendil-works/pi-ai/dist/providers/register-builtins.d.ts.map +1 -0
  265. package/node_modules/@earendil-works/pi-ai/dist/providers/register-builtins.js +254 -0
  266. package/node_modules/@earendil-works/pi-ai/dist/providers/register-builtins.js.map +1 -0
  267. package/node_modules/@earendil-works/pi-ai/dist/providers/simple-options.d.ts +38 -0
  268. package/node_modules/@earendil-works/pi-ai/dist/providers/simple-options.d.ts.map +1 -0
  269. package/node_modules/@earendil-works/pi-ai/dist/providers/simple-options.js +174 -0
  270. package/node_modules/@earendil-works/pi-ai/dist/providers/simple-options.js.map +1 -0
  271. package/node_modules/@earendil-works/pi-ai/dist/providers/transform-messages.d.ts +16 -0
  272. package/node_modules/@earendil-works/pi-ai/dist/providers/transform-messages.d.ts.map +1 -0
  273. package/node_modules/@earendil-works/pi-ai/dist/providers/transform-messages.js +186 -0
  274. package/node_modules/@earendil-works/pi-ai/dist/providers/transform-messages.js.map +1 -0
  275. package/node_modules/@earendil-works/pi-ai/dist/session-resources.d.ts +4 -0
  276. package/node_modules/@earendil-works/pi-ai/dist/session-resources.d.ts.map +1 -0
  277. package/node_modules/@earendil-works/pi-ai/dist/session-resources.js +22 -0
  278. package/node_modules/@earendil-works/pi-ai/dist/session-resources.js.map +1 -0
  279. package/node_modules/@earendil-works/pi-ai/dist/stream.d.ts +8 -0
  280. package/node_modules/@earendil-works/pi-ai/dist/stream.d.ts.map +1 -0
  281. package/node_modules/@earendil-works/pi-ai/dist/stream.js +42 -0
  282. package/node_modules/@earendil-works/pi-ai/dist/stream.js.map +1 -0
  283. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/context-transformer.d.ts +22 -0
  284. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/context-transformer.d.ts.map +1 -0
  285. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/context-transformer.js +161 -0
  286. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/context-transformer.js.map +1 -0
  287. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/index.d.ts +13 -0
  288. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/index.d.ts.map +1 -0
  289. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/index.js +23 -0
  290. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/index.js.map +1 -0
  291. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/gemma4.d.ts +21 -0
  292. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/gemma4.d.ts.map +1 -0
  293. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/gemma4.js +559 -0
  294. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/gemma4.js.map +1 -0
  295. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/hermes.d.ts +21 -0
  296. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/hermes.d.ts.map +1 -0
  297. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/hermes.js +69 -0
  298. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/hermes.js.map +1 -0
  299. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/json-mix.d.ts +12 -0
  300. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/json-mix.d.ts.map +1 -0
  301. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/json-mix.js +570 -0
  302. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/json-mix.js.map +1 -0
  303. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/morph-xml.d.ts +15 -0
  304. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/morph-xml.d.ts.map +1 -0
  305. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/morph-xml.js +935 -0
  306. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/morph-xml.js.map +1 -0
  307. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/xml-tool-tag-scanner.d.ts +14 -0
  308. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/xml-tool-tag-scanner.d.ts.map +1 -0
  309. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/xml-tool-tag-scanner.js +54 -0
  310. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/xml-tool-tag-scanner.js.map +1 -0
  311. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/yaml-xml.d.ts +8 -0
  312. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/yaml-xml.d.ts.map +1 -0
  313. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/yaml-xml.js +295 -0
  314. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/protocols/yaml-xml.js.map +1 -0
  315. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/stream-wrapper.d.ts +4 -0
  316. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/stream-wrapper.d.ts.map +1 -0
  317. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/stream-wrapper.js +336 -0
  318. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/stream-wrapper.js.map +1 -0
  319. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/types.d.ts +103 -0
  320. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/types.d.ts.map +1 -0
  321. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/types.js +2 -0
  322. package/node_modules/@earendil-works/pi-ai/dist/tool-call-middleware/types.js.map +1 -0
  323. package/node_modules/@earendil-works/pi-ai/dist/types.d.ts +543 -0
  324. package/node_modules/@earendil-works/pi-ai/dist/types.d.ts.map +1 -0
  325. package/node_modules/@earendil-works/pi-ai/dist/types.js +2 -0
  326. package/node_modules/@earendil-works/pi-ai/dist/types.js.map +1 -0
  327. package/node_modules/@earendil-works/pi-ai/dist/utils/diagnostics.d.ts +19 -0
  328. package/node_modules/@earendil-works/pi-ai/dist/utils/diagnostics.d.ts.map +1 -0
  329. package/node_modules/@earendil-works/pi-ai/dist/utils/diagnostics.js +25 -0
  330. package/node_modules/@earendil-works/pi-ai/dist/utils/diagnostics.js.map +1 -0
  331. package/node_modules/@earendil-works/pi-ai/dist/utils/event-stream.d.ts +21 -0
  332. package/node_modules/@earendil-works/pi-ai/dist/utils/event-stream.d.ts.map +1 -0
  333. package/node_modules/@earendil-works/pi-ai/dist/utils/event-stream.js +81 -0
  334. package/node_modules/@earendil-works/pi-ai/dist/utils/event-stream.js.map +1 -0
  335. package/node_modules/@earendil-works/pi-ai/dist/utils/hash.d.ts +3 -0
  336. package/node_modules/@earendil-works/pi-ai/dist/utils/hash.d.ts.map +1 -0
  337. package/node_modules/@earendil-works/pi-ai/dist/utils/hash.js +14 -0
  338. package/node_modules/@earendil-works/pi-ai/dist/utils/hash.js.map +1 -0
  339. package/node_modules/@earendil-works/pi-ai/dist/utils/headers.d.ts +2 -0
  340. package/node_modules/@earendil-works/pi-ai/dist/utils/headers.d.ts.map +1 -0
  341. package/node_modules/@earendil-works/pi-ai/dist/utils/headers.js +8 -0
  342. package/node_modules/@earendil-works/pi-ai/dist/utils/headers.js.map +1 -0
  343. package/node_modules/@earendil-works/pi-ai/dist/utils/json-parse.d.ts +16 -0
  344. package/node_modules/@earendil-works/pi-ai/dist/utils/json-parse.d.ts.map +1 -0
  345. package/node_modules/@earendil-works/pi-ai/dist/utils/json-parse.js +113 -0
  346. package/node_modules/@earendil-works/pi-ai/dist/utils/json-parse.js.map +1 -0
  347. package/node_modules/@earendil-works/pi-ai/dist/utils/node-http-proxy.d.ts +10 -0
  348. package/node_modules/@earendil-works/pi-ai/dist/utils/node-http-proxy.d.ts.map +1 -0
  349. package/node_modules/@earendil-works/pi-ai/dist/utils/node-http-proxy.js +97 -0
  350. package/node_modules/@earendil-works/pi-ai/dist/utils/node-http-proxy.js.map +1 -0
  351. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/anthropic.d.ts +25 -0
  352. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/anthropic.d.ts.map +1 -0
  353. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/anthropic.js +335 -0
  354. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/anthropic.js.map +1 -0
  355. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.d.ts +30 -0
  356. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.d.ts.map +1 -0
  357. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.js +292 -0
  358. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.js.map +1 -0
  359. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/index.d.ts +57 -0
  360. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/index.d.ts.map +1 -0
  361. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/index.js +121 -0
  362. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/index.js.map +1 -0
  363. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/oauth-page.d.ts +3 -0
  364. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/oauth-page.d.ts.map +1 -0
  365. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/oauth-page.js +105 -0
  366. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/oauth-page.js.map +1 -0
  367. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.d.ts +34 -0
  368. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.d.ts.map +1 -0
  369. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.js +385 -0
  370. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.js.map +1 -0
  371. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/pkce.d.ts +13 -0
  372. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/pkce.d.ts.map +1 -0
  373. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/pkce.js +31 -0
  374. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/pkce.js.map +1 -0
  375. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/types.d.ts +57 -0
  376. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/types.d.ts.map +1 -0
  377. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/types.js +2 -0
  378. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/types.js.map +1 -0
  379. package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.d.ts +56 -0
  380. package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.d.ts.map +1 -0
  381. package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.js +151 -0
  382. package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.js.map +1 -0
  383. package/node_modules/@earendil-works/pi-ai/dist/utils/sanitize-unicode.d.ts +22 -0
  384. package/node_modules/@earendil-works/pi-ai/dist/utils/sanitize-unicode.d.ts.map +1 -0
  385. package/node_modules/@earendil-works/pi-ai/dist/utils/sanitize-unicode.js +26 -0
  386. package/node_modules/@earendil-works/pi-ai/dist/utils/sanitize-unicode.js.map +1 -0
  387. package/node_modules/@earendil-works/pi-ai/dist/utils/tool-pair-repair.d.ts +5 -0
  388. package/node_modules/@earendil-works/pi-ai/dist/utils/tool-pair-repair.d.ts.map +1 -0
  389. package/node_modules/@earendil-works/pi-ai/dist/utils/tool-pair-repair.js +49 -0
  390. package/node_modules/@earendil-works/pi-ai/dist/utils/tool-pair-repair.js.map +1 -0
  391. package/node_modules/@earendil-works/pi-ai/dist/utils/typebox-helpers.d.ts +17 -0
  392. package/node_modules/@earendil-works/pi-ai/dist/utils/typebox-helpers.d.ts.map +1 -0
  393. package/node_modules/@earendil-works/pi-ai/dist/utils/typebox-helpers.js +21 -0
  394. package/node_modules/@earendil-works/pi-ai/dist/utils/typebox-helpers.js.map +1 -0
  395. package/node_modules/@earendil-works/pi-ai/dist/utils/validation.d.ts +18 -0
  396. package/node_modules/@earendil-works/pi-ai/dist/utils/validation.d.ts.map +1 -0
  397. package/node_modules/@earendil-works/pi-ai/dist/utils/validation.js +281 -0
  398. package/node_modules/@earendil-works/pi-ai/dist/utils/validation.js.map +1 -0
  399. package/node_modules/@earendil-works/pi-ai/package.json +113 -0
  400. package/node_modules/@earendil-works/pi-tui/README.md +779 -0
  401. package/node_modules/@earendil-works/pi-tui/dist/autocomplete.d.ts +54 -0
  402. package/node_modules/@earendil-works/pi-tui/dist/autocomplete.d.ts.map +1 -0
  403. package/node_modules/@earendil-works/pi-tui/dist/autocomplete.js +632 -0
  404. package/node_modules/@earendil-works/pi-tui/dist/autocomplete.js.map +1 -0
  405. package/node_modules/@earendil-works/pi-tui/dist/components/box.d.ts +22 -0
  406. package/node_modules/@earendil-works/pi-tui/dist/components/box.d.ts.map +1 -0
  407. package/node_modules/@earendil-works/pi-tui/dist/components/box.js +104 -0
  408. package/node_modules/@earendil-works/pi-tui/dist/components/box.js.map +1 -0
  409. package/node_modules/@earendil-works/pi-tui/dist/components/cancellable-loader.d.ts +22 -0
  410. package/node_modules/@earendil-works/pi-tui/dist/components/cancellable-loader.d.ts.map +1 -0
  411. package/node_modules/@earendil-works/pi-tui/dist/components/cancellable-loader.js +35 -0
  412. package/node_modules/@earendil-works/pi-tui/dist/components/cancellable-loader.js.map +1 -0
  413. package/node_modules/@earendil-works/pi-tui/dist/components/editor.d.ts +249 -0
  414. package/node_modules/@earendil-works/pi-tui/dist/components/editor.d.ts.map +1 -0
  415. package/node_modules/@earendil-works/pi-tui/dist/components/editor.js +1916 -0
  416. package/node_modules/@earendil-works/pi-tui/dist/components/editor.js.map +1 -0
  417. package/node_modules/@earendil-works/pi-tui/dist/components/image.d.ts +28 -0
  418. package/node_modules/@earendil-works/pi-tui/dist/components/image.d.ts.map +1 -0
  419. package/node_modules/@earendil-works/pi-tui/dist/components/image.js +89 -0
  420. package/node_modules/@earendil-works/pi-tui/dist/components/image.js.map +1 -0
  421. package/node_modules/@earendil-works/pi-tui/dist/components/input.d.ts +37 -0
  422. package/node_modules/@earendil-works/pi-tui/dist/components/input.d.ts.map +1 -0
  423. package/node_modules/@earendil-works/pi-tui/dist/components/input.js +426 -0
  424. package/node_modules/@earendil-works/pi-tui/dist/components/input.js.map +1 -0
  425. package/node_modules/@earendil-works/pi-tui/dist/components/loader.d.ts +40 -0
  426. package/node_modules/@earendil-works/pi-tui/dist/components/loader.d.ts.map +1 -0
  427. package/node_modules/@earendil-works/pi-tui/dist/components/loader.js +95 -0
  428. package/node_modules/@earendil-works/pi-tui/dist/components/loader.js.map +1 -0
  429. package/node_modules/@earendil-works/pi-tui/dist/components/markdown.d.ts +90 -0
  430. package/node_modules/@earendil-works/pi-tui/dist/components/markdown.d.ts.map +1 -0
  431. package/node_modules/@earendil-works/pi-tui/dist/components/markdown.js +634 -0
  432. package/node_modules/@earendil-works/pi-tui/dist/components/markdown.js.map +1 -0
  433. package/node_modules/@earendil-works/pi-tui/dist/components/select-list.d.ts +50 -0
  434. package/node_modules/@earendil-works/pi-tui/dist/components/select-list.d.ts.map +1 -0
  435. package/node_modules/@earendil-works/pi-tui/dist/components/select-list.js +159 -0
  436. package/node_modules/@earendil-works/pi-tui/dist/components/select-list.js.map +1 -0
  437. package/node_modules/@earendil-works/pi-tui/dist/components/settings-list.d.ts +50 -0
  438. package/node_modules/@earendil-works/pi-tui/dist/components/settings-list.d.ts.map +1 -0
  439. package/node_modules/@earendil-works/pi-tui/dist/components/settings-list.js +185 -0
  440. package/node_modules/@earendil-works/pi-tui/dist/components/settings-list.js.map +1 -0
  441. package/node_modules/@earendil-works/pi-tui/dist/components/spacer.d.ts +12 -0
  442. package/node_modules/@earendil-works/pi-tui/dist/components/spacer.d.ts.map +1 -0
  443. package/node_modules/@earendil-works/pi-tui/dist/components/spacer.js +23 -0
  444. package/node_modules/@earendil-works/pi-tui/dist/components/spacer.js.map +1 -0
  445. package/node_modules/@earendil-works/pi-tui/dist/components/text.d.ts +19 -0
  446. package/node_modules/@earendil-works/pi-tui/dist/components/text.d.ts.map +1 -0
  447. package/node_modules/@earendil-works/pi-tui/dist/components/text.js +89 -0
  448. package/node_modules/@earendil-works/pi-tui/dist/components/text.js.map +1 -0
  449. package/node_modules/@earendil-works/pi-tui/dist/components/truncated-text.d.ts +13 -0
  450. package/node_modules/@earendil-works/pi-tui/dist/components/truncated-text.d.ts.map +1 -0
  451. package/node_modules/@earendil-works/pi-tui/dist/components/truncated-text.js +51 -0
  452. package/node_modules/@earendil-works/pi-tui/dist/components/truncated-text.js.map +1 -0
  453. package/node_modules/@earendil-works/pi-tui/dist/editor-component.d.ts +39 -0
  454. package/node_modules/@earendil-works/pi-tui/dist/editor-component.d.ts.map +1 -0
  455. package/node_modules/@earendil-works/pi-tui/dist/editor-component.js +2 -0
  456. package/node_modules/@earendil-works/pi-tui/dist/editor-component.js.map +1 -0
  457. package/node_modules/@earendil-works/pi-tui/dist/fuzzy.d.ts +16 -0
  458. package/node_modules/@earendil-works/pi-tui/dist/fuzzy.d.ts.map +1 -0
  459. package/node_modules/@earendil-works/pi-tui/dist/fuzzy.js +110 -0
  460. package/node_modules/@earendil-works/pi-tui/dist/fuzzy.js.map +1 -0
  461. package/node_modules/@earendil-works/pi-tui/dist/index.d.ts +23 -0
  462. package/node_modules/@earendil-works/pi-tui/dist/index.d.ts.map +1 -0
  463. package/node_modules/@earendil-works/pi-tui/dist/index.js +32 -0
  464. package/node_modules/@earendil-works/pi-tui/dist/index.js.map +1 -0
  465. package/node_modules/@earendil-works/pi-tui/dist/keybindings.d.ts +193 -0
  466. package/node_modules/@earendil-works/pi-tui/dist/keybindings.d.ts.map +1 -0
  467. package/node_modules/@earendil-works/pi-tui/dist/keybindings.js +174 -0
  468. package/node_modules/@earendil-works/pi-tui/dist/keybindings.js.map +1 -0
  469. package/node_modules/@earendil-works/pi-tui/dist/keys.d.ts +184 -0
  470. package/node_modules/@earendil-works/pi-tui/dist/keys.d.ts.map +1 -0
  471. package/node_modules/@earendil-works/pi-tui/dist/keys.js +1173 -0
  472. package/node_modules/@earendil-works/pi-tui/dist/keys.js.map +1 -0
  473. package/node_modules/@earendil-works/pi-tui/dist/kill-ring.d.ts +28 -0
  474. package/node_modules/@earendil-works/pi-tui/dist/kill-ring.d.ts.map +1 -0
  475. package/node_modules/@earendil-works/pi-tui/dist/kill-ring.js +44 -0
  476. package/node_modules/@earendil-works/pi-tui/dist/kill-ring.js.map +1 -0
  477. package/node_modules/@earendil-works/pi-tui/dist/stdin-buffer.d.ts +50 -0
  478. package/node_modules/@earendil-works/pi-tui/dist/stdin-buffer.d.ts.map +1 -0
  479. package/node_modules/@earendil-works/pi-tui/dist/stdin-buffer.js +361 -0
  480. package/node_modules/@earendil-works/pi-tui/dist/stdin-buffer.js.map +1 -0
  481. package/node_modules/@earendil-works/pi-tui/dist/terminal-image.d.ts +90 -0
  482. package/node_modules/@earendil-works/pi-tui/dist/terminal-image.d.ts.map +1 -0
  483. package/node_modules/@earendil-works/pi-tui/dist/terminal-image.js +336 -0
  484. package/node_modules/@earendil-works/pi-tui/dist/terminal-image.js.map +1 -0
  485. package/node_modules/@earendil-works/pi-tui/dist/terminal.d.ts +88 -0
  486. package/node_modules/@earendil-works/pi-tui/dist/terminal.d.ts.map +1 -0
  487. package/node_modules/@earendil-works/pi-tui/dist/terminal.js +329 -0
  488. package/node_modules/@earendil-works/pi-tui/dist/terminal.js.map +1 -0
  489. package/node_modules/@earendil-works/pi-tui/dist/tui.d.ts +231 -0
  490. package/node_modules/@earendil-works/pi-tui/dist/tui.d.ts.map +1 -0
  491. package/node_modules/@earendil-works/pi-tui/dist/tui.js +1230 -0
  492. package/node_modules/@earendil-works/pi-tui/dist/tui.js.map +1 -0
  493. package/node_modules/@earendil-works/pi-tui/dist/undo-stack.d.ts +17 -0
  494. package/node_modules/@earendil-works/pi-tui/dist/undo-stack.d.ts.map +1 -0
  495. package/node_modules/@earendil-works/pi-tui/dist/undo-stack.js +25 -0
  496. package/node_modules/@earendil-works/pi-tui/dist/undo-stack.js.map +1 -0
  497. package/node_modules/@earendil-works/pi-tui/dist/utils.d.ts +79 -0
  498. package/node_modules/@earendil-works/pi-tui/dist/utils.d.ts.map +1 -0
  499. package/node_modules/@earendil-works/pi-tui/dist/utils.js +1031 -0
  500. package/node_modules/@earendil-works/pi-tui/dist/utils.js.map +1 -0
  501. package/node_modules/@earendil-works/pi-tui/package.json +48 -0
  502. package/node_modules/@smithy/node-http-handler/LICENSE +201 -0
  503. package/node_modules/@smithy/node-http-handler/README.md +9 -0
  504. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +724 -0
  505. package/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
  506. package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
  507. package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
  508. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +216 -0
  509. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +87 -0
  510. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
  511. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +170 -0
  512. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +21 -0
  513. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +88 -0
  514. package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
  515. package/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
  516. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
  517. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
  518. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
  519. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
  520. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +21 -0
  521. package/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
  522. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +56 -0
  523. package/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
  524. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
  525. package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
  526. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +46 -0
  527. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +24 -0
  528. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +12 -0
  529. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +63 -0
  530. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +13 -0
  531. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
  532. package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
  533. package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
  534. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
  535. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
  536. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
  537. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +6 -0
  538. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
  539. package/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +8 -0
  540. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
  541. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
  542. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
  543. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +46 -0
  544. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +24 -0
  545. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +12 -0
  546. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +63 -0
  547. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
  548. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
  549. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
  550. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
  551. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
  552. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
  553. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +5 -0
  554. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +6 -0
  555. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
  556. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +8 -0
  557. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +11 -0
  558. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +11 -0
  559. package/node_modules/@smithy/node-http-handler/package.json +68 -0
  560. package/node_modules/@smithy/types/LICENSE +201 -0
  561. package/node_modules/@smithy/types/README.md +115 -0
  562. package/node_modules/@smithy/types/dist-cjs/index.js +91 -0
  563. package/node_modules/@smithy/types/dist-es/abort-handler.js +1 -0
  564. package/node_modules/@smithy/types/dist-es/abort.js +1 -0
  565. package/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
  566. package/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
  567. package/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
  568. package/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
  569. package/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
  570. package/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
  571. package/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
  572. package/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
  573. package/node_modules/@smithy/types/dist-es/checksum.js +1 -0
  574. package/node_modules/@smithy/types/dist-es/client.js +1 -0
  575. package/node_modules/@smithy/types/dist-es/command.js +1 -0
  576. package/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
  577. package/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
  578. package/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
  579. package/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
  580. package/node_modules/@smithy/types/dist-es/crypto.js +1 -0
  581. package/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
  582. package/node_modules/@smithy/types/dist-es/encode.js +1 -0
  583. package/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
  584. package/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
  585. package/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
  586. package/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
  587. package/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
  588. package/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
  589. package/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
  590. package/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
  591. package/node_modules/@smithy/types/dist-es/extensions/checksum.js +38 -0
  592. package/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +7 -0
  593. package/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
  594. package/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
  595. package/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
  596. package/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
  597. package/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
  598. package/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
  599. package/node_modules/@smithy/types/dist-es/http.js +5 -0
  600. package/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
  601. package/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
  602. package/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
  603. package/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
  604. package/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
  605. package/node_modules/@smithy/types/dist-es/index.js +42 -0
  606. package/node_modules/@smithy/types/dist-es/logger.js +1 -0
  607. package/node_modules/@smithy/types/dist-es/middleware.js +1 -0
  608. package/node_modules/@smithy/types/dist-es/pagination.js +1 -0
  609. package/node_modules/@smithy/types/dist-es/profile.js +6 -0
  610. package/node_modules/@smithy/types/dist-es/response.js +1 -0
  611. package/node_modules/@smithy/types/dist-es/retry.js +1 -0
  612. package/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
  613. package/node_modules/@smithy/types/dist-es/schema/schema.js +1 -0
  614. package/node_modules/@smithy/types/dist-es/schema/sentinels.js +1 -0
  615. package/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
  616. package/node_modules/@smithy/types/dist-es/schema/traits.js +1 -0
  617. package/node_modules/@smithy/types/dist-es/serde.js +1 -0
  618. package/node_modules/@smithy/types/dist-es/shapes.js +1 -0
  619. package/node_modules/@smithy/types/dist-es/signature.js +1 -0
  620. package/node_modules/@smithy/types/dist-es/stream.js +1 -0
  621. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
  622. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
  623. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
  624. package/node_modules/@smithy/types/dist-es/transfer.js +6 -0
  625. package/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
  626. package/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
  627. package/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
  628. package/node_modules/@smithy/types/dist-es/transform/mutable.js +1 -0
  629. package/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
  630. package/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
  631. package/node_modules/@smithy/types/dist-es/uri.js +1 -0
  632. package/node_modules/@smithy/types/dist-es/util.js +1 -0
  633. package/node_modules/@smithy/types/dist-es/waiter.js +1 -0
  634. package/node_modules/@smithy/types/dist-types/abort-handler.d.ts +7 -0
  635. package/node_modules/@smithy/types/dist-types/abort.d.ts +50 -0
  636. package/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
  637. package/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
  638. package/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
  639. package/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
  640. package/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
  641. package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
  642. package/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
  643. package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +40 -0
  644. package/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
  645. package/node_modules/@smithy/types/dist-types/client.d.ts +57 -0
  646. package/node_modules/@smithy/types/dist-types/command.d.ts +28 -0
  647. package/node_modules/@smithy/types/dist-types/connection/config.d.ts +10 -0
  648. package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
  649. package/node_modules/@smithy/types/dist-types/connection/manager.d.ts +34 -0
  650. package/node_modules/@smithy/types/dist-types/connection/pool.d.ts +32 -0
  651. package/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
  652. package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
  653. package/node_modules/@smithy/types/dist-types/encode.d.ts +31 -0
  654. package/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
  655. package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +27 -0
  656. package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +10 -0
  657. package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +28 -0
  658. package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +16 -0
  659. package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
  660. package/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +55 -0
  661. package/node_modules/@smithy/types/dist-types/eventStream.d.ts +137 -0
  662. package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +58 -0
  663. package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
  664. package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
  665. package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
  666. package/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
  667. package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
  668. package/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
  669. package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +128 -0
  670. package/node_modules/@smithy/types/dist-types/http.d.ts +112 -0
  671. package/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
  672. package/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +31 -0
  673. package/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
  674. package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
  675. package/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
  676. package/node_modules/@smithy/types/dist-types/index.d.ts +42 -0
  677. package/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
  678. package/node_modules/@smithy/types/dist-types/middleware.d.ts +534 -0
  679. package/node_modules/@smithy/types/dist-types/pagination.d.ts +33 -0
  680. package/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
  681. package/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
  682. package/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
  683. package/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +136 -0
  684. package/node_modules/@smithy/types/dist-types/schema/schema.d.ts +230 -0
  685. package/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +65 -0
  686. package/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +82 -0
  687. package/node_modules/@smithy/types/dist-types/schema/traits.d.ts +46 -0
  688. package/node_modules/@smithy/types/dist-types/serde.d.ts +114 -0
  689. package/node_modules/@smithy/types/dist-types/shapes.d.ts +82 -0
  690. package/node_modules/@smithy/types/dist-types/signature.d.ts +155 -0
  691. package/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
  692. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +32 -0
  693. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
  694. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
  695. package/node_modules/@smithy/types/dist-types/transfer.d.ts +41 -0
  696. package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
  697. package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +77 -0
  698. package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
  699. package/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +6 -0
  700. package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +68 -0
  701. package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
  702. package/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
  703. package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +50 -0
  704. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
  705. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
  706. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
  707. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
  708. package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
  709. package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
  710. package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
  711. package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
  712. package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
  713. package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
  714. package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
  715. package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +10 -0
  716. package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
  717. package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
  718. package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
  719. package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
  720. package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
  721. package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
  722. package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
  723. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
  724. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
  725. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
  726. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
  727. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
  728. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
  729. package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
  730. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
  731. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
  732. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
  733. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
  734. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
  735. package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
  736. package/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
  737. package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
  738. package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +112 -0
  739. package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
  740. package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
  741. package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
  742. package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
  743. package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
  744. package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +42 -0
  745. package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
  746. package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +534 -0
  747. package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
  748. package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
  749. package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
  750. package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
  751. package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +142 -0
  752. package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +245 -0
  753. package/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
  754. package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +101 -0
  755. package/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
  756. package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
  757. package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +82 -0
  758. package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +155 -0
  759. package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
  760. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +32 -0
  761. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
  762. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
  763. package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +41 -0
  764. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
  765. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +81 -0
  766. package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
  767. package/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
  768. package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
  769. package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
  770. package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
  771. package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
  772. package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
  773. package/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
  774. package/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
  775. package/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
  776. package/node_modules/@smithy/types/package.json +61 -0
  777. package/node_modules/marked/LICENSE.md +44 -0
  778. package/node_modules/marked/README.md +106 -0
  779. package/node_modules/marked/bin/main.js +282 -0
  780. package/node_modules/marked/bin/marked.js +15 -0
  781. package/node_modules/marked/lib/marked.cjs +2211 -0
  782. package/node_modules/marked/lib/marked.cjs.map +7 -0
  783. package/node_modules/marked/lib/marked.d.cts +728 -0
  784. package/node_modules/marked/lib/marked.d.ts +728 -0
  785. package/node_modules/marked/lib/marked.esm.js +2189 -0
  786. package/node_modules/marked/lib/marked.esm.js.map +7 -0
  787. package/node_modules/marked/lib/marked.umd.js +2213 -0
  788. package/node_modules/marked/lib/marked.umd.js.map +7 -0
  789. package/node_modules/marked/man/marked.1 +111 -0
  790. package/node_modules/marked/man/marked.1.md +92 -0
  791. package/node_modules/marked/marked.min.js +69 -0
  792. package/node_modules/marked/package.json +111 -0
  793. package/npm-shrinkwrap.json +1841 -0
  794. package/package.json +49 -31
@@ -0,0 +1,1841 @@
1
+ {
2
+ "name": "@code-yeongyu/senpi",
3
+ "version": "2026.5.21",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "@code-yeongyu/senpi",
9
+ "version": "2026.5.21",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "@anthropic-ai/sdk": "0.91.1",
13
+ "@aws-sdk/client-bedrock-runtime": "3.1048.0",
14
+ "@earendil-works/pi-agent-core": "^2026.5.21",
15
+ "@earendil-works/pi-ai": "^2026.5.21",
16
+ "@earendil-works/pi-tui": "^2026.5.21",
17
+ "@mistralai/mistralai": "2.2.1",
18
+ "@silvia-odwyer/photon-node": "0.3.4",
19
+ "@smithy/node-http-handler": "4.4.0",
20
+ "@smithy/types": "4.8.0",
21
+ "chalk": "5.6.2",
22
+ "cross-spawn": "7.0.6",
23
+ "diff": "8.0.4",
24
+ "get-east-asian-width": "1.6.0",
25
+ "glob": "13.0.6",
26
+ "highlight.js": "10.7.3",
27
+ "hosted-git-info": "9.0.3",
28
+ "http-proxy-agent": "7.0.2",
29
+ "https-proxy-agent": "7.0.6",
30
+ "ignore": "7.0.5",
31
+ "jiti": "2.7.0",
32
+ "marked": "15.0.12",
33
+ "minimatch": "10.2.5",
34
+ "openai": "6.26.0",
35
+ "partial-json": "0.1.7",
36
+ "proper-lockfile": "4.1.2",
37
+ "proxy-from-env": "1.1.0",
38
+ "typebox": "1.1.38",
39
+ "undici": "8.3.0",
40
+ "yaml": "2.9.0"
41
+ },
42
+ "optionalDependencies": {
43
+ "@mariozechner/clipboard": "0.3.6"
44
+ },
45
+ "bin": {
46
+ "senpi": "dist/cli.js"
47
+ },
48
+ "engines": {
49
+ "node": ">=24.0.0"
50
+ }
51
+ },
52
+ "node_modules/@anthropic-ai/sdk": {
53
+ "version": "0.91.1",
54
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.91.1.tgz",
55
+ "integrity": "sha512-LAmu761tSN9r66ixvmciswUj/ZC+1Q4iAfpedTfSVLeswRwnY3n2Nb6Tsk+cLPP28aLOPWeMgIuTuCcMC6W/iw==",
56
+ "license": "MIT",
57
+ "dependencies": {
58
+ "json-schema-to-ts": "^3.1.1"
59
+ },
60
+ "peerDependencies": {
61
+ "zod": "^3.25.0 || ^4.0.0"
62
+ },
63
+ "peerDependenciesMeta": {
64
+ "zod": {
65
+ "optional": true
66
+ }
67
+ },
68
+ "bin": {
69
+ "anthropic-ai-sdk": "bin/cli"
70
+ }
71
+ },
72
+ "node_modules/@aws-crypto/crc32": {
73
+ "version": "5.2.0",
74
+ "resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-5.2.0.tgz",
75
+ "integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
76
+ "license": "Apache-2.0",
77
+ "dependencies": {
78
+ "@aws-crypto/util": "^5.2.0",
79
+ "@aws-sdk/types": "^3.222.0",
80
+ "tslib": "^2.6.2"
81
+ },
82
+ "engines": {
83
+ "node": ">=16.0.0"
84
+ }
85
+ },
86
+ "node_modules/@aws-crypto/sha256-browser": {
87
+ "version": "5.2.0",
88
+ "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz",
89
+ "integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
90
+ "license": "Apache-2.0",
91
+ "dependencies": {
92
+ "@aws-crypto/sha256-js": "^5.2.0",
93
+ "@aws-crypto/supports-web-crypto": "^5.2.0",
94
+ "@aws-crypto/util": "^5.2.0",
95
+ "@aws-sdk/types": "^3.222.0",
96
+ "@aws-sdk/util-locate-window": "^3.0.0",
97
+ "@smithy/util-utf8": "^2.0.0",
98
+ "tslib": "^2.6.2"
99
+ }
100
+ },
101
+ "node_modules/@aws-crypto/sha256-js": {
102
+ "version": "5.2.0",
103
+ "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz",
104
+ "integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
105
+ "license": "Apache-2.0",
106
+ "dependencies": {
107
+ "@aws-crypto/util": "^5.2.0",
108
+ "@aws-sdk/types": "^3.222.0",
109
+ "tslib": "^2.6.2"
110
+ },
111
+ "engines": {
112
+ "node": ">=16.0.0"
113
+ }
114
+ },
115
+ "node_modules/@aws-crypto/supports-web-crypto": {
116
+ "version": "5.2.0",
117
+ "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz",
118
+ "integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
119
+ "license": "Apache-2.0",
120
+ "dependencies": {
121
+ "tslib": "^2.6.2"
122
+ }
123
+ },
124
+ "node_modules/@aws-crypto/util": {
125
+ "version": "5.2.0",
126
+ "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz",
127
+ "integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
128
+ "license": "Apache-2.0",
129
+ "dependencies": {
130
+ "@aws-sdk/types": "^3.222.0",
131
+ "@smithy/util-utf8": "^2.0.0",
132
+ "tslib": "^2.6.2"
133
+ }
134
+ },
135
+ "node_modules/@aws-sdk/client-bedrock-runtime": {
136
+ "version": "3.1048.0",
137
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-bedrock-runtime/-/client-bedrock-runtime-3.1048.0.tgz",
138
+ "integrity": "sha512-u+NT61JZEkRFtpL0CAw1N1dwxnaLgwVXQl/zjJxTGgLyS/jTIdg2SdoEoCTHxgDyCnqa1HEi9QOoE9/pYRNpOQ==",
139
+ "license": "Apache-2.0",
140
+ "dependencies": {
141
+ "@aws-crypto/sha256-browser": "5.2.0",
142
+ "@aws-crypto/sha256-js": "5.2.0",
143
+ "@aws-sdk/core": "^3.974.11",
144
+ "@aws-sdk/credential-provider-node": "^3.972.42",
145
+ "@aws-sdk/eventstream-handler-node": "^3.972.16",
146
+ "@aws-sdk/middleware-eventstream": "^3.972.12",
147
+ "@aws-sdk/middleware-websocket": "^3.972.19",
148
+ "@aws-sdk/token-providers": "3.1048.0",
149
+ "@aws-sdk/types": "^3.973.8",
150
+ "@smithy/core": "^3.24.2",
151
+ "@smithy/fetch-http-handler": "^5.4.2",
152
+ "@smithy/node-http-handler": "^4.7.2",
153
+ "@smithy/types": "^4.14.1",
154
+ "tslib": "^2.6.2"
155
+ },
156
+ "engines": {
157
+ "node": ">=20.0.0"
158
+ }
159
+ },
160
+ "node_modules/@aws-sdk/core": {
161
+ "version": "3.974.11",
162
+ "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.974.11.tgz",
163
+ "integrity": "sha512-QpnINq5FZH6EOaDEkmHdT7eUunbvD27pDNQypaWjFyYz7Zl1q3UCMQErBZxpmfGfI7MvI2TlK8KTkgNpv8b1ug==",
164
+ "license": "Apache-2.0",
165
+ "dependencies": {
166
+ "@aws-sdk/types": "^3.973.8",
167
+ "@aws-sdk/xml-builder": "^3.972.24",
168
+ "@aws/lambda-invoke-store": "^0.2.2",
169
+ "@smithy/core": "^3.24.2",
170
+ "@smithy/signature-v4": "^5.4.2",
171
+ "@smithy/types": "^4.14.1",
172
+ "bowser": "^2.11.0",
173
+ "tslib": "^2.6.2"
174
+ },
175
+ "engines": {
176
+ "node": ">=20.0.0"
177
+ }
178
+ },
179
+ "node_modules/@aws-sdk/credential-provider-env": {
180
+ "version": "3.972.37",
181
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.37.tgz",
182
+ "integrity": "sha512-/jpPvEh6f7ntmIzf7dNxoNX6Q8vt8UpesCjbW6mFfk4V1NW6bIy9qxcQ6WbA8As5yQhsZOe+xeNd4xHX8kdY2Q==",
183
+ "license": "Apache-2.0",
184
+ "dependencies": {
185
+ "@aws-sdk/core": "^3.974.11",
186
+ "@aws-sdk/types": "^3.973.8",
187
+ "@smithy/core": "^3.24.2",
188
+ "@smithy/types": "^4.14.1",
189
+ "tslib": "^2.6.2"
190
+ },
191
+ "engines": {
192
+ "node": ">=20.0.0"
193
+ }
194
+ },
195
+ "node_modules/@aws-sdk/credential-provider-http": {
196
+ "version": "3.972.39",
197
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.39.tgz",
198
+ "integrity": "sha512-pIgTpisWyWg7X1bUbzSjuUYosYTD0Ghz2M0hkSTmb3a6i3qV3uU+NYJPI/E2XSC0HcsZh5rsLPzeXrkb2DS0Cg==",
199
+ "license": "Apache-2.0",
200
+ "dependencies": {
201
+ "@aws-sdk/core": "^3.974.11",
202
+ "@aws-sdk/types": "^3.973.8",
203
+ "@smithy/core": "^3.24.2",
204
+ "@smithy/fetch-http-handler": "^5.4.2",
205
+ "@smithy/node-http-handler": "^4.7.2",
206
+ "@smithy/types": "^4.14.1",
207
+ "tslib": "^2.6.2"
208
+ },
209
+ "engines": {
210
+ "node": ">=20.0.0"
211
+ }
212
+ },
213
+ "node_modules/@aws-sdk/credential-provider-ini": {
214
+ "version": "3.972.41",
215
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.972.41.tgz",
216
+ "integrity": "sha512-u2tyjaxJJzW8UtW4SM1ZcPMDwO6y+kV+llvou+Adts0FAKyzes5jG4izQN+KX3yE8ZROpS5y1LJ//xL2iSf76w==",
217
+ "license": "Apache-2.0",
218
+ "dependencies": {
219
+ "@aws-sdk/core": "^3.974.11",
220
+ "@aws-sdk/credential-provider-env": "^3.972.37",
221
+ "@aws-sdk/credential-provider-http": "^3.972.39",
222
+ "@aws-sdk/credential-provider-login": "^3.972.41",
223
+ "@aws-sdk/credential-provider-process": "^3.972.37",
224
+ "@aws-sdk/credential-provider-sso": "^3.972.41",
225
+ "@aws-sdk/credential-provider-web-identity": "^3.972.41",
226
+ "@aws-sdk/nested-clients": "^3.997.9",
227
+ "@aws-sdk/types": "^3.973.8",
228
+ "@smithy/core": "^3.24.2",
229
+ "@smithy/credential-provider-imds": "^4.3.2",
230
+ "@smithy/types": "^4.14.1",
231
+ "tslib": "^2.6.2"
232
+ },
233
+ "engines": {
234
+ "node": ">=20.0.0"
235
+ }
236
+ },
237
+ "node_modules/@aws-sdk/credential-provider-login": {
238
+ "version": "3.972.41",
239
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.41.tgz",
240
+ "integrity": "sha512-0LBitxXiAiaE5nlFPfpNIww/8FRY/I7WIndWsc9GmNFOM7cE1wNpVNQEGEk9Outg5l8xl+3vybxFyUy4l9q/LQ==",
241
+ "license": "Apache-2.0",
242
+ "dependencies": {
243
+ "@aws-sdk/core": "^3.974.11",
244
+ "@aws-sdk/nested-clients": "^3.997.9",
245
+ "@aws-sdk/types": "^3.973.8",
246
+ "@smithy/core": "^3.24.2",
247
+ "@smithy/types": "^4.14.1",
248
+ "tslib": "^2.6.2"
249
+ },
250
+ "engines": {
251
+ "node": ">=20.0.0"
252
+ }
253
+ },
254
+ "node_modules/@aws-sdk/credential-provider-node": {
255
+ "version": "3.972.42",
256
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.42.tgz",
257
+ "integrity": "sha512-D4oon2zbqqsWOJUM99Gm3/ZyJ0IJvTXVN3PyloGb3kQEyI36fjCZheZj422lAgTWWd6TSHgiImLt3RIaLdv3dQ==",
258
+ "license": "Apache-2.0",
259
+ "dependencies": {
260
+ "@aws-sdk/credential-provider-env": "^3.972.37",
261
+ "@aws-sdk/credential-provider-http": "^3.972.39",
262
+ "@aws-sdk/credential-provider-ini": "^3.972.41",
263
+ "@aws-sdk/credential-provider-process": "^3.972.37",
264
+ "@aws-sdk/credential-provider-sso": "^3.972.41",
265
+ "@aws-sdk/credential-provider-web-identity": "^3.972.41",
266
+ "@aws-sdk/types": "^3.973.8",
267
+ "@smithy/core": "^3.24.2",
268
+ "@smithy/credential-provider-imds": "^4.3.2",
269
+ "@smithy/types": "^4.14.1",
270
+ "tslib": "^2.6.2"
271
+ },
272
+ "engines": {
273
+ "node": ">=20.0.0"
274
+ }
275
+ },
276
+ "node_modules/@aws-sdk/credential-provider-process": {
277
+ "version": "3.972.37",
278
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.37.tgz",
279
+ "integrity": "sha512-7nVaHBUaWIddASYfVaA9O4D5ZVjewU3sCol9WqZPGfW0nR+0WqE0xHZnD/U2L33PlOB8KNXGKZ6wOES/QijKzg==",
280
+ "license": "Apache-2.0",
281
+ "dependencies": {
282
+ "@aws-sdk/core": "^3.974.11",
283
+ "@aws-sdk/types": "^3.973.8",
284
+ "@smithy/core": "^3.24.2",
285
+ "@smithy/types": "^4.14.1",
286
+ "tslib": "^2.6.2"
287
+ },
288
+ "engines": {
289
+ "node": ">=20.0.0"
290
+ }
291
+ },
292
+ "node_modules/@aws-sdk/credential-provider-sso": {
293
+ "version": "3.972.41",
294
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.972.41.tgz",
295
+ "integrity": "sha512-IOWAWEHe5LkjSKkkUUX9ciV6Y1scHTsnfEkdt5yyC4Slrc7AGbkLPrpntjqh18ksJAMOaVhoBsO8p2WyTcY2wQ==",
296
+ "license": "Apache-2.0",
297
+ "dependencies": {
298
+ "@aws-sdk/core": "^3.974.11",
299
+ "@aws-sdk/nested-clients": "^3.997.9",
300
+ "@aws-sdk/token-providers": "3.1048.0",
301
+ "@aws-sdk/types": "^3.973.8",
302
+ "@smithy/core": "^3.24.2",
303
+ "@smithy/types": "^4.14.1",
304
+ "tslib": "^2.6.2"
305
+ },
306
+ "engines": {
307
+ "node": ">=20.0.0"
308
+ }
309
+ },
310
+ "node_modules/@aws-sdk/credential-provider-web-identity": {
311
+ "version": "3.972.41",
312
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.41.tgz",
313
+ "integrity": "sha512-mbACk9Yypa8nm4iGZLs0PofOXEcTDOUw6wDnsPXNDNSd2WNXs1tSo+6nc/fh0jLYdfVZThhBL98PHW4aXFsG5A==",
314
+ "license": "Apache-2.0",
315
+ "dependencies": {
316
+ "@aws-sdk/core": "^3.974.11",
317
+ "@aws-sdk/nested-clients": "^3.997.9",
318
+ "@aws-sdk/types": "^3.973.8",
319
+ "@smithy/core": "^3.24.2",
320
+ "@smithy/types": "^4.14.1",
321
+ "tslib": "^2.6.2"
322
+ },
323
+ "engines": {
324
+ "node": ">=20.0.0"
325
+ }
326
+ },
327
+ "node_modules/@aws-sdk/eventstream-handler-node": {
328
+ "version": "3.972.16",
329
+ "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-handler-node/-/eventstream-handler-node-3.972.16.tgz",
330
+ "integrity": "sha512-yedpPgKftqjU5SlPFHfqWpOw6xSCRieWRG1euWOlXn4WJxt2VX92VprCa2PpSOXjVCAeK6dTjW9eJRXVig9yGA==",
331
+ "license": "Apache-2.0",
332
+ "dependencies": {
333
+ "@aws-sdk/types": "^3.973.8",
334
+ "@smithy/core": "^3.24.2",
335
+ "@smithy/types": "^4.14.1",
336
+ "tslib": "^2.6.2"
337
+ },
338
+ "engines": {
339
+ "node": ">=20.0.0"
340
+ }
341
+ },
342
+ "node_modules/@aws-sdk/middleware-eventstream": {
343
+ "version": "3.972.12",
344
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-eventstream/-/middleware-eventstream-3.972.12.tgz",
345
+ "integrity": "sha512-tHTHHCHNrq6XklQvlzHBDJG4Iuhh7NVPRdtmvP+nHFA+5sxPlIDzlAHHgfoYHGvT3NXP1yVP/L5c3opUn6T3Qg==",
346
+ "license": "Apache-2.0",
347
+ "dependencies": {
348
+ "@aws-sdk/types": "^3.973.8",
349
+ "@smithy/core": "^3.24.2",
350
+ "@smithy/types": "^4.14.1",
351
+ "tslib": "^2.6.2"
352
+ },
353
+ "engines": {
354
+ "node": ">=20.0.0"
355
+ }
356
+ },
357
+ "node_modules/@aws-sdk/middleware-websocket": {
358
+ "version": "3.972.19",
359
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-websocket/-/middleware-websocket-3.972.19.tgz",
360
+ "integrity": "sha512-mkEhOGYozqKQkbFaVrjwr0faiwwZza1v5/jSY6Tucm3bD+uKTazIUH/4Yo6aMnQD2ua2W9cMP6s8mvwTcjtqHw==",
361
+ "license": "Apache-2.0",
362
+ "dependencies": {
363
+ "@aws-sdk/core": "^3.974.11",
364
+ "@aws-sdk/types": "^3.973.8",
365
+ "@smithy/core": "^3.24.2",
366
+ "@smithy/fetch-http-handler": "^5.4.2",
367
+ "@smithy/signature-v4": "^5.4.2",
368
+ "@smithy/types": "^4.14.1",
369
+ "tslib": "^2.6.2"
370
+ },
371
+ "engines": {
372
+ "node": ">= 14.0.0"
373
+ }
374
+ },
375
+ "node_modules/@aws-sdk/nested-clients": {
376
+ "version": "3.997.9",
377
+ "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.997.9.tgz",
378
+ "integrity": "sha512-jPR3rnmRI4hWYyzfmTGBr7NblMp8QYYeflHXba1H6+7CGrWVqWKQzaXFQ4qbExqPRsXN3T3L3JxFhr6aouXUGQ==",
379
+ "license": "Apache-2.0",
380
+ "dependencies": {
381
+ "@aws-crypto/sha256-browser": "5.2.0",
382
+ "@aws-crypto/sha256-js": "5.2.0",
383
+ "@aws-sdk/core": "^3.974.11",
384
+ "@aws-sdk/signature-v4-multi-region": "^3.996.27",
385
+ "@aws-sdk/types": "^3.973.8",
386
+ "@smithy/core": "^3.24.2",
387
+ "@smithy/fetch-http-handler": "^5.4.2",
388
+ "@smithy/node-http-handler": "^4.7.2",
389
+ "@smithy/types": "^4.14.1",
390
+ "tslib": "^2.6.2"
391
+ },
392
+ "engines": {
393
+ "node": ">=20.0.0"
394
+ }
395
+ },
396
+ "node_modules/@aws-sdk/signature-v4-multi-region": {
397
+ "version": "3.996.27",
398
+ "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.996.27.tgz",
399
+ "integrity": "sha512-0Phbz4t6HI3D3skxvG2uI+VWU034/nSIw1T8d+FPzzQG9EQTrw94o9mOKO2Gv3n3Oc8P7JD7RAUxkoneLWv5Eg==",
400
+ "license": "Apache-2.0",
401
+ "dependencies": {
402
+ "@aws-sdk/types": "^3.973.8",
403
+ "@smithy/core": "^3.24.2",
404
+ "@smithy/signature-v4": "^5.4.2",
405
+ "@smithy/types": "^4.14.1",
406
+ "tslib": "^2.6.2"
407
+ },
408
+ "engines": {
409
+ "node": ">=20.0.0"
410
+ }
411
+ },
412
+ "node_modules/@aws-sdk/token-providers": {
413
+ "version": "3.1048.0",
414
+ "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.1048.0.tgz",
415
+ "integrity": "sha512-k0y/GcuesuSfWyUM0WamrGyeZmltRYaPbHO82UDA6mZ/doB+FOHKutikPAtSXMn/hDz970cF+iRuuiYO9VEbAA==",
416
+ "license": "Apache-2.0",
417
+ "dependencies": {
418
+ "@aws-sdk/core": "^3.974.11",
419
+ "@aws-sdk/nested-clients": "^3.997.9",
420
+ "@aws-sdk/types": "^3.973.8",
421
+ "@smithy/core": "^3.24.2",
422
+ "@smithy/types": "^4.14.1",
423
+ "tslib": "^2.6.2"
424
+ },
425
+ "engines": {
426
+ "node": ">=20.0.0"
427
+ }
428
+ },
429
+ "node_modules/@aws-sdk/types": {
430
+ "version": "3.973.8",
431
+ "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.8.tgz",
432
+ "integrity": "sha512-gjlAdtHMbtR9X5iIhVUvbVcy55KnznpC6bkDUWW9z915bi0ckdUr5cjf16Kp6xq0bP5HBD2xzgbL9F9Quv5vUw==",
433
+ "license": "Apache-2.0",
434
+ "dependencies": {
435
+ "@smithy/types": "^4.14.1",
436
+ "tslib": "^2.6.2"
437
+ },
438
+ "engines": {
439
+ "node": ">=20.0.0"
440
+ }
441
+ },
442
+ "node_modules/@aws-sdk/util-locate-window": {
443
+ "version": "3.965.5",
444
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.965.5.tgz",
445
+ "integrity": "sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ==",
446
+ "license": "Apache-2.0",
447
+ "dependencies": {
448
+ "tslib": "^2.6.2"
449
+ },
450
+ "engines": {
451
+ "node": ">=20.0.0"
452
+ }
453
+ },
454
+ "node_modules/@aws-sdk/xml-builder": {
455
+ "version": "3.972.24",
456
+ "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.972.24.tgz",
457
+ "integrity": "sha512-V8z5YcDPfsvzrBlj0xR1vhRtocblhYbqdreCJB/voGd4Sr5zjNAeWxexbnqVtskTJe0vFb5KMqbSL++ePl+zRw==",
458
+ "license": "Apache-2.0",
459
+ "dependencies": {
460
+ "@nodable/entities": "2.1.0",
461
+ "@smithy/types": "^4.14.1",
462
+ "fast-xml-parser": "5.7.3",
463
+ "tslib": "^2.6.2"
464
+ },
465
+ "engines": {
466
+ "node": ">=20.0.0"
467
+ }
468
+ },
469
+ "node_modules/@aws/lambda-invoke-store": {
470
+ "version": "0.2.4",
471
+ "resolved": "https://registry.npmjs.org/@aws/lambda-invoke-store/-/lambda-invoke-store-0.2.4.tgz",
472
+ "integrity": "sha512-iY8yvjE0y651BixKNPgmv1WrQc+GZ142sb0z4gYnChDDY2YqI4P/jsSopBWrKfAt7LOJAkOXt7rC/hms+WclQQ==",
473
+ "license": "Apache-2.0",
474
+ "engines": {
475
+ "node": ">=18.0.0"
476
+ }
477
+ },
478
+ "node_modules/@babel/runtime": {
479
+ "version": "7.29.2",
480
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
481
+ "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
482
+ "license": "MIT",
483
+ "engines": {
484
+ "node": ">=6.9.0"
485
+ }
486
+ },
487
+ "node_modules/@earendil-works/pi-agent-core": {
488
+ "version": "2026.5.21",
489
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-agent-core/-/pi-agent-core-2026.5.21.tgz",
490
+ "license": "MIT",
491
+ "dependencies": {
492
+ "@earendil-works/pi-ai": "^2026.5.21",
493
+ "ignore": "7.0.5",
494
+ "typebox": "1.1.38",
495
+ "yaml": "2.9.0"
496
+ },
497
+ "engines": {
498
+ "node": ">=24.0.0"
499
+ }
500
+ },
501
+ "node_modules/@earendil-works/pi-ai": {
502
+ "version": "2026.5.21",
503
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-ai/-/pi-ai-2026.5.21.tgz",
504
+ "license": "MIT",
505
+ "dependencies": {
506
+ "@anthropic-ai/sdk": "0.91.1",
507
+ "@aws-sdk/client-bedrock-runtime": "3.1048.0",
508
+ "@google/genai": "1.52.0",
509
+ "@mistralai/mistralai": "2.2.1",
510
+ "@smithy/node-http-handler": "4.4.0",
511
+ "@smithy/types": "4.8.0",
512
+ "chalk": "5.6.2",
513
+ "http-proxy-agent": "7.0.2",
514
+ "https-proxy-agent": "7.0.6",
515
+ "openai": "6.26.0",
516
+ "partial-json": "0.1.7",
517
+ "yaml": "2.9.0",
518
+ "proxy-from-env": "1.1.0",
519
+ "typebox": "1.1.38"
520
+ },
521
+ "bin": {
522
+ "pi-ai": "./dist/cli.js"
523
+ },
524
+ "engines": {
525
+ "node": ">=24.0.0"
526
+ }
527
+ },
528
+ "node_modules/@earendil-works/pi-tui": {
529
+ "version": "2026.5.21",
530
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-tui/-/pi-tui-2026.5.21.tgz",
531
+ "license": "MIT",
532
+ "dependencies": {
533
+ "get-east-asian-width": "1.6.0",
534
+ "marked": "15.0.12"
535
+ },
536
+ "engines": {
537
+ "node": ">=24.0.0"
538
+ }
539
+ },
540
+ "node_modules/@google/genai": {
541
+ "version": "1.52.0",
542
+ "resolved": "https://registry.npmjs.org/@google/genai/-/genai-1.52.0.tgz",
543
+ "integrity": "sha512-gwSvbpiN/17O9TbsqSsE/OzZcpv5Fo4RQjdngGgogtuB9RsyJ8ZHhX5KjHj1bp5N9snN2eK8LDGXSaWW2hof8Q==",
544
+ "license": "Apache-2.0",
545
+ "dependencies": {
546
+ "google-auth-library": "^10.3.0",
547
+ "p-retry": "^4.6.2",
548
+ "protobufjs": "^7.5.4",
549
+ "ws": "^8.18.0"
550
+ },
551
+ "peerDependencies": {
552
+ "@modelcontextprotocol/sdk": "^1.25.2"
553
+ },
554
+ "peerDependenciesMeta": {
555
+ "@modelcontextprotocol/sdk": {
556
+ "optional": true
557
+ }
558
+ },
559
+ "engines": {
560
+ "node": ">=20.0.0"
561
+ },
562
+ "hasInstallScript": true
563
+ },
564
+ "node_modules/@mariozechner/clipboard": {
565
+ "version": "0.3.6",
566
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard/-/clipboard-0.3.6.tgz",
567
+ "integrity": "sha512-MXdtr+6+ntlIVHdrZYuZNQydu6o8yZswFJ2Ln81j2O/Y9B/LDHvEaIm95xWNPkjGTWriSOeLnQJRFs6dYb60bg==",
568
+ "license": "MIT",
569
+ "optionalDependencies": {
570
+ "@mariozechner/clipboard-darwin-arm64": "0.3.6",
571
+ "@mariozechner/clipboard-darwin-universal": "0.3.6",
572
+ "@mariozechner/clipboard-darwin-x64": "0.3.6",
573
+ "@mariozechner/clipboard-linux-arm64-gnu": "0.3.6",
574
+ "@mariozechner/clipboard-linux-arm64-musl": "0.3.6",
575
+ "@mariozechner/clipboard-linux-riscv64-gnu": "0.3.6",
576
+ "@mariozechner/clipboard-linux-x64-gnu": "0.3.6",
577
+ "@mariozechner/clipboard-linux-x64-musl": "0.3.6",
578
+ "@mariozechner/clipboard-win32-arm64-msvc": "0.3.6",
579
+ "@mariozechner/clipboard-win32-x64-msvc": "0.3.6"
580
+ },
581
+ "engines": {
582
+ "node": ">= 10"
583
+ },
584
+ "optional": true
585
+ },
586
+ "node_modules/@mariozechner/clipboard-darwin-arm64": {
587
+ "version": "0.3.6",
588
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-arm64/-/clipboard-darwin-arm64-0.3.6.tgz",
589
+ "integrity": "sha512-HjaisYCAbHi/1+N1yDAQHc8ZXGffufIUT5NSOSVR3f3AuMDusxTtnbK8tZ7JFDkShua1oNGZoNwQHsc8MPtE0Q==",
590
+ "license": "MIT",
591
+ "engines": {
592
+ "node": ">= 10"
593
+ },
594
+ "os": [
595
+ "darwin"
596
+ ],
597
+ "cpu": [
598
+ "arm64"
599
+ ],
600
+ "optional": true
601
+ },
602
+ "node_modules/@mariozechner/clipboard-darwin-universal": {
603
+ "version": "0.3.6",
604
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-universal/-/clipboard-darwin-universal-0.3.6.tgz",
605
+ "integrity": "sha512-8BWtPjOtJOJoykml3w0fx0zRrfWP31mXrJwfoA7xzNprkZw1uolCNfgmjDiVBseoKjp16EGITz7bN+61qn8dWA==",
606
+ "license": "MIT",
607
+ "engines": {
608
+ "node": ">= 10"
609
+ },
610
+ "os": [
611
+ "darwin"
612
+ ],
613
+ "optional": true
614
+ },
615
+ "node_modules/@mariozechner/clipboard-darwin-x64": {
616
+ "version": "0.3.6",
617
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-x64/-/clipboard-darwin-x64-0.3.6.tgz",
618
+ "integrity": "sha512-p9syiZD1kU4I+1ya7f7g+zD1GiUvR8fdlRlNmgsZNWlyjtc8rlV2EjTLd/35x1LsdBq020GVvtzp0ZmPgBI09Q==",
619
+ "license": "MIT",
620
+ "engines": {
621
+ "node": ">= 10"
622
+ },
623
+ "os": [
624
+ "darwin"
625
+ ],
626
+ "cpu": [
627
+ "x64"
628
+ ],
629
+ "optional": true
630
+ },
631
+ "node_modules/@mariozechner/clipboard-linux-arm64-gnu": {
632
+ "version": "0.3.6",
633
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-arm64-gnu/-/clipboard-linux-arm64-gnu-0.3.6.tgz",
634
+ "integrity": "sha512-5JFf5rGofrm+V29HNF+wLthXphHdQpMbKDUYJ5tML6/Z5DLlLOV/9Ak4kDPtYyZ+Dzf+kAusE0VsFg4+tfP1IA==",
635
+ "license": "MIT",
636
+ "engines": {
637
+ "node": ">= 10"
638
+ },
639
+ "os": [
640
+ "linux"
641
+ ],
642
+ "cpu": [
643
+ "arm64"
644
+ ],
645
+ "libc": [
646
+ "glibc"
647
+ ],
648
+ "optional": true
649
+ },
650
+ "node_modules/@mariozechner/clipboard-linux-arm64-musl": {
651
+ "version": "0.3.6",
652
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-arm64-musl/-/clipboard-linux-arm64-musl-0.3.6.tgz",
653
+ "integrity": "sha512-JlVjxxw0GbGC0djXYWRIqyteO3J1KZ/QG3udlEFaOD5TLOM1FnmXXAPDQBqr+aBVr720ef9K00dirYnJ0LDCtw==",
654
+ "license": "MIT",
655
+ "engines": {
656
+ "node": ">= 10"
657
+ },
658
+ "os": [
659
+ "linux"
660
+ ],
661
+ "cpu": [
662
+ "arm64"
663
+ ],
664
+ "libc": [
665
+ "musl"
666
+ ],
667
+ "optional": true
668
+ },
669
+ "node_modules/@mariozechner/clipboard-linux-riscv64-gnu": {
670
+ "version": "0.3.6",
671
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-riscv64-gnu/-/clipboard-linux-riscv64-gnu-0.3.6.tgz",
672
+ "integrity": "sha512-4t8BUi5zZ+L77otFQVnVSlaTyAX4TVk9EqQm4syMrEQp96trFEHEwwNHcNEBGzYv5+K7mxay50TthYkz47OWzQ==",
673
+ "license": "MIT",
674
+ "engines": {
675
+ "node": ">= 10"
676
+ },
677
+ "os": [
678
+ "linux"
679
+ ],
680
+ "cpu": [
681
+ "riscv64"
682
+ ],
683
+ "libc": [
684
+ "glibc"
685
+ ],
686
+ "optional": true
687
+ },
688
+ "node_modules/@mariozechner/clipboard-linux-x64-gnu": {
689
+ "version": "0.3.6",
690
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-x64-gnu/-/clipboard-linux-x64-gnu-0.3.6.tgz",
691
+ "integrity": "sha512-trtPwcNLW37irwQCJLtCxLw757jjJZk3TSnY/MU9bhtWtA3K9b/eLW0e4RGhUXDoFRds9opNWWaUDuFLa8dm0w==",
692
+ "license": "MIT",
693
+ "engines": {
694
+ "node": ">= 10"
695
+ },
696
+ "os": [
697
+ "linux"
698
+ ],
699
+ "cpu": [
700
+ "x64"
701
+ ],
702
+ "libc": [
703
+ "glibc"
704
+ ],
705
+ "optional": true
706
+ },
707
+ "node_modules/@mariozechner/clipboard-linux-x64-musl": {
708
+ "version": "0.3.6",
709
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-x64-musl/-/clipboard-linux-x64-musl-0.3.6.tgz",
710
+ "integrity": "sha512-WfnzIvOCCWQiN0MmltCEo6cLceUDbYe+I7xyFZjaps5A+2Op/M2CY7Rey+C4ucQhrvmpoHmTSFgY9ODWk7snoA==",
711
+ "license": "MIT",
712
+ "engines": {
713
+ "node": ">= 10"
714
+ },
715
+ "os": [
716
+ "linux"
717
+ ],
718
+ "cpu": [
719
+ "x64"
720
+ ],
721
+ "libc": [
722
+ "musl"
723
+ ],
724
+ "optional": true
725
+ },
726
+ "node_modules/@mariozechner/clipboard-win32-arm64-msvc": {
727
+ "version": "0.3.6",
728
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-win32-arm64-msvc/-/clipboard-win32-arm64-msvc-0.3.6.tgz",
729
+ "integrity": "sha512-+8+1aHYsBPUjmW3otmWlg+Hijt0iJvoBBs5e0mxFeUd4gDaKMB8Bn6x7c6KVtscg7E5j5NFXnwQqNSIAO4p8zQ==",
730
+ "license": "MIT",
731
+ "engines": {
732
+ "node": ">= 10"
733
+ },
734
+ "os": [
735
+ "win32"
736
+ ],
737
+ "cpu": [
738
+ "arm64"
739
+ ],
740
+ "optional": true
741
+ },
742
+ "node_modules/@mariozechner/clipboard-win32-x64-msvc": {
743
+ "version": "0.3.6",
744
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-win32-x64-msvc/-/clipboard-win32-x64-msvc-0.3.6.tgz",
745
+ "integrity": "sha512-S4xfPmERC8ZkiLHe3vekZCjdDwNEETCuvCgQK2kP6/TnvmUkq1y2Pk+DjM4t8uh9KMX9bH4zs5ePcKa8GTXmfg==",
746
+ "license": "MIT",
747
+ "engines": {
748
+ "node": ">= 10"
749
+ },
750
+ "os": [
751
+ "win32"
752
+ ],
753
+ "cpu": [
754
+ "x64"
755
+ ],
756
+ "optional": true
757
+ },
758
+ "node_modules/@mistralai/mistralai": {
759
+ "version": "2.2.1",
760
+ "resolved": "https://registry.npmjs.org/@mistralai/mistralai/-/mistralai-2.2.1.tgz",
761
+ "integrity": "sha512-uKU8CZmL2RzYKmplsU01hii4p3pe4HqJefpWNRWXm1Tcm0Sm4xXfwSLIy4k7ZCPlbETCGcp69E7hZs+WOJ5itQ==",
762
+ "license": "Apache-2.0",
763
+ "dependencies": {
764
+ "ws": "^8.18.0",
765
+ "zod": "^3.25.0 || ^4.0.0",
766
+ "zod-to-json-schema": "^3.25.0"
767
+ }
768
+ },
769
+ "node_modules/@nodable/entities": {
770
+ "version": "2.1.0",
771
+ "resolved": "https://registry.npmjs.org/@nodable/entities/-/entities-2.1.0.tgz",
772
+ "integrity": "sha512-nyT7T3nbMyBI/lvr6L5TyWbFJAI9FTgVRakNoBqCD+PmID8DzFrrNdLLtHMwMszOtqZa8PAOV24ZqDnQrhQINA==",
773
+ "license": "MIT",
774
+ "funding": [
775
+ {
776
+ "type": "github",
777
+ "url": "https://github.com/sponsors/nodable"
778
+ }
779
+ ]
780
+ },
781
+ "node_modules/@protobufjs/aspromise": {
782
+ "version": "1.1.2",
783
+ "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
784
+ "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
785
+ "license": "BSD-3-Clause"
786
+ },
787
+ "node_modules/@protobufjs/base64": {
788
+ "version": "1.1.2",
789
+ "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
790
+ "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
791
+ "license": "BSD-3-Clause"
792
+ },
793
+ "node_modules/@protobufjs/codegen": {
794
+ "version": "2.0.5",
795
+ "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.5.tgz",
796
+ "integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==",
797
+ "license": "BSD-3-Clause"
798
+ },
799
+ "node_modules/@protobufjs/eventemitter": {
800
+ "version": "1.1.0",
801
+ "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
802
+ "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==",
803
+ "license": "BSD-3-Clause"
804
+ },
805
+ "node_modules/@protobufjs/fetch": {
806
+ "version": "1.1.1",
807
+ "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.1.tgz",
808
+ "integrity": "sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==",
809
+ "license": "BSD-3-Clause",
810
+ "dependencies": {
811
+ "@protobufjs/aspromise": "^1.1.1"
812
+ }
813
+ },
814
+ "node_modules/@protobufjs/float": {
815
+ "version": "1.0.2",
816
+ "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
817
+ "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
818
+ "license": "BSD-3-Clause"
819
+ },
820
+ "node_modules/@protobufjs/inquire": {
821
+ "version": "1.1.2",
822
+ "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.2.tgz",
823
+ "integrity": "sha512-pa0vFRuws4wkvaXKK1uXZMAwAX4/t8ANaJo45iw/oQHNQ9q5xUzwgFmVJGXiga2BeN+zpX7Vf9vmsiIa2J+MUw==",
824
+ "license": "BSD-3-Clause"
825
+ },
826
+ "node_modules/@protobufjs/path": {
827
+ "version": "1.1.2",
828
+ "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
829
+ "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
830
+ "license": "BSD-3-Clause"
831
+ },
832
+ "node_modules/@protobufjs/pool": {
833
+ "version": "1.1.0",
834
+ "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
835
+ "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
836
+ "license": "BSD-3-Clause"
837
+ },
838
+ "node_modules/@protobufjs/utf8": {
839
+ "version": "1.1.1",
840
+ "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
841
+ "integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
842
+ "license": "BSD-3-Clause"
843
+ },
844
+ "node_modules/@silvia-odwyer/photon-node": {
845
+ "version": "0.3.4",
846
+ "resolved": "https://registry.npmjs.org/@silvia-odwyer/photon-node/-/photon-node-0.3.4.tgz",
847
+ "integrity": "sha512-bnly4BKB3KDTFxrUIcgCLbaeVVS8lrAkri1pEzskpmxu9MdfGQTy8b8EgcD83ywD3RPMsIulY8xJH5Awa+t9fA==",
848
+ "license": "Apache-2.0"
849
+ },
850
+ "node_modules/@smithy/core": {
851
+ "version": "3.24.3",
852
+ "resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.24.3.tgz",
853
+ "integrity": "sha512-Ep/7tPamGY8mgESE3LyLKtxJyy6U52WWAqr/3wial47Sj4u3PiIF73AOGI27UyLy9duTkhZbgzodOfLV4TduZg==",
854
+ "license": "Apache-2.0",
855
+ "dependencies": {
856
+ "@aws-crypto/crc32": "5.2.0",
857
+ "@smithy/types": "^4.14.2",
858
+ "tslib": "^2.6.2"
859
+ },
860
+ "engines": {
861
+ "node": ">=18.0.0"
862
+ }
863
+ },
864
+ "node_modules/@smithy/credential-provider-imds": {
865
+ "version": "4.3.3",
866
+ "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.3.3.tgz",
867
+ "integrity": "sha512-I2Bti0DKFo2IJyN28ijCsx51BAumEYR4/1yZ1FXyBygy9MqbnMqCev4JPth/MbpRfBSRAX35hITSnAdJRo1u5w==",
868
+ "license": "Apache-2.0",
869
+ "dependencies": {
870
+ "@smithy/core": "^3.24.3",
871
+ "@smithy/types": "^4.14.2",
872
+ "tslib": "^2.6.2"
873
+ },
874
+ "engines": {
875
+ "node": ">=18.0.0"
876
+ }
877
+ },
878
+ "node_modules/@smithy/fetch-http-handler": {
879
+ "version": "5.4.3",
880
+ "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.4.3.tgz",
881
+ "integrity": "sha512-F+DRf8IJazRJgYog2A/yJK7eYVc0rqTlRzO+5ZxjJd4WkZoKz0IJRncf7G6t1pdVT3kryJcwuTFhN1c5m6N47A==",
882
+ "license": "Apache-2.0",
883
+ "dependencies": {
884
+ "@smithy/core": "^3.24.3",
885
+ "@smithy/types": "^4.14.2",
886
+ "tslib": "^2.6.2"
887
+ },
888
+ "engines": {
889
+ "node": ">=18.0.0"
890
+ }
891
+ },
892
+ "node_modules/@smithy/is-array-buffer": {
893
+ "version": "2.2.0",
894
+ "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
895
+ "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
896
+ "license": "Apache-2.0",
897
+ "dependencies": {
898
+ "tslib": "^2.6.2"
899
+ },
900
+ "engines": {
901
+ "node": ">=14.0.0"
902
+ }
903
+ },
904
+ "node_modules/@smithy/node-http-handler": {
905
+ "version": "4.7.3",
906
+ "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.7.3.tgz",
907
+ "integrity": "sha512-/jPhevcTFPMVl6KNjbaI47iOg1zxC7IsnX4PQDGVZKMFceOXtB8IEYaB7a9VvkP/3oC60WzTeKocvSI7vLT0vA==",
908
+ "license": "Apache-2.0",
909
+ "dependencies": {
910
+ "@smithy/core": "^3.24.3",
911
+ "@smithy/types": "^4.14.2",
912
+ "tslib": "^2.6.2"
913
+ },
914
+ "engines": {
915
+ "node": ">=18.0.0"
916
+ }
917
+ },
918
+ "node_modules/@smithy/signature-v4": {
919
+ "version": "5.4.3",
920
+ "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-5.4.3.tgz",
921
+ "integrity": "sha512-53+75QuPl6DL+ct6vVEB51FDO5oulXr20TPV46VvJZg76lIlXNWfxi8j+G2V/t0I2qxCBOa3vX/8bmjrpFVo9g==",
922
+ "license": "Apache-2.0",
923
+ "dependencies": {
924
+ "@smithy/core": "^3.24.3",
925
+ "@smithy/types": "^4.14.2",
926
+ "tslib": "^2.6.2"
927
+ },
928
+ "engines": {
929
+ "node": ">=18.0.0"
930
+ }
931
+ },
932
+ "node_modules/@smithy/types": {
933
+ "version": "4.14.2",
934
+ "resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.14.2.tgz",
935
+ "integrity": "sha512-P+otAxbV4CqBybp7EkcJCrig63yE2E7PuNVOmilVMRcx/O+QDzGULTrKsq4DV13gSfak9ObPrWaHl/9bL5YcWw==",
936
+ "license": "Apache-2.0",
937
+ "dependencies": {
938
+ "tslib": "^2.6.2"
939
+ },
940
+ "engines": {
941
+ "node": ">=18.0.0"
942
+ }
943
+ },
944
+ "node_modules/@smithy/util-buffer-from": {
945
+ "version": "2.2.0",
946
+ "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
947
+ "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
948
+ "license": "Apache-2.0",
949
+ "dependencies": {
950
+ "@smithy/is-array-buffer": "^2.2.0",
951
+ "tslib": "^2.6.2"
952
+ },
953
+ "engines": {
954
+ "node": ">=14.0.0"
955
+ }
956
+ },
957
+ "node_modules/@smithy/util-utf8": {
958
+ "version": "2.3.0",
959
+ "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
960
+ "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
961
+ "license": "Apache-2.0",
962
+ "dependencies": {
963
+ "@smithy/util-buffer-from": "^2.2.0",
964
+ "tslib": "^2.6.2"
965
+ },
966
+ "engines": {
967
+ "node": ">=14.0.0"
968
+ }
969
+ },
970
+ "node_modules/@types/node": {
971
+ "version": "22.19.19",
972
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.19.tgz",
973
+ "integrity": "sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==",
974
+ "license": "MIT",
975
+ "dependencies": {
976
+ "undici-types": "~6.21.0"
977
+ }
978
+ },
979
+ "node_modules/agent-base": {
980
+ "version": "7.1.4",
981
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
982
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
983
+ "license": "MIT",
984
+ "engines": {
985
+ "node": ">= 14"
986
+ }
987
+ },
988
+ "node_modules/balanced-match": {
989
+ "version": "4.0.4",
990
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
991
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
992
+ "license": "MIT",
993
+ "engines": {
994
+ "node": "18 || 20 || >=22"
995
+ }
996
+ },
997
+ "node_modules/base64-js": {
998
+ "version": "1.5.1",
999
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
1000
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
1001
+ "license": "MIT",
1002
+ "funding": [
1003
+ {
1004
+ "type": "github",
1005
+ "url": "https://github.com/sponsors/feross"
1006
+ },
1007
+ {
1008
+ "type": "patreon",
1009
+ "url": "https://www.patreon.com/feross"
1010
+ },
1011
+ {
1012
+ "type": "consulting",
1013
+ "url": "https://feross.org/support"
1014
+ }
1015
+ ]
1016
+ },
1017
+ "node_modules/bignumber.js": {
1018
+ "version": "9.3.1",
1019
+ "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.3.1.tgz",
1020
+ "integrity": "sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==",
1021
+ "license": "MIT",
1022
+ "engines": {
1023
+ "node": "*"
1024
+ }
1025
+ },
1026
+ "node_modules/bowser": {
1027
+ "version": "2.14.1",
1028
+ "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.14.1.tgz",
1029
+ "integrity": "sha512-tzPjzCxygAKWFOJP011oxFHs57HzIhOEracIgAePE4pqB3LikALKnSzUyU4MGs9/iCEUuHlAJTjTc5M+u7YEGg==",
1030
+ "license": "MIT"
1031
+ },
1032
+ "node_modules/brace-expansion": {
1033
+ "version": "5.0.6",
1034
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
1035
+ "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
1036
+ "license": "MIT",
1037
+ "dependencies": {
1038
+ "balanced-match": "^4.0.2"
1039
+ },
1040
+ "engines": {
1041
+ "node": "18 || 20 || >=22"
1042
+ }
1043
+ },
1044
+ "node_modules/buffer-equal-constant-time": {
1045
+ "version": "1.0.1",
1046
+ "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
1047
+ "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
1048
+ "license": "BSD-3-Clause"
1049
+ },
1050
+ "node_modules/chalk": {
1051
+ "version": "5.6.2",
1052
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
1053
+ "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
1054
+ "license": "MIT",
1055
+ "engines": {
1056
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
1057
+ },
1058
+ "funding": {
1059
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1060
+ }
1061
+ },
1062
+ "node_modules/cross-spawn": {
1063
+ "version": "6.0.6",
1064
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz",
1065
+ "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==",
1066
+ "license": "MIT",
1067
+ "dependencies": {
1068
+ "nice-try": "^1.0.4",
1069
+ "path-key": "^2.0.1",
1070
+ "semver": "^5.5.0",
1071
+ "shebang-command": "^1.2.0",
1072
+ "which": "^1.2.9"
1073
+ },
1074
+ "engines": {
1075
+ "node": ">=4.8"
1076
+ }
1077
+ },
1078
+ "node_modules/cross-spawn/node_modules/semver": {
1079
+ "version": "5.7.2",
1080
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
1081
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
1082
+ "license": "ISC",
1083
+ "bin": {
1084
+ "semver": "bin/semver"
1085
+ }
1086
+ },
1087
+ "node_modules/data-uri-to-buffer": {
1088
+ "version": "4.0.1",
1089
+ "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
1090
+ "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
1091
+ "license": "MIT",
1092
+ "engines": {
1093
+ "node": ">= 12"
1094
+ }
1095
+ },
1096
+ "node_modules/debug": {
1097
+ "version": "4.4.3",
1098
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1099
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1100
+ "license": "MIT",
1101
+ "dependencies": {
1102
+ "ms": "^2.1.3"
1103
+ },
1104
+ "peerDependenciesMeta": {
1105
+ "supports-color": {
1106
+ "optional": true
1107
+ }
1108
+ },
1109
+ "engines": {
1110
+ "node": ">=6.0"
1111
+ }
1112
+ },
1113
+ "node_modules/diff": {
1114
+ "version": "8.0.4",
1115
+ "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz",
1116
+ "integrity": "sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==",
1117
+ "license": "BSD-3-Clause",
1118
+ "engines": {
1119
+ "node": ">=0.3.1"
1120
+ }
1121
+ },
1122
+ "node_modules/ecdsa-sig-formatter": {
1123
+ "version": "1.0.11",
1124
+ "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
1125
+ "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
1126
+ "license": "Apache-2.0",
1127
+ "dependencies": {
1128
+ "safe-buffer": "^5.0.1"
1129
+ }
1130
+ },
1131
+ "node_modules/extend": {
1132
+ "version": "3.0.2",
1133
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
1134
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
1135
+ "license": "MIT"
1136
+ },
1137
+ "node_modules/fast-xml-builder": {
1138
+ "version": "1.2.0",
1139
+ "resolved": "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.2.0.tgz",
1140
+ "integrity": "sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==",
1141
+ "license": "MIT",
1142
+ "dependencies": {
1143
+ "path-expression-matcher": "^1.5.0",
1144
+ "xml-naming": "^0.1.0"
1145
+ },
1146
+ "funding": [
1147
+ {
1148
+ "type": "github",
1149
+ "url": "https://github.com/sponsors/NaturalIntelligence"
1150
+ }
1151
+ ]
1152
+ },
1153
+ "node_modules/fast-xml-parser": {
1154
+ "version": "5.7.3",
1155
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.7.3.tgz",
1156
+ "integrity": "sha512-C0AaNuC+mscy6vrAQKAc/rMq+zAPHodfHGZu4sGVehvAQt/JLG1O5zEcYcXSY5zSqr4YVgxsB+pHXTq0i7eDlg==",
1157
+ "license": "MIT",
1158
+ "dependencies": {
1159
+ "@nodable/entities": "^2.1.0",
1160
+ "fast-xml-builder": "^1.1.7",
1161
+ "path-expression-matcher": "^1.5.0",
1162
+ "strnum": "^2.2.3"
1163
+ },
1164
+ "bin": {
1165
+ "fxparser": "src/cli/cli.js"
1166
+ },
1167
+ "funding": [
1168
+ {
1169
+ "type": "github",
1170
+ "url": "https://github.com/sponsors/NaturalIntelligence"
1171
+ }
1172
+ ]
1173
+ },
1174
+ "node_modules/fetch-blob": {
1175
+ "version": "3.2.0",
1176
+ "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
1177
+ "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
1178
+ "license": "MIT",
1179
+ "dependencies": {
1180
+ "node-domexception": "^1.0.0",
1181
+ "web-streams-polyfill": "^3.0.3"
1182
+ },
1183
+ "engines": {
1184
+ "node": "^12.20 || >= 14.13"
1185
+ },
1186
+ "funding": [
1187
+ {
1188
+ "type": "github",
1189
+ "url": "https://github.com/sponsors/jimmywarting"
1190
+ },
1191
+ {
1192
+ "type": "paypal",
1193
+ "url": "https://paypal.me/jimmywarting"
1194
+ }
1195
+ ]
1196
+ },
1197
+ "node_modules/formdata-polyfill": {
1198
+ "version": "4.0.10",
1199
+ "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
1200
+ "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
1201
+ "license": "MIT",
1202
+ "dependencies": {
1203
+ "fetch-blob": "^3.1.2"
1204
+ },
1205
+ "engines": {
1206
+ "node": ">=12.20.0"
1207
+ }
1208
+ },
1209
+ "node_modules/gaxios": {
1210
+ "version": "7.1.4",
1211
+ "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-7.1.4.tgz",
1212
+ "integrity": "sha512-bTIgTsM2bWn3XklZISBTQX7ZSddGW+IO3bMdGaemHZ3tbqExMENHLx6kKZ/KlejgrMtj8q7wBItt51yegqalrA==",
1213
+ "license": "Apache-2.0",
1214
+ "dependencies": {
1215
+ "extend": "^3.0.2",
1216
+ "https-proxy-agent": "^7.0.1",
1217
+ "node-fetch": "^3.3.2"
1218
+ },
1219
+ "engines": {
1220
+ "node": ">=18"
1221
+ }
1222
+ },
1223
+ "node_modules/gcp-metadata": {
1224
+ "version": "8.1.2",
1225
+ "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-8.1.2.tgz",
1226
+ "integrity": "sha512-zV/5HKTfCeKWnxG0Dmrw51hEWFGfcF2xiXqcA3+J90WDuP0SvoiSO5ORvcBsifmx/FoIjgQN3oNOGaQ5PhLFkg==",
1227
+ "license": "Apache-2.0",
1228
+ "dependencies": {
1229
+ "gaxios": "^7.0.0",
1230
+ "google-logging-utils": "^1.0.0",
1231
+ "json-bigint": "^1.0.0"
1232
+ },
1233
+ "engines": {
1234
+ "node": ">=18"
1235
+ }
1236
+ },
1237
+ "node_modules/get-east-asian-width": {
1238
+ "version": "1.6.0",
1239
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz",
1240
+ "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==",
1241
+ "license": "MIT",
1242
+ "engines": {
1243
+ "node": ">=18"
1244
+ },
1245
+ "funding": {
1246
+ "url": "https://github.com/sponsors/sindresorhus"
1247
+ }
1248
+ },
1249
+ "node_modules/glob": {
1250
+ "version": "13.0.6",
1251
+ "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz",
1252
+ "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
1253
+ "license": "BlueOak-1.0.0",
1254
+ "dependencies": {
1255
+ "minimatch": "^10.2.2",
1256
+ "minipass": "^7.1.3",
1257
+ "path-scurry": "^2.0.2"
1258
+ },
1259
+ "engines": {
1260
+ "node": "18 || 20 || >=22"
1261
+ },
1262
+ "funding": {
1263
+ "url": "https://github.com/sponsors/isaacs"
1264
+ }
1265
+ },
1266
+ "node_modules/google-auth-library": {
1267
+ "version": "10.6.2",
1268
+ "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-10.6.2.tgz",
1269
+ "integrity": "sha512-e27Z6EThmVNNvtYASwQxose/G57rkRuaRbQyxM2bvYLLX/GqWZ5chWq2EBoUchJbCc57eC9ArzO5wMsEmWftCw==",
1270
+ "license": "Apache-2.0",
1271
+ "dependencies": {
1272
+ "base64-js": "^1.3.0",
1273
+ "ecdsa-sig-formatter": "^1.0.11",
1274
+ "gaxios": "^7.1.4",
1275
+ "gcp-metadata": "8.1.2",
1276
+ "google-logging-utils": "1.1.3",
1277
+ "jws": "^4.0.0"
1278
+ },
1279
+ "engines": {
1280
+ "node": ">=18"
1281
+ }
1282
+ },
1283
+ "node_modules/google-logging-utils": {
1284
+ "version": "1.1.3",
1285
+ "resolved": "https://registry.npmjs.org/google-logging-utils/-/google-logging-utils-1.1.3.tgz",
1286
+ "integrity": "sha512-eAmLkjDjAFCVXg7A1unxHsLf961m6y17QFqXqAXGj/gVkKFrEICfStRfwUlGNfeCEjNRa32JEWOUTlYXPyyKvA==",
1287
+ "license": "Apache-2.0",
1288
+ "engines": {
1289
+ "node": ">=14"
1290
+ }
1291
+ },
1292
+ "node_modules/graceful-fs": {
1293
+ "version": "4.2.11",
1294
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1295
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1296
+ "license": "ISC"
1297
+ },
1298
+ "node_modules/highlight.js": {
1299
+ "version": "10.7.3",
1300
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
1301
+ "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==",
1302
+ "license": "BSD-3-Clause",
1303
+ "engines": {
1304
+ "node": "*"
1305
+ }
1306
+ },
1307
+ "node_modules/hosted-git-info": {
1308
+ "version": "9.0.3",
1309
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-9.0.3.tgz",
1310
+ "integrity": "sha512-Hc+ghLoSt6QaYZUv0WBiIvmMDZuZZ7oaDvdH8MbfOO4lOsxdXLEvuC6ePoGs9H1X9oCLyq6+NVN0MKqD+ydxyg==",
1311
+ "license": "ISC",
1312
+ "dependencies": {
1313
+ "lru-cache": "^11.1.0"
1314
+ },
1315
+ "engines": {
1316
+ "node": "^20.17.0 || >=22.9.0"
1317
+ }
1318
+ },
1319
+ "node_modules/http-proxy-agent": {
1320
+ "version": "7.0.2",
1321
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
1322
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
1323
+ "license": "MIT",
1324
+ "dependencies": {
1325
+ "agent-base": "^7.1.0",
1326
+ "debug": "^4.3.4"
1327
+ },
1328
+ "engines": {
1329
+ "node": ">= 14"
1330
+ }
1331
+ },
1332
+ "node_modules/https-proxy-agent": {
1333
+ "version": "7.0.6",
1334
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
1335
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
1336
+ "license": "MIT",
1337
+ "dependencies": {
1338
+ "agent-base": "^7.1.2",
1339
+ "debug": "4"
1340
+ },
1341
+ "engines": {
1342
+ "node": ">= 14"
1343
+ }
1344
+ },
1345
+ "node_modules/ignore": {
1346
+ "version": "7.0.5",
1347
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
1348
+ "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
1349
+ "license": "MIT",
1350
+ "engines": {
1351
+ "node": ">= 4"
1352
+ }
1353
+ },
1354
+ "node_modules/isexe": {
1355
+ "version": "2.0.0",
1356
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1357
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1358
+ "license": "ISC"
1359
+ },
1360
+ "node_modules/jiti": {
1361
+ "version": "2.7.0",
1362
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
1363
+ "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
1364
+ "license": "MIT",
1365
+ "bin": {
1366
+ "jiti": "lib/jiti-cli.mjs"
1367
+ }
1368
+ },
1369
+ "node_modules/json-bigint": {
1370
+ "version": "1.0.0",
1371
+ "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz",
1372
+ "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
1373
+ "license": "MIT",
1374
+ "dependencies": {
1375
+ "bignumber.js": "^9.0.0"
1376
+ }
1377
+ },
1378
+ "node_modules/json-schema-to-ts": {
1379
+ "version": "3.1.1",
1380
+ "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-3.1.1.tgz",
1381
+ "integrity": "sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==",
1382
+ "license": "MIT",
1383
+ "dependencies": {
1384
+ "@babel/runtime": "^7.18.3",
1385
+ "ts-algebra": "^2.0.0"
1386
+ },
1387
+ "engines": {
1388
+ "node": ">=16"
1389
+ }
1390
+ },
1391
+ "node_modules/jwa": {
1392
+ "version": "2.0.1",
1393
+ "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz",
1394
+ "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==",
1395
+ "license": "MIT",
1396
+ "dependencies": {
1397
+ "buffer-equal-constant-time": "^1.0.1",
1398
+ "ecdsa-sig-formatter": "1.0.11",
1399
+ "safe-buffer": "^5.0.1"
1400
+ }
1401
+ },
1402
+ "node_modules/jws": {
1403
+ "version": "4.0.1",
1404
+ "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz",
1405
+ "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==",
1406
+ "license": "MIT",
1407
+ "dependencies": {
1408
+ "jwa": "^2.0.1",
1409
+ "safe-buffer": "^5.0.1"
1410
+ }
1411
+ },
1412
+ "node_modules/long": {
1413
+ "version": "5.3.2",
1414
+ "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
1415
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
1416
+ "license": "Apache-2.0"
1417
+ },
1418
+ "node_modules/lru-cache": {
1419
+ "version": "11.3.6",
1420
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.3.6.tgz",
1421
+ "integrity": "sha512-Gf/KoL3C/MlI7Bt0PGI9I+TeTC/I6r/csU58N4BSNc4lppLBeKsOdFYkK+dX0ABDUMJNfCHTyPpzwwO21Awd3A==",
1422
+ "license": "BlueOak-1.0.0",
1423
+ "engines": {
1424
+ "node": "20 || >=22"
1425
+ }
1426
+ },
1427
+ "node_modules/marked": {
1428
+ "version": "16.4.2",
1429
+ "resolved": "https://registry.npmjs.org/marked/-/marked-16.4.2.tgz",
1430
+ "integrity": "sha512-TI3V8YYWvkVf3KJe1dRkpnjs68JUPyEa5vjKrp1XEEJUAOaQc+Qj+L1qWbPd0SJuAdQkFU0h73sXXqwDYxsiDA==",
1431
+ "license": "MIT",
1432
+ "bin": {
1433
+ "marked": "bin/marked.js"
1434
+ },
1435
+ "engines": {
1436
+ "node": ">= 20"
1437
+ }
1438
+ },
1439
+ "node_modules/minimatch": {
1440
+ "version": "10.2.5",
1441
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
1442
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
1443
+ "license": "BlueOak-1.0.0",
1444
+ "dependencies": {
1445
+ "brace-expansion": "^5.0.5"
1446
+ },
1447
+ "engines": {
1448
+ "node": "18 || 20 || >=22"
1449
+ },
1450
+ "funding": {
1451
+ "url": "https://github.com/sponsors/isaacs"
1452
+ }
1453
+ },
1454
+ "node_modules/minipass": {
1455
+ "version": "7.1.3",
1456
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz",
1457
+ "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
1458
+ "license": "BlueOak-1.0.0",
1459
+ "engines": {
1460
+ "node": ">=16 || 14 >=14.17"
1461
+ }
1462
+ },
1463
+ "node_modules/ms": {
1464
+ "version": "2.1.3",
1465
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1466
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1467
+ "license": "MIT"
1468
+ },
1469
+ "node_modules/nice-try": {
1470
+ "version": "1.0.5",
1471
+ "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
1472
+ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
1473
+ "license": "MIT"
1474
+ },
1475
+ "node_modules/node-domexception": {
1476
+ "version": "1.0.0",
1477
+ "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
1478
+ "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
1479
+ "license": "MIT",
1480
+ "engines": {
1481
+ "node": ">=10.5.0"
1482
+ },
1483
+ "deprecated": "Use your platform's native DOMException instead",
1484
+ "funding": [
1485
+ {
1486
+ "type": "github",
1487
+ "url": "https://github.com/sponsors/jimmywarting"
1488
+ },
1489
+ {
1490
+ "type": "github",
1491
+ "url": "https://paypal.me/jimmywarting"
1492
+ }
1493
+ ]
1494
+ },
1495
+ "node_modules/node-fetch": {
1496
+ "version": "3.3.2",
1497
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz",
1498
+ "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
1499
+ "license": "MIT",
1500
+ "dependencies": {
1501
+ "data-uri-to-buffer": "^4.0.0",
1502
+ "fetch-blob": "^3.1.4",
1503
+ "formdata-polyfill": "^4.0.10"
1504
+ },
1505
+ "engines": {
1506
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1507
+ },
1508
+ "funding": {
1509
+ "type": "opencollective",
1510
+ "url": "https://opencollective.com/node-fetch"
1511
+ }
1512
+ },
1513
+ "node_modules/openai": {
1514
+ "version": "6.26.0",
1515
+ "resolved": "https://registry.npmjs.org/openai/-/openai-6.26.0.tgz",
1516
+ "integrity": "sha512-zd23dbWTjiJ6sSAX6s0HrCZi41JwTA1bQVs0wLQPZ2/5o2gxOJA5wh7yOAUgwYybfhDXyhwlpeQf7Mlgx8EOCA==",
1517
+ "license": "Apache-2.0",
1518
+ "peerDependencies": {
1519
+ "ws": "^8.18.0",
1520
+ "zod": "^3.25 || ^4.0"
1521
+ },
1522
+ "peerDependenciesMeta": {
1523
+ "ws": {
1524
+ "optional": true
1525
+ },
1526
+ "zod": {
1527
+ "optional": true
1528
+ }
1529
+ },
1530
+ "bin": {
1531
+ "openai": "bin/cli"
1532
+ }
1533
+ },
1534
+ "node_modules/p-retry": {
1535
+ "version": "4.6.2",
1536
+ "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz",
1537
+ "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==",
1538
+ "license": "MIT",
1539
+ "dependencies": {
1540
+ "@types/retry": "0.12.0",
1541
+ "retry": "^0.13.1"
1542
+ },
1543
+ "engines": {
1544
+ "node": ">=8"
1545
+ }
1546
+ },
1547
+ "node_modules/p-retry/node_modules/@types/retry": {
1548
+ "version": "0.12.0",
1549
+ "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz",
1550
+ "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==",
1551
+ "license": "MIT"
1552
+ },
1553
+ "node_modules/partial-json": {
1554
+ "version": "0.1.7",
1555
+ "resolved": "https://registry.npmjs.org/partial-json/-/partial-json-0.1.7.tgz",
1556
+ "integrity": "sha512-Njv/59hHaokb/hRUjce3Hdv12wd60MtM9Z5Olmn+nehe0QDAsRtRbJPvJ0Z91TusF0SuZRIvnM+S4l6EIP8leA==",
1557
+ "license": "MIT"
1558
+ },
1559
+ "node_modules/path-expression-matcher": {
1560
+ "version": "1.5.0",
1561
+ "resolved": "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.5.0.tgz",
1562
+ "integrity": "sha512-cbrerZV+6rvdQrrD+iGMcZFEiiSrbv9Tfdkvnusy6y0x0GKBXREFg/Y65GhIfm0tnLntThhzCnfKwp1WRjeCyQ==",
1563
+ "license": "MIT",
1564
+ "engines": {
1565
+ "node": ">=14.0.0"
1566
+ },
1567
+ "funding": [
1568
+ {
1569
+ "type": "github",
1570
+ "url": "https://github.com/sponsors/NaturalIntelligence"
1571
+ }
1572
+ ]
1573
+ },
1574
+ "node_modules/path-key": {
1575
+ "version": "2.0.1",
1576
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
1577
+ "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==",
1578
+ "license": "MIT",
1579
+ "engines": {
1580
+ "node": ">=4"
1581
+ }
1582
+ },
1583
+ "node_modules/path-scurry": {
1584
+ "version": "2.0.2",
1585
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz",
1586
+ "integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==",
1587
+ "license": "BlueOak-1.0.0",
1588
+ "dependencies": {
1589
+ "lru-cache": "^11.0.0",
1590
+ "minipass": "^7.1.2"
1591
+ },
1592
+ "engines": {
1593
+ "node": "18 || 20 || >=22"
1594
+ },
1595
+ "funding": {
1596
+ "url": "https://github.com/sponsors/isaacs"
1597
+ }
1598
+ },
1599
+ "node_modules/proper-lockfile": {
1600
+ "version": "4.1.2",
1601
+ "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz",
1602
+ "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==",
1603
+ "license": "MIT",
1604
+ "dependencies": {
1605
+ "graceful-fs": "^4.2.4",
1606
+ "retry": "^0.12.0",
1607
+ "signal-exit": "^3.0.2"
1608
+ }
1609
+ },
1610
+ "node_modules/proper-lockfile/node_modules/retry": {
1611
+ "version": "0.12.0",
1612
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
1613
+ "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
1614
+ "license": "MIT",
1615
+ "engines": {
1616
+ "node": ">= 4"
1617
+ }
1618
+ },
1619
+ "node_modules/protobufjs": {
1620
+ "version": "7.5.9",
1621
+ "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.9.tgz",
1622
+ "integrity": "sha512-Od4muIm3HW1AouyHF5lONOf1FWo3hY1NbFDoy191X9GzhpgW1clCoaFjfVs2rKJNFYpTNJbje4cbAIDBZJ63ZA==",
1623
+ "license": "BSD-3-Clause",
1624
+ "dependencies": {
1625
+ "@protobufjs/aspromise": "^1.1.2",
1626
+ "@protobufjs/base64": "^1.1.2",
1627
+ "@protobufjs/codegen": "^2.0.5",
1628
+ "@protobufjs/eventemitter": "^1.1.0",
1629
+ "@protobufjs/fetch": "^1.1.1",
1630
+ "@protobufjs/float": "^1.0.2",
1631
+ "@protobufjs/inquire": "^1.1.2",
1632
+ "@protobufjs/path": "^1.1.2",
1633
+ "@protobufjs/pool": "^1.1.0",
1634
+ "@protobufjs/utf8": "^1.1.1",
1635
+ "@types/node": ">=13.7.0",
1636
+ "long": "^5.0.0"
1637
+ },
1638
+ "engines": {
1639
+ "node": ">=12.0.0"
1640
+ },
1641
+ "hasInstallScript": true
1642
+ },
1643
+ "node_modules/proxy-from-env": {
1644
+ "version": "1.1.0",
1645
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
1646
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
1647
+ "license": "MIT"
1648
+ },
1649
+ "node_modules/retry": {
1650
+ "version": "0.13.1",
1651
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz",
1652
+ "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==",
1653
+ "license": "MIT",
1654
+ "engines": {
1655
+ "node": ">= 4"
1656
+ }
1657
+ },
1658
+ "node_modules/safe-buffer": {
1659
+ "version": "5.2.1",
1660
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
1661
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
1662
+ "license": "MIT",
1663
+ "funding": [
1664
+ {
1665
+ "type": "github",
1666
+ "url": "https://github.com/sponsors/feross"
1667
+ },
1668
+ {
1669
+ "type": "patreon",
1670
+ "url": "https://www.patreon.com/feross"
1671
+ },
1672
+ {
1673
+ "type": "consulting",
1674
+ "url": "https://feross.org/support"
1675
+ }
1676
+ ]
1677
+ },
1678
+ "node_modules/shebang-command": {
1679
+ "version": "1.2.0",
1680
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
1681
+ "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==",
1682
+ "license": "MIT",
1683
+ "dependencies": {
1684
+ "shebang-regex": "^1.0.0"
1685
+ },
1686
+ "engines": {
1687
+ "node": ">=0.10.0"
1688
+ }
1689
+ },
1690
+ "node_modules/shebang-regex": {
1691
+ "version": "1.0.0",
1692
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
1693
+ "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==",
1694
+ "license": "MIT",
1695
+ "engines": {
1696
+ "node": ">=0.10.0"
1697
+ }
1698
+ },
1699
+ "node_modules/signal-exit": {
1700
+ "version": "3.0.7",
1701
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
1702
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
1703
+ "license": "ISC"
1704
+ },
1705
+ "node_modules/strnum": {
1706
+ "version": "2.3.0",
1707
+ "resolved": "https://registry.npmjs.org/strnum/-/strnum-2.3.0.tgz",
1708
+ "integrity": "sha512-ums3KNd42PGyx5xaoVTO1mjU1bH3NpY4vsrVlnv9PNGqQj8wd7rJ6nEypLrJ7z5vxK5RP0yMLo6J/Gsm62DI5Q==",
1709
+ "license": "MIT",
1710
+ "funding": [
1711
+ {
1712
+ "type": "github",
1713
+ "url": "https://github.com/sponsors/NaturalIntelligence"
1714
+ }
1715
+ ]
1716
+ },
1717
+ "node_modules/ts-algebra": {
1718
+ "version": "2.0.0",
1719
+ "resolved": "https://registry.npmjs.org/ts-algebra/-/ts-algebra-2.0.0.tgz",
1720
+ "integrity": "sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==",
1721
+ "license": "MIT"
1722
+ },
1723
+ "node_modules/tslib": {
1724
+ "version": "2.8.1",
1725
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
1726
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
1727
+ "license": "0BSD"
1728
+ },
1729
+ "node_modules/typebox": {
1730
+ "version": "1.1.38",
1731
+ "resolved": "https://registry.npmjs.org/typebox/-/typebox-1.1.38.tgz",
1732
+ "integrity": "sha512-pZ0aQPmMmXoUvSbeuWf/Hzsc+avNw/Zd6VeE8CFgkVGWyuHPJvqeJJDeJqLve+K70LvjYIoleGcoJHPT17cWoA==",
1733
+ "license": "MIT"
1734
+ },
1735
+ "node_modules/undici": {
1736
+ "version": "8.3.0",
1737
+ "resolved": "https://registry.npmjs.org/undici/-/undici-8.3.0.tgz",
1738
+ "integrity": "sha512-TkUDgb6tl7KOGZ+7e8E3d2FYgUQgF6z5YypqjWmixVQSQERFcVrVg0ySADm2LVLRh5ljAaHTCR5Fmz3Q34rB7Q==",
1739
+ "license": "MIT",
1740
+ "engines": {
1741
+ "node": ">=22.19.0"
1742
+ }
1743
+ },
1744
+ "node_modules/undici-types": {
1745
+ "version": "6.21.0",
1746
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
1747
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
1748
+ "license": "MIT"
1749
+ },
1750
+ "node_modules/web-streams-polyfill": {
1751
+ "version": "3.3.3",
1752
+ "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
1753
+ "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
1754
+ "license": "MIT",
1755
+ "engines": {
1756
+ "node": ">= 8"
1757
+ }
1758
+ },
1759
+ "node_modules/which": {
1760
+ "version": "1.3.1",
1761
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
1762
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
1763
+ "license": "ISC",
1764
+ "dependencies": {
1765
+ "isexe": "^2.0.0"
1766
+ },
1767
+ "bin": {
1768
+ "which": "bin/which"
1769
+ }
1770
+ },
1771
+ "node_modules/ws": {
1772
+ "version": "8.20.1",
1773
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.1.tgz",
1774
+ "integrity": "sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==",
1775
+ "license": "MIT",
1776
+ "peerDependencies": {
1777
+ "bufferutil": "^4.0.1",
1778
+ "utf-8-validate": ">=5.0.2"
1779
+ },
1780
+ "peerDependenciesMeta": {
1781
+ "bufferutil": {
1782
+ "optional": true
1783
+ },
1784
+ "utf-8-validate": {
1785
+ "optional": true
1786
+ }
1787
+ },
1788
+ "engines": {
1789
+ "node": ">=10.0.0"
1790
+ }
1791
+ },
1792
+ "node_modules/xml-naming": {
1793
+ "version": "0.1.0",
1794
+ "resolved": "https://registry.npmjs.org/xml-naming/-/xml-naming-0.1.0.tgz",
1795
+ "integrity": "sha512-k8KO9hrMyNk6tUWqUfkTEZbezRRpONVOzUTnc97VnCvyj6Tf9lyUR9EDAIeiVLv56jsMcoXEwjW8Kv5yPY52lw==",
1796
+ "license": "MIT",
1797
+ "engines": {
1798
+ "node": ">=16.0.0"
1799
+ },
1800
+ "funding": [
1801
+ {
1802
+ "type": "github",
1803
+ "url": "https://github.com/sponsors/NaturalIntelligence"
1804
+ }
1805
+ ]
1806
+ },
1807
+ "node_modules/yaml": {
1808
+ "version": "2.9.0",
1809
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.9.0.tgz",
1810
+ "integrity": "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==",
1811
+ "license": "ISC",
1812
+ "bin": {
1813
+ "yaml": "bin.mjs"
1814
+ },
1815
+ "engines": {
1816
+ "node": ">= 14.6"
1817
+ },
1818
+ "funding": {
1819
+ "url": "https://github.com/sponsors/eemeli"
1820
+ }
1821
+ },
1822
+ "node_modules/zod": {
1823
+ "version": "3.25.76",
1824
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
1825
+ "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
1826
+ "license": "MIT",
1827
+ "funding": {
1828
+ "url": "https://github.com/sponsors/colinhacks"
1829
+ }
1830
+ },
1831
+ "node_modules/zod-to-json-schema": {
1832
+ "version": "3.25.2",
1833
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz",
1834
+ "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==",
1835
+ "license": "ISC",
1836
+ "peerDependencies": {
1837
+ "zod": "^3.25.28 || ^4"
1838
+ }
1839
+ }
1840
+ }
1841
+ }