terminal-pilot 0.0.44 → 0.0.46

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 (349) hide show
  1. package/dist/cli.js +134 -39
  2. package/dist/cli.js.map +4 -4
  3. package/dist/commands/close-session.js +36 -0
  4. package/dist/commands/close-session.js.map +3 -3
  5. package/dist/commands/create-session.js +36 -0
  6. package/dist/commands/create-session.js.map +3 -3
  7. package/dist/commands/daemon-runtime.js +36 -0
  8. package/dist/commands/daemon-runtime.js.map +3 -3
  9. package/dist/commands/fill.js +36 -0
  10. package/dist/commands/fill.js.map +3 -3
  11. package/dist/commands/get-session.js +36 -0
  12. package/dist/commands/get-session.js.map +3 -3
  13. package/dist/commands/index.js +36 -0
  14. package/dist/commands/index.js.map +3 -3
  15. package/dist/commands/install.js +36 -0
  16. package/dist/commands/install.js.map +3 -3
  17. package/dist/commands/installer.js +36 -0
  18. package/dist/commands/installer.js.map +3 -3
  19. package/dist/commands/list-sessions.js +36 -0
  20. package/dist/commands/list-sessions.js.map +3 -3
  21. package/dist/commands/press-key.js +36 -0
  22. package/dist/commands/press-key.js.map +3 -3
  23. package/dist/commands/read-history.js +36 -0
  24. package/dist/commands/read-history.js.map +3 -3
  25. package/dist/commands/read-screen.js +36 -0
  26. package/dist/commands/read-screen.js.map +3 -3
  27. package/dist/commands/resize.js +36 -0
  28. package/dist/commands/resize.js.map +3 -3
  29. package/dist/commands/runtime.js +36 -0
  30. package/dist/commands/runtime.js.map +3 -3
  31. package/dist/commands/screenshot.js +36 -0
  32. package/dist/commands/screenshot.js.map +3 -3
  33. package/dist/commands/send-signal.js +36 -0
  34. package/dist/commands/send-signal.js.map +3 -3
  35. package/dist/commands/type.js +36 -0
  36. package/dist/commands/type.js.map +3 -3
  37. package/dist/commands/uninstall.js +36 -0
  38. package/dist/commands/uninstall.js.map +3 -3
  39. package/dist/commands/wait-for-exit.js +36 -0
  40. package/dist/commands/wait-for-exit.js.map +3 -3
  41. package/dist/commands/wait-for.js +36 -0
  42. package/dist/commands/wait-for.js.map +3 -3
  43. package/dist/composition.json +36 -1
  44. package/dist/testing/cli-repl.js +134 -39
  45. package/dist/testing/cli-repl.js.map +4 -4
  46. package/dist/testing/qa-cli.js +134 -39
  47. package/dist/testing/qa-cli.js.map +4 -4
  48. package/node_modules/@poe-code/config-mutations/package.json +0 -5
  49. package/node_modules/@poe-code/frontmatter/package.json +0 -3
  50. package/node_modules/fast-string-truncated-width/dist/index.d.ts +4 -0
  51. package/node_modules/fast-string-truncated-width/dist/index.js +111 -0
  52. package/node_modules/fast-string-truncated-width/dist/types.d.ts +19 -0
  53. package/node_modules/fast-string-truncated-width/dist/types.js +2 -0
  54. package/node_modules/fast-string-truncated-width/dist/utils.d.ts +4 -0
  55. package/node_modules/fast-string-truncated-width/dist/utils.js +20 -0
  56. package/node_modules/fast-string-truncated-width/license +21 -0
  57. package/node_modules/fast-string-truncated-width/package.json +35 -0
  58. package/node_modules/fast-string-truncated-width/readme.md +59 -0
  59. package/node_modules/fast-string-width/dist/index.d.ts +4 -0
  60. package/node_modules/fast-string-width/dist/index.js +14 -0
  61. package/node_modules/fast-string-width/license +21 -0
  62. package/node_modules/fast-string-width/package.json +34 -0
  63. package/node_modules/fast-string-width/readme.md +42 -0
  64. package/node_modules/fast-wrap-ansi/LICENSE +23 -0
  65. package/node_modules/fast-wrap-ansi/README.md +26 -0
  66. package/node_modules/fast-wrap-ansi/lib/main.d.ts +6 -0
  67. package/node_modules/fast-wrap-ansi/lib/main.js +218 -0
  68. package/node_modules/fast-wrap-ansi/package.json +51 -0
  69. package/node_modules/jsonc-parser/CHANGELOG.md +76 -0
  70. package/node_modules/jsonc-parser/LICENSE.md +21 -0
  71. package/node_modules/jsonc-parser/README.md +364 -0
  72. package/node_modules/jsonc-parser/SECURITY.md +41 -0
  73. package/node_modules/jsonc-parser/lib/esm/impl/edit.js +185 -0
  74. package/node_modules/jsonc-parser/lib/esm/impl/format.js +261 -0
  75. package/node_modules/jsonc-parser/lib/esm/impl/parser.js +659 -0
  76. package/node_modules/jsonc-parser/lib/esm/impl/scanner.js +443 -0
  77. package/node_modules/jsonc-parser/lib/esm/impl/string-intern.js +29 -0
  78. package/node_modules/jsonc-parser/lib/esm/main.d.ts +351 -0
  79. package/node_modules/jsonc-parser/lib/esm/main.js +178 -0
  80. package/node_modules/jsonc-parser/lib/umd/impl/edit.js +201 -0
  81. package/node_modules/jsonc-parser/lib/umd/impl/format.js +275 -0
  82. package/node_modules/jsonc-parser/lib/umd/impl/parser.js +682 -0
  83. package/node_modules/jsonc-parser/lib/umd/impl/scanner.js +456 -0
  84. package/node_modules/jsonc-parser/lib/umd/impl/string-intern.js +42 -0
  85. package/node_modules/jsonc-parser/lib/umd/main.d.ts +351 -0
  86. package/node_modules/jsonc-parser/lib/umd/main.js +194 -0
  87. package/node_modules/jsonc-parser/package.json +37 -0
  88. package/node_modules/sisteransi/license +21 -0
  89. package/node_modules/sisteransi/package.json +34 -0
  90. package/node_modules/sisteransi/readme.md +113 -0
  91. package/node_modules/sisteransi/src/index.js +58 -0
  92. package/node_modules/sisteransi/src/sisteransi.d.ts +35 -0
  93. package/node_modules/smol-toml/LICENSE +24 -0
  94. package/node_modules/smol-toml/README.md +239 -0
  95. package/node_modules/smol-toml/dist/date.d.ts +41 -0
  96. package/node_modules/smol-toml/dist/date.js +127 -0
  97. package/node_modules/smol-toml/dist/error.d.ts +38 -0
  98. package/node_modules/smol-toml/dist/error.js +63 -0
  99. package/node_modules/smol-toml/dist/extract.d.ts +30 -0
  100. package/node_modules/smol-toml/dist/extract.js +100 -0
  101. package/node_modules/smol-toml/dist/index.cjs +897 -0
  102. package/node_modules/smol-toml/dist/index.d.ts +43 -0
  103. package/node_modules/smol-toml/dist/index.js +33 -0
  104. package/node_modules/smol-toml/dist/parse.d.ts +37 -0
  105. package/node_modules/smol-toml/dist/parse.js +148 -0
  106. package/node_modules/smol-toml/dist/primitive.d.ts +31 -0
  107. package/node_modules/smol-toml/dist/primitive.js +179 -0
  108. package/node_modules/smol-toml/dist/stringify.d.ts +31 -0
  109. package/node_modules/smol-toml/dist/stringify.js +167 -0
  110. package/node_modules/smol-toml/dist/struct.d.ts +32 -0
  111. package/node_modules/smol-toml/dist/struct.js +184 -0
  112. package/node_modules/smol-toml/dist/util.d.ts +42 -0
  113. package/node_modules/smol-toml/dist/util.js +111 -0
  114. package/node_modules/smol-toml/package.json +54 -0
  115. package/node_modules/toolcraft-design/package.json +0 -5
  116. package/node_modules/yaml/LICENSE +13 -0
  117. package/node_modules/yaml/README.md +172 -0
  118. package/node_modules/yaml/bin.mjs +11 -0
  119. package/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
  120. package/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
  121. package/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
  122. package/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
  123. package/node_modules/yaml/browser/dist/compose/composer.js +219 -0
  124. package/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
  125. package/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
  126. package/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
  127. package/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
  128. package/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
  129. package/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +225 -0
  130. package/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
  131. package/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
  132. package/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
  133. package/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
  134. package/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
  135. package/node_modules/yaml/browser/dist/doc/Document.js +335 -0
  136. package/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
  137. package/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
  138. package/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
  139. package/node_modules/yaml/browser/dist/doc/directives.js +176 -0
  140. package/node_modules/yaml/browser/dist/errors.js +57 -0
  141. package/node_modules/yaml/browser/dist/index.js +17 -0
  142. package/node_modules/yaml/browser/dist/log.js +11 -0
  143. package/node_modules/yaml/browser/dist/nodes/Alias.js +116 -0
  144. package/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
  145. package/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
  146. package/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
  147. package/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
  148. package/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
  149. package/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
  150. package/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
  151. package/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
  152. package/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
  153. package/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
  154. package/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
  155. package/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
  156. package/node_modules/yaml/browser/dist/parse/cst.js +98 -0
  157. package/node_modules/yaml/browser/dist/parse/lexer.js +721 -0
  158. package/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
  159. package/node_modules/yaml/browser/dist/parse/parser.js +975 -0
  160. package/node_modules/yaml/browser/dist/public-api.js +102 -0
  161. package/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
  162. package/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
  163. package/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
  164. package/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
  165. package/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
  166. package/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
  167. package/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
  168. package/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
  169. package/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
  170. package/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
  171. package/node_modules/yaml/browser/dist/schema/tags.js +96 -0
  172. package/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
  173. package/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
  174. package/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
  175. package/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
  176. package/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +67 -0
  177. package/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
  178. package/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
  179. package/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
  180. package/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
  181. package/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
  182. package/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
  183. package/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
  184. package/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
  185. package/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
  186. package/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
  187. package/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +25 -0
  188. package/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
  189. package/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
  190. package/node_modules/yaml/browser/dist/util.js +11 -0
  191. package/node_modules/yaml/browser/dist/visit.js +233 -0
  192. package/node_modules/yaml/browser/index.js +5 -0
  193. package/node_modules/yaml/browser/package.json +3 -0
  194. package/node_modules/yaml/dist/cli.d.ts +8 -0
  195. package/node_modules/yaml/dist/cli.mjs +201 -0
  196. package/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
  197. package/node_modules/yaml/dist/compose/compose-collection.js +90 -0
  198. package/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
  199. package/node_modules/yaml/dist/compose/compose-doc.js +45 -0
  200. package/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
  201. package/node_modules/yaml/dist/compose/compose-node.js +112 -0
  202. package/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
  203. package/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
  204. package/node_modules/yaml/dist/compose/composer.d.ts +63 -0
  205. package/node_modules/yaml/dist/compose/composer.js +224 -0
  206. package/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
  207. package/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
  208. package/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
  209. package/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
  210. package/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
  211. package/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
  212. package/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
  213. package/node_modules/yaml/dist/compose/resolve-end.js +39 -0
  214. package/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
  215. package/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
  216. package/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
  217. package/node_modules/yaml/dist/compose/resolve-flow-scalar.js +227 -0
  218. package/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
  219. package/node_modules/yaml/dist/compose/resolve-props.js +148 -0
  220. package/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
  221. package/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
  222. package/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
  223. package/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
  224. package/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
  225. package/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
  226. package/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
  227. package/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
  228. package/node_modules/yaml/dist/doc/Document.d.ts +141 -0
  229. package/node_modules/yaml/dist/doc/Document.js +337 -0
  230. package/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
  231. package/node_modules/yaml/dist/doc/anchors.js +76 -0
  232. package/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
  233. package/node_modules/yaml/dist/doc/applyReviver.js +57 -0
  234. package/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
  235. package/node_modules/yaml/dist/doc/createNode.js +90 -0
  236. package/node_modules/yaml/dist/doc/directives.d.ts +49 -0
  237. package/node_modules/yaml/dist/doc/directives.js +178 -0
  238. package/node_modules/yaml/dist/errors.d.ts +21 -0
  239. package/node_modules/yaml/dist/errors.js +62 -0
  240. package/node_modules/yaml/dist/index.d.ts +25 -0
  241. package/node_modules/yaml/dist/index.js +50 -0
  242. package/node_modules/yaml/dist/log.d.ts +3 -0
  243. package/node_modules/yaml/dist/log.js +19 -0
  244. package/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
  245. package/node_modules/yaml/dist/nodes/Alias.js +118 -0
  246. package/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
  247. package/node_modules/yaml/dist/nodes/Collection.js +151 -0
  248. package/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
  249. package/node_modules/yaml/dist/nodes/Node.js +40 -0
  250. package/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
  251. package/node_modules/yaml/dist/nodes/Pair.js +39 -0
  252. package/node_modules/yaml/dist/nodes/Scalar.d.ts +47 -0
  253. package/node_modules/yaml/dist/nodes/Scalar.js +27 -0
  254. package/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
  255. package/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
  256. package/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
  257. package/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
  258. package/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
  259. package/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
  260. package/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
  261. package/node_modules/yaml/dist/nodes/identity.js +53 -0
  262. package/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
  263. package/node_modules/yaml/dist/nodes/toJS.js +39 -0
  264. package/node_modules/yaml/dist/options.d.ts +350 -0
  265. package/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
  266. package/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
  267. package/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
  268. package/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
  269. package/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
  270. package/node_modules/yaml/dist/parse/cst-visit.js +99 -0
  271. package/node_modules/yaml/dist/parse/cst.d.ts +109 -0
  272. package/node_modules/yaml/dist/parse/cst.js +112 -0
  273. package/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
  274. package/node_modules/yaml/dist/parse/lexer.js +723 -0
  275. package/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
  276. package/node_modules/yaml/dist/parse/line-counter.js +41 -0
  277. package/node_modules/yaml/dist/parse/parser.d.ts +84 -0
  278. package/node_modules/yaml/dist/parse/parser.js +980 -0
  279. package/node_modules/yaml/dist/public-api.d.ts +44 -0
  280. package/node_modules/yaml/dist/public-api.js +107 -0
  281. package/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
  282. package/node_modules/yaml/dist/schema/Schema.js +39 -0
  283. package/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
  284. package/node_modules/yaml/dist/schema/common/map.js +19 -0
  285. package/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
  286. package/node_modules/yaml/dist/schema/common/null.js +17 -0
  287. package/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
  288. package/node_modules/yaml/dist/schema/common/seq.js +19 -0
  289. package/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
  290. package/node_modules/yaml/dist/schema/common/string.js +16 -0
  291. package/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
  292. package/node_modules/yaml/dist/schema/core/bool.js +21 -0
  293. package/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
  294. package/node_modules/yaml/dist/schema/core/float.js +47 -0
  295. package/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
  296. package/node_modules/yaml/dist/schema/core/int.js +42 -0
  297. package/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
  298. package/node_modules/yaml/dist/schema/core/schema.js +25 -0
  299. package/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
  300. package/node_modules/yaml/dist/schema/json/schema.js +64 -0
  301. package/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
  302. package/node_modules/yaml/dist/schema/tags.d.ts +48 -0
  303. package/node_modules/yaml/dist/schema/tags.js +99 -0
  304. package/node_modules/yaml/dist/schema/types.d.ts +92 -0
  305. package/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
  306. package/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
  307. package/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
  308. package/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
  309. package/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
  310. package/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
  311. package/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
  312. package/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
  313. package/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
  314. package/node_modules/yaml/dist/schema/yaml-1.1/merge.js +71 -0
  315. package/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
  316. package/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
  317. package/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
  318. package/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
  319. package/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
  320. package/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
  321. package/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
  322. package/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
  323. package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
  324. package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
  325. package/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
  326. package/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
  327. package/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
  328. package/node_modules/yaml/dist/stringify/stringify.js +132 -0
  329. package/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
  330. package/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
  331. package/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
  332. package/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
  333. package/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
  334. package/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
  335. package/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
  336. package/node_modules/yaml/dist/stringify/stringifyNumber.js +27 -0
  337. package/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
  338. package/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
  339. package/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
  340. package/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
  341. package/node_modules/yaml/dist/test-events.d.ts +4 -0
  342. package/node_modules/yaml/dist/test-events.js +134 -0
  343. package/node_modules/yaml/dist/util.d.ts +16 -0
  344. package/node_modules/yaml/dist/util.js +28 -0
  345. package/node_modules/yaml/dist/visit.d.ts +102 -0
  346. package/node_modules/yaml/dist/visit.js +236 -0
  347. package/node_modules/yaml/package.json +97 -0
  348. package/node_modules/yaml/util.js +2 -0
  349. package/package.json +10 -4
@@ -0,0 +1,43 @@
1
+ /*!
2
+ * Copyright (c) Squirrel Chat et al., All rights reserved.
3
+ * SPDX-License-Identifier: BSD-3-Clause
4
+ *
5
+ * Redistribution and use in source and binary forms, with or without
6
+ * modification, are permitted provided that the following conditions are met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright notice, this
9
+ * list of conditions and the following disclaimer.
10
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ * this list of conditions and the following disclaimer in the
12
+ * documentation and/or other materials provided with the distribution.
13
+ * 3. Neither the name of the copyright holder nor the names of its contributors
14
+ * may be used to endorse or promote products derived from this software without
15
+ * specific prior written permission.
16
+ *
17
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ */
28
+ import { parse } from './parse.js';
29
+ import { stringify } from './stringify.js';
30
+ import { TomlDate } from './date.js';
31
+ import { TomlError } from './error.js';
32
+ export type { TomlValue, TomlTable, TomlValueWithoutBigInt, TomlTableWithoutBigInt } from './util.js';
33
+ declare const _default: {
34
+ parse: typeof parse;
35
+ stringify: typeof stringify;
36
+ TomlDate: typeof TomlDate;
37
+ TomlError: typeof TomlError;
38
+ };
39
+ export default _default;
40
+ export { parse, stringify, TomlDate, TomlError };
41
+ export type {
42
+ /** @deprecated use TomlValue instead */
43
+ TomlValue as TomlPrimitive } from './util.js';
@@ -0,0 +1,33 @@
1
+ /*!
2
+ * Copyright (c) Squirrel Chat et al., All rights reserved.
3
+ * SPDX-License-Identifier: BSD-3-Clause
4
+ *
5
+ * Redistribution and use in source and binary forms, with or without
6
+ * modification, are permitted provided that the following conditions are met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright notice, this
9
+ * list of conditions and the following disclaimer.
10
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ * this list of conditions and the following disclaimer in the
12
+ * documentation and/or other materials provided with the distribution.
13
+ * 3. Neither the name of the copyright holder nor the names of its contributors
14
+ * may be used to endorse or promote products derived from this software without
15
+ * specific prior written permission.
16
+ *
17
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ */
28
+ import { parse } from './parse.js';
29
+ import { stringify } from './stringify.js';
30
+ import { TomlDate } from './date.js';
31
+ import { TomlError } from './error.js';
32
+ export default { parse, stringify, TomlDate, TomlError };
33
+ export { parse, stringify, TomlDate, TomlError };
@@ -0,0 +1,37 @@
1
+ /*!
2
+ * Copyright (c) Squirrel Chat et al., All rights reserved.
3
+ * SPDX-License-Identifier: BSD-3-Clause
4
+ *
5
+ * Redistribution and use in source and binary forms, with or without
6
+ * modification, are permitted provided that the following conditions are met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright notice, this
9
+ * list of conditions and the following disclaimer.
10
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ * this list of conditions and the following disclaimer in the
12
+ * documentation and/or other materials provided with the distribution.
13
+ * 3. Neither the name of the copyright holder nor the names of its contributors
14
+ * may be used to endorse or promote products derived from this software without
15
+ * specific prior written permission.
16
+ *
17
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ */
28
+ import type { IntegersAsBigInt } from './primitive.js';
29
+ import { type TomlTable, type TomlTableWithoutBigInt } from './util.js';
30
+ export interface ParseOptions {
31
+ maxDepth?: number;
32
+ integersAsBigInt?: IntegersAsBigInt;
33
+ }
34
+ export declare function parse(toml: string, options?: ParseOptions & {
35
+ integersAsBigInt: Exclude<IntegersAsBigInt, undefined | false>;
36
+ }): TomlTable;
37
+ export declare function parse(toml: string, options?: ParseOptions): TomlTableWithoutBigInt;
@@ -0,0 +1,148 @@
1
+ /*!
2
+ * Copyright (c) Squirrel Chat et al., All rights reserved.
3
+ * SPDX-License-Identifier: BSD-3-Clause
4
+ *
5
+ * Redistribution and use in source and binary forms, with or without
6
+ * modification, are permitted provided that the following conditions are met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright notice, this
9
+ * list of conditions and the following disclaimer.
10
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ * this list of conditions and the following disclaimer in the
12
+ * documentation and/or other materials provided with the distribution.
13
+ * 3. Neither the name of the copyright holder nor the names of its contributors
14
+ * may be used to endorse or promote products derived from this software without
15
+ * specific prior written permission.
16
+ *
17
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ */
28
+ import { parseKey } from './struct.js';
29
+ import { extractValue } from './extract.js';
30
+ import { skipVoid } from './util.js';
31
+ import { TomlError } from './error.js';
32
+ function peekTable(key, table, meta, type) {
33
+ let t = table;
34
+ let m = meta;
35
+ let k;
36
+ let hasOwn = false;
37
+ let state;
38
+ for (let i = 0; i < key.length; i++) {
39
+ if (i) {
40
+ t = hasOwn ? t[k] : (t[k] = {});
41
+ m = (state = m[k]).c;
42
+ if (type === 0 /* Type.DOTTED */ && (state.t === 1 /* Type.EXPLICIT */ || state.t === 2 /* Type.ARRAY */)) {
43
+ return null;
44
+ }
45
+ if (state.t === 2 /* Type.ARRAY */) {
46
+ let l = t.length - 1;
47
+ t = t[l];
48
+ m = m[l].c;
49
+ }
50
+ }
51
+ k = key[i];
52
+ if ((hasOwn = Object.hasOwn(t, k)) && m[k]?.t === 0 /* Type.DOTTED */ && m[k]?.d) {
53
+ return null;
54
+ }
55
+ if (!hasOwn) {
56
+ if (k === '__proto__') {
57
+ Object.defineProperty(t, k, { enumerable: true, configurable: true, writable: true });
58
+ Object.defineProperty(m, k, { enumerable: true, configurable: true, writable: true });
59
+ }
60
+ m[k] = {
61
+ t: i < key.length - 1 && type === 2 /* Type.ARRAY */
62
+ ? 3 /* Type.ARRAY_DOTTED */
63
+ : type,
64
+ d: false,
65
+ i: 0,
66
+ c: {},
67
+ };
68
+ }
69
+ }
70
+ state = m[k];
71
+ if (state.t !== type && !(type === 1 /* Type.EXPLICIT */ && state.t === 3 /* Type.ARRAY_DOTTED */)) {
72
+ // Bad key type!
73
+ return null;
74
+ }
75
+ if (type === 2 /* Type.ARRAY */) {
76
+ if (!state.d) {
77
+ state.d = true;
78
+ t[k] = [];
79
+ }
80
+ t[k].push(t = {});
81
+ state.c[state.i++] = (state = { t: 1 /* Type.EXPLICIT */, d: false, i: 0, c: {} });
82
+ }
83
+ if (state.d) {
84
+ // Redefining a table!
85
+ return null;
86
+ }
87
+ state.d = true;
88
+ if (type === 1 /* Type.EXPLICIT */) {
89
+ t = hasOwn ? t[k] : (t[k] = {});
90
+ }
91
+ else if (type === 0 /* Type.DOTTED */ && hasOwn) {
92
+ return null;
93
+ }
94
+ return [k, t, state.c];
95
+ }
96
+ export function parse(toml, { maxDepth = 1000, integersAsBigInt } = {}) {
97
+ let res = {};
98
+ let meta = {};
99
+ let tbl = res;
100
+ let m = meta;
101
+ for (let ptr = skipVoid(toml, 0); ptr < toml.length;) {
102
+ if (toml[ptr] === '[') {
103
+ let isTableArray = toml[++ptr] === '[';
104
+ let k = parseKey(toml, ptr += +isTableArray, ']');
105
+ if (isTableArray) {
106
+ if (toml[k[1] - 1] !== ']') {
107
+ throw new TomlError('expected end of table declaration', {
108
+ toml: toml,
109
+ ptr: k[1] - 1,
110
+ });
111
+ }
112
+ k[1]++;
113
+ }
114
+ let p = peekTable(k[0], res, meta, isTableArray ? 2 /* Type.ARRAY */ : 1 /* Type.EXPLICIT */);
115
+ if (!p) {
116
+ throw new TomlError('trying to redefine an already defined table or value', {
117
+ toml: toml,
118
+ ptr: ptr,
119
+ });
120
+ }
121
+ m = p[2];
122
+ tbl = p[1];
123
+ ptr = k[1];
124
+ }
125
+ else {
126
+ let k = parseKey(toml, ptr);
127
+ let p = peekTable(k[0], tbl, m, 0 /* Type.DOTTED */);
128
+ if (!p) {
129
+ throw new TomlError('trying to redefine an already defined table or value', {
130
+ toml: toml,
131
+ ptr: ptr,
132
+ });
133
+ }
134
+ let v = extractValue(toml, k[1], void 0, maxDepth, integersAsBigInt);
135
+ p[1][p[0]] = v[0];
136
+ ptr = v[1];
137
+ }
138
+ ptr = skipVoid(toml, ptr, true);
139
+ if (toml[ptr] && toml[ptr] !== '\n' && toml[ptr] !== '\r') {
140
+ throw new TomlError('each key-value declaration must be followed by an end-of-line', {
141
+ toml: toml,
142
+ ptr: ptr
143
+ });
144
+ }
145
+ ptr = skipVoid(toml, ptr);
146
+ }
147
+ return res;
148
+ }
@@ -0,0 +1,31 @@
1
+ /*!
2
+ * Copyright (c) Squirrel Chat et al., All rights reserved.
3
+ * SPDX-License-Identifier: BSD-3-Clause
4
+ *
5
+ * Redistribution and use in source and binary forms, with or without
6
+ * modification, are permitted provided that the following conditions are met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright notice, this
9
+ * list of conditions and the following disclaimer.
10
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ * this list of conditions and the following disclaimer in the
12
+ * documentation and/or other materials provided with the distribution.
13
+ * 3. Neither the name of the copyright holder nor the names of its contributors
14
+ * may be used to endorse or promote products derived from this software without
15
+ * specific prior written permission.
16
+ *
17
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ */
28
+ import { TomlDate } from './date.js';
29
+ export declare function parseString(str: string, ptr?: number, endPtr?: number): string;
30
+ export type IntegersAsBigInt = undefined | boolean | 'asNeeded';
31
+ export declare function parseValue(value: string, toml: string, ptr: number, integersAsBigInt: IntegersAsBigInt): boolean | number | bigint | TomlDate;
@@ -0,0 +1,179 @@
1
+ /*!
2
+ * Copyright (c) Squirrel Chat et al., All rights reserved.
3
+ * SPDX-License-Identifier: BSD-3-Clause
4
+ *
5
+ * Redistribution and use in source and binary forms, with or without
6
+ * modification, are permitted provided that the following conditions are met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright notice, this
9
+ * list of conditions and the following disclaimer.
10
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ * this list of conditions and the following disclaimer in the
12
+ * documentation and/or other materials provided with the distribution.
13
+ * 3. Neither the name of the copyright holder nor the names of its contributors
14
+ * may be used to endorse or promote products derived from this software without
15
+ * specific prior written permission.
16
+ *
17
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ */
28
+ import { skipVoid } from './util.js';
29
+ import { TomlDate } from './date.js';
30
+ import { TomlError } from './error.js';
31
+ let INT_REGEX = /^((0x[0-9a-fA-F](_?[0-9a-fA-F])*)|(([+-]|0[ob])?\d(_?\d)*))$/;
32
+ let FLOAT_REGEX = /^[+-]?\d(_?\d)*(\.\d(_?\d)*)?([eE][+-]?\d(_?\d)*)?$/;
33
+ let LEADING_ZERO = /^[+-]?0[0-9_]/;
34
+ let ESCAPE_REGEX = /^[0-9a-f]{2,8}$/i;
35
+ let ESC_MAP = {
36
+ b: '\b',
37
+ t: '\t',
38
+ n: '\n',
39
+ f: '\f',
40
+ r: '\r',
41
+ e: '\x1b',
42
+ '"': '"',
43
+ '\\': '\\',
44
+ };
45
+ export function parseString(str, ptr = 0, endPtr = str.length) {
46
+ let isLiteral = str[ptr] === '\'';
47
+ let isMultiline = str[ptr++] === str[ptr] && str[ptr] === str[ptr + 1];
48
+ if (isMultiline) {
49
+ endPtr -= 2;
50
+ if (str[ptr += 2] === '\r')
51
+ ptr++;
52
+ if (str[ptr] === '\n')
53
+ ptr++;
54
+ }
55
+ let tmp = 0;
56
+ let isEscape;
57
+ let parsed = '';
58
+ let sliceStart = ptr;
59
+ while (ptr < endPtr - 1) {
60
+ let c = str[ptr++];
61
+ if (c === '\n' || (c === '\r' && str[ptr] === '\n')) {
62
+ if (!isMultiline) {
63
+ throw new TomlError('newlines are not allowed in strings', {
64
+ toml: str,
65
+ ptr: ptr - 1,
66
+ });
67
+ }
68
+ }
69
+ else if ((c < '\x20' && c !== '\t') || c === '\x7f') {
70
+ throw new TomlError('control characters are not allowed in strings', {
71
+ toml: str,
72
+ ptr: ptr - 1,
73
+ });
74
+ }
75
+ if (isEscape) {
76
+ isEscape = false;
77
+ if (c === 'x' || c === 'u' || c === 'U') {
78
+ // Unicode escape
79
+ let code = str.slice(ptr, (ptr += (c === 'x' ? 2 : c === 'u' ? 4 : 8)));
80
+ if (!ESCAPE_REGEX.test(code)) {
81
+ throw new TomlError('invalid unicode escape', {
82
+ toml: str,
83
+ ptr: tmp,
84
+ });
85
+ }
86
+ try {
87
+ parsed += String.fromCodePoint(parseInt(code, 16));
88
+ }
89
+ catch {
90
+ throw new TomlError('invalid unicode escape', {
91
+ toml: str,
92
+ ptr: tmp,
93
+ });
94
+ }
95
+ }
96
+ else if (isMultiline && (c === '\n' || c === ' ' || c === '\t' || c === '\r')) {
97
+ // Multiline escape
98
+ ptr = skipVoid(str, ptr - 1, true);
99
+ if (str[ptr] !== '\n' && str[ptr] !== '\r') {
100
+ throw new TomlError('invalid escape: only line-ending whitespace may be escaped', {
101
+ toml: str,
102
+ ptr: tmp,
103
+ });
104
+ }
105
+ ptr = skipVoid(str, ptr);
106
+ }
107
+ else if (c in ESC_MAP) {
108
+ // Classic escape
109
+ parsed += ESC_MAP[c];
110
+ }
111
+ else {
112
+ throw new TomlError('unrecognized escape sequence', {
113
+ toml: str,
114
+ ptr: tmp,
115
+ });
116
+ }
117
+ sliceStart = ptr;
118
+ }
119
+ else if (!isLiteral && c === '\\') {
120
+ tmp = ptr - 1;
121
+ isEscape = true;
122
+ parsed += str.slice(sliceStart, tmp);
123
+ }
124
+ }
125
+ return parsed + str.slice(sliceStart, endPtr - 1);
126
+ }
127
+ export function parseValue(value, toml, ptr, integersAsBigInt) {
128
+ // Constant values
129
+ if (value === 'true')
130
+ return true;
131
+ if (value === 'false')
132
+ return false;
133
+ if (value === '-inf')
134
+ return -Infinity;
135
+ if (value === 'inf' || value === '+inf')
136
+ return Infinity;
137
+ if (value === 'nan' || value === '+nan' || value === '-nan')
138
+ return NaN;
139
+ // Avoid FP representation of -0
140
+ if (value === '-0')
141
+ return integersAsBigInt ? 0n : 0;
142
+ // Numbers
143
+ let isInt = INT_REGEX.test(value);
144
+ if (isInt || FLOAT_REGEX.test(value)) {
145
+ if (LEADING_ZERO.test(value)) {
146
+ throw new TomlError('leading zeroes are not allowed', {
147
+ toml: toml,
148
+ ptr: ptr,
149
+ });
150
+ }
151
+ value = value.replace(/_/g, '');
152
+ let numeric = +value;
153
+ if (isNaN(numeric)) {
154
+ throw new TomlError('invalid number', {
155
+ toml: toml,
156
+ ptr: ptr,
157
+ });
158
+ }
159
+ if (isInt) {
160
+ if ((isInt = !Number.isSafeInteger(numeric)) && !integersAsBigInt) {
161
+ throw new TomlError('integer value cannot be represented losslessly', {
162
+ toml: toml,
163
+ ptr: ptr,
164
+ });
165
+ }
166
+ if (isInt || integersAsBigInt === true)
167
+ numeric = BigInt(value);
168
+ }
169
+ return numeric;
170
+ }
171
+ const date = new TomlDate(value);
172
+ if (!date.isValid()) {
173
+ throw new TomlError('invalid value', {
174
+ toml: toml,
175
+ ptr: ptr,
176
+ });
177
+ }
178
+ return date;
179
+ }
@@ -0,0 +1,31 @@
1
+ /*!
2
+ * Copyright (c) Squirrel Chat et al., All rights reserved.
3
+ * SPDX-License-Identifier: BSD-3-Clause
4
+ *
5
+ * Redistribution and use in source and binary forms, with or without
6
+ * modification, are permitted provided that the following conditions are met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright notice, this
9
+ * list of conditions and the following disclaimer.
10
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ * this list of conditions and the following disclaimer in the
12
+ * documentation and/or other materials provided with the distribution.
13
+ * 3. Neither the name of the copyright holder nor the names of its contributors
14
+ * may be used to endorse or promote products derived from this software without
15
+ * specific prior written permission.
16
+ *
17
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ */
28
+ export declare function stringify(obj: any, { maxDepth, numbersAsFloat }?: {
29
+ maxDepth?: number;
30
+ numbersAsFloat?: boolean;
31
+ }): string;
@@ -0,0 +1,167 @@
1
+ /*!
2
+ * Copyright (c) Squirrel Chat et al., All rights reserved.
3
+ * SPDX-License-Identifier: BSD-3-Clause
4
+ *
5
+ * Redistribution and use in source and binary forms, with or without
6
+ * modification, are permitted provided that the following conditions are met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright notice, this
9
+ * list of conditions and the following disclaimer.
10
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ * this list of conditions and the following disclaimer in the
12
+ * documentation and/or other materials provided with the distribution.
13
+ * 3. Neither the name of the copyright holder nor the names of its contributors
14
+ * may be used to endorse or promote products derived from this software without
15
+ * specific prior written permission.
16
+ *
17
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ */
28
+ let BARE_KEY = /^[a-z0-9-_]+$/i;
29
+ function extendedTypeOf(obj) {
30
+ let type = typeof obj;
31
+ if (type === 'object') {
32
+ if (Array.isArray(obj))
33
+ return 'array';
34
+ if (obj instanceof Date)
35
+ return 'date';
36
+ }
37
+ return type;
38
+ }
39
+ function isArrayOfTables(obj) {
40
+ for (let i = 0; i < obj.length; i++) {
41
+ if (extendedTypeOf(obj[i]) !== 'object')
42
+ return false;
43
+ }
44
+ return obj.length != 0;
45
+ }
46
+ function formatString(s) {
47
+ return JSON.stringify(s).replace(/\x7f/g, '\\u007f');
48
+ }
49
+ function stringifyValue(val, type, depth, numberAsFloat) {
50
+ if (depth === 0) {
51
+ throw new Error('Could not stringify the object: maximum object depth exceeded');
52
+ }
53
+ if (type === 'number') {
54
+ if (isNaN(val))
55
+ return 'nan';
56
+ if (val === Infinity)
57
+ return 'inf';
58
+ if (val === -Infinity)
59
+ return '-inf';
60
+ if (numberAsFloat && Number.isInteger(val))
61
+ return val.toFixed(1);
62
+ return val.toString();
63
+ }
64
+ if (type === 'bigint' || type === 'boolean') {
65
+ return val.toString();
66
+ }
67
+ if (type === 'string') {
68
+ return formatString(val);
69
+ }
70
+ if (type === 'date') {
71
+ if (isNaN(val.getTime())) {
72
+ throw new TypeError('cannot serialize invalid date');
73
+ }
74
+ return val.toISOString();
75
+ }
76
+ if (type === 'object') {
77
+ return stringifyInlineTable(val, depth, numberAsFloat);
78
+ }
79
+ if (type === 'array') {
80
+ return stringifyArray(val, depth, numberAsFloat);
81
+ }
82
+ }
83
+ function stringifyInlineTable(obj, depth, numberAsFloat) {
84
+ let keys = Object.keys(obj);
85
+ if (keys.length === 0)
86
+ return '{}';
87
+ let res = '{ ';
88
+ for (let i = 0; i < keys.length; i++) {
89
+ let k = keys[i];
90
+ if (i)
91
+ res += ', ';
92
+ res += BARE_KEY.test(k) ? k : formatString(k);
93
+ res += ' = ';
94
+ res += stringifyValue(obj[k], extendedTypeOf(obj[k]), depth - 1, numberAsFloat);
95
+ }
96
+ return res + ' }';
97
+ }
98
+ function stringifyArray(array, depth, numberAsFloat) {
99
+ if (array.length === 0)
100
+ return '[]';
101
+ let res = '[ ';
102
+ for (let i = 0; i < array.length; i++) {
103
+ if (i)
104
+ res += ', ';
105
+ if (array[i] === null || array[i] === void 0) {
106
+ throw new TypeError('arrays cannot contain null or undefined values');
107
+ }
108
+ res += stringifyValue(array[i], extendedTypeOf(array[i]), depth - 1, numberAsFloat);
109
+ }
110
+ return res + ' ]';
111
+ }
112
+ function stringifyArrayTable(array, key, depth, numberAsFloat) {
113
+ if (depth === 0) {
114
+ throw new Error('Could not stringify the object: maximum object depth exceeded');
115
+ }
116
+ let res = '';
117
+ for (let i = 0; i < array.length; i++) {
118
+ res += `${res && '\n'}[[${key}]]\n`;
119
+ res += stringifyTable(0, array[i], key, depth, numberAsFloat);
120
+ }
121
+ return res;
122
+ }
123
+ function stringifyTable(tableKey, obj, prefix, depth, numberAsFloat) {
124
+ if (depth === 0) {
125
+ throw new Error('Could not stringify the object: maximum object depth exceeded');
126
+ }
127
+ let preamble = '';
128
+ let tables = '';
129
+ let keys = Object.keys(obj);
130
+ for (let i = 0; i < keys.length; i++) {
131
+ let k = keys[i];
132
+ if (obj[k] !== null && obj[k] !== void 0) {
133
+ let type = extendedTypeOf(obj[k]);
134
+ if (type === 'symbol' || type === 'function') {
135
+ throw new TypeError(`cannot serialize values of type '${type}'`);
136
+ }
137
+ let key = BARE_KEY.test(k) ? k : formatString(k);
138
+ if (type === 'array' && isArrayOfTables(obj[k])) {
139
+ tables += (tables && '\n') + stringifyArrayTable(obj[k], prefix ? `${prefix}.${key}` : key, depth - 1, numberAsFloat);
140
+ }
141
+ else if (type === 'object') {
142
+ let tblKey = prefix ? `${prefix}.${key}` : key;
143
+ tables += (tables && '\n') + stringifyTable(tblKey, obj[k], tblKey, depth - 1, numberAsFloat);
144
+ }
145
+ else {
146
+ preamble += key;
147
+ preamble += ' = ';
148
+ preamble += stringifyValue(obj[k], type, depth, numberAsFloat);
149
+ preamble += '\n';
150
+ }
151
+ }
152
+ }
153
+ if (tableKey && (preamble || !tables)) // Create table only if necessary
154
+ preamble = preamble ? `[${tableKey}]\n${preamble}` : `[${tableKey}]`;
155
+ return preamble && tables
156
+ ? `${preamble}\n${tables}`
157
+ : preamble || tables;
158
+ }
159
+ export function stringify(obj, { maxDepth = 1000, numbersAsFloat = false } = {}) {
160
+ if (extendedTypeOf(obj) !== 'object') {
161
+ throw new TypeError('stringify can only be called with an object');
162
+ }
163
+ let str = stringifyTable(0, obj, '', maxDepth, numbersAsFloat);
164
+ if (str[str.length - 1] !== '\n')
165
+ return str + '\n';
166
+ return str;
167
+ }