@poe-platform/safe-bash 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1023) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +300 -0
  3. package/dist/safe-bash/browser.d.ts +13 -0
  4. package/dist/safe-bash/browser.d.ts.map +1 -0
  5. package/dist/safe-bash/browser.js +14478 -0
  6. package/dist/safe-bash/browser.js.map +7 -0
  7. package/dist/safe-bash/commands/apply-patch/apply.d.ts +6 -0
  8. package/dist/safe-bash/commands/apply-patch/apply.d.ts.map +1 -0
  9. package/dist/safe-bash/commands/apply-patch/apply.js +273 -0
  10. package/dist/safe-bash/commands/apply-patch/apply.js.map +1 -0
  11. package/dist/safe-bash/commands/apply-patch/index.d.ts +7 -0
  12. package/dist/safe-bash/commands/apply-patch/index.d.ts.map +1 -0
  13. package/dist/safe-bash/commands/apply-patch/index.js +23 -0
  14. package/dist/safe-bash/commands/apply-patch/index.js.map +1 -0
  15. package/dist/safe-bash/commands/apply-patch/matcher.d.ts +4 -0
  16. package/dist/safe-bash/commands/apply-patch/matcher.d.ts.map +1 -0
  17. package/dist/safe-bash/commands/apply-patch/matcher.js +164 -0
  18. package/dist/safe-bash/commands/apply-patch/matcher.js.map +1 -0
  19. package/dist/safe-bash/commands/apply-patch/options.d.ts +22 -0
  20. package/dist/safe-bash/commands/apply-patch/options.d.ts.map +1 -0
  21. package/dist/safe-bash/commands/apply-patch/options.js +34 -0
  22. package/dist/safe-bash/commands/apply-patch/options.js.map +1 -0
  23. package/dist/safe-bash/commands/apply-patch/parser.d.ts +22 -0
  24. package/dist/safe-bash/commands/apply-patch/parser.d.ts.map +1 -0
  25. package/dist/safe-bash/commands/apply-patch/parser.js +164 -0
  26. package/dist/safe-bash/commands/apply-patch/parser.js.map +1 -0
  27. package/dist/safe-bash/commands/apply-patch/shared.d.ts +40 -0
  28. package/dist/safe-bash/commands/apply-patch/shared.d.ts.map +1 -0
  29. package/dist/safe-bash/commands/apply-patch/shared.js +248 -0
  30. package/dist/safe-bash/commands/apply-patch/shared.js.map +1 -0
  31. package/dist/safe-bash/commands/archive/create.d.ts +17 -0
  32. package/dist/safe-bash/commands/archive/create.d.ts.map +1 -0
  33. package/dist/safe-bash/commands/archive/create.js +168 -0
  34. package/dist/safe-bash/commands/archive/create.js.map +1 -0
  35. package/dist/safe-bash/commands/archive/extract.d.ts +5 -0
  36. package/dist/safe-bash/commands/archive/extract.d.ts.map +1 -0
  37. package/dist/safe-bash/commands/archive/extract.js +343 -0
  38. package/dist/safe-bash/commands/archive/extract.js.map +1 -0
  39. package/dist/safe-bash/commands/archive/format.d.ts +33 -0
  40. package/dist/safe-bash/commands/archive/format.d.ts.map +1 -0
  41. package/dist/safe-bash/commands/archive/format.js +225 -0
  42. package/dist/safe-bash/commands/archive/format.js.map +1 -0
  43. package/dist/safe-bash/commands/archive/index.d.ts +8 -0
  44. package/dist/safe-bash/commands/archive/index.d.ts.map +1 -0
  45. package/dist/safe-bash/commands/archive/index.js +70 -0
  46. package/dist/safe-bash/commands/archive/index.js.map +1 -0
  47. package/dist/safe-bash/commands/archive/internal.d.ts +48 -0
  48. package/dist/safe-bash/commands/archive/internal.d.ts.map +1 -0
  49. package/dist/safe-bash/commands/archive/internal.js +183 -0
  50. package/dist/safe-bash/commands/archive/internal.js.map +1 -0
  51. package/dist/safe-bash/commands/archive/options.d.ts +26 -0
  52. package/dist/safe-bash/commands/archive/options.d.ts.map +1 -0
  53. package/dist/safe-bash/commands/archive/options.js +265 -0
  54. package/dist/safe-bash/commands/archive/options.js.map +1 -0
  55. package/dist/safe-bash/commands/archive/stream.d.ts +18 -0
  56. package/dist/safe-bash/commands/archive/stream.d.ts.map +1 -0
  57. package/dist/safe-bash/commands/archive/stream.js +108 -0
  58. package/dist/safe-bash/commands/archive/stream.js.map +1 -0
  59. package/dist/safe-bash/commands/basic.d.ts +3 -0
  60. package/dist/safe-bash/commands/basic.d.ts.map +1 -0
  61. package/dist/safe-bash/commands/basic.js +208 -0
  62. package/dist/safe-bash/commands/basic.js.map +1 -0
  63. package/dist/safe-bash/commands/bytes/checksums/index.d.ts +3 -0
  64. package/dist/safe-bash/commands/bytes/checksums/index.d.ts.map +1 -0
  65. package/dist/safe-bash/commands/bytes/checksums/index.js +334 -0
  66. package/dist/safe-bash/commands/bytes/checksums/index.js.map +1 -0
  67. package/dist/safe-bash/commands/bytes/compression/files.d.ts +13 -0
  68. package/dist/safe-bash/commands/bytes/compression/files.d.ts.map +1 -0
  69. package/dist/safe-bash/commands/bytes/compression/files.js +213 -0
  70. package/dist/safe-bash/commands/bytes/compression/files.js.map +1 -0
  71. package/dist/safe-bash/commands/bytes/compression/gunzip.d.ts +3 -0
  72. package/dist/safe-bash/commands/bytes/compression/gunzip.d.ts.map +1 -0
  73. package/dist/safe-bash/commands/bytes/compression/gunzip.js +191 -0
  74. package/dist/safe-bash/commands/bytes/compression/gunzip.js.map +1 -0
  75. package/dist/safe-bash/commands/bytes/compression/index.d.ts +3 -0
  76. package/dist/safe-bash/commands/bytes/compression/index.d.ts.map +1 -0
  77. package/dist/safe-bash/commands/bytes/compression/index.js +46 -0
  78. package/dist/safe-bash/commands/bytes/compression/index.js.map +1 -0
  79. package/dist/safe-bash/commands/bytes/compression/options.d.ts +12 -0
  80. package/dist/safe-bash/commands/bytes/compression/options.d.ts.map +1 -0
  81. package/dist/safe-bash/commands/bytes/compression/options.js +58 -0
  82. package/dist/safe-bash/commands/bytes/compression/options.js.map +1 -0
  83. package/dist/safe-bash/commands/bytes/compression/stream.d.ts +6 -0
  84. package/dist/safe-bash/commands/bytes/compression/stream.d.ts.map +1 -0
  85. package/dist/safe-bash/commands/bytes/compression/stream.js +94 -0
  86. package/dist/safe-bash/commands/bytes/compression/stream.js.map +1 -0
  87. package/dist/safe-bash/commands/bytes/encoding/base.d.ts +3 -0
  88. package/dist/safe-bash/commands/bytes/encoding/base.d.ts.map +1 -0
  89. package/dist/safe-bash/commands/bytes/encoding/base.js +120 -0
  90. package/dist/safe-bash/commands/bytes/encoding/base.js.map +1 -0
  91. package/dist/safe-bash/commands/bytes/encoding/index.d.ts +3 -0
  92. package/dist/safe-bash/commands/bytes/encoding/index.d.ts.map +1 -0
  93. package/dist/safe-bash/commands/bytes/encoding/index.js +7 -0
  94. package/dist/safe-bash/commands/bytes/encoding/index.js.map +1 -0
  95. package/dist/safe-bash/commands/bytes/encoding/od.d.ts +3 -0
  96. package/dist/safe-bash/commands/bytes/encoding/od.d.ts.map +1 -0
  97. package/dist/safe-bash/commands/bytes/encoding/od.js +135 -0
  98. package/dist/safe-bash/commands/bytes/encoding/od.js.map +1 -0
  99. package/dist/safe-bash/commands/bytes/encoding/shared.d.ts +10 -0
  100. package/dist/safe-bash/commands/bytes/encoding/shared.d.ts.map +1 -0
  101. package/dist/safe-bash/commands/bytes/encoding/shared.js +107 -0
  102. package/dist/safe-bash/commands/bytes/encoding/shared.js.map +1 -0
  103. package/dist/safe-bash/commands/bytes/encoding/xxd.d.ts +3 -0
  104. package/dist/safe-bash/commands/bytes/encoding/xxd.d.ts.map +1 -0
  105. package/dist/safe-bash/commands/bytes/encoding/xxd.js +153 -0
  106. package/dist/safe-bash/commands/bytes/encoding/xxd.js.map +1 -0
  107. package/dist/safe-bash/commands/bytes/index.d.ts +7 -0
  108. package/dist/safe-bash/commands/bytes/index.d.ts.map +1 -0
  109. package/dist/safe-bash/commands/bytes/index.js +22 -0
  110. package/dist/safe-bash/commands/bytes/index.js.map +1 -0
  111. package/dist/safe-bash/commands/column/column.d.ts +4 -0
  112. package/dist/safe-bash/commands/column/column.d.ts.map +1 -0
  113. package/dist/safe-bash/commands/column/column.js +141 -0
  114. package/dist/safe-bash/commands/column/column.js.map +1 -0
  115. package/dist/safe-bash/commands/column/display.d.ts +11 -0
  116. package/dist/safe-bash/commands/column/display.d.ts.map +1 -0
  117. package/dist/safe-bash/commands/column/display.js +74 -0
  118. package/dist/safe-bash/commands/column/display.js.map +1 -0
  119. package/dist/safe-bash/commands/column/index.d.ts +7 -0
  120. package/dist/safe-bash/commands/column/index.d.ts.map +1 -0
  121. package/dist/safe-bash/commands/column/index.js +18 -0
  122. package/dist/safe-bash/commands/column/index.js.map +1 -0
  123. package/dist/safe-bash/commands/column/internal.d.ts +35 -0
  124. package/dist/safe-bash/commands/column/internal.d.ts.map +1 -0
  125. package/dist/safe-bash/commands/column/internal.js +193 -0
  126. package/dist/safe-bash/commands/column/internal.js.map +1 -0
  127. package/dist/safe-bash/commands/column/options.d.ts +34 -0
  128. package/dist/safe-bash/commands/column/options.d.ts.map +1 -0
  129. package/dist/safe-bash/commands/column/options.js +141 -0
  130. package/dist/safe-bash/commands/column/options.js.map +1 -0
  131. package/dist/safe-bash/commands/column/table.d.ts +4 -0
  132. package/dist/safe-bash/commands/column/table.d.ts.map +1 -0
  133. package/dist/safe-bash/commands/column/table.js +87 -0
  134. package/dist/safe-bash/commands/column/table.js.map +1 -0
  135. package/dist/safe-bash/commands/copy-identity.d.ts +4 -0
  136. package/dist/safe-bash/commands/copy-identity.d.ts.map +1 -0
  137. package/dist/safe-bash/commands/copy-identity.js +46 -0
  138. package/dist/safe-bash/commands/copy-identity.js.map +1 -0
  139. package/dist/safe-bash/commands/diff-patch/diff-format.d.ts +9 -0
  140. package/dist/safe-bash/commands/diff-patch/diff-format.d.ts.map +1 -0
  141. package/dist/safe-bash/commands/diff-patch/diff-format.js +155 -0
  142. package/dist/safe-bash/commands/diff-patch/diff-format.js.map +1 -0
  143. package/dist/safe-bash/commands/diff-patch/diff.d.ts +3 -0
  144. package/dist/safe-bash/commands/diff-patch/diff.d.ts.map +1 -0
  145. package/dist/safe-bash/commands/diff-patch/diff.js +291 -0
  146. package/dist/safe-bash/commands/diff-patch/diff.js.map +1 -0
  147. package/dist/safe-bash/commands/diff-patch/index.d.ts +6 -0
  148. package/dist/safe-bash/commands/diff-patch/index.d.ts.map +1 -0
  149. package/dist/safe-bash/commands/diff-patch/index.js +21 -0
  150. package/dist/safe-bash/commands/diff-patch/index.js.map +1 -0
  151. package/dist/safe-bash/commands/diff-patch/patch-envelope.d.ts +3 -0
  152. package/dist/safe-bash/commands/diff-patch/patch-envelope.d.ts.map +1 -0
  153. package/dist/safe-bash/commands/diff-patch/patch-envelope.js +56 -0
  154. package/dist/safe-bash/commands/diff-patch/patch-envelope.js.map +1 -0
  155. package/dist/safe-bash/commands/diff-patch/patch-formats.d.ts +8 -0
  156. package/dist/safe-bash/commands/diff-patch/patch-formats.d.ts.map +1 -0
  157. package/dist/safe-bash/commands/diff-patch/patch-formats.js +247 -0
  158. package/dist/safe-bash/commands/diff-patch/patch-formats.js.map +1 -0
  159. package/dist/safe-bash/commands/diff-patch/patch-gnu-paths.d.ts +34 -0
  160. package/dist/safe-bash/commands/diff-patch/patch-gnu-paths.d.ts.map +1 -0
  161. package/dist/safe-bash/commands/diff-patch/patch-gnu-paths.js +215 -0
  162. package/dist/safe-bash/commands/diff-patch/patch-gnu-paths.js.map +1 -0
  163. package/dist/safe-bash/commands/diff-patch/patch-gnu-reject.d.ts +4 -0
  164. package/dist/safe-bash/commands/diff-patch/patch-gnu-reject.d.ts.map +1 -0
  165. package/dist/safe-bash/commands/diff-patch/patch-gnu-reject.js +89 -0
  166. package/dist/safe-bash/commands/diff-patch/patch-gnu-reject.js.map +1 -0
  167. package/dist/safe-bash/commands/diff-patch/patch-path.d.ts +4 -0
  168. package/dist/safe-bash/commands/diff-patch/patch-path.d.ts.map +1 -0
  169. package/dist/safe-bash/commands/diff-patch/patch-path.js +95 -0
  170. package/dist/safe-bash/commands/diff-patch/patch-path.js.map +1 -0
  171. package/dist/safe-bash/commands/diff-patch/patch.d.ts +3 -0
  172. package/dist/safe-bash/commands/diff-patch/patch.d.ts.map +1 -0
  173. package/dist/safe-bash/commands/diff-patch/patch.js +389 -0
  174. package/dist/safe-bash/commands/diff-patch/patch.js.map +1 -0
  175. package/dist/safe-bash/commands/diff-patch/shared.d.ts +42 -0
  176. package/dist/safe-bash/commands/diff-patch/shared.d.ts.map +1 -0
  177. package/dist/safe-bash/commands/diff-patch/shared.js +177 -0
  178. package/dist/safe-bash/commands/diff-patch/shared.js.map +1 -0
  179. package/dist/safe-bash/commands/diff-patch/unified.d.ts +50 -0
  180. package/dist/safe-bash/commands/diff-patch/unified.d.ts.map +1 -0
  181. package/dist/safe-bash/commands/diff-patch/unified.js +263 -0
  182. package/dist/safe-bash/commands/diff-patch/unified.js.map +1 -0
  183. package/dist/safe-bash/commands/du/arguments.d.ts +17 -0
  184. package/dist/safe-bash/commands/du/arguments.d.ts.map +1 -0
  185. package/dist/safe-bash/commands/du/arguments.js +164 -0
  186. package/dist/safe-bash/commands/du/arguments.js.map +1 -0
  187. package/dist/safe-bash/commands/du/budget.d.ts +37 -0
  188. package/dist/safe-bash/commands/du/budget.d.ts.map +1 -0
  189. package/dist/safe-bash/commands/du/budget.js +127 -0
  190. package/dist/safe-bash/commands/du/budget.js.map +1 -0
  191. package/dist/safe-bash/commands/du/du.d.ts +4 -0
  192. package/dist/safe-bash/commands/du/du.d.ts.map +1 -0
  193. package/dist/safe-bash/commands/du/du.js +205 -0
  194. package/dist/safe-bash/commands/du/du.js.map +1 -0
  195. package/dist/safe-bash/commands/du/format.d.ts +10 -0
  196. package/dist/safe-bash/commands/du/format.d.ts.map +1 -0
  197. package/dist/safe-bash/commands/du/format.js +54 -0
  198. package/dist/safe-bash/commands/du/format.js.map +1 -0
  199. package/dist/safe-bash/commands/du/index.d.ts +7 -0
  200. package/dist/safe-bash/commands/du/index.d.ts.map +1 -0
  201. package/dist/safe-bash/commands/du/index.js +19 -0
  202. package/dist/safe-bash/commands/du/index.js.map +1 -0
  203. package/dist/safe-bash/commands/du/options.d.ts +17 -0
  204. package/dist/safe-bash/commands/du/options.d.ts.map +1 -0
  205. package/dist/safe-bash/commands/du/options.js +14 -0
  206. package/dist/safe-bash/commands/du/options.js.map +1 -0
  207. package/dist/safe-bash/commands/env-split.d.ts +8 -0
  208. package/dist/safe-bash/commands/env-split.d.ts.map +1 -0
  209. package/dist/safe-bash/commands/env-split.js +343 -0
  210. package/dist/safe-bash/commands/env-split.js.map +1 -0
  211. package/dist/safe-bash/commands/execution.d.ts +4 -0
  212. package/dist/safe-bash/commands/execution.d.ts.map +1 -0
  213. package/dist/safe-bash/commands/execution.js +230 -0
  214. package/dist/safe-bash/commands/execution.js.map +1 -0
  215. package/dist/safe-bash/commands/expr/bre-worker.d.ts +3 -0
  216. package/dist/safe-bash/commands/expr/bre-worker.d.ts.map +1 -0
  217. package/dist/safe-bash/commands/expr/bre-worker.js +445 -0
  218. package/dist/safe-bash/commands/expr/bre-worker.js.map +1 -0
  219. package/dist/safe-bash/commands/expr/evaluate.d.ts +15 -0
  220. package/dist/safe-bash/commands/expr/evaluate.d.ts.map +1 -0
  221. package/dist/safe-bash/commands/expr/evaluate.js +150 -0
  222. package/dist/safe-bash/commands/expr/evaluate.js.map +1 -0
  223. package/dist/safe-bash/commands/expr/index.d.ts +7 -0
  224. package/dist/safe-bash/commands/expr/index.d.ts.map +1 -0
  225. package/dist/safe-bash/commands/expr/index.js +86 -0
  226. package/dist/safe-bash/commands/expr/index.js.map +1 -0
  227. package/dist/safe-bash/commands/expr/internal.d.ts +45 -0
  228. package/dist/safe-bash/commands/expr/internal.d.ts.map +1 -0
  229. package/dist/safe-bash/commands/expr/internal.js +145 -0
  230. package/dist/safe-bash/commands/expr/internal.js.map +1 -0
  231. package/dist/safe-bash/commands/expr/syntax.d.ts +4 -0
  232. package/dist/safe-bash/commands/expr/syntax.d.ts.map +1 -0
  233. package/dist/safe-bash/commands/expr/syntax.js +120 -0
  234. package/dist/safe-bash/commands/expr/syntax.js.map +1 -0
  235. package/dist/safe-bash/commands/file/classify.d.ts +8 -0
  236. package/dist/safe-bash/commands/file/classify.d.ts.map +1 -0
  237. package/dist/safe-bash/commands/file/classify.js +125 -0
  238. package/dist/safe-bash/commands/file/classify.js.map +1 -0
  239. package/dist/safe-bash/commands/file/index.d.ts +7 -0
  240. package/dist/safe-bash/commands/file/index.d.ts.map +1 -0
  241. package/dist/safe-bash/commands/file/index.js +257 -0
  242. package/dist/safe-bash/commands/file/index.js.map +1 -0
  243. package/dist/safe-bash/commands/file/shared.d.ts +48 -0
  244. package/dist/safe-bash/commands/file/shared.d.ts.map +1 -0
  245. package/dist/safe-bash/commands/file/shared.js +166 -0
  246. package/dist/safe-bash/commands/file/shared.js.map +1 -0
  247. package/dist/safe-bash/commands/filesystem.d.ts +3 -0
  248. package/dist/safe-bash/commands/filesystem.d.ts.map +1 -0
  249. package/dist/safe-bash/commands/filesystem.js +427 -0
  250. package/dist/safe-bash/commands/filesystem.js.map +1 -0
  251. package/dist/safe-bash/commands/find.d.ts +3 -0
  252. package/dist/safe-bash/commands/find.d.ts.map +1 -0
  253. package/dist/safe-bash/commands/find.js +238 -0
  254. package/dist/safe-bash/commands/find.js.map +1 -0
  255. package/dist/safe-bash/commands/git/arguments.d.ts +17 -0
  256. package/dist/safe-bash/commands/git/arguments.d.ts.map +1 -0
  257. package/dist/safe-bash/commands/git/arguments.js +150 -0
  258. package/dist/safe-bash/commands/git/arguments.js.map +1 -0
  259. package/dist/safe-bash/commands/git/codec.d.ts +8 -0
  260. package/dist/safe-bash/commands/git/codec.d.ts.map +1 -0
  261. package/dist/safe-bash/commands/git/codec.js +225 -0
  262. package/dist/safe-bash/commands/git/codec.js.map +1 -0
  263. package/dist/safe-bash/commands/git/config.d.ts +8 -0
  264. package/dist/safe-bash/commands/git/config.d.ts.map +1 -0
  265. package/dist/safe-bash/commands/git/config.js +100 -0
  266. package/dist/safe-bash/commands/git/config.js.map +1 -0
  267. package/dist/safe-bash/commands/git/crc.d.ts +3 -0
  268. package/dist/safe-bash/commands/git/crc.d.ts.map +1 -0
  269. package/dist/safe-bash/commands/git/crc.js +14 -0
  270. package/dist/safe-bash/commands/git/crc.js.map +1 -0
  271. package/dist/safe-bash/commands/git/delta.d.ts +4 -0
  272. package/dist/safe-bash/commands/git/delta.d.ts.map +1 -0
  273. package/dist/safe-bash/commands/git/delta.js +62 -0
  274. package/dist/safe-bash/commands/git/delta.js.map +1 -0
  275. package/dist/safe-bash/commands/git/diff.d.ts +9 -0
  276. package/dist/safe-bash/commands/git/diff.d.ts.map +1 -0
  277. package/dist/safe-bash/commands/git/diff.js +131 -0
  278. package/dist/safe-bash/commands/git/diff.js.map +1 -0
  279. package/dist/safe-bash/commands/git/ignore.d.ts +22 -0
  280. package/dist/safe-bash/commands/git/ignore.d.ts.map +1 -0
  281. package/dist/safe-bash/commands/git/ignore.js +153 -0
  282. package/dist/safe-bash/commands/git/ignore.js.map +1 -0
  283. package/dist/safe-bash/commands/git/index.d.ts +7 -0
  284. package/dist/safe-bash/commands/git/index.d.ts.map +1 -0
  285. package/dist/safe-bash/commands/git/index.js +66 -0
  286. package/dist/safe-bash/commands/git/index.js.map +1 -0
  287. package/dist/safe-bash/commands/git/io.d.ts +46 -0
  288. package/dist/safe-bash/commands/git/io.d.ts.map +1 -0
  289. package/dist/safe-bash/commands/git/io.js +388 -0
  290. package/dist/safe-bash/commands/git/io.js.map +1 -0
  291. package/dist/safe-bash/commands/git/limits.d.ts +39 -0
  292. package/dist/safe-bash/commands/git/limits.d.ts.map +1 -0
  293. package/dist/safe-bash/commands/git/limits.js +43 -0
  294. package/dist/safe-bash/commands/git/limits.js.map +1 -0
  295. package/dist/safe-bash/commands/git/pack.d.ts +14 -0
  296. package/dist/safe-bash/commands/git/pack.d.ts.map +1 -0
  297. package/dist/safe-bash/commands/git/pack.js +273 -0
  298. package/dist/safe-bash/commands/git/pack.js.map +1 -0
  299. package/dist/safe-bash/commands/git/queries.d.ts +6 -0
  300. package/dist/safe-bash/commands/git/queries.d.ts.map +1 -0
  301. package/dist/safe-bash/commands/git/queries.js +292 -0
  302. package/dist/safe-bash/commands/git/queries.js.map +1 -0
  303. package/dist/safe-bash/commands/git/repository.d.ts +49 -0
  304. package/dist/safe-bash/commands/git/repository.d.ts.map +1 -0
  305. package/dist/safe-bash/commands/git/repository.js +473 -0
  306. package/dist/safe-bash/commands/git/repository.js.map +1 -0
  307. package/dist/safe-bash/commands/grep-aliases/index.d.ts +11 -0
  308. package/dist/safe-bash/commands/grep-aliases/index.d.ts.map +1 -0
  309. package/dist/safe-bash/commands/grep-aliases/index.js +52 -0
  310. package/dist/safe-bash/commands/grep-aliases/index.js.map +1 -0
  311. package/dist/safe-bash/commands/grep.d.ts +4 -0
  312. package/dist/safe-bash/commands/grep.d.ts.map +1 -0
  313. package/dist/safe-bash/commands/grep.js +112 -0
  314. package/dist/safe-bash/commands/grep.js.map +1 -0
  315. package/dist/safe-bash/commands/html-to-markdown/budget.d.ts +34 -0
  316. package/dist/safe-bash/commands/html-to-markdown/budget.d.ts.map +1 -0
  317. package/dist/safe-bash/commands/html-to-markdown/budget.js +94 -0
  318. package/dist/safe-bash/commands/html-to-markdown/budget.js.map +1 -0
  319. package/dist/safe-bash/commands/html-to-markdown/entities.d.ts +5 -0
  320. package/dist/safe-bash/commands/html-to-markdown/entities.d.ts.map +1 -0
  321. package/dist/safe-bash/commands/html-to-markdown/entities.js +126 -0
  322. package/dist/safe-bash/commands/html-to-markdown/entities.js.map +1 -0
  323. package/dist/safe-bash/commands/html-to-markdown/index.d.ts +7 -0
  324. package/dist/safe-bash/commands/html-to-markdown/index.d.ts.map +1 -0
  325. package/dist/safe-bash/commands/html-to-markdown/index.js +91 -0
  326. package/dist/safe-bash/commands/html-to-markdown/index.js.map +1 -0
  327. package/dist/safe-bash/commands/html-to-markdown/input.d.ts +18 -0
  328. package/dist/safe-bash/commands/html-to-markdown/input.d.ts.map +1 -0
  329. package/dist/safe-bash/commands/html-to-markdown/input.js +118 -0
  330. package/dist/safe-bash/commands/html-to-markdown/input.js.map +1 -0
  331. package/dist/safe-bash/commands/html-to-markdown/options.d.ts +28 -0
  332. package/dist/safe-bash/commands/html-to-markdown/options.d.ts.map +1 -0
  333. package/dist/safe-bash/commands/html-to-markdown/options.js +56 -0
  334. package/dist/safe-bash/commands/html-to-markdown/options.js.map +1 -0
  335. package/dist/safe-bash/commands/html-to-markdown/parser.d.ts +31 -0
  336. package/dist/safe-bash/commands/html-to-markdown/parser.d.ts.map +1 -0
  337. package/dist/safe-bash/commands/html-to-markdown/parser.js +293 -0
  338. package/dist/safe-bash/commands/html-to-markdown/parser.js.map +1 -0
  339. package/dist/safe-bash/commands/html-to-markdown/render.d.ts +25 -0
  340. package/dist/safe-bash/commands/html-to-markdown/render.d.ts.map +1 -0
  341. package/dist/safe-bash/commands/html-to-markdown/render.js +445 -0
  342. package/dist/safe-bash/commands/html-to-markdown/render.js.map +1 -0
  343. package/dist/safe-bash/commands/html-to-markdown/text.d.ts +5 -0
  344. package/dist/safe-bash/commands/html-to-markdown/text.d.ts.map +1 -0
  345. package/dist/safe-bash/commands/html-to-markdown/text.js +51 -0
  346. package/dist/safe-bash/commands/html-to-markdown/text.js.map +1 -0
  347. package/dist/safe-bash/commands/index.d.ts +10 -0
  348. package/dist/safe-bash/commands/index.d.ts.map +1 -0
  349. package/dist/safe-bash/commands/index.js +45 -0
  350. package/dist/safe-bash/commands/index.js.map +1 -0
  351. package/dist/safe-bash/commands/internal.d.ts +38 -0
  352. package/dist/safe-bash/commands/internal.d.ts.map +1 -0
  353. package/dist/safe-bash/commands/internal.js +328 -0
  354. package/dist/safe-bash/commands/internal.js.map +1 -0
  355. package/dist/safe-bash/commands/metadata/chmod.d.ts +3 -0
  356. package/dist/safe-bash/commands/metadata/chmod.d.ts.map +1 -0
  357. package/dist/safe-bash/commands/metadata/chmod.js +144 -0
  358. package/dist/safe-bash/commands/metadata/chmod.js.map +1 -0
  359. package/dist/safe-bash/commands/metadata/index.d.ts +6 -0
  360. package/dist/safe-bash/commands/metadata/index.d.ts.map +1 -0
  361. package/dist/safe-bash/commands/metadata/index.js +20 -0
  362. package/dist/safe-bash/commands/metadata/index.js.map +1 -0
  363. package/dist/safe-bash/commands/metadata/internal.d.ts +29 -0
  364. package/dist/safe-bash/commands/metadata/internal.d.ts.map +1 -0
  365. package/dist/safe-bash/commands/metadata/internal.js +67 -0
  366. package/dist/safe-bash/commands/metadata/internal.js.map +1 -0
  367. package/dist/safe-bash/commands/metadata/mktemp.d.ts +3 -0
  368. package/dist/safe-bash/commands/metadata/mktemp.d.ts.map +1 -0
  369. package/dist/safe-bash/commands/metadata/mktemp.js +142 -0
  370. package/dist/safe-bash/commands/metadata/mktemp.js.map +1 -0
  371. package/dist/safe-bash/commands/metadata/stat.d.ts +3 -0
  372. package/dist/safe-bash/commands/metadata/stat.d.ts.map +1 -0
  373. package/dist/safe-bash/commands/metadata/stat.js +245 -0
  374. package/dist/safe-bash/commands/metadata/stat.js.map +1 -0
  375. package/dist/safe-bash/commands/move.d.ts +10 -0
  376. package/dist/safe-bash/commands/move.d.ts.map +1 -0
  377. package/dist/safe-bash/commands/move.js +161 -0
  378. package/dist/safe-bash/commands/move.js.map +1 -0
  379. package/dist/safe-bash/commands/network/args.d.ts +37 -0
  380. package/dist/safe-bash/commands/network/args.d.ts.map +1 -0
  381. package/dist/safe-bash/commands/network/args.js +228 -0
  382. package/dist/safe-bash/commands/network/args.js.map +1 -0
  383. package/dist/safe-bash/commands/network/body.d.ts +10 -0
  384. package/dist/safe-bash/commands/network/body.d.ts.map +1 -0
  385. package/dist/safe-bash/commands/network/body.js +188 -0
  386. package/dist/safe-bash/commands/network/body.js.map +1 -0
  387. package/dist/safe-bash/commands/network/curl.d.ts +4 -0
  388. package/dist/safe-bash/commands/network/curl.d.ts.map +1 -0
  389. package/dist/safe-bash/commands/network/curl.js +404 -0
  390. package/dist/safe-bash/commands/network/curl.js.map +1 -0
  391. package/dist/safe-bash/commands/network/index.d.ts +10 -0
  392. package/dist/safe-bash/commands/network/index.d.ts.map +1 -0
  393. package/dist/safe-bash/commands/network/index.js +22 -0
  394. package/dist/safe-bash/commands/network/index.js.map +1 -0
  395. package/dist/safe-bash/commands/network/output.d.ts +7 -0
  396. package/dist/safe-bash/commands/network/output.d.ts.map +1 -0
  397. package/dist/safe-bash/commands/network/output.js +93 -0
  398. package/dist/safe-bash/commands/network/output.js.map +1 -0
  399. package/dist/safe-bash/commands/network/shared.d.ts +10 -0
  400. package/dist/safe-bash/commands/network/shared.d.ts.map +1 -0
  401. package/dist/safe-bash/commands/network/shared.js +52 -0
  402. package/dist/safe-bash/commands/network/shared.js.map +1 -0
  403. package/dist/safe-bash/commands/network/transport.d.ts +7 -0
  404. package/dist/safe-bash/commands/network/transport.d.ts.map +1 -0
  405. package/dist/safe-bash/commands/network/transport.js +81 -0
  406. package/dist/safe-bash/commands/network/transport.js.map +1 -0
  407. package/dist/safe-bash/commands/network/types.d.ts +49 -0
  408. package/dist/safe-bash/commands/network/types.d.ts.map +1 -0
  409. package/dist/safe-bash/commands/network/types.js +19 -0
  410. package/dist/safe-bash/commands/network/types.js.map +1 -0
  411. package/dist/safe-bash/commands/node/admission.d.ts +8 -0
  412. package/dist/safe-bash/commands/node/admission.d.ts.map +1 -0
  413. package/dist/safe-bash/commands/node/admission.js +557 -0
  414. package/dist/safe-bash/commands/node/admission.js.map +1 -0
  415. package/dist/safe-bash/commands/node/channel.d.ts +31 -0
  416. package/dist/safe-bash/commands/node/channel.d.ts.map +1 -0
  417. package/dist/safe-bash/commands/node/channel.js +58 -0
  418. package/dist/safe-bash/commands/node/channel.js.map +1 -0
  419. package/dist/safe-bash/commands/node/cli.d.ts +9 -0
  420. package/dist/safe-bash/commands/node/cli.d.ts.map +1 -0
  421. package/dist/safe-bash/commands/node/cli.js +55 -0
  422. package/dist/safe-bash/commands/node/cli.js.map +1 -0
  423. package/dist/safe-bash/commands/node/diagnostics.d.ts +8 -0
  424. package/dist/safe-bash/commands/node/diagnostics.d.ts.map +1 -0
  425. package/dist/safe-bash/commands/node/diagnostics.js +48 -0
  426. package/dist/safe-bash/commands/node/diagnostics.js.map +1 -0
  427. package/dist/safe-bash/commands/node/host.d.ts +30 -0
  428. package/dist/safe-bash/commands/node/host.d.ts.map +1 -0
  429. package/dist/safe-bash/commands/node/host.js +411 -0
  430. package/dist/safe-bash/commands/node/host.js.map +1 -0
  431. package/dist/safe-bash/commands/node/index.d.ts +15 -0
  432. package/dist/safe-bash/commands/node/index.d.ts.map +1 -0
  433. package/dist/safe-bash/commands/node/index.js +212 -0
  434. package/dist/safe-bash/commands/node/index.js.map +1 -0
  435. package/dist/safe-bash/commands/node/lifecycle.d.ts +29 -0
  436. package/dist/safe-bash/commands/node/lifecycle.d.ts.map +1 -0
  437. package/dist/safe-bash/commands/node/lifecycle.js +205 -0
  438. package/dist/safe-bash/commands/node/lifecycle.js.map +1 -0
  439. package/dist/safe-bash/commands/node/lower.d.ts +3 -0
  440. package/dist/safe-bash/commands/node/lower.d.ts.map +1 -0
  441. package/dist/safe-bash/commands/node/lower.js +407 -0
  442. package/dist/safe-bash/commands/node/lower.js.map +1 -0
  443. package/dist/safe-bash/commands/node/program.d.ts +3 -0
  444. package/dist/safe-bash/commands/node/program.d.ts.map +1 -0
  445. package/dist/safe-bash/commands/node/program.js +216 -0
  446. package/dist/safe-bash/commands/node/program.js.map +1 -0
  447. package/dist/safe-bash/commands/node/rules.d.ts +2 -0
  448. package/dist/safe-bash/commands/node/rules.d.ts.map +1 -0
  449. package/dist/safe-bash/commands/node/rules.js +134 -0
  450. package/dist/safe-bash/commands/node/rules.js.map +1 -0
  451. package/dist/safe-bash/commands/node/safejs.d.ts +4 -0
  452. package/dist/safe-bash/commands/node/safejs.d.ts.map +1 -0
  453. package/dist/safe-bash/commands/node/safejs.js +79 -0
  454. package/dist/safe-bash/commands/node/safejs.js.map +1 -0
  455. package/dist/safe-bash/commands/node/types.d.ts +143 -0
  456. package/dist/safe-bash/commands/node/types.d.ts.map +1 -0
  457. package/dist/safe-bash/commands/node/types.js +16 -0
  458. package/dist/safe-bash/commands/node/types.js.map +1 -0
  459. package/dist/safe-bash/commands/node/values.d.ts +13 -0
  460. package/dist/safe-bash/commands/node/values.d.ts.map +1 -0
  461. package/dist/safe-bash/commands/node/values.js +128 -0
  462. package/dist/safe-bash/commands/node/values.js.map +1 -0
  463. package/dist/safe-bash/commands/node/worker-main.d.ts +2 -0
  464. package/dist/safe-bash/commands/node/worker-main.d.ts.map +1 -0
  465. package/dist/safe-bash/commands/node/worker-main.js +179 -0
  466. package/dist/safe-bash/commands/node/worker-main.js.map +1 -0
  467. package/dist/safe-bash/commands/node/worker-provider.d.ts +4 -0
  468. package/dist/safe-bash/commands/node/worker-provider.d.ts.map +1 -0
  469. package/dist/safe-bash/commands/node/worker-provider.js +355 -0
  470. package/dist/safe-bash/commands/node/worker-provider.js.map +1 -0
  471. package/dist/safe-bash/commands/node/worker-types.d.ts +30 -0
  472. package/dist/safe-bash/commands/node/worker-types.d.ts.map +1 -0
  473. package/dist/safe-bash/commands/node/worker-types.js +2 -0
  474. package/dist/safe-bash/commands/node/worker-types.js.map +1 -0
  475. package/dist/safe-bash/commands/predicates.d.ts +3 -0
  476. package/dist/safe-bash/commands/predicates.d.ts.map +1 -0
  477. package/dist/safe-bash/commands/predicates.js +151 -0
  478. package/dist/safe-bash/commands/predicates.js.map +1 -0
  479. package/dist/safe-bash/commands/regex-execution/client.d.ts +70 -0
  480. package/dist/safe-bash/commands/regex-execution/client.d.ts.map +1 -0
  481. package/dist/safe-bash/commands/regex-execution/client.js +385 -0
  482. package/dist/safe-bash/commands/regex-execution/client.js.map +1 -0
  483. package/dist/safe-bash/commands/regex-execution/ere/errors.d.ts +22 -0
  484. package/dist/safe-bash/commands/regex-execution/ere/errors.d.ts.map +1 -0
  485. package/dist/safe-bash/commands/regex-execution/ere/errors.js +37 -0
  486. package/dist/safe-bash/commands/regex-execution/ere/errors.js.map +1 -0
  487. package/dist/safe-bash/commands/regex-execution/ere/limits.d.ts +14 -0
  488. package/dist/safe-bash/commands/regex-execution/ere/limits.d.ts.map +1 -0
  489. package/dist/safe-bash/commands/regex-execution/ere/limits.js +87 -0
  490. package/dist/safe-bash/commands/regex-execution/ere/limits.js.map +1 -0
  491. package/dist/safe-bash/commands/regex-execution/ere/matcher.d.ts +4 -0
  492. package/dist/safe-bash/commands/regex-execution/ere/matcher.d.ts.map +1 -0
  493. package/dist/safe-bash/commands/regex-execution/ere/matcher.js +202 -0
  494. package/dist/safe-bash/commands/regex-execution/ere/matcher.js.map +1 -0
  495. package/dist/safe-bash/commands/regex-execution/ere/syntax.d.ts +6 -0
  496. package/dist/safe-bash/commands/regex-execution/ere/syntax.d.ts.map +1 -0
  497. package/dist/safe-bash/commands/regex-execution/ere/syntax.js +291 -0
  498. package/dist/safe-bash/commands/regex-execution/ere/syntax.js.map +1 -0
  499. package/dist/safe-bash/commands/regex-execution/ere/transport/accounting.d.ts +54 -0
  500. package/dist/safe-bash/commands/regex-execution/ere/transport/accounting.d.ts.map +1 -0
  501. package/dist/safe-bash/commands/regex-execution/ere/transport/accounting.js +175 -0
  502. package/dist/safe-bash/commands/regex-execution/ere/transport/accounting.js.map +1 -0
  503. package/dist/safe-bash/commands/regex-execution/ere/transport/owner.d.ts +15 -0
  504. package/dist/safe-bash/commands/regex-execution/ere/transport/owner.d.ts.map +1 -0
  505. package/dist/safe-bash/commands/regex-execution/ere/transport/owner.js +253 -0
  506. package/dist/safe-bash/commands/regex-execution/ere/transport/owner.js.map +1 -0
  507. package/dist/safe-bash/commands/regex-execution/ere/transport/protocol.d.ts +68 -0
  508. package/dist/safe-bash/commands/regex-execution/ere/transport/protocol.d.ts.map +1 -0
  509. package/dist/safe-bash/commands/regex-execution/ere/transport/protocol.js +35 -0
  510. package/dist/safe-bash/commands/regex-execution/ere/transport/protocol.js.map +1 -0
  511. package/dist/safe-bash/commands/regex-execution/ere/transport/root.d.ts +15 -0
  512. package/dist/safe-bash/commands/regex-execution/ere/transport/root.d.ts.map +1 -0
  513. package/dist/safe-bash/commands/regex-execution/ere/transport/root.js +372 -0
  514. package/dist/safe-bash/commands/regex-execution/ere/transport/root.js.map +1 -0
  515. package/dist/safe-bash/commands/regex-execution/ere/transport/validation.d.ts +22 -0
  516. package/dist/safe-bash/commands/regex-execution/ere/transport/validation.d.ts.map +1 -0
  517. package/dist/safe-bash/commands/regex-execution/ere/transport/validation.js +286 -0
  518. package/dist/safe-bash/commands/regex-execution/ere/transport/validation.js.map +1 -0
  519. package/dist/safe-bash/commands/regex-execution/ere/transport/wire-engine.d.ts +3 -0
  520. package/dist/safe-bash/commands/regex-execution/ere/transport/wire-engine.d.ts.map +1 -0
  521. package/dist/safe-bash/commands/regex-execution/ere/transport/wire-engine.js +47 -0
  522. package/dist/safe-bash/commands/regex-execution/ere/transport/wire-engine.js.map +1 -0
  523. package/dist/safe-bash/commands/regex-execution/ere/transport/worker-entry.d.ts +2 -0
  524. package/dist/safe-bash/commands/regex-execution/ere/transport/worker-entry.d.ts.map +1 -0
  525. package/dist/safe-bash/commands/regex-execution/ere/transport/worker-entry.js +32 -0
  526. package/dist/safe-bash/commands/regex-execution/ere/transport/worker-entry.js.map +1 -0
  527. package/dist/safe-bash/commands/regex-execution/ere/types.d.ts +56 -0
  528. package/dist/safe-bash/commands/regex-execution/ere/types.d.ts.map +1 -0
  529. package/dist/safe-bash/commands/regex-execution/ere/types.js +2 -0
  530. package/dist/safe-bash/commands/regex-execution/ere/types.js.map +1 -0
  531. package/dist/safe-bash/commands/regex-execution/matching.d.ts +3 -0
  532. package/dist/safe-bash/commands/regex-execution/matching.d.ts.map +1 -0
  533. package/dist/safe-bash/commands/regex-execution/matching.js +321 -0
  534. package/dist/safe-bash/commands/regex-execution/matching.js.map +1 -0
  535. package/dist/safe-bash/commands/regex-execution/protocol.d.ts +116 -0
  536. package/dist/safe-bash/commands/regex-execution/protocol.d.ts.map +1 -0
  537. package/dist/safe-bash/commands/regex-execution/protocol.js +159 -0
  538. package/dist/safe-bash/commands/regex-execution/protocol.js.map +1 -0
  539. package/dist/safe-bash/commands/regex-execution/worker.d.ts +2 -0
  540. package/dist/safe-bash/commands/regex-execution/worker.d.ts.map +1 -0
  541. package/dist/safe-bash/commands/regex-execution/worker.js +52 -0
  542. package/dist/safe-bash/commands/regex-execution/worker.js.map +1 -0
  543. package/dist/safe-bash/commands/safejs/index.d.ts +18 -0
  544. package/dist/safe-bash/commands/safejs/index.d.ts.map +1 -0
  545. package/dist/safe-bash/commands/safejs/index.js +184 -0
  546. package/dist/safe-bash/commands/safejs/index.js.map +1 -0
  547. package/dist/safe-bash/commands/safejs/io.d.ts +36 -0
  548. package/dist/safe-bash/commands/safejs/io.d.ts.map +1 -0
  549. package/dist/safe-bash/commands/safejs/io.js +127 -0
  550. package/dist/safe-bash/commands/safejs/io.js.map +1 -0
  551. package/dist/safe-bash/commands/safejs/options.d.ts +12 -0
  552. package/dist/safe-bash/commands/safejs/options.d.ts.map +1 -0
  553. package/dist/safe-bash/commands/safejs/options.js +46 -0
  554. package/dist/safe-bash/commands/safejs/options.js.map +1 -0
  555. package/dist/safe-bash/commands/safejs/render.d.ts +2 -0
  556. package/dist/safe-bash/commands/safejs/render.d.ts.map +1 -0
  557. package/dist/safe-bash/commands/safejs/render.js +100 -0
  558. package/dist/safe-bash/commands/safejs/render.js.map +1 -0
  559. package/dist/safe-bash/commands/safejs/types.d.ts +64 -0
  560. package/dist/safe-bash/commands/safejs/types.d.ts.map +1 -0
  561. package/dist/safe-bash/commands/safejs/types.js +10 -0
  562. package/dist/safe-bash/commands/safejs/types.js.map +1 -0
  563. package/dist/safe-bash/commands/search/glob.d.ts +21 -0
  564. package/dist/safe-bash/commands/search/glob.d.ts.map +1 -0
  565. package/dist/safe-bash/commands/search/glob.js +79 -0
  566. package/dist/safe-bash/commands/search/glob.js.map +1 -0
  567. package/dist/safe-bash/commands/search/index.d.ts +6 -0
  568. package/dist/safe-bash/commands/search/index.d.ts.map +1 -0
  569. package/dist/safe-bash/commands/search/index.js +20 -0
  570. package/dist/safe-bash/commands/search/index.js.map +1 -0
  571. package/dist/safe-bash/commands/search/matcher.d.ts +12 -0
  572. package/dist/safe-bash/commands/search/matcher.d.ts.map +1 -0
  573. package/dist/safe-bash/commands/search/matcher.js +24 -0
  574. package/dist/safe-bash/commands/search/matcher.js.map +1 -0
  575. package/dist/safe-bash/commands/search/options.d.ts +56 -0
  576. package/dist/safe-bash/commands/search/options.d.ts.map +1 -0
  577. package/dist/safe-bash/commands/search/options.js +307 -0
  578. package/dist/safe-bash/commands/search/options.js.map +1 -0
  579. package/dist/safe-bash/commands/search/output.d.ts +37 -0
  580. package/dist/safe-bash/commands/search/output.d.ts.map +1 -0
  581. package/dist/safe-bash/commands/search/output.js +63 -0
  582. package/dist/safe-bash/commands/search/output.js.map +1 -0
  583. package/dist/safe-bash/commands/search/rg.d.ts +4 -0
  584. package/dist/safe-bash/commands/search/rg.d.ts.map +1 -0
  585. package/dist/safe-bash/commands/search/rg.js +219 -0
  586. package/dist/safe-bash/commands/search/rg.js.map +1 -0
  587. package/dist/safe-bash/commands/search/shared.d.ts +37 -0
  588. package/dist/safe-bash/commands/search/shared.d.ts.map +1 -0
  589. package/dist/safe-bash/commands/search/shared.js +111 -0
  590. package/dist/safe-bash/commands/search/shared.js.map +1 -0
  591. package/dist/safe-bash/commands/search/walk.d.ts +28 -0
  592. package/dist/safe-bash/commands/search/walk.d.ts.map +1 -0
  593. package/dist/safe-bash/commands/search/walk.js +201 -0
  594. package/dist/safe-bash/commands/search/walk.js.map +1 -0
  595. package/dist/safe-bash/commands/split/index.d.ts +6 -0
  596. package/dist/safe-bash/commands/split/index.d.ts.map +1 -0
  597. package/dist/safe-bash/commands/split/index.js +18 -0
  598. package/dist/safe-bash/commands/split/index.js.map +1 -0
  599. package/dist/safe-bash/commands/split/io.d.ts +28 -0
  600. package/dist/safe-bash/commands/split/io.d.ts.map +1 -0
  601. package/dist/safe-bash/commands/split/io.js +101 -0
  602. package/dist/safe-bash/commands/split/io.js.map +1 -0
  603. package/dist/safe-bash/commands/split/names.d.ts +11 -0
  604. package/dist/safe-bash/commands/split/names.d.ts.map +1 -0
  605. package/dist/safe-bash/commands/split/names.js +42 -0
  606. package/dist/safe-bash/commands/split/names.js.map +1 -0
  607. package/dist/safe-bash/commands/split/options.d.ts +28 -0
  608. package/dist/safe-bash/commands/split/options.d.ts.map +1 -0
  609. package/dist/safe-bash/commands/split/options.js +130 -0
  610. package/dist/safe-bash/commands/split/options.js.map +1 -0
  611. package/dist/safe-bash/commands/split/outputs.d.ts +19 -0
  612. package/dist/safe-bash/commands/split/outputs.d.ts.map +1 -0
  613. package/dist/safe-bash/commands/split/outputs.js +105 -0
  614. package/dist/safe-bash/commands/split/outputs.js.map +1 -0
  615. package/dist/safe-bash/commands/split/split.d.ts +4 -0
  616. package/dist/safe-bash/commands/split/split.d.ts.map +1 -0
  617. package/dist/safe-bash/commands/split/split.js +146 -0
  618. package/dist/safe-bash/commands/split/split.js.map +1 -0
  619. package/dist/safe-bash/commands/stream-format/index.d.ts +6 -0
  620. package/dist/safe-bash/commands/stream-format/index.d.ts.map +1 -0
  621. package/dist/safe-bash/commands/stream-format/index.js +22 -0
  622. package/dist/safe-bash/commands/stream-format/index.js.map +1 -0
  623. package/dist/safe-bash/commands/stream-format/nl.d.ts +4 -0
  624. package/dist/safe-bash/commands/stream-format/nl.d.ts.map +1 -0
  625. package/dist/safe-bash/commands/stream-format/nl.js +96 -0
  626. package/dist/safe-bash/commands/stream-format/nl.js.map +1 -0
  627. package/dist/safe-bash/commands/stream-format/rev.d.ts +4 -0
  628. package/dist/safe-bash/commands/stream-format/rev.d.ts.map +1 -0
  629. package/dist/safe-bash/commands/stream-format/rev.js +65 -0
  630. package/dist/safe-bash/commands/stream-format/rev.js.map +1 -0
  631. package/dist/safe-bash/commands/stream-format/seq.d.ts +4 -0
  632. package/dist/safe-bash/commands/stream-format/seq.d.ts.map +1 -0
  633. package/dist/safe-bash/commands/stream-format/seq.js +249 -0
  634. package/dist/safe-bash/commands/stream-format/seq.js.map +1 -0
  635. package/dist/safe-bash/commands/stream-format/shared.d.ts +49 -0
  636. package/dist/safe-bash/commands/stream-format/shared.d.ts.map +1 -0
  637. package/dist/safe-bash/commands/stream-format/shared.js +209 -0
  638. package/dist/safe-bash/commands/stream-format/shared.js.map +1 -0
  639. package/dist/safe-bash/commands/stream-format/unexpand.d.ts +4 -0
  640. package/dist/safe-bash/commands/stream-format/unexpand.d.ts.map +1 -0
  641. package/dist/safe-bash/commands/stream-format/unexpand.js +130 -0
  642. package/dist/safe-bash/commands/stream-format/unexpand.js.map +1 -0
  643. package/dist/safe-bash/commands/stream-inspection/expand.d.ts +4 -0
  644. package/dist/safe-bash/commands/stream-inspection/expand.d.ts.map +1 -0
  645. package/dist/safe-bash/commands/stream-inspection/expand.js +100 -0
  646. package/dist/safe-bash/commands/stream-inspection/expand.js.map +1 -0
  647. package/dist/safe-bash/commands/stream-inspection/fold.d.ts +4 -0
  648. package/dist/safe-bash/commands/stream-inspection/fold.d.ts.map +1 -0
  649. package/dist/safe-bash/commands/stream-inspection/fold.js +55 -0
  650. package/dist/safe-bash/commands/stream-inspection/fold.js.map +1 -0
  651. package/dist/safe-bash/commands/stream-inspection/index.d.ts +6 -0
  652. package/dist/safe-bash/commands/stream-inspection/index.d.ts.map +1 -0
  653. package/dist/safe-bash/commands/stream-inspection/index.js +22 -0
  654. package/dist/safe-bash/commands/stream-inspection/index.js.map +1 -0
  655. package/dist/safe-bash/commands/stream-inspection/numeric-options.d.ts +5 -0
  656. package/dist/safe-bash/commands/stream-inspection/numeric-options.d.ts.map +1 -0
  657. package/dist/safe-bash/commands/stream-inspection/numeric-options.js +53 -0
  658. package/dist/safe-bash/commands/stream-inspection/numeric-options.js.map +1 -0
  659. package/dist/safe-bash/commands/stream-inspection/shared.d.ts +55 -0
  660. package/dist/safe-bash/commands/stream-inspection/shared.d.ts.map +1 -0
  661. package/dist/safe-bash/commands/stream-inspection/shared.js +202 -0
  662. package/dist/safe-bash/commands/stream-inspection/shared.js.map +1 -0
  663. package/dist/safe-bash/commands/stream-inspection/strings.d.ts +4 -0
  664. package/dist/safe-bash/commands/stream-inspection/strings.d.ts.map +1 -0
  665. package/dist/safe-bash/commands/stream-inspection/strings.js +54 -0
  666. package/dist/safe-bash/commands/stream-inspection/strings.js.map +1 -0
  667. package/dist/safe-bash/commands/stream-inspection/tac.d.ts +4 -0
  668. package/dist/safe-bash/commands/stream-inspection/tac.d.ts.map +1 -0
  669. package/dist/safe-bash/commands/stream-inspection/tac.js +54 -0
  670. package/dist/safe-bash/commands/stream-inspection/tac.js.map +1 -0
  671. package/dist/safe-bash/commands/streams.d.ts +3 -0
  672. package/dist/safe-bash/commands/streams.d.ts.map +1 -0
  673. package/dist/safe-bash/commands/streams.js +477 -0
  674. package/dist/safe-bash/commands/streams.js.map +1 -0
  675. package/dist/safe-bash/commands/structured/index.d.ts +7 -0
  676. package/dist/safe-bash/commands/structured/index.d.ts.map +1 -0
  677. package/dist/safe-bash/commands/structured/index.js +21 -0
  678. package/dist/safe-bash/commands/structured/index.js.map +1 -0
  679. package/dist/safe-bash/commands/structured/input.d.ts +18 -0
  680. package/dist/safe-bash/commands/structured/input.d.ts.map +1 -0
  681. package/dist/safe-bash/commands/structured/input.js +438 -0
  682. package/dist/safe-bash/commands/structured/input.js.map +1 -0
  683. package/dist/safe-bash/commands/structured/interpreter.d.ts +21 -0
  684. package/dist/safe-bash/commands/structured/interpreter.d.ts.map +1 -0
  685. package/dist/safe-bash/commands/structured/interpreter.js +644 -0
  686. package/dist/safe-bash/commands/structured/interpreter.js.map +1 -0
  687. package/dist/safe-bash/commands/structured/jq.d.ts +4 -0
  688. package/dist/safe-bash/commands/structured/jq.d.ts.map +1 -0
  689. package/dist/safe-bash/commands/structured/jq.js +278 -0
  690. package/dist/safe-bash/commands/structured/jq.js.map +1 -0
  691. package/dist/safe-bash/commands/structured/limits.d.ts +61 -0
  692. package/dist/safe-bash/commands/structured/limits.d.ts.map +1 -0
  693. package/dist/safe-bash/commands/structured/limits.js +162 -0
  694. package/dist/safe-bash/commands/structured/limits.js.map +1 -0
  695. package/dist/safe-bash/commands/structured/numbers.d.ts +17 -0
  696. package/dist/safe-bash/commands/structured/numbers.d.ts.map +1 -0
  697. package/dist/safe-bash/commands/structured/numbers.js +143 -0
  698. package/dist/safe-bash/commands/structured/numbers.js.map +1 -0
  699. package/dist/safe-bash/commands/structured/parser.d.ts +54 -0
  700. package/dist/safe-bash/commands/structured/parser.d.ts.map +1 -0
  701. package/dist/safe-bash/commands/structured/parser.js +320 -0
  702. package/dist/safe-bash/commands/structured/parser.js.map +1 -0
  703. package/dist/safe-bash/commands/structured/split.d.ts +3 -0
  704. package/dist/safe-bash/commands/structured/split.d.ts.map +1 -0
  705. package/dist/safe-bash/commands/structured/split.js +65 -0
  706. package/dist/safe-bash/commands/structured/split.js.map +1 -0
  707. package/dist/safe-bash/commands/structured/values.d.ts +12 -0
  708. package/dist/safe-bash/commands/structured/values.d.ts.map +1 -0
  709. package/dist/safe-bash/commands/structured/values.js +213 -0
  710. package/dist/safe-bash/commands/structured/values.js.map +1 -0
  711. package/dist/safe-bash/commands/table-text/comm.d.ts +4 -0
  712. package/dist/safe-bash/commands/table-text/comm.d.ts.map +1 -0
  713. package/dist/safe-bash/commands/table-text/comm.js +101 -0
  714. package/dist/safe-bash/commands/table-text/comm.js.map +1 -0
  715. package/dist/safe-bash/commands/table-text/index.d.ts +6 -0
  716. package/dist/safe-bash/commands/table-text/index.d.ts.map +1 -0
  717. package/dist/safe-bash/commands/table-text/index.js +21 -0
  718. package/dist/safe-bash/commands/table-text/index.js.map +1 -0
  719. package/dist/safe-bash/commands/table-text/internal.d.ts +73 -0
  720. package/dist/safe-bash/commands/table-text/internal.d.ts.map +1 -0
  721. package/dist/safe-bash/commands/table-text/internal.js +223 -0
  722. package/dist/safe-bash/commands/table-text/internal.js.map +1 -0
  723. package/dist/safe-bash/commands/table-text/join.d.ts +4 -0
  724. package/dist/safe-bash/commands/table-text/join.d.ts.map +1 -0
  725. package/dist/safe-bash/commands/table-text/join.js +252 -0
  726. package/dist/safe-bash/commands/table-text/join.js.map +1 -0
  727. package/dist/safe-bash/commands/table-text/paste.d.ts +4 -0
  728. package/dist/safe-bash/commands/table-text/paste.d.ts.map +1 -0
  729. package/dist/safe-bash/commands/table-text/paste.js +125 -0
  730. package/dist/safe-bash/commands/table-text/paste.js.map +1 -0
  731. package/dist/safe-bash/commands/text-programs/awk-runtime.d.ts +45 -0
  732. package/dist/safe-bash/commands/text-programs/awk-runtime.d.ts.map +1 -0
  733. package/dist/safe-bash/commands/text-programs/awk-runtime.js +679 -0
  734. package/dist/safe-bash/commands/text-programs/awk-runtime.js.map +1 -0
  735. package/dist/safe-bash/commands/text-programs/awk-syntax.d.ts +141 -0
  736. package/dist/safe-bash/commands/text-programs/awk-syntax.d.ts.map +1 -0
  737. package/dist/safe-bash/commands/text-programs/awk-syntax.js +495 -0
  738. package/dist/safe-bash/commands/text-programs/awk-syntax.js.map +1 -0
  739. package/dist/safe-bash/commands/text-programs/awk-values.d.ts +29 -0
  740. package/dist/safe-bash/commands/text-programs/awk-values.d.ts.map +1 -0
  741. package/dist/safe-bash/commands/text-programs/awk-values.js +155 -0
  742. package/dist/safe-bash/commands/text-programs/awk-values.js.map +1 -0
  743. package/dist/safe-bash/commands/text-programs/awk.d.ts +4 -0
  744. package/dist/safe-bash/commands/text-programs/awk.d.ts.map +1 -0
  745. package/dist/safe-bash/commands/text-programs/awk.js +45 -0
  746. package/dist/safe-bash/commands/text-programs/awk.js.map +1 -0
  747. package/dist/safe-bash/commands/text-programs/index.d.ts +6 -0
  748. package/dist/safe-bash/commands/text-programs/index.d.ts.map +1 -0
  749. package/dist/safe-bash/commands/text-programs/index.js +21 -0
  750. package/dist/safe-bash/commands/text-programs/index.js.map +1 -0
  751. package/dist/safe-bash/commands/text-programs/regex.d.ts +19 -0
  752. package/dist/safe-bash/commands/text-programs/regex.d.ts.map +1 -0
  753. package/dist/safe-bash/commands/text-programs/regex.js +387 -0
  754. package/dist/safe-bash/commands/text-programs/regex.js.map +1 -0
  755. package/dist/safe-bash/commands/text-programs/sed.d.ts +4 -0
  756. package/dist/safe-bash/commands/text-programs/sed.d.ts.map +1 -0
  757. package/dist/safe-bash/commands/text-programs/sed.js +602 -0
  758. package/dist/safe-bash/commands/text-programs/sed.js.map +1 -0
  759. package/dist/safe-bash/commands/text-programs/shared.d.ts +33 -0
  760. package/dist/safe-bash/commands/text-programs/shared.d.ts.map +1 -0
  761. package/dist/safe-bash/commands/text-programs/shared.js +102 -0
  762. package/dist/safe-bash/commands/text-programs/shared.js.map +1 -0
  763. package/dist/safe-bash/commands/text.d.ts +3 -0
  764. package/dist/safe-bash/commands/text.d.ts.map +1 -0
  765. package/dist/safe-bash/commands/text.js +428 -0
  766. package/dist/safe-bash/commands/text.js.map +1 -0
  767. package/dist/safe-bash/commands/time-env/calendar.d.ts +30 -0
  768. package/dist/safe-bash/commands/time-env/calendar.d.ts.map +1 -0
  769. package/dist/safe-bash/commands/time-env/calendar.js +184 -0
  770. package/dist/safe-bash/commands/time-env/calendar.js.map +1 -0
  771. package/dist/safe-bash/commands/time-env/date.d.ts +3 -0
  772. package/dist/safe-bash/commands/time-env/date.d.ts.map +1 -0
  773. package/dist/safe-bash/commands/time-env/date.js +149 -0
  774. package/dist/safe-bash/commands/time-env/date.js.map +1 -0
  775. package/dist/safe-bash/commands/time-env/format.d.ts +4 -0
  776. package/dist/safe-bash/commands/time-env/format.d.ts.map +1 -0
  777. package/dist/safe-bash/commands/time-env/format.js +247 -0
  778. package/dist/safe-bash/commands/time-env/format.js.map +1 -0
  779. package/dist/safe-bash/commands/time-env/index.d.ts +6 -0
  780. package/dist/safe-bash/commands/time-env/index.d.ts.map +1 -0
  781. package/dist/safe-bash/commands/time-env/index.js +21 -0
  782. package/dist/safe-bash/commands/time-env/index.js.map +1 -0
  783. package/dist/safe-bash/commands/time-env/printenv.d.ts +3 -0
  784. package/dist/safe-bash/commands/time-env/printenv.d.ts.map +1 -0
  785. package/dist/safe-bash/commands/time-env/printenv.js +59 -0
  786. package/dist/safe-bash/commands/time-env/printenv.js.map +1 -0
  787. package/dist/safe-bash/commands/time-env/shared.d.ts +38 -0
  788. package/dist/safe-bash/commands/time-env/shared.d.ts.map +1 -0
  789. package/dist/safe-bash/commands/time-env/shared.js +68 -0
  790. package/dist/safe-bash/commands/time-env/shared.js.map +1 -0
  791. package/dist/safe-bash/commands/time-env/sleep.d.ts +3 -0
  792. package/dist/safe-bash/commands/time-env/sleep.d.ts.map +1 -0
  793. package/dist/safe-bash/commands/time-env/sleep.js +150 -0
  794. package/dist/safe-bash/commands/time-env/sleep.js.map +1 -0
  795. package/dist/safe-bash/commands/timeout/duration.d.ts +10 -0
  796. package/dist/safe-bash/commands/timeout/duration.d.ts.map +1 -0
  797. package/dist/safe-bash/commands/timeout/duration.js +82 -0
  798. package/dist/safe-bash/commands/timeout/duration.js.map +1 -0
  799. package/dist/safe-bash/commands/timeout/index.d.ts +18 -0
  800. package/dist/safe-bash/commands/timeout/index.d.ts.map +1 -0
  801. package/dist/safe-bash/commands/timeout/index.js +218 -0
  802. package/dist/safe-bash/commands/timeout/index.js.map +1 -0
  803. package/dist/safe-bash/commands/timeout/scheduler.d.ts +17 -0
  804. package/dist/safe-bash/commands/timeout/scheduler.d.ts.map +1 -0
  805. package/dist/safe-bash/commands/timeout/scheduler.js +110 -0
  806. package/dist/safe-bash/commands/timeout/scheduler.js.map +1 -0
  807. package/dist/safe-bash/commands/tree/arguments.d.ts +24 -0
  808. package/dist/safe-bash/commands/tree/arguments.d.ts.map +1 -0
  809. package/dist/safe-bash/commands/tree/arguments.js +125 -0
  810. package/dist/safe-bash/commands/tree/arguments.js.map +1 -0
  811. package/dist/safe-bash/commands/tree/charset.d.ts +5 -0
  812. package/dist/safe-bash/commands/tree/charset.d.ts.map +1 -0
  813. package/dist/safe-bash/commands/tree/charset.js +36 -0
  814. package/dist/safe-bash/commands/tree/charset.js.map +1 -0
  815. package/dist/safe-bash/commands/tree/index.d.ts +7 -0
  816. package/dist/safe-bash/commands/tree/index.d.ts.map +1 -0
  817. package/dist/safe-bash/commands/tree/index.js +19 -0
  818. package/dist/safe-bash/commands/tree/index.js.map +1 -0
  819. package/dist/safe-bash/commands/tree/io.d.ts +28 -0
  820. package/dist/safe-bash/commands/tree/io.d.ts.map +1 -0
  821. package/dist/safe-bash/commands/tree/io.js +95 -0
  822. package/dist/safe-bash/commands/tree/io.js.map +1 -0
  823. package/dist/safe-bash/commands/tree/options.d.ts +17 -0
  824. package/dist/safe-bash/commands/tree/options.d.ts.map +1 -0
  825. package/dist/safe-bash/commands/tree/options.js +14 -0
  826. package/dist/safe-bash/commands/tree/options.js.map +1 -0
  827. package/dist/safe-bash/commands/tree/pattern.d.ts +10 -0
  828. package/dist/safe-bash/commands/tree/pattern.d.ts.map +1 -0
  829. package/dist/safe-bash/commands/tree/pattern.js +90 -0
  830. package/dist/safe-bash/commands/tree/pattern.js.map +1 -0
  831. package/dist/safe-bash/commands/tree/tree.d.ts +4 -0
  832. package/dist/safe-bash/commands/tree/tree.d.ts.map +1 -0
  833. package/dist/safe-bash/commands/tree/tree.js +242 -0
  834. package/dist/safe-bash/commands/tree/tree.js.map +1 -0
  835. package/dist/safe-bash/commands/which/index.d.ts +7 -0
  836. package/dist/safe-bash/commands/which/index.d.ts.map +1 -0
  837. package/dist/safe-bash/commands/which/index.js +22 -0
  838. package/dist/safe-bash/commands/which/index.js.map +1 -0
  839. package/dist/safe-bash/commands/which/options.d.ts +15 -0
  840. package/dist/safe-bash/commands/which/options.d.ts.map +1 -0
  841. package/dist/safe-bash/commands/which/options.js +24 -0
  842. package/dist/safe-bash/commands/which/options.js.map +1 -0
  843. package/dist/safe-bash/commands/which/which.d.ts +4 -0
  844. package/dist/safe-bash/commands/which/which.d.ts.map +1 -0
  845. package/dist/safe-bash/commands/which/which.js +284 -0
  846. package/dist/safe-bash/commands/which/which.js.map +1 -0
  847. package/dist/safe-bash/contracts/command.d.ts +67 -0
  848. package/dist/safe-bash/contracts/command.d.ts.map +1 -0
  849. package/dist/safe-bash/contracts/command.js +209 -0
  850. package/dist/safe-bash/contracts/command.js.map +1 -0
  851. package/dist/safe-bash/contracts/errors.d.ts +3 -0
  852. package/dist/safe-bash/contracts/errors.d.ts.map +1 -0
  853. package/dist/safe-bash/contracts/errors.js +2 -0
  854. package/dist/safe-bash/contracts/errors.js.map +1 -0
  855. package/dist/safe-bash/contracts/filesystem.d.ts +3 -0
  856. package/dist/safe-bash/contracts/filesystem.d.ts.map +1 -0
  857. package/dist/safe-bash/contracts/filesystem.js +2 -0
  858. package/dist/safe-bash/contracts/filesystem.js.map +1 -0
  859. package/dist/safe-bash/contracts/index.d.ts +8 -0
  860. package/dist/safe-bash/contracts/index.d.ts.map +1 -0
  861. package/dist/safe-bash/contracts/index.js +8 -0
  862. package/dist/safe-bash/contracts/index.js.map +1 -0
  863. package/dist/safe-bash/contracts/io.d.ts +26 -0
  864. package/dist/safe-bash/contracts/io.d.ts.map +1 -0
  865. package/dist/safe-bash/contracts/io.js +154 -0
  866. package/dist/safe-bash/contracts/io.js.map +1 -0
  867. package/dist/safe-bash/contracts/output.d.ts +12 -0
  868. package/dist/safe-bash/contracts/output.d.ts.map +1 -0
  869. package/dist/safe-bash/contracts/output.js +126 -0
  870. package/dist/safe-bash/contracts/output.js.map +1 -0
  871. package/dist/safe-bash/contracts/path.d.ts +2 -0
  872. package/dist/safe-bash/contracts/path.d.ts.map +1 -0
  873. package/dist/safe-bash/contracts/path.js +2 -0
  874. package/dist/safe-bash/contracts/path.js.map +1 -0
  875. package/dist/safe-bash/contracts/plugin.d.ts +16 -0
  876. package/dist/safe-bash/contracts/plugin.d.ts.map +1 -0
  877. package/dist/safe-bash/contracts/plugin.js +47 -0
  878. package/dist/safe-bash/contracts/plugin.js.map +1 -0
  879. package/dist/safe-bash/contracts/value.d.ts +21 -0
  880. package/dist/safe-bash/contracts/value.d.ts.map +1 -0
  881. package/dist/safe-bash/contracts/value.js +203 -0
  882. package/dist/safe-bash/contracts/value.js.map +1 -0
  883. package/dist/safe-bash/fs/memory/index.d.ts +2 -0
  884. package/dist/safe-bash/fs/memory/index.d.ts.map +1 -0
  885. package/dist/safe-bash/fs/memory/index.js +2 -0
  886. package/dist/safe-bash/fs/memory/index.js.map +1 -0
  887. package/dist/safe-bash/fs/mount/index.d.ts +3 -0
  888. package/dist/safe-bash/fs/mount/index.d.ts.map +1 -0
  889. package/dist/safe-bash/fs/mount/index.js +2 -0
  890. package/dist/safe-bash/fs/mount/index.js.map +1 -0
  891. package/dist/safe-bash/fs/overlay/index.d.ts +3 -0
  892. package/dist/safe-bash/fs/overlay/index.d.ts.map +1 -0
  893. package/dist/safe-bash/fs/overlay/index.js +2 -0
  894. package/dist/safe-bash/fs/overlay/index.js.map +1 -0
  895. package/dist/safe-bash/fs/readonly/index.d.ts +2 -0
  896. package/dist/safe-bash/fs/readonly/index.d.ts.map +1 -0
  897. package/dist/safe-bash/fs/readonly/index.js +2 -0
  898. package/dist/safe-bash/fs/readonly/index.js.map +1 -0
  899. package/dist/safe-bash/fs/real/index.d.ts +3 -0
  900. package/dist/safe-bash/fs/real/index.d.ts.map +1 -0
  901. package/dist/safe-bash/fs/real/index.js +2 -0
  902. package/dist/safe-bash/fs/real/index.js.map +1 -0
  903. package/dist/safe-bash/fs/s3/http/index.d.ts +3 -0
  904. package/dist/safe-bash/fs/s3/http/index.d.ts.map +1 -0
  905. package/dist/safe-bash/fs/s3/http/index.js +2 -0
  906. package/dist/safe-bash/fs/s3/http/index.js.map +1 -0
  907. package/dist/safe-bash/fs/s3/index.d.ts +3 -0
  908. package/dist/safe-bash/fs/s3/index.d.ts.map +1 -0
  909. package/dist/safe-bash/fs/s3/index.js +2 -0
  910. package/dist/safe-bash/fs/s3/index.js.map +1 -0
  911. package/dist/safe-bash/fs/webdav/index.d.ts +3 -0
  912. package/dist/safe-bash/fs/webdav/index.d.ts.map +1 -0
  913. package/dist/safe-bash/fs/webdav/index.js +2 -0
  914. package/dist/safe-bash/fs/webdav/index.js.map +1 -0
  915. package/dist/safe-bash/index.d.ts +40 -0
  916. package/dist/safe-bash/index.d.ts.map +1 -0
  917. package/dist/safe-bash/index.js +39 -0
  918. package/dist/safe-bash/index.js.map +1 -0
  919. package/dist/safe-bash/integrations/safejs/filesystem.d.ts +7 -0
  920. package/dist/safe-bash/integrations/safejs/filesystem.d.ts.map +1 -0
  921. package/dist/safe-bash/integrations/safejs/filesystem.js +5 -0
  922. package/dist/safe-bash/integrations/safejs/filesystem.js.map +1 -0
  923. package/dist/safe-bash/integrations/safejs/index.d.ts +5 -0
  924. package/dist/safe-bash/integrations/safejs/index.d.ts.map +1 -0
  925. package/dist/safe-bash/integrations/safejs/index.js +3 -0
  926. package/dist/safe-bash/integrations/safejs/index.js.map +1 -0
  927. package/dist/safe-bash/integrations/safejs/shell.d.ts +31 -0
  928. package/dist/safe-bash/integrations/safejs/shell.d.ts.map +1 -0
  929. package/dist/safe-bash/integrations/safejs/shell.js +53 -0
  930. package/dist/safe-bash/integrations/safejs/shell.js.map +1 -0
  931. package/dist/safe-bash/integrations/safejs/values.d.ts +8 -0
  932. package/dist/safe-bash/integrations/safejs/values.d.ts.map +1 -0
  933. package/dist/safe-bash/integrations/safejs/values.js +71 -0
  934. package/dist/safe-bash/integrations/safejs/values.js.map +1 -0
  935. package/dist/safe-bash/plugins/index.d.ts +50 -0
  936. package/dist/safe-bash/plugins/index.d.ts.map +1 -0
  937. package/dist/safe-bash/plugins/index.js +63 -0
  938. package/dist/safe-bash/plugins/index.js.map +1 -0
  939. package/dist/safe-bash/shell/arithmetic-parameters.d.ts +14 -0
  940. package/dist/safe-bash/shell/arithmetic-parameters.d.ts.map +1 -0
  941. package/dist/safe-bash/shell/arithmetic-parameters.js +156 -0
  942. package/dist/safe-bash/shell/arithmetic-parameters.js.map +1 -0
  943. package/dist/safe-bash/shell/arithmetic.d.ts +35 -0
  944. package/dist/safe-bash/shell/arithmetic.d.ts.map +1 -0
  945. package/dist/safe-bash/shell/arithmetic.js +265 -0
  946. package/dist/safe-bash/shell/arithmetic.js.map +1 -0
  947. package/dist/safe-bash/shell/arrays/bindings.d.ts +83 -0
  948. package/dist/safe-bash/shell/arrays/bindings.d.ts.map +1 -0
  949. package/dist/safe-bash/shell/arrays/bindings.js +284 -0
  950. package/dist/safe-bash/shell/arrays/bindings.js.map +1 -0
  951. package/dist/safe-bash/shell/arrays/ledger.d.ts +73 -0
  952. package/dist/safe-bash/shell/arrays/ledger.d.ts.map +1 -0
  953. package/dist/safe-bash/shell/arrays/ledger.js +270 -0
  954. package/dist/safe-bash/shell/arrays/ledger.js.map +1 -0
  955. package/dist/safe-bash/shell/arrays/state.d.ts +75 -0
  956. package/dist/safe-bash/shell/arrays/state.d.ts.map +1 -0
  957. package/dist/safe-bash/shell/arrays/state.js +444 -0
  958. package/dist/safe-bash/shell/arrays/state.js.map +1 -0
  959. package/dist/safe-bash/shell/arrays/syntax.d.ts +47 -0
  960. package/dist/safe-bash/shell/arrays/syntax.d.ts.map +1 -0
  961. package/dist/safe-bash/shell/arrays/syntax.js +122 -0
  962. package/dist/safe-bash/shell/arrays/syntax.js.map +1 -0
  963. package/dist/safe-bash/shell/cancellation.d.ts +129 -0
  964. package/dist/safe-bash/shell/cancellation.d.ts.map +1 -0
  965. package/dist/safe-bash/shell/cancellation.js +703 -0
  966. package/dist/safe-bash/shell/cancellation.js.map +1 -0
  967. package/dist/safe-bash/shell/cleanup.d.ts +19 -0
  968. package/dist/safe-bash/shell/cleanup.d.ts.map +1 -0
  969. package/dist/safe-bash/shell/cleanup.js +83 -0
  970. package/dist/safe-bash/shell/cleanup.js.map +1 -0
  971. package/dist/safe-bash/shell/conditional.d.ts +48 -0
  972. package/dist/safe-bash/shell/conditional.d.ts.map +1 -0
  973. package/dist/safe-bash/shell/conditional.js +218 -0
  974. package/dist/safe-bash/shell/conditional.js.map +1 -0
  975. package/dist/safe-bash/shell/display.d.ts +3 -0
  976. package/dist/safe-bash/shell/display.d.ts.map +1 -0
  977. package/dist/safe-bash/shell/display.js +57 -0
  978. package/dist/safe-bash/shell/display.js.map +1 -0
  979. package/dist/safe-bash/shell/getopts.d.ts +46 -0
  980. package/dist/safe-bash/shell/getopts.d.ts.map +1 -0
  981. package/dist/safe-bash/shell/getopts.js +215 -0
  982. package/dist/safe-bash/shell/getopts.js.map +1 -0
  983. package/dist/safe-bash/shell/index.d.ts +5 -0
  984. package/dist/safe-bash/shell/index.d.ts.map +1 -0
  985. package/dist/safe-bash/shell/index.js +4 -0
  986. package/dist/safe-bash/shell/index.js.map +1 -0
  987. package/dist/safe-bash/shell/input.d.ts +26 -0
  988. package/dist/safe-bash/shell/input.d.ts.map +1 -0
  989. package/dist/safe-bash/shell/input.js +323 -0
  990. package/dist/safe-bash/shell/input.js.map +1 -0
  991. package/dist/safe-bash/shell/locale.d.ts +2 -0
  992. package/dist/safe-bash/shell/locale.d.ts.map +1 -0
  993. package/dist/safe-bash/shell/locale.js +5 -0
  994. package/dist/safe-bash/shell/locale.js.map +1 -0
  995. package/dist/safe-bash/shell/parser.d.ts +149 -0
  996. package/dist/safe-bash/shell/parser.d.ts.map +1 -0
  997. package/dist/safe-bash/shell/parser.js +1023 -0
  998. package/dist/safe-bash/shell/parser.js.map +1 -0
  999. package/dist/safe-bash/shell/pattern.d.ts +9 -0
  1000. package/dist/safe-bash/shell/pattern.d.ts.map +1 -0
  1001. package/dist/safe-bash/shell/pattern.js +134 -0
  1002. package/dist/safe-bash/shell/pattern.js.map +1 -0
  1003. package/dist/safe-bash/shell/pipestatus.d.ts +6 -0
  1004. package/dist/safe-bash/shell/pipestatus.d.ts.map +1 -0
  1005. package/dist/safe-bash/shell/pipestatus.js +82 -0
  1006. package/dist/safe-bash/shell/pipestatus.js.map +1 -0
  1007. package/dist/safe-bash/shell/runtime.d.ts +282 -0
  1008. package/dist/safe-bash/shell/runtime.d.ts.map +1 -0
  1009. package/dist/safe-bash/shell/runtime.js +5400 -0
  1010. package/dist/safe-bash/shell/runtime.js.map +1 -0
  1011. package/dist/safe-bash/shell/shell.d.ts +15 -0
  1012. package/dist/safe-bash/shell/shell.d.ts.map +1 -0
  1013. package/dist/safe-bash/shell/shell.js +355 -0
  1014. package/dist/safe-bash/shell/shell.js.map +1 -0
  1015. package/dist/safe-bash/shell/types.d.ts +76 -0
  1016. package/dist/safe-bash/shell/types.d.ts.map +1 -0
  1017. package/dist/safe-bash/shell/types.js +25 -0
  1018. package/dist/safe-bash/shell/types.js.map +1 -0
  1019. package/dist/safe-bash/shell/value-state.d.ts +57 -0
  1020. package/dist/safe-bash/shell/value-state.d.ts.map +1 -0
  1021. package/dist/safe-bash/shell/value-state.js +275 -0
  1022. package/dist/safe-bash/shell/value-state.js.map +1 -0
  1023. package/package.json +143 -0
@@ -0,0 +1,149 @@
1
+ import type { ArithmeticProgram } from "./arithmetic.js";
2
+ import type { ConditionalExpression } from "./conditional.js";
3
+ import type { ByteShellValue } from "../contracts/value.js";
4
+ export type WordPart = {
5
+ kind: "text";
6
+ value: string;
7
+ quoted: boolean;
8
+ byteValue?: ByteShellValue;
9
+ } | {
10
+ kind: "arithmetic";
11
+ expression: ArithmeticProgram;
12
+ source: string;
13
+ line: number;
14
+ quoted: boolean;
15
+ } | {
16
+ kind: "variable";
17
+ name: string;
18
+ quoted: boolean;
19
+ line?: number;
20
+ length?: boolean;
21
+ operator?: string;
22
+ alternate?: Word;
23
+ replacement?: Word;
24
+ substring?: {
25
+ offset: Word;
26
+ length?: Word;
27
+ source: string;
28
+ };
29
+ } | {
30
+ kind: "failed-substitution";
31
+ diagnostic: string;
32
+ quoted: boolean;
33
+ } | {
34
+ kind: "substitution";
35
+ script: Script;
36
+ line: number;
37
+ sourceLine?: number;
38
+ quoted: boolean;
39
+ };
40
+ export interface Word {
41
+ readonly parts: WordPart[];
42
+ readonly offset: number;
43
+ readonly plain?: string;
44
+ readonly spelling?: string;
45
+ readonly printedNewlines?: number;
46
+ }
47
+ export interface HereDocument {
48
+ readonly delimiter: string;
49
+ readonly quoted: boolean;
50
+ readonly stripTabs: boolean;
51
+ readonly offset: number;
52
+ readonly depth: number;
53
+ body: string;
54
+ endLine: number;
55
+ }
56
+ export declare class HereDocumentSyntaxError extends Error {
57
+ readonly diagnostic: string;
58
+ constructor(diagnostic: string);
59
+ }
60
+ export interface Redirect {
61
+ readonly descriptor: number;
62
+ readonly operator: string;
63
+ readonly target: Word;
64
+ readonly move?: boolean;
65
+ readonly document?: HereDocument;
66
+ readonly line?: number;
67
+ readonly implicitPipeline?: boolean;
68
+ }
69
+ export interface CaseClause {
70
+ readonly patterns: Word[];
71
+ readonly body: Script;
72
+ readonly terminator: ";;" | ";&" | ";;&" | "esac";
73
+ }
74
+ export type Command = ({
75
+ kind: "simple";
76
+ words: Word[];
77
+ } | {
78
+ kind: "subshell";
79
+ body: Script;
80
+ } | {
81
+ kind: "group";
82
+ body: Script;
83
+ } | {
84
+ kind: "if";
85
+ branches: {
86
+ condition: Script;
87
+ body: Script;
88
+ }[];
89
+ otherwise?: Script;
90
+ } | {
91
+ kind: "case";
92
+ subject: Word;
93
+ clauses: CaseClause[];
94
+ } | {
95
+ kind: "while";
96
+ condition: Script;
97
+ body: Script;
98
+ } | {
99
+ kind: "until";
100
+ condition: Script;
101
+ body: Script;
102
+ } | {
103
+ kind: "for";
104
+ name: string;
105
+ words?: Word[];
106
+ body: Script;
107
+ } | {
108
+ kind: "function";
109
+ name: string;
110
+ body: Command;
111
+ } | {
112
+ kind: "arithmetic";
113
+ expression: ArithmeticProgram;
114
+ source: string;
115
+ } | {
116
+ kind: "conditional";
117
+ expression: ConditionalExpression;
118
+ source: string;
119
+ }) & {
120
+ redirects: Redirect[];
121
+ line?: number;
122
+ sourceName?: string;
123
+ };
124
+ export interface Pipeline {
125
+ readonly commands: Command[];
126
+ readonly negate: boolean;
127
+ }
128
+ export interface AndOr {
129
+ readonly pipelines: Pipeline[];
130
+ readonly operators: ("&&" | "||")[];
131
+ }
132
+ export interface Script {
133
+ readonly lists: AndOr[];
134
+ readonly warnings?: readonly string[];
135
+ readonly line?: number;
136
+ readonly printedLines?: ReadonlyMap<Command, number>;
137
+ readonly printedNewlines?: number;
138
+ }
139
+ export declare function parseShell(source: string, depth?: number): Script;
140
+ export declare function hereDocumentWords(document: HereDocument, line: number, byteLocale: boolean, warnings: string[]): Generator<Word>;
141
+ export declare function parseShellUnit(source: string, position?: number, byteLocale?: boolean): {
142
+ script: Script;
143
+ next: number;
144
+ };
145
+ export declare function parseShellInputUnit(source: string, byteLocale?: boolean): {
146
+ script: Script;
147
+ next: number;
148
+ } | undefined;
149
+ //# sourceMappingURL=parser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../src/shell/parser.ts"],"names":[],"mappings":"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"}