@dragon708/docmind-markdown 1.2.1 → 1.2.2

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 (2230) hide show
  1. package/node_modules/@cognipeer/to-markdown/LICENSE +21 -0
  2. package/node_modules/@cognipeer/to-markdown/README.md +310 -0
  3. package/node_modules/@cognipeer/to-markdown/dist/converters/archive.d.ts +15 -0
  4. package/node_modules/@cognipeer/to-markdown/dist/converters/archive.d.ts.map +1 -0
  5. package/node_modules/@cognipeer/to-markdown/dist/converters/archive.js +81 -0
  6. package/node_modules/@cognipeer/to-markdown/dist/converters/archive.js.map +1 -0
  7. package/node_modules/@cognipeer/to-markdown/dist/converters/docx.d.ts +7 -0
  8. package/node_modules/@cognipeer/to-markdown/dist/converters/docx.d.ts.map +1 -0
  9. package/node_modules/@cognipeer/to-markdown/dist/converters/docx.js +21 -0
  10. package/node_modules/@cognipeer/to-markdown/dist/converters/docx.js.map +1 -0
  11. package/node_modules/@cognipeer/to-markdown/dist/converters/html.d.ts +13 -0
  12. package/node_modules/@cognipeer/to-markdown/dist/converters/html.d.ts.map +1 -0
  13. package/node_modules/@cognipeer/to-markdown/dist/converters/html.js +113 -0
  14. package/node_modules/@cognipeer/to-markdown/dist/converters/html.js.map +1 -0
  15. package/node_modules/@cognipeer/to-markdown/dist/converters/media.d.ts +15 -0
  16. package/node_modules/@cognipeer/to-markdown/dist/converters/media.d.ts.map +1 -0
  17. package/node_modules/@cognipeer/to-markdown/dist/converters/media.js +54 -0
  18. package/node_modules/@cognipeer/to-markdown/dist/converters/media.js.map +1 -0
  19. package/node_modules/@cognipeer/to-markdown/dist/converters/notebook.d.ts +7 -0
  20. package/node_modules/@cognipeer/to-markdown/dist/converters/notebook.d.ts.map +1 -0
  21. package/node_modules/@cognipeer/to-markdown/dist/converters/notebook.js +44 -0
  22. package/node_modules/@cognipeer/to-markdown/dist/converters/notebook.js.map +1 -0
  23. package/node_modules/@cognipeer/to-markdown/dist/converters/pdf.d.ts +7 -0
  24. package/node_modules/@cognipeer/to-markdown/dist/converters/pdf.d.ts.map +1 -0
  25. package/node_modules/@cognipeer/to-markdown/dist/converters/pdf.js +11 -0
  26. package/node_modules/@cognipeer/to-markdown/dist/converters/pdf.js.map +1 -0
  27. package/node_modules/@cognipeer/to-markdown/dist/converters/spreadsheet.d.ts +13 -0
  28. package/node_modules/@cognipeer/to-markdown/dist/converters/spreadsheet.d.ts.map +1 -0
  29. package/node_modules/@cognipeer/to-markdown/dist/converters/spreadsheet.js +41 -0
  30. package/node_modules/@cognipeer/to-markdown/dist/converters/spreadsheet.js.map +1 -0
  31. package/node_modules/@cognipeer/to-markdown/dist/converters/text.d.ts +21 -0
  32. package/node_modules/@cognipeer/to-markdown/dist/converters/text.d.ts.map +1 -0
  33. package/node_modules/@cognipeer/to-markdown/dist/converters/text.js +54 -0
  34. package/node_modules/@cognipeer/to-markdown/dist/converters/text.js.map +1 -0
  35. package/node_modules/@cognipeer/to-markdown/dist/converters/xml.d.ts +7 -0
  36. package/node_modules/@cognipeer/to-markdown/dist/converters/xml.d.ts.map +1 -0
  37. package/node_modules/@cognipeer/to-markdown/dist/converters/xml.js +72 -0
  38. package/node_modules/@cognipeer/to-markdown/dist/converters/xml.js.map +1 -0
  39. package/node_modules/@cognipeer/to-markdown/dist/index.cjs +1739 -0
  40. package/node_modules/@cognipeer/to-markdown/dist/index.cjs.map +1 -0
  41. package/node_modules/@cognipeer/to-markdown/dist/index.d.ts +46 -0
  42. package/node_modules/@cognipeer/to-markdown/dist/index.d.ts.map +1 -0
  43. package/node_modules/@cognipeer/to-markdown/dist/index.js +1733 -0
  44. package/node_modules/@cognipeer/to-markdown/dist/index.js.map +1 -0
  45. package/node_modules/@cognipeer/to-markdown/dist/types/index.d.ts +78 -0
  46. package/node_modules/@cognipeer/to-markdown/dist/types/index.d.ts.map +1 -0
  47. package/node_modules/@cognipeer/to-markdown/dist/types/index.js +27 -0
  48. package/node_modules/@cognipeer/to-markdown/dist/types/index.js.map +1 -0
  49. package/node_modules/@cognipeer/to-markdown/dist/utils/fileDetection.d.ts +12 -0
  50. package/node_modules/@cognipeer/to-markdown/dist/utils/fileDetection.d.ts.map +1 -0
  51. package/node_modules/@cognipeer/to-markdown/dist/utils/fileDetection.js +75 -0
  52. package/node_modules/@cognipeer/to-markdown/dist/utils/fileDetection.js.map +1 -0
  53. package/node_modules/@cognipeer/to-markdown/dist/utils/markdown.d.ts +13 -0
  54. package/node_modules/@cognipeer/to-markdown/dist/utils/markdown.d.ts.map +1 -0
  55. package/node_modules/@cognipeer/to-markdown/dist/utils/markdown.js +60 -0
  56. package/node_modules/@cognipeer/to-markdown/dist/utils/markdown.js.map +1 -0
  57. package/node_modules/@cognipeer/to-markdown/package.json +96 -0
  58. package/node_modules/@opendocsg/pdf2md/LICENSE +21 -0
  59. package/node_modules/@opendocsg/pdf2md/README.md +52 -0
  60. package/node_modules/@opendocsg/pdf2md/lib/models/Annotation.js +34 -0
  61. package/node_modules/@opendocsg/pdf2md/lib/models/HeadlineFinder.js +40 -0
  62. package/node_modules/@opendocsg/pdf2md/lib/models/LineConverter.js +156 -0
  63. package/node_modules/@opendocsg/pdf2md/lib/models/LineItem.js +29 -0
  64. package/node_modules/@opendocsg/pdf2md/lib/models/LineItemBlock.js +32 -0
  65. package/node_modules/@opendocsg/pdf2md/lib/models/Metadata.js +15 -0
  66. package/node_modules/@opendocsg/pdf2md/lib/models/Page.js +7 -0
  67. package/node_modules/@opendocsg/pdf2md/lib/models/PageItem.js +11 -0
  68. package/node_modules/@opendocsg/pdf2md/lib/models/ParseResult.js +8 -0
  69. package/node_modules/@opendocsg/pdf2md/lib/models/ParsedElements.js +15 -0
  70. package/node_modules/@opendocsg/pdf2md/lib/models/StashingStream.js +72 -0
  71. package/node_modules/@opendocsg/pdf2md/lib/models/TextItem.js +18 -0
  72. package/node_modules/@opendocsg/pdf2md/lib/models/TextItemLineGrouper.js +34 -0
  73. package/node_modules/@opendocsg/pdf2md/lib/models/Word.js +7 -0
  74. package/node_modules/@opendocsg/pdf2md/lib/models/markdown/BlockType.js +176 -0
  75. package/node_modules/@opendocsg/pdf2md/lib/models/markdown/WordFormat.js +23 -0
  76. package/node_modules/@opendocsg/pdf2md/lib/models/markdown/WordType.js +29 -0
  77. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/ToLineItemBlockTransformation.js +29 -0
  78. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/ToLineItemTransformation.js +29 -0
  79. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/ToMarkdown.js +42 -0
  80. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/ToTextBlocks.js +27 -0
  81. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/ToTextItemTransformation.js +29 -0
  82. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/Transformation.js +30 -0
  83. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/CompactLines.js +79 -0
  84. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/DetectHeaders.js +134 -0
  85. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/DetectListItems.js +62 -0
  86. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/DetectTOC.js +351 -0
  87. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/RemoveRepetitiveElements.js +97 -0
  88. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item/VerticalToHorizontal.js +75 -0
  89. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item-block/DetectCodeQuoteBlocks.js +51 -0
  90. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item-block/DetectListLevels.js +59 -0
  91. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/line-item-block/GatherBlocks.js +87 -0
  92. package/node_modules/@opendocsg/pdf2md/lib/models/transformations/text-item/CalculateGlobalStats.js +113 -0
  93. package/node_modules/@opendocsg/pdf2md/lib/pdf2md-cli.js +66 -0
  94. package/node_modules/@opendocsg/pdf2md/lib/pdf2md.js +43 -0
  95. package/node_modules/@opendocsg/pdf2md/lib/util/cli.js +43 -0
  96. package/node_modules/@opendocsg/pdf2md/lib/util/page-item-functions.js +34 -0
  97. package/node_modules/@opendocsg/pdf2md/lib/util/page-number-functions.js +116 -0
  98. package/node_modules/@opendocsg/pdf2md/lib/util/pdf.js +112 -0
  99. package/node_modules/@opendocsg/pdf2md/lib/util/string-functions.js +116 -0
  100. package/node_modules/@opendocsg/pdf2md/lib/util/transformations.js +46 -0
  101. package/node_modules/@opendocsg/pdf2md/package.json +60 -0
  102. package/node_modules/@opendocsg/pdf2md/test/convert.spec.js +15 -0
  103. package/node_modules/@opendocsg/pdf2md/test/models/HeadlineFinder.spec.js +92 -0
  104. package/node_modules/@opendocsg/pdf2md/test/models/StashingStream.spec.js +95 -0
  105. package/node_modules/@opendocsg/pdf2md/test/util/cli.spec.js +84 -0
  106. package/node_modules/@opendocsg/pdf2md/test/util/page-number-functions.spec.js +85 -0
  107. package/node_modules/@opendocsg/pdf2md/test/util/string-functions.spec.js +211 -0
  108. package/node_modules/@opendocsg/pdf2md/types/pdf2md.d.ts +49 -0
  109. package/node_modules/adler-32/LICENSE +201 -0
  110. package/node_modules/adler-32/README.md +140 -0
  111. package/node_modules/adler-32/adler32.js +92 -0
  112. package/node_modules/adler-32/package.json +35 -0
  113. package/node_modules/adler-32/types/index.d.ts +14 -0
  114. package/node_modules/adler-32/types/tsconfig.json +15 -0
  115. package/node_modules/adler-32/types/tslint.json +14 -0
  116. package/node_modules/adm-zip/LICENSE +21 -0
  117. package/node_modules/adm-zip/README.md +87 -0
  118. package/node_modules/adm-zip/adm-zip.js +949 -0
  119. package/node_modules/adm-zip/headers/entryHeader.js +377 -0
  120. package/node_modules/adm-zip/headers/index.js +2 -0
  121. package/node_modules/adm-zip/headers/mainHeader.js +130 -0
  122. package/node_modules/adm-zip/methods/deflater.js +33 -0
  123. package/node_modules/adm-zip/methods/index.js +3 -0
  124. package/node_modules/adm-zip/methods/inflater.js +34 -0
  125. package/node_modules/adm-zip/methods/zipcrypto.js +175 -0
  126. package/node_modules/adm-zip/package.json +54 -0
  127. package/node_modules/adm-zip/util/constants.js +142 -0
  128. package/node_modules/adm-zip/util/decoder.js +5 -0
  129. package/node_modules/adm-zip/util/errors.js +63 -0
  130. package/node_modules/adm-zip/util/fattr.js +76 -0
  131. package/node_modules/adm-zip/util/index.js +5 -0
  132. package/node_modules/adm-zip/util/utils.js +339 -0
  133. package/node_modules/adm-zip/zipEntry.js +405 -0
  134. package/node_modules/adm-zip/zipFile.js +446 -0
  135. package/node_modules/boolbase/README.md +10 -0
  136. package/node_modules/boolbase/index.js +8 -0
  137. package/node_modules/boolbase/package.json +23 -0
  138. package/node_modules/cfb/LICENSE +201 -0
  139. package/node_modules/cfb/README.md +161 -0
  140. package/node_modules/cfb/cfb.js +1979 -0
  141. package/node_modules/cfb/dist/LICENSE +201 -0
  142. package/node_modules/cfb/dist/cfb.js +1979 -0
  143. package/node_modules/cfb/dist/cfb.min.js +3 -0
  144. package/node_modules/cfb/dist/cfb.min.map +1 -0
  145. package/node_modules/cfb/dist/xlscfb.js +1856 -0
  146. package/node_modules/cfb/package.json +68 -0
  147. package/node_modules/cfb/types/index.d.ts +128 -0
  148. package/node_modules/cfb/types/tsconfig.json +15 -0
  149. package/node_modules/cfb/xlscfb.flow.js +1856 -0
  150. package/node_modules/cheerio/LICENSE +21 -0
  151. package/node_modules/cheerio/Readme.md +229 -0
  152. package/node_modules/cheerio/dist/browser/api/attributes.d.ts +385 -0
  153. package/node_modules/cheerio/dist/browser/api/attributes.d.ts.map +1 -0
  154. package/node_modules/cheerio/dist/browser/api/attributes.js +636 -0
  155. package/node_modules/cheerio/dist/browser/api/attributes.js.map +1 -0
  156. package/node_modules/cheerio/dist/browser/api/css.d.ts +42 -0
  157. package/node_modules/cheerio/dist/browser/api/css.d.ts.map +1 -0
  158. package/node_modules/cheerio/dist/browser/api/css.js +116 -0
  159. package/node_modules/cheerio/dist/browser/api/css.js.map +1 -0
  160. package/node_modules/cheerio/dist/browser/api/extract.d.ts +27 -0
  161. package/node_modules/cheerio/dist/browser/api/extract.d.ts.map +1 -0
  162. package/node_modules/cheerio/dist/browser/api/extract.js +42 -0
  163. package/node_modules/cheerio/dist/browser/api/extract.js.map +1 -0
  164. package/node_modules/cheerio/dist/browser/api/forms.d.ts +36 -0
  165. package/node_modules/cheerio/dist/browser/api/forms.d.ts.map +1 -0
  166. package/node_modules/cheerio/dist/browser/api/forms.js +81 -0
  167. package/node_modules/cheerio/dist/browser/api/forms.js.map +1 -0
  168. package/node_modules/cheerio/dist/browser/api/manipulation.d.ts +528 -0
  169. package/node_modules/cheerio/dist/browser/api/manipulation.d.ts.map +1 -0
  170. package/node_modules/cheerio/dist/browser/api/manipulation.js +831 -0
  171. package/node_modules/cheerio/dist/browser/api/manipulation.js.map +1 -0
  172. package/node_modules/cheerio/dist/browser/api/traversing.d.ts +657 -0
  173. package/node_modules/cheerio/dist/browser/api/traversing.d.ts.map +1 -0
  174. package/node_modules/cheerio/dist/browser/api/traversing.js +857 -0
  175. package/node_modules/cheerio/dist/browser/api/traversing.js.map +1 -0
  176. package/node_modules/cheerio/dist/browser/cheerio.d.ts +85 -0
  177. package/node_modules/cheerio/dist/browser/cheerio.d.ts.map +1 -0
  178. package/node_modules/cheerio/dist/browser/cheerio.js +58 -0
  179. package/node_modules/cheerio/dist/browser/cheerio.js.map +1 -0
  180. package/node_modules/cheerio/dist/browser/index-browser.d.mts.map +1 -0
  181. package/node_modules/cheerio/dist/browser/index-browser.mjs.map +1 -0
  182. package/node_modules/cheerio/dist/browser/index.d.ts +5 -0
  183. package/node_modules/cheerio/dist/browser/index.js +3 -0
  184. package/node_modules/cheerio/dist/browser/load-parse.d.ts +20 -0
  185. package/node_modules/cheerio/dist/browser/load-parse.d.ts.map +1 -0
  186. package/node_modules/cheerio/dist/browser/load-parse.js +28 -0
  187. package/node_modules/cheerio/dist/browser/load-parse.js.map +1 -0
  188. package/node_modules/cheerio/dist/browser/load.d.ts +91 -0
  189. package/node_modules/cheerio/dist/browser/load.d.ts.map +1 -0
  190. package/node_modules/cheerio/dist/browser/load.js +129 -0
  191. package/node_modules/cheerio/dist/browser/load.js.map +1 -0
  192. package/node_modules/cheerio/dist/browser/options.d.ts +98 -0
  193. package/node_modules/cheerio/dist/browser/options.d.ts.map +1 -0
  194. package/node_modules/cheerio/dist/browser/options.js +34 -0
  195. package/node_modules/cheerio/dist/browser/options.js.map +1 -0
  196. package/node_modules/cheerio/dist/browser/package.json +3 -0
  197. package/node_modules/cheerio/dist/browser/parse.d.ts +18 -0
  198. package/node_modules/cheerio/dist/browser/parse.d.ts.map +1 -0
  199. package/node_modules/cheerio/dist/browser/parse.js +73 -0
  200. package/node_modules/cheerio/dist/browser/parse.js.map +1 -0
  201. package/node_modules/cheerio/dist/browser/parsers/parse5-adapter.d.ts +20 -0
  202. package/node_modules/cheerio/dist/browser/parsers/parse5-adapter.d.ts.map +1 -0
  203. package/node_modules/cheerio/dist/browser/parsers/parse5-adapter.js +50 -0
  204. package/node_modules/cheerio/dist/browser/parsers/parse5-adapter.js.map +1 -0
  205. package/node_modules/cheerio/dist/browser/slim.d.ts +25 -0
  206. package/node_modules/cheerio/dist/browser/slim.d.ts.map +1 -0
  207. package/node_modules/cheerio/dist/browser/slim.js +22 -0
  208. package/node_modules/cheerio/dist/browser/slim.js.map +1 -0
  209. package/node_modules/cheerio/dist/browser/static.d.ts +112 -0
  210. package/node_modules/cheerio/dist/browser/static.d.ts.map +1 -0
  211. package/node_modules/cheerio/dist/browser/static.js +204 -0
  212. package/node_modules/cheerio/dist/browser/static.js.map +1 -0
  213. package/node_modules/cheerio/dist/browser/types.d.ts +21 -0
  214. package/node_modules/cheerio/dist/browser/types.d.ts.map +1 -0
  215. package/node_modules/cheerio/dist/browser/types.js +3 -0
  216. package/node_modules/cheerio/dist/browser/types.js.map +1 -0
  217. package/node_modules/cheerio/dist/browser/utils.d.ts +55 -0
  218. package/node_modules/cheerio/dist/browser/utils.d.ts.map +1 -0
  219. package/node_modules/cheerio/dist/browser/utils.js +84 -0
  220. package/node_modules/cheerio/dist/browser/utils.js.map +1 -0
  221. package/node_modules/cheerio/dist/commonjs/api/attributes.d.ts +385 -0
  222. package/node_modules/cheerio/dist/commonjs/api/attributes.d.ts.map +1 -0
  223. package/node_modules/cheerio/dist/commonjs/api/attributes.js +647 -0
  224. package/node_modules/cheerio/dist/commonjs/api/attributes.js.map +1 -0
  225. package/node_modules/cheerio/dist/commonjs/api/css.d.ts +42 -0
  226. package/node_modules/cheerio/dist/commonjs/api/css.d.ts.map +1 -0
  227. package/node_modules/cheerio/dist/commonjs/api/css.js +119 -0
  228. package/node_modules/cheerio/dist/commonjs/api/css.js.map +1 -0
  229. package/node_modules/cheerio/dist/commonjs/api/extract.d.ts +27 -0
  230. package/node_modules/cheerio/dist/commonjs/api/extract.d.ts.map +1 -0
  231. package/node_modules/cheerio/dist/commonjs/api/extract.js +45 -0
  232. package/node_modules/cheerio/dist/commonjs/api/extract.js.map +1 -0
  233. package/node_modules/cheerio/dist/commonjs/api/forms.d.ts +36 -0
  234. package/node_modules/cheerio/dist/commonjs/api/forms.d.ts.map +1 -0
  235. package/node_modules/cheerio/dist/commonjs/api/forms.js +85 -0
  236. package/node_modules/cheerio/dist/commonjs/api/forms.js.map +1 -0
  237. package/node_modules/cheerio/dist/commonjs/api/manipulation.d.ts +528 -0
  238. package/node_modules/cheerio/dist/commonjs/api/manipulation.d.ts.map +1 -0
  239. package/node_modules/cheerio/dist/commonjs/api/manipulation.js +850 -0
  240. package/node_modules/cheerio/dist/commonjs/api/manipulation.js.map +1 -0
  241. package/node_modules/cheerio/dist/commonjs/api/traversing.d.ts +657 -0
  242. package/node_modules/cheerio/dist/commonjs/api/traversing.d.ts.map +1 -0
  243. package/node_modules/cheerio/dist/commonjs/api/traversing.js +914 -0
  244. package/node_modules/cheerio/dist/commonjs/api/traversing.js.map +1 -0
  245. package/node_modules/cheerio/dist/commonjs/cheerio.d.ts +85 -0
  246. package/node_modules/cheerio/dist/commonjs/cheerio.d.ts.map +1 -0
  247. package/node_modules/cheerio/dist/commonjs/cheerio.js +95 -0
  248. package/node_modules/cheerio/dist/commonjs/cheerio.js.map +1 -0
  249. package/node_modules/cheerio/dist/commonjs/index.d.ts +104 -0
  250. package/node_modules/cheerio/dist/commonjs/index.d.ts.map +1 -0
  251. package/node_modules/cheerio/dist/commonjs/index.js +250 -0
  252. package/node_modules/cheerio/dist/commonjs/index.js.map +1 -0
  253. package/node_modules/cheerio/dist/commonjs/load-parse.d.ts +20 -0
  254. package/node_modules/cheerio/dist/commonjs/load-parse.d.ts.map +1 -0
  255. package/node_modules/cheerio/dist/commonjs/load-parse.js +34 -0
  256. package/node_modules/cheerio/dist/commonjs/load-parse.js.map +1 -0
  257. package/node_modules/cheerio/dist/commonjs/load.d.ts +91 -0
  258. package/node_modules/cheerio/dist/commonjs/load.d.ts.map +1 -0
  259. package/node_modules/cheerio/dist/commonjs/load.js +165 -0
  260. package/node_modules/cheerio/dist/commonjs/load.js.map +1 -0
  261. package/node_modules/cheerio/dist/commonjs/options.d.ts +98 -0
  262. package/node_modules/cheerio/dist/commonjs/options.d.ts.map +1 -0
  263. package/node_modules/cheerio/dist/commonjs/options.js +37 -0
  264. package/node_modules/cheerio/dist/commonjs/options.js.map +1 -0
  265. package/node_modules/cheerio/dist/commonjs/package.json +3 -0
  266. package/node_modules/cheerio/dist/commonjs/parse.d.ts +18 -0
  267. package/node_modules/cheerio/dist/commonjs/parse.d.ts.map +1 -0
  268. package/node_modules/cheerio/dist/commonjs/parse.js +77 -0
  269. package/node_modules/cheerio/dist/commonjs/parse.js.map +1 -0
  270. package/node_modules/cheerio/dist/commonjs/parsers/parse5-adapter.d.ts +20 -0
  271. package/node_modules/cheerio/dist/commonjs/parsers/parse5-adapter.d.ts.map +1 -0
  272. package/node_modules/cheerio/dist/commonjs/parsers/parse5-adapter.js +54 -0
  273. package/node_modules/cheerio/dist/commonjs/parsers/parse5-adapter.js.map +1 -0
  274. package/node_modules/cheerio/dist/commonjs/slim.d.ts +25 -0
  275. package/node_modules/cheerio/dist/commonjs/slim.d.ts.map +1 -0
  276. package/node_modules/cheerio/dist/commonjs/slim.js +30 -0
  277. package/node_modules/cheerio/dist/commonjs/slim.js.map +1 -0
  278. package/node_modules/cheerio/dist/commonjs/static.d.ts +112 -0
  279. package/node_modules/cheerio/dist/commonjs/static.d.ts.map +1 -0
  280. package/node_modules/cheerio/dist/commonjs/static.js +214 -0
  281. package/node_modules/cheerio/dist/commonjs/static.js.map +1 -0
  282. package/node_modules/cheerio/dist/commonjs/types.d.ts +21 -0
  283. package/node_modules/cheerio/dist/commonjs/types.d.ts.map +1 -0
  284. package/node_modules/cheerio/dist/commonjs/types.js +4 -0
  285. package/node_modules/cheerio/dist/commonjs/types.js.map +1 -0
  286. package/node_modules/cheerio/dist/commonjs/utils.d.ts +55 -0
  287. package/node_modules/cheerio/dist/commonjs/utils.d.ts.map +1 -0
  288. package/node_modules/cheerio/dist/commonjs/utils.js +91 -0
  289. package/node_modules/cheerio/dist/commonjs/utils.js.map +1 -0
  290. package/node_modules/cheerio/dist/esm/api/attributes.d.ts +385 -0
  291. package/node_modules/cheerio/dist/esm/api/attributes.d.ts.map +1 -0
  292. package/node_modules/cheerio/dist/esm/api/attributes.js +636 -0
  293. package/node_modules/cheerio/dist/esm/api/attributes.js.map +1 -0
  294. package/node_modules/cheerio/dist/esm/api/css.d.ts +42 -0
  295. package/node_modules/cheerio/dist/esm/api/css.d.ts.map +1 -0
  296. package/node_modules/cheerio/dist/esm/api/css.js +116 -0
  297. package/node_modules/cheerio/dist/esm/api/css.js.map +1 -0
  298. package/node_modules/cheerio/dist/esm/api/extract.d.ts +27 -0
  299. package/node_modules/cheerio/dist/esm/api/extract.d.ts.map +1 -0
  300. package/node_modules/cheerio/dist/esm/api/extract.js +42 -0
  301. package/node_modules/cheerio/dist/esm/api/extract.js.map +1 -0
  302. package/node_modules/cheerio/dist/esm/api/forms.d.ts +36 -0
  303. package/node_modules/cheerio/dist/esm/api/forms.d.ts.map +1 -0
  304. package/node_modules/cheerio/dist/esm/api/forms.js +81 -0
  305. package/node_modules/cheerio/dist/esm/api/forms.js.map +1 -0
  306. package/node_modules/cheerio/dist/esm/api/manipulation.d.ts +528 -0
  307. package/node_modules/cheerio/dist/esm/api/manipulation.d.ts.map +1 -0
  308. package/node_modules/cheerio/dist/esm/api/manipulation.js +831 -0
  309. package/node_modules/cheerio/dist/esm/api/manipulation.js.map +1 -0
  310. package/node_modules/cheerio/dist/esm/api/traversing.d.ts +657 -0
  311. package/node_modules/cheerio/dist/esm/api/traversing.d.ts.map +1 -0
  312. package/node_modules/cheerio/dist/esm/api/traversing.js +857 -0
  313. package/node_modules/cheerio/dist/esm/api/traversing.js.map +1 -0
  314. package/node_modules/cheerio/dist/esm/cheerio.d.ts +85 -0
  315. package/node_modules/cheerio/dist/esm/cheerio.d.ts.map +1 -0
  316. package/node_modules/cheerio/dist/esm/cheerio.js +58 -0
  317. package/node_modules/cheerio/dist/esm/cheerio.js.map +1 -0
  318. package/node_modules/cheerio/dist/esm/index.d.ts +104 -0
  319. package/node_modules/cheerio/dist/esm/index.d.ts.map +1 -0
  320. package/node_modules/cheerio/dist/esm/index.js +202 -0
  321. package/node_modules/cheerio/dist/esm/index.js.map +1 -0
  322. package/node_modules/cheerio/dist/esm/load-parse.d.ts +20 -0
  323. package/node_modules/cheerio/dist/esm/load-parse.d.ts.map +1 -0
  324. package/node_modules/cheerio/dist/esm/load-parse.js +28 -0
  325. package/node_modules/cheerio/dist/esm/load-parse.js.map +1 -0
  326. package/node_modules/cheerio/dist/esm/load.d.ts +91 -0
  327. package/node_modules/cheerio/dist/esm/load.d.ts.map +1 -0
  328. package/node_modules/cheerio/dist/esm/load.js +129 -0
  329. package/node_modules/cheerio/dist/esm/load.js.map +1 -0
  330. package/node_modules/cheerio/dist/esm/options.d.ts +98 -0
  331. package/node_modules/cheerio/dist/esm/options.d.ts.map +1 -0
  332. package/node_modules/cheerio/dist/esm/options.js +34 -0
  333. package/node_modules/cheerio/dist/esm/options.js.map +1 -0
  334. package/node_modules/cheerio/dist/esm/package.json +3 -0
  335. package/node_modules/cheerio/dist/esm/parse.d.ts +18 -0
  336. package/node_modules/cheerio/dist/esm/parse.d.ts.map +1 -0
  337. package/node_modules/cheerio/dist/esm/parse.js +73 -0
  338. package/node_modules/cheerio/dist/esm/parse.js.map +1 -0
  339. package/node_modules/cheerio/dist/esm/parsers/parse5-adapter.d.ts +20 -0
  340. package/node_modules/cheerio/dist/esm/parsers/parse5-adapter.d.ts.map +1 -0
  341. package/node_modules/cheerio/dist/esm/parsers/parse5-adapter.js +50 -0
  342. package/node_modules/cheerio/dist/esm/parsers/parse5-adapter.js.map +1 -0
  343. package/node_modules/cheerio/dist/esm/slim.d.ts +25 -0
  344. package/node_modules/cheerio/dist/esm/slim.d.ts.map +1 -0
  345. package/node_modules/cheerio/dist/esm/slim.js +22 -0
  346. package/node_modules/cheerio/dist/esm/slim.js.map +1 -0
  347. package/node_modules/cheerio/dist/esm/static.d.ts +112 -0
  348. package/node_modules/cheerio/dist/esm/static.d.ts.map +1 -0
  349. package/node_modules/cheerio/dist/esm/static.js +204 -0
  350. package/node_modules/cheerio/dist/esm/static.js.map +1 -0
  351. package/node_modules/cheerio/dist/esm/types.d.ts +21 -0
  352. package/node_modules/cheerio/dist/esm/types.d.ts.map +1 -0
  353. package/node_modules/cheerio/dist/esm/types.js +3 -0
  354. package/node_modules/cheerio/dist/esm/types.js.map +1 -0
  355. package/node_modules/cheerio/dist/esm/utils.d.ts +55 -0
  356. package/node_modules/cheerio/dist/esm/utils.d.ts.map +1 -0
  357. package/node_modules/cheerio/dist/esm/utils.js +84 -0
  358. package/node_modules/cheerio/dist/esm/utils.js.map +1 -0
  359. package/node_modules/cheerio/package.json +182 -0
  360. package/node_modules/cheerio/src/api/attributes.ts +1145 -0
  361. package/node_modules/cheerio/src/api/css.ts +224 -0
  362. package/node_modules/cheerio/src/api/extract.ts +92 -0
  363. package/node_modules/cheerio/src/api/forms.ts +103 -0
  364. package/node_modules/cheerio/src/api/manipulation.ts +1115 -0
  365. package/node_modules/cheerio/src/api/traversing.ts +1175 -0
  366. package/node_modules/cheerio/src/cheerio.ts +143 -0
  367. package/node_modules/cheerio/src/index-browser.mts +10 -0
  368. package/node_modules/cheerio/src/index.ts +294 -0
  369. package/node_modules/cheerio/src/load-parse.ts +39 -0
  370. package/node_modules/cheerio/src/load.ts +282 -0
  371. package/node_modules/cheerio/src/options.ts +136 -0
  372. package/node_modules/cheerio/src/parse.ts +105 -0
  373. package/node_modules/cheerio/src/parsers/parse5-adapter.ts +66 -0
  374. package/node_modules/cheerio/src/slim.ts +33 -0
  375. package/node_modules/cheerio/src/static.ts +312 -0
  376. package/node_modules/cheerio/src/types.ts +58 -0
  377. package/node_modules/cheerio/src/utils.ts +99 -0
  378. package/node_modules/cheerio-select/LICENSE +11 -0
  379. package/node_modules/cheerio-select/README.md +18 -0
  380. package/node_modules/cheerio-select/lib/esm/helpers.d.ts +5 -0
  381. package/node_modules/cheerio-select/lib/esm/helpers.d.ts.map +1 -0
  382. package/node_modules/cheerio-select/lib/esm/helpers.js +20 -0
  383. package/node_modules/cheerio-select/lib/esm/helpers.js.map +1 -0
  384. package/node_modules/cheerio-select/lib/esm/index.d.ts +12 -0
  385. package/node_modules/cheerio-select/lib/esm/index.d.ts.map +1 -0
  386. package/node_modules/cheerio-select/lib/esm/index.js +241 -0
  387. package/node_modules/cheerio-select/lib/esm/index.js.map +1 -0
  388. package/node_modules/cheerio-select/lib/esm/package.json +1 -0
  389. package/node_modules/cheerio-select/lib/esm/positionals.d.ts +10 -0
  390. package/node_modules/cheerio-select/lib/esm/positionals.d.ts.map +1 -0
  391. package/node_modules/cheerio-select/lib/esm/positionals.js +47 -0
  392. package/node_modules/cheerio-select/lib/esm/positionals.js.map +1 -0
  393. package/node_modules/cheerio-select/lib/helpers.d.ts +5 -0
  394. package/node_modules/cheerio-select/lib/helpers.d.ts.map +1 -0
  395. package/node_modules/cheerio-select/lib/helpers.js +26 -0
  396. package/node_modules/cheerio-select/lib/helpers.js.map +1 -0
  397. package/node_modules/cheerio-select/lib/index.d.ts +12 -0
  398. package/node_modules/cheerio-select/lib/index.d.ts.map +1 -0
  399. package/node_modules/cheerio-select/lib/index.js +302 -0
  400. package/node_modules/cheerio-select/lib/index.js.map +1 -0
  401. package/node_modules/cheerio-select/lib/positionals.d.ts +10 -0
  402. package/node_modules/cheerio-select/lib/positionals.d.ts.map +1 -0
  403. package/node_modules/cheerio-select/lib/positionals.js +52 -0
  404. package/node_modules/cheerio-select/lib/positionals.js.map +1 -0
  405. package/node_modules/cheerio-select/package.json +76 -0
  406. package/node_modules/codepage/LICENSE +201 -0
  407. package/node_modules/codepage/README.md +350 -0
  408. package/node_modules/codepage/bits/10000.js +2 -0
  409. package/node_modules/codepage/bits/10001.js +115 -0
  410. package/node_modules/codepage/bits/10002.js +253 -0
  411. package/node_modules/codepage/bits/10003.js +183 -0
  412. package/node_modules/codepage/bits/10004.js +2 -0
  413. package/node_modules/codepage/bits/10005.js +2 -0
  414. package/node_modules/codepage/bits/10006.js +2 -0
  415. package/node_modules/codepage/bits/10007.js +2 -0
  416. package/node_modules/codepage/bits/10008.js +167 -0
  417. package/node_modules/codepage/bits/10010.js +2 -0
  418. package/node_modules/codepage/bits/10017.js +2 -0
  419. package/node_modules/codepage/bits/10021.js +2 -0
  420. package/node_modules/codepage/bits/10029.js +2 -0
  421. package/node_modules/codepage/bits/10079.js +2 -0
  422. package/node_modules/codepage/bits/10081.js +2 -0
  423. package/node_modules/codepage/bits/10082.js +2 -0
  424. package/node_modules/codepage/bits/1010.js +2 -0
  425. package/node_modules/codepage/bits/1026.js +2 -0
  426. package/node_modules/codepage/bits/1047.js +2 -0
  427. package/node_modules/codepage/bits/1132.js +2 -0
  428. package/node_modules/codepage/bits/1140.js +2 -0
  429. package/node_modules/codepage/bits/1141.js +2 -0
  430. package/node_modules/codepage/bits/1142.js +2 -0
  431. package/node_modules/codepage/bits/1143.js +2 -0
  432. package/node_modules/codepage/bits/1144.js +2 -0
  433. package/node_modules/codepage/bits/1145.js +2 -0
  434. package/node_modules/codepage/bits/1146.js +2 -0
  435. package/node_modules/codepage/bits/1147.js +2 -0
  436. package/node_modules/codepage/bits/1148.js +2 -0
  437. package/node_modules/codepage/bits/1149.js +2 -0
  438. package/node_modules/codepage/bits/1250.js +2 -0
  439. package/node_modules/codepage/bits/1251.js +2 -0
  440. package/node_modules/codepage/bits/1252.js +2 -0
  441. package/node_modules/codepage/bits/1253.js +2 -0
  442. package/node_modules/codepage/bits/1254.js +2 -0
  443. package/node_modules/codepage/bits/1255.js +2 -0
  444. package/node_modules/codepage/bits/1256.js +2 -0
  445. package/node_modules/codepage/bits/1257.js +2 -0
  446. package/node_modules/codepage/bits/1258.js +2 -0
  447. package/node_modules/codepage/bits/1361.js +231 -0
  448. package/node_modules/codepage/bits/20000.js +193 -0
  449. package/node_modules/codepage/bits/20001.js +217 -0
  450. package/node_modules/codepage/bits/20002.js +167 -0
  451. package/node_modules/codepage/bits/20003.js +213 -0
  452. package/node_modules/codepage/bits/20004.js +193 -0
  453. package/node_modules/codepage/bits/20005.js +223 -0
  454. package/node_modules/codepage/bits/20105.js +2 -0
  455. package/node_modules/codepage/bits/20106.js +2 -0
  456. package/node_modules/codepage/bits/20107.js +2 -0
  457. package/node_modules/codepage/bits/20108.js +2 -0
  458. package/node_modules/codepage/bits/20261.js +31 -0
  459. package/node_modules/codepage/bits/20269.js +2 -0
  460. package/node_modules/codepage/bits/20273.js +2 -0
  461. package/node_modules/codepage/bits/20277.js +2 -0
  462. package/node_modules/codepage/bits/20278.js +2 -0
  463. package/node_modules/codepage/bits/20280.js +2 -0
  464. package/node_modules/codepage/bits/20284.js +2 -0
  465. package/node_modules/codepage/bits/20285.js +2 -0
  466. package/node_modules/codepage/bits/20290.js +2 -0
  467. package/node_modules/codepage/bits/20297.js +2 -0
  468. package/node_modules/codepage/bits/20420.js +2 -0
  469. package/node_modules/codepage/bits/20423.js +2 -0
  470. package/node_modules/codepage/bits/20424.js +2 -0
  471. package/node_modules/codepage/bits/20833.js +2 -0
  472. package/node_modules/codepage/bits/20838.js +2 -0
  473. package/node_modules/codepage/bits/20866.js +2 -0
  474. package/node_modules/codepage/bits/20871.js +2 -0
  475. package/node_modules/codepage/bits/20880.js +2 -0
  476. package/node_modules/codepage/bits/20905.js +2 -0
  477. package/node_modules/codepage/bits/20924.js +2 -0
  478. package/node_modules/codepage/bits/20932.js +189 -0
  479. package/node_modules/codepage/bits/20936.js +167 -0
  480. package/node_modules/codepage/bits/20949.js +183 -0
  481. package/node_modules/codepage/bits/21025.js +2 -0
  482. package/node_modules/codepage/bits/21027.js +2 -0
  483. package/node_modules/codepage/bits/21866.js +2 -0
  484. package/node_modules/codepage/bits/28591.js +2 -0
  485. package/node_modules/codepage/bits/28592.js +2 -0
  486. package/node_modules/codepage/bits/28593.js +2 -0
  487. package/node_modules/codepage/bits/28594.js +2 -0
  488. package/node_modules/codepage/bits/28595.js +2 -0
  489. package/node_modules/codepage/bits/28596.js +2 -0
  490. package/node_modules/codepage/bits/28597.js +2 -0
  491. package/node_modules/codepage/bits/28598.js +2 -0
  492. package/node_modules/codepage/bits/28599.js +2 -0
  493. package/node_modules/codepage/bits/28600.js +2 -0
  494. package/node_modules/codepage/bits/28601.js +2 -0
  495. package/node_modules/codepage/bits/28603.js +2 -0
  496. package/node_modules/codepage/bits/28604.js +2 -0
  497. package/node_modules/codepage/bits/28605.js +2 -0
  498. package/node_modules/codepage/bits/28606.js +2 -0
  499. package/node_modules/codepage/bits/29001.js +2 -0
  500. package/node_modules/codepage/bits/37.js +2 -0
  501. package/node_modules/codepage/bits/38598.js +2 -0
  502. package/node_modules/codepage/bits/437.js +2 -0
  503. package/node_modules/codepage/bits/47451.js +2 -0
  504. package/node_modules/codepage/bits/500.js +2 -0
  505. package/node_modules/codepage/bits/50220.js +395 -0
  506. package/node_modules/codepage/bits/50221.js +395 -0
  507. package/node_modules/codepage/bits/50222.js +395 -0
  508. package/node_modules/codepage/bits/50225.js +259 -0
  509. package/node_modules/codepage/bits/50227.js +257 -0
  510. package/node_modules/codepage/bits/51932.js +171 -0
  511. package/node_modules/codepage/bits/51936.js +257 -0
  512. package/node_modules/codepage/bits/51949.js +183 -0
  513. package/node_modules/codepage/bits/52936.js +7 -0
  514. package/node_modules/codepage/bits/54936.js +257 -0
  515. package/node_modules/codepage/bits/57002.js +39 -0
  516. package/node_modules/codepage/bits/57003.js +23 -0
  517. package/node_modules/codepage/bits/57004.js +7 -0
  518. package/node_modules/codepage/bits/57005.js +15 -0
  519. package/node_modules/codepage/bits/57006.js +23 -0
  520. package/node_modules/codepage/bits/57007.js +21 -0
  521. package/node_modules/codepage/bits/57008.js +17 -0
  522. package/node_modules/codepage/bits/57009.js +13 -0
  523. package/node_modules/codepage/bits/57010.js +15 -0
  524. package/node_modules/codepage/bits/57011.js +17 -0
  525. package/node_modules/codepage/bits/620.js +2 -0
  526. package/node_modules/codepage/bits/708.js +2 -0
  527. package/node_modules/codepage/bits/720.js +2 -0
  528. package/node_modules/codepage/bits/737.js +2 -0
  529. package/node_modules/codepage/bits/775.js +2 -0
  530. package/node_modules/codepage/bits/808.js +2 -0
  531. package/node_modules/codepage/bits/850.js +2 -0
  532. package/node_modules/codepage/bits/852.js +2 -0
  533. package/node_modules/codepage/bits/855.js +2 -0
  534. package/node_modules/codepage/bits/857.js +2 -0
  535. package/node_modules/codepage/bits/858.js +2 -0
  536. package/node_modules/codepage/bits/860.js +2 -0
  537. package/node_modules/codepage/bits/861.js +2 -0
  538. package/node_modules/codepage/bits/862.js +2 -0
  539. package/node_modules/codepage/bits/863.js +2 -0
  540. package/node_modules/codepage/bits/864.js +2 -0
  541. package/node_modules/codepage/bits/865.js +2 -0
  542. package/node_modules/codepage/bits/866.js +2 -0
  543. package/node_modules/codepage/bits/869.js +2 -0
  544. package/node_modules/codepage/bits/870.js +2 -0
  545. package/node_modules/codepage/bits/872.js +2 -0
  546. package/node_modules/codepage/bits/874.js +2 -0
  547. package/node_modules/codepage/bits/875.js +2 -0
  548. package/node_modules/codepage/bits/895.js +2 -0
  549. package/node_modules/codepage/bits/932.js +95 -0
  550. package/node_modules/codepage/bits/936.js +257 -0
  551. package/node_modules/codepage/bits/949.js +253 -0
  552. package/node_modules/codepage/bits/950.js +179 -0
  553. package/node_modules/codepage/cptable.js +4651 -0
  554. package/node_modules/codepage/cputils.js +528 -0
  555. package/node_modules/codepage/dist/cpexcel.full.js +1506 -0
  556. package/node_modules/codepage/dist/sbcs.full.js +639 -0
  557. package/node_modules/codepage/package.json +72 -0
  558. package/node_modules/codepage/types/index.d.ts +39 -0
  559. package/node_modules/codepage/types/tsconfig.json +15 -0
  560. package/node_modules/codepage/types/tslint.json +11 -0
  561. package/node_modules/crc-32/LICENSE +201 -0
  562. package/node_modules/crc-32/README.md +200 -0
  563. package/node_modules/crc-32/bin/crc32.njs +105 -0
  564. package/node_modules/crc-32/crc32.js +115 -0
  565. package/node_modules/crc-32/crc32c.js +115 -0
  566. package/node_modules/crc-32/package.json +43 -0
  567. package/node_modules/crc-32/types/index.d.ts +14 -0
  568. package/node_modules/crc-32/types/tsconfig.json +14 -0
  569. package/node_modules/crc-32/types/tslint.json +11 -0
  570. package/node_modules/css-select/LICENSE +11 -0
  571. package/node_modules/css-select/README.md +264 -0
  572. package/node_modules/css-select/lib/attributes.d.ts +7 -0
  573. package/node_modules/css-select/lib/attributes.d.ts.map +1 -0
  574. package/node_modules/css-select/lib/attributes.js +236 -0
  575. package/node_modules/css-select/lib/attributes.js.map +1 -0
  576. package/node_modules/css-select/lib/compile.d.ts +13 -0
  577. package/node_modules/css-select/lib/compile.d.ts.map +1 -0
  578. package/node_modules/css-select/lib/compile.js +151 -0
  579. package/node_modules/css-select/lib/compile.js.map +1 -0
  580. package/node_modules/css-select/lib/esm/attributes.d.ts +7 -0
  581. package/node_modules/css-select/lib/esm/attributes.d.ts.map +1 -0
  582. package/node_modules/css-select/lib/esm/attributes.js +222 -0
  583. package/node_modules/css-select/lib/esm/attributes.js.map +1 -0
  584. package/node_modules/css-select/lib/esm/compile.d.ts +13 -0
  585. package/node_modules/css-select/lib/esm/compile.d.ts.map +1 -0
  586. package/node_modules/css-select/lib/esm/compile.js +115 -0
  587. package/node_modules/css-select/lib/esm/compile.js.map +1 -0
  588. package/node_modules/css-select/lib/esm/general.d.ts +3 -0
  589. package/node_modules/css-select/lib/esm/general.d.ts.map +1 -0
  590. package/node_modules/css-select/lib/esm/general.js +144 -0
  591. package/node_modules/css-select/lib/esm/general.js.map +1 -0
  592. package/node_modules/css-select/lib/esm/helpers/cache.d.ts +12 -0
  593. package/node_modules/css-select/lib/esm/helpers/cache.d.ts.map +1 -0
  594. package/node_modules/css-select/lib/esm/helpers/cache.js +41 -0
  595. package/node_modules/css-select/lib/esm/helpers/cache.js.map +1 -0
  596. package/node_modules/css-select/lib/esm/helpers/querying.d.ts +24 -0
  597. package/node_modules/css-select/lib/esm/helpers/querying.d.ts.map +1 -0
  598. package/node_modules/css-select/lib/esm/helpers/querying.js +105 -0
  599. package/node_modules/css-select/lib/esm/helpers/querying.js.map +1 -0
  600. package/node_modules/css-select/lib/esm/helpers/selectors.d.ts +20 -0
  601. package/node_modules/css-select/lib/esm/helpers/selectors.d.ts.map +1 -0
  602. package/node_modules/css-select/lib/esm/helpers/selectors.js +103 -0
  603. package/node_modules/css-select/lib/esm/helpers/selectors.js.map +1 -0
  604. package/node_modules/css-select/lib/esm/index.d.ts +50 -0
  605. package/node_modules/css-select/lib/esm/index.d.ts.map +1 -0
  606. package/node_modules/css-select/lib/esm/index.js +115 -0
  607. package/node_modules/css-select/lib/esm/index.js.map +1 -0
  608. package/node_modules/css-select/lib/esm/package.json +1 -0
  609. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts +5 -0
  610. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts.map +1 -0
  611. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
  612. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js.map +1 -0
  613. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts +4 -0
  614. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts.map +1 -0
  615. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
  616. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js.map +1 -0
  617. package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts +8 -0
  618. package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts.map +1 -0
  619. package/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
  620. package/node_modules/css-select/lib/esm/pseudo-selectors/index.js.map +1 -0
  621. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts +6 -0
  622. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts.map +1 -0
  623. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
  624. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js.map +1 -0
  625. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts +9 -0
  626. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts.map +1 -0
  627. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
  628. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js.map +1 -0
  629. package/node_modules/css-select/lib/esm/sort.d.ts +12 -0
  630. package/node_modules/css-select/lib/esm/sort.d.ts.map +1 -0
  631. package/node_modules/css-select/lib/esm/sort.js +79 -0
  632. package/node_modules/css-select/lib/esm/sort.js.map +1 -0
  633. package/node_modules/css-select/lib/esm/types.d.ts +167 -0
  634. package/node_modules/css-select/lib/esm/types.d.ts.map +1 -0
  635. package/node_modules/css-select/lib/esm/types.js +2 -0
  636. package/node_modules/css-select/lib/esm/types.js.map +1 -0
  637. package/node_modules/css-select/lib/general.d.ts +3 -0
  638. package/node_modules/css-select/lib/general.d.ts.map +1 -0
  639. package/node_modules/css-select/lib/general.js +148 -0
  640. package/node_modules/css-select/lib/general.js.map +1 -0
  641. package/node_modules/css-select/lib/helpers/cache.d.ts +12 -0
  642. package/node_modules/css-select/lib/helpers/cache.d.ts.map +1 -0
  643. package/node_modules/css-select/lib/helpers/cache.js +45 -0
  644. package/node_modules/css-select/lib/helpers/cache.js.map +1 -0
  645. package/node_modules/css-select/lib/helpers/querying.d.ts +24 -0
  646. package/node_modules/css-select/lib/helpers/querying.d.ts.map +1 -0
  647. package/node_modules/css-select/lib/helpers/querying.js +111 -0
  648. package/node_modules/css-select/lib/helpers/querying.js.map +1 -0
  649. package/node_modules/css-select/lib/helpers/selectors.d.ts +20 -0
  650. package/node_modules/css-select/lib/helpers/selectors.d.ts.map +1 -0
  651. package/node_modules/css-select/lib/helpers/selectors.js +111 -0
  652. package/node_modules/css-select/lib/helpers/selectors.js.map +1 -0
  653. package/node_modules/css-select/lib/index.d.ts +50 -0
  654. package/node_modules/css-select/lib/index.d.ts.map +1 -0
  655. package/node_modules/css-select/lib/index.js +154 -0
  656. package/node_modules/css-select/lib/index.js.map +1 -0
  657. package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts +5 -0
  658. package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts.map +1 -0
  659. package/node_modules/css-select/lib/pseudo-selectors/aliases.js +34 -0
  660. package/node_modules/css-select/lib/pseudo-selectors/aliases.js.map +1 -0
  661. package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts +4 -0
  662. package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts.map +1 -0
  663. package/node_modules/css-select/lib/pseudo-selectors/filters.js +157 -0
  664. package/node_modules/css-select/lib/pseudo-selectors/filters.js.map +1 -0
  665. package/node_modules/css-select/lib/pseudo-selectors/index.d.ts +8 -0
  666. package/node_modules/css-select/lib/pseudo-selectors/index.d.ts.map +1 -0
  667. package/node_modules/css-select/lib/pseudo-selectors/index.js +46 -0
  668. package/node_modules/css-select/lib/pseudo-selectors/index.js.map +1 -0
  669. package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts +6 -0
  670. package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts.map +1 -0
  671. package/node_modules/css-select/lib/pseudo-selectors/pseudos.js +93 -0
  672. package/node_modules/css-select/lib/pseudo-selectors/pseudos.js.map +1 -0
  673. package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts +9 -0
  674. package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts.map +1 -0
  675. package/node_modules/css-select/lib/pseudo-selectors/subselects.js +112 -0
  676. package/node_modules/css-select/lib/pseudo-selectors/subselects.js.map +1 -0
  677. package/node_modules/css-select/lib/sort.d.ts +12 -0
  678. package/node_modules/css-select/lib/sort.d.ts.map +1 -0
  679. package/node_modules/css-select/lib/sort.js +84 -0
  680. package/node_modules/css-select/lib/sort.js.map +1 -0
  681. package/node_modules/css-select/lib/types.d.ts +167 -0
  682. package/node_modules/css-select/lib/types.d.ts.map +1 -0
  683. package/node_modules/css-select/lib/types.js +3 -0
  684. package/node_modules/css-select/lib/types.js.map +1 -0
  685. package/node_modules/css-select/package.json +81 -0
  686. package/node_modules/css-what/LICENSE +11 -0
  687. package/node_modules/css-what/lib/commonjs/index.d.ts +4 -0
  688. package/node_modules/css-what/lib/commonjs/index.d.ts.map +1 -0
  689. package/node_modules/css-what/lib/commonjs/index.js +23 -0
  690. package/node_modules/css-what/lib/commonjs/parse.d.ts +20 -0
  691. package/node_modules/css-what/lib/commonjs/parse.d.ts.map +1 -0
  692. package/node_modules/css-what/lib/commonjs/parse.js +425 -0
  693. package/node_modules/css-what/lib/commonjs/stringify.d.ts +8 -0
  694. package/node_modules/css-what/lib/commonjs/stringify.d.ts.map +1 -0
  695. package/node_modules/css-what/lib/commonjs/stringify.js +138 -0
  696. package/node_modules/css-what/lib/commonjs/types.d.ts +70 -0
  697. package/node_modules/css-what/lib/commonjs/types.d.ts.map +1 -0
  698. package/node_modules/css-what/lib/commonjs/types.js +42 -0
  699. package/node_modules/css-what/lib/es/index.d.ts +4 -0
  700. package/node_modules/css-what/lib/es/index.d.ts.map +1 -0
  701. package/node_modules/css-what/lib/es/index.js +3 -0
  702. package/node_modules/css-what/lib/es/parse.d.ts +20 -0
  703. package/node_modules/css-what/lib/es/parse.d.ts.map +1 -0
  704. package/node_modules/css-what/lib/es/parse.js +420 -0
  705. package/node_modules/css-what/lib/es/stringify.d.ts +8 -0
  706. package/node_modules/css-what/lib/es/stringify.d.ts.map +1 -0
  707. package/node_modules/css-what/lib/es/stringify.js +126 -0
  708. package/node_modules/css-what/lib/es/types.d.ts +70 -0
  709. package/node_modules/css-what/lib/es/types.d.ts.map +1 -0
  710. package/node_modules/css-what/lib/es/types.js +39 -0
  711. package/node_modules/css-what/package.json +59 -0
  712. package/node_modules/css-what/readme.md +69 -0
  713. package/node_modules/dom-serializer/LICENSE +11 -0
  714. package/node_modules/dom-serializer/README.md +109 -0
  715. package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts +3 -0
  716. package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map +1 -0
  717. package/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
  718. package/node_modules/dom-serializer/lib/esm/index.d.ts +52 -0
  719. package/node_modules/dom-serializer/lib/esm/index.d.ts.map +1 -0
  720. package/node_modules/dom-serializer/lib/esm/index.js +190 -0
  721. package/node_modules/dom-serializer/lib/esm/package.json +1 -0
  722. package/node_modules/dom-serializer/lib/foreignNames.d.ts +3 -0
  723. package/node_modules/dom-serializer/lib/foreignNames.d.ts.map +1 -0
  724. package/node_modules/dom-serializer/lib/foreignNames.js +103 -0
  725. package/node_modules/dom-serializer/lib/index.d.ts +52 -0
  726. package/node_modules/dom-serializer/lib/index.d.ts.map +1 -0
  727. package/node_modules/dom-serializer/lib/index.js +229 -0
  728. package/node_modules/dom-serializer/package.json +69 -0
  729. package/node_modules/domelementtype/LICENSE +11 -0
  730. package/node_modules/domelementtype/lib/esm/index.d.ts +48 -0
  731. package/node_modules/domelementtype/lib/esm/index.d.ts.map +1 -0
  732. package/node_modules/domelementtype/lib/esm/index.js +51 -0
  733. package/node_modules/domelementtype/lib/esm/package.json +1 -0
  734. package/node_modules/domelementtype/lib/index.d.ts +48 -0
  735. package/node_modules/domelementtype/lib/index.d.ts.map +1 -0
  736. package/node_modules/domelementtype/lib/index.js +55 -0
  737. package/node_modules/domelementtype/package.json +54 -0
  738. package/node_modules/domelementtype/readme.md +1 -0
  739. package/node_modules/domhandler/LICENSE +11 -0
  740. package/node_modules/domhandler/lib/esm/index.d.ts +76 -0
  741. package/node_modules/domhandler/lib/esm/index.d.ts.map +1 -0
  742. package/node_modules/domhandler/lib/esm/index.js +146 -0
  743. package/node_modules/domhandler/lib/esm/node.d.ts +245 -0
  744. package/node_modules/domhandler/lib/esm/node.d.ts.map +1 -0
  745. package/node_modules/domhandler/lib/esm/node.js +338 -0
  746. package/node_modules/domhandler/lib/esm/package.json +1 -0
  747. package/node_modules/domhandler/lib/index.d.ts +76 -0
  748. package/node_modules/domhandler/lib/index.d.ts.map +1 -0
  749. package/node_modules/domhandler/lib/index.js +165 -0
  750. package/node_modules/domhandler/lib/node.d.ts +245 -0
  751. package/node_modules/domhandler/lib/node.d.ts.map +1 -0
  752. package/node_modules/domhandler/lib/node.js +474 -0
  753. package/node_modules/domhandler/package.json +73 -0
  754. package/node_modules/domhandler/readme.md +92 -0
  755. package/node_modules/domutils/LICENSE +11 -0
  756. package/node_modules/domutils/lib/esm/feeds.d.ts +71 -0
  757. package/node_modules/domutils/lib/esm/feeds.d.ts.map +1 -0
  758. package/node_modules/domutils/lib/esm/feeds.js +183 -0
  759. package/node_modules/domutils/lib/esm/feeds.js.map +1 -0
  760. package/node_modules/domutils/lib/esm/helpers.d.ts +59 -0
  761. package/node_modules/domutils/lib/esm/helpers.d.ts.map +1 -0
  762. package/node_modules/domutils/lib/esm/helpers.js +136 -0
  763. package/node_modules/domutils/lib/esm/helpers.js.map +1 -0
  764. package/node_modules/domutils/lib/esm/index.d.ts +10 -0
  765. package/node_modules/domutils/lib/esm/index.d.ts.map +1 -0
  766. package/node_modules/domutils/lib/esm/index.js +10 -0
  767. package/node_modules/domutils/lib/esm/index.js.map +1 -0
  768. package/node_modules/domutils/lib/esm/legacy.d.ts +79 -0
  769. package/node_modules/domutils/lib/esm/legacy.d.ts.map +1 -0
  770. package/node_modules/domutils/lib/esm/legacy.js +152 -0
  771. package/node_modules/domutils/lib/esm/legacy.js.map +1 -0
  772. package/node_modules/domutils/lib/esm/manipulation.d.ts +49 -0
  773. package/node_modules/domutils/lib/esm/manipulation.d.ts.map +1 -0
  774. package/node_modules/domutils/lib/esm/manipulation.js +134 -0
  775. package/node_modules/domutils/lib/esm/manipulation.js.map +1 -0
  776. package/node_modules/domutils/lib/esm/package.json +1 -0
  777. package/node_modules/domutils/lib/esm/querying.d.ts +64 -0
  778. package/node_modules/domutils/lib/esm/querying.d.ts.map +1 -0
  779. package/node_modules/domutils/lib/esm/querying.js +142 -0
  780. package/node_modules/domutils/lib/esm/querying.js.map +1 -0
  781. package/node_modules/domutils/lib/esm/stringify.d.ts +46 -0
  782. package/node_modules/domutils/lib/esm/stringify.d.ts.map +1 -0
  783. package/node_modules/domutils/lib/esm/stringify.js +81 -0
  784. package/node_modules/domutils/lib/esm/stringify.js.map +1 -0
  785. package/node_modules/domutils/lib/esm/traversal.d.ts +67 -0
  786. package/node_modules/domutils/lib/esm/traversal.d.ts.map +1 -0
  787. package/node_modules/domutils/lib/esm/traversal.js +112 -0
  788. package/node_modules/domutils/lib/esm/traversal.js.map +1 -0
  789. package/node_modules/domutils/lib/feeds.d.ts +71 -0
  790. package/node_modules/domutils/lib/feeds.d.ts.map +1 -0
  791. package/node_modules/domutils/lib/feeds.js +190 -0
  792. package/node_modules/domutils/lib/feeds.js.map +1 -0
  793. package/node_modules/domutils/lib/helpers.d.ts +59 -0
  794. package/node_modules/domutils/lib/helpers.d.ts.map +1 -0
  795. package/node_modules/domutils/lib/helpers.js +142 -0
  796. package/node_modules/domutils/lib/helpers.js.map +1 -0
  797. package/node_modules/domutils/lib/index.d.ts +10 -0
  798. package/node_modules/domutils/lib/index.d.ts.map +1 -0
  799. package/node_modules/domutils/lib/index.js +33 -0
  800. package/node_modules/domutils/lib/index.js.map +1 -0
  801. package/node_modules/domutils/lib/legacy.d.ts +79 -0
  802. package/node_modules/domutils/lib/legacy.d.ts.map +1 -0
  803. package/node_modules/domutils/lib/legacy.js +168 -0
  804. package/node_modules/domutils/lib/legacy.js.map +1 -0
  805. package/node_modules/domutils/lib/manipulation.d.ts +49 -0
  806. package/node_modules/domutils/lib/manipulation.d.ts.map +1 -0
  807. package/node_modules/domutils/lib/manipulation.js +142 -0
  808. package/node_modules/domutils/lib/manipulation.js.map +1 -0
  809. package/node_modules/domutils/lib/querying.d.ts +64 -0
  810. package/node_modules/domutils/lib/querying.d.ts.map +1 -0
  811. package/node_modules/domutils/lib/querying.js +155 -0
  812. package/node_modules/domutils/lib/querying.js.map +1 -0
  813. package/node_modules/domutils/lib/stringify.d.ts +46 -0
  814. package/node_modules/domutils/lib/stringify.d.ts.map +1 -0
  815. package/node_modules/domutils/lib/stringify.js +91 -0
  816. package/node_modules/domutils/lib/stringify.js.map +1 -0
  817. package/node_modules/domutils/lib/traversal.d.ts +67 -0
  818. package/node_modules/domutils/lib/traversal.d.ts.map +1 -0
  819. package/node_modules/domutils/lib/traversal.js +125 -0
  820. package/node_modules/domutils/lib/traversal.js.map +1 -0
  821. package/node_modules/domutils/package.json +79 -0
  822. package/node_modules/domutils/readme.md +31 -0
  823. package/node_modules/encoding-sniffer/LICENSE +18 -0
  824. package/node_modules/encoding-sniffer/README.md +68 -0
  825. package/node_modules/encoding-sniffer/dist/commonjs/index.d.ts +31 -0
  826. package/node_modules/encoding-sniffer/dist/commonjs/index.d.ts.map +1 -0
  827. package/node_modules/encoding-sniffer/dist/commonjs/index.js +72 -0
  828. package/node_modules/encoding-sniffer/dist/commonjs/index.js.map +1 -0
  829. package/node_modules/encoding-sniffer/dist/commonjs/package.json +3 -0
  830. package/node_modules/encoding-sniffer/dist/commonjs/sniffer.d.ts +148 -0
  831. package/node_modules/encoding-sniffer/dist/commonjs/sniffer.d.ts.map +1 -0
  832. package/node_modules/encoding-sniffer/dist/commonjs/sniffer.js +990 -0
  833. package/node_modules/encoding-sniffer/dist/commonjs/sniffer.js.map +1 -0
  834. package/node_modules/encoding-sniffer/dist/esm/index.d.ts +31 -0
  835. package/node_modules/encoding-sniffer/dist/esm/index.d.ts.map +1 -0
  836. package/node_modules/encoding-sniffer/dist/esm/index.js +63 -0
  837. package/node_modules/encoding-sniffer/dist/esm/index.js.map +1 -0
  838. package/node_modules/encoding-sniffer/dist/esm/package.json +3 -0
  839. package/node_modules/encoding-sniffer/dist/esm/sniffer.d.ts +148 -0
  840. package/node_modules/encoding-sniffer/dist/esm/sniffer.d.ts.map +1 -0
  841. package/node_modules/encoding-sniffer/dist/esm/sniffer.js +985 -0
  842. package/node_modules/encoding-sniffer/dist/esm/sniffer.js.map +1 -0
  843. package/node_modules/encoding-sniffer/package.json +94 -0
  844. package/node_modules/encoding-sniffer/sniffer.d.ts +2 -0
  845. package/node_modules/encoding-sniffer/sniffer.js +3 -0
  846. package/node_modules/entities/LICENSE +11 -0
  847. package/node_modules/entities/lib/decode.d.ts +211 -0
  848. package/node_modules/entities/lib/decode.d.ts.map +1 -0
  849. package/node_modules/entities/lib/decode.js +536 -0
  850. package/node_modules/entities/lib/decode.js.map +1 -0
  851. package/node_modules/entities/lib/decode_codepoint.d.ts +19 -0
  852. package/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
  853. package/node_modules/entities/lib/decode_codepoint.js +76 -0
  854. package/node_modules/entities/lib/decode_codepoint.js.map +1 -0
  855. package/node_modules/entities/lib/encode.d.ts +22 -0
  856. package/node_modules/entities/lib/encode.d.ts.map +1 -0
  857. package/node_modules/entities/lib/encode.js +77 -0
  858. package/node_modules/entities/lib/encode.js.map +1 -0
  859. package/node_modules/entities/lib/escape.d.ts +43 -0
  860. package/node_modules/entities/lib/escape.d.ts.map +1 -0
  861. package/node_modules/entities/lib/escape.js +122 -0
  862. package/node_modules/entities/lib/escape.js.map +1 -0
  863. package/node_modules/entities/lib/esm/decode.d.ts +211 -0
  864. package/node_modules/entities/lib/esm/decode.d.ts.map +1 -0
  865. package/node_modules/entities/lib/esm/decode.js +496 -0
  866. package/node_modules/entities/lib/esm/decode.js.map +1 -0
  867. package/node_modules/entities/lib/esm/decode_codepoint.d.ts +19 -0
  868. package/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +1 -0
  869. package/node_modules/entities/lib/esm/decode_codepoint.js +71 -0
  870. package/node_modules/entities/lib/esm/decode_codepoint.js.map +1 -0
  871. package/node_modules/entities/lib/esm/encode.d.ts +22 -0
  872. package/node_modules/entities/lib/esm/encode.d.ts.map +1 -0
  873. package/node_modules/entities/lib/esm/encode.js +69 -0
  874. package/node_modules/entities/lib/esm/encode.js.map +1 -0
  875. package/node_modules/entities/lib/esm/escape.d.ts +43 -0
  876. package/node_modules/entities/lib/esm/escape.d.ts.map +1 -0
  877. package/node_modules/entities/lib/esm/escape.js +116 -0
  878. package/node_modules/entities/lib/esm/escape.js.map +1 -0
  879. package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +3 -0
  880. package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +1 -0
  881. package/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
  882. package/node_modules/entities/lib/esm/generated/decode-data-html.js.map +1 -0
  883. package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +3 -0
  884. package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +1 -0
  885. package/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
  886. package/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +1 -0
  887. package/node_modules/entities/lib/esm/generated/encode-html.d.ts +8 -0
  888. package/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +1 -0
  889. package/node_modules/entities/lib/esm/generated/encode-html.js +10 -0
  890. package/node_modules/entities/lib/esm/generated/encode-html.js.map +1 -0
  891. package/node_modules/entities/lib/esm/index.d.ts +96 -0
  892. package/node_modules/entities/lib/esm/index.d.ts.map +1 -0
  893. package/node_modules/entities/lib/esm/index.js +99 -0
  894. package/node_modules/entities/lib/esm/index.js.map +1 -0
  895. package/node_modules/entities/lib/esm/package.json +1 -0
  896. package/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
  897. package/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
  898. package/node_modules/entities/lib/generated/decode-data-html.js +9 -0
  899. package/node_modules/entities/lib/generated/decode-data-html.js.map +1 -0
  900. package/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
  901. package/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
  902. package/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
  903. package/node_modules/entities/lib/generated/decode-data-xml.js.map +1 -0
  904. package/node_modules/entities/lib/generated/encode-html.d.ts +8 -0
  905. package/node_modules/entities/lib/generated/encode-html.d.ts.map +1 -0
  906. package/node_modules/entities/lib/generated/encode-html.js +12 -0
  907. package/node_modules/entities/lib/generated/encode-html.js.map +1 -0
  908. package/node_modules/entities/lib/index.d.ts +96 -0
  909. package/node_modules/entities/lib/index.d.ts.map +1 -0
  910. package/node_modules/entities/lib/index.js +126 -0
  911. package/node_modules/entities/lib/index.js.map +1 -0
  912. package/node_modules/entities/package.json +90 -0
  913. package/node_modules/entities/readme.md +122 -0
  914. package/node_modules/enumify/.npmignore +2 -0
  915. package/node_modules/enumify/README.md +93 -0
  916. package/node_modules/enumify/lib/enumify.js +209 -0
  917. package/node_modules/enumify/package.json +31 -0
  918. package/node_modules/file-type/browser.d.ts +50 -0
  919. package/node_modules/file-type/browser.js +49 -0
  920. package/node_modules/file-type/core.d.ts +386 -0
  921. package/node_modules/file-type/core.js +1465 -0
  922. package/node_modules/file-type/index.d.ts +27 -0
  923. package/node_modules/file-type/index.js +32 -0
  924. package/node_modules/file-type/license +9 -0
  925. package/node_modules/file-type/package.json +215 -0
  926. package/node_modules/file-type/readme.md +470 -0
  927. package/node_modules/file-type/supported.js +279 -0
  928. package/node_modules/file-type/util.js +40 -0
  929. package/node_modules/htmlparser2/LICENSE +18 -0
  930. package/node_modules/htmlparser2/README.md +171 -0
  931. package/node_modules/htmlparser2/WritableStream.js +3 -0
  932. package/node_modules/htmlparser2/dist/commonjs/Parser.d.ts +198 -0
  933. package/node_modules/htmlparser2/dist/commonjs/Parser.d.ts.map +1 -0
  934. package/node_modules/htmlparser2/dist/commonjs/Parser.js +527 -0
  935. package/node_modules/htmlparser2/dist/commonjs/Parser.js.map +1 -0
  936. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.d.ts +126 -0
  937. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.d.ts.map +1 -0
  938. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.js +805 -0
  939. package/node_modules/htmlparser2/dist/commonjs/Tokenizer.js.map +1 -0
  940. package/node_modules/htmlparser2/dist/commonjs/WritableStream.d.ts +15 -0
  941. package/node_modules/htmlparser2/dist/commonjs/WritableStream.d.ts.map +1 -0
  942. package/node_modules/htmlparser2/dist/commonjs/WritableStream.js +36 -0
  943. package/node_modules/htmlparser2/dist/commonjs/WritableStream.js.map +1 -0
  944. package/node_modules/htmlparser2/dist/commonjs/index.d.ts +54 -0
  945. package/node_modules/htmlparser2/dist/commonjs/index.d.ts.map +1 -0
  946. package/node_modules/htmlparser2/dist/commonjs/index.js +123 -0
  947. package/node_modules/htmlparser2/dist/commonjs/index.js.map +1 -0
  948. package/node_modules/htmlparser2/dist/commonjs/package.json +3 -0
  949. package/node_modules/htmlparser2/dist/esm/Parser.d.ts +198 -0
  950. package/node_modules/htmlparser2/dist/esm/Parser.d.ts.map +1 -0
  951. package/node_modules/htmlparser2/dist/esm/Parser.js +490 -0
  952. package/node_modules/htmlparser2/dist/esm/Parser.js.map +1 -0
  953. package/node_modules/htmlparser2/dist/esm/Tokenizer.d.ts +126 -0
  954. package/node_modules/htmlparser2/dist/esm/Tokenizer.d.ts.map +1 -0
  955. package/node_modules/htmlparser2/dist/esm/Tokenizer.js +801 -0
  956. package/node_modules/htmlparser2/dist/esm/Tokenizer.js.map +1 -0
  957. package/node_modules/htmlparser2/dist/esm/WritableStream.d.ts +15 -0
  958. package/node_modules/htmlparser2/dist/esm/WritableStream.d.ts.map +1 -0
  959. package/node_modules/htmlparser2/dist/esm/WritableStream.js +32 -0
  960. package/node_modules/htmlparser2/dist/esm/WritableStream.js.map +1 -0
  961. package/node_modules/htmlparser2/dist/esm/index.d.ts +54 -0
  962. package/node_modules/htmlparser2/dist/esm/index.d.ts.map +1 -0
  963. package/node_modules/htmlparser2/dist/esm/index.js +74 -0
  964. package/node_modules/htmlparser2/dist/esm/index.js.map +1 -0
  965. package/node_modules/htmlparser2/dist/esm/package.json +3 -0
  966. package/node_modules/htmlparser2/node_modules/entities/LICENSE +11 -0
  967. package/node_modules/htmlparser2/node_modules/entities/decode.d.ts +3 -0
  968. package/node_modules/htmlparser2/node_modules/entities/decode.js +3 -0
  969. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
  970. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
  971. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
  972. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
  973. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.d.ts +205 -0
  974. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
  975. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.js +568 -0
  976. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.js.map +1 -0
  977. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
  978. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
  979. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.js +92 -0
  980. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.js.map +1 -0
  981. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.d.ts +46 -0
  982. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
  983. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.js +138 -0
  984. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.js.map +1 -0
  985. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +2 -0
  986. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
  987. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
  988. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
  989. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
  990. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
  991. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
  992. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
  993. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +3 -0
  994. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
  995. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.js +14 -0
  996. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
  997. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.d.ts +96 -0
  998. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
  999. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.js +131 -0
  1000. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.js.map +1 -0
  1001. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts +17 -0
  1002. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts.map +1 -0
  1003. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
  1004. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js.map +1 -0
  1005. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts +2 -0
  1006. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts.map +1 -0
  1007. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
  1008. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.js.map +1 -0
  1009. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts +32 -0
  1010. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts.map +1 -0
  1011. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.js +94 -0
  1012. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.js.map +1 -0
  1013. package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/package.json +3 -0
  1014. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
  1015. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
  1016. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
  1017. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
  1018. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.d.ts +205 -0
  1019. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
  1020. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.js +554 -0
  1021. package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.js.map +1 -0
  1022. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.d.ts +22 -0
  1023. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
  1024. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.js +88 -0
  1025. package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.js.map +1 -0
  1026. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.d.ts +46 -0
  1027. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
  1028. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.js +134 -0
  1029. package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.js.map +1 -0
  1030. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +2 -0
  1031. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
  1032. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.js +4 -0
  1033. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
  1034. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +2 -0
  1035. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
  1036. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.js +4 -0
  1037. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
  1038. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.d.ts +3 -0
  1039. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
  1040. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.js +11 -0
  1041. package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
  1042. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.d.ts +96 -0
  1043. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.d.ts.map +1 -0
  1044. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.js +107 -0
  1045. package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.js.map +1 -0
  1046. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts +17 -0
  1047. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts.map +1 -0
  1048. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.js +18 -0
  1049. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.js.map +1 -0
  1050. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.d.ts +2 -0
  1051. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.d.ts.map +1 -0
  1052. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.js +28 -0
  1053. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.js.map +1 -0
  1054. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.d.ts +32 -0
  1055. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.d.ts.map +1 -0
  1056. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.js +91 -0
  1057. package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.js.map +1 -0
  1058. package/node_modules/htmlparser2/node_modules/entities/dist/esm/package.json +3 -0
  1059. package/node_modules/htmlparser2/node_modules/entities/escape.d.ts +3 -0
  1060. package/node_modules/htmlparser2/node_modules/entities/escape.js +3 -0
  1061. package/node_modules/htmlparser2/node_modules/entities/package.json +120 -0
  1062. package/node_modules/htmlparser2/node_modules/entities/readme.md +143 -0
  1063. package/node_modules/htmlparser2/node_modules/entities/src/decode-codepoint.ts +81 -0
  1064. package/node_modules/htmlparser2/node_modules/entities/src/decode.ts +685 -0
  1065. package/node_modules/htmlparser2/node_modules/entities/src/encode.ts +93 -0
  1066. package/node_modules/htmlparser2/node_modules/entities/src/escape.ts +161 -0
  1067. package/node_modules/htmlparser2/node_modules/entities/src/generated/.eslintrc.json +10 -0
  1068. package/node_modules/htmlparser2/node_modules/entities/src/generated/decode-data-html.ts +6 -0
  1069. package/node_modules/htmlparser2/node_modules/entities/src/generated/decode-data-xml.ts +6 -0
  1070. package/node_modules/htmlparser2/node_modules/entities/src/generated/encode-html.ts +17 -0
  1071. package/node_modules/htmlparser2/node_modules/entities/src/index.ts +187 -0
  1072. package/node_modules/htmlparser2/node_modules/entities/src/internal/bin-trie-flags.ts +16 -0
  1073. package/node_modules/htmlparser2/node_modules/entities/src/internal/decode-shared.ts +30 -0
  1074. package/node_modules/htmlparser2/node_modules/entities/src/internal/encode-shared.ts +121 -0
  1075. package/node_modules/htmlparser2/package.json +113 -0
  1076. package/node_modules/htmlparser2/src/Parser.ts +663 -0
  1077. package/node_modules/htmlparser2/src/Tokenizer.ts +877 -0
  1078. package/node_modules/htmlparser2/src/WritableStream.ts +43 -0
  1079. package/node_modules/htmlparser2/src/index.ts +115 -0
  1080. package/node_modules/iconv-lite/.github/dependabot.yml +11 -0
  1081. package/node_modules/iconv-lite/.idea/codeStyles/Project.xml +47 -0
  1082. package/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +5 -0
  1083. package/node_modules/iconv-lite/.idea/iconv-lite.iml +12 -0
  1084. package/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +6 -0
  1085. package/node_modules/iconv-lite/.idea/modules.xml +8 -0
  1086. package/node_modules/iconv-lite/.idea/vcs.xml +6 -0
  1087. package/node_modules/iconv-lite/Changelog.md +212 -0
  1088. package/node_modules/iconv-lite/LICENSE +21 -0
  1089. package/node_modules/iconv-lite/README.md +130 -0
  1090. package/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
  1091. package/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
  1092. package/node_modules/iconv-lite/encodings/index.js +23 -0
  1093. package/node_modules/iconv-lite/encodings/internal.js +198 -0
  1094. package/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  1095. package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  1096. package/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
  1097. package/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1098. package/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1099. package/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1100. package/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1101. package/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1102. package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1103. package/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  1104. package/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1105. package/node_modules/iconv-lite/encodings/utf16.js +197 -0
  1106. package/node_modules/iconv-lite/encodings/utf32.js +319 -0
  1107. package/node_modules/iconv-lite/encodings/utf7.js +290 -0
  1108. package/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  1109. package/node_modules/iconv-lite/lib/index.d.ts +41 -0
  1110. package/node_modules/iconv-lite/lib/index.js +180 -0
  1111. package/node_modules/iconv-lite/lib/streams.js +109 -0
  1112. package/node_modules/iconv-lite/package.json +44 -0
  1113. package/node_modules/image-size/LICENSE +9 -0
  1114. package/node_modules/image-size/Readme.md +198 -0
  1115. package/node_modules/image-size/bin/image-size.js +48 -0
  1116. package/node_modules/image-size/dist/detector.cjs +964 -0
  1117. package/node_modules/image-size/dist/detector.d.mts +6 -0
  1118. package/node_modules/image-size/dist/detector.d.ts +6 -0
  1119. package/node_modules/image-size/dist/detector.mjs +962 -0
  1120. package/node_modules/image-size/dist/fromFile.cjs +1056 -0
  1121. package/node_modules/image-size/dist/fromFile.d.mts +9 -0
  1122. package/node_modules/image-size/dist/fromFile.d.ts +9 -0
  1123. package/node_modules/image-size/dist/fromFile.mjs +1032 -0
  1124. package/node_modules/image-size/dist/index.cjs +998 -0
  1125. package/node_modules/image-size/dist/index.d.mts +3 -0
  1126. package/node_modules/image-size/dist/index.d.ts +3 -0
  1127. package/node_modules/image-size/dist/index.mjs +991 -0
  1128. package/node_modules/image-size/dist/lookup.cjs +994 -0
  1129. package/node_modules/image-size/dist/lookup.d.mts +13 -0
  1130. package/node_modules/image-size/dist/lookup.d.ts +13 -0
  1131. package/node_modules/image-size/dist/lookup.mjs +991 -0
  1132. package/node_modules/image-size/dist/types/bmp.cjs +19 -0
  1133. package/node_modules/image-size/dist/types/bmp.d.mts +5 -0
  1134. package/node_modules/image-size/dist/types/bmp.d.ts +5 -0
  1135. package/node_modules/image-size/dist/types/bmp.mjs +17 -0
  1136. package/node_modules/image-size/dist/types/cur.cjs +60 -0
  1137. package/node_modules/image-size/dist/types/cur.d.mts +5 -0
  1138. package/node_modules/image-size/dist/types/cur.d.ts +5 -0
  1139. package/node_modules/image-size/dist/types/cur.mjs +58 -0
  1140. package/node_modules/image-size/dist/types/dds.cjs +17 -0
  1141. package/node_modules/image-size/dist/types/dds.d.mts +5 -0
  1142. package/node_modules/image-size/dist/types/dds.d.ts +5 -0
  1143. package/node_modules/image-size/dist/types/dds.mjs +15 -0
  1144. package/node_modules/image-size/dist/types/gif.cjs +19 -0
  1145. package/node_modules/image-size/dist/types/gif.d.mts +5 -0
  1146. package/node_modules/image-size/dist/types/gif.d.ts +5 -0
  1147. package/node_modules/image-size/dist/types/gif.mjs +17 -0
  1148. package/node_modules/image-size/dist/types/heif.cjs +86 -0
  1149. package/node_modules/image-size/dist/types/heif.d.mts +5 -0
  1150. package/node_modules/image-size/dist/types/heif.d.ts +5 -0
  1151. package/node_modules/image-size/dist/types/heif.mjs +84 -0
  1152. package/node_modules/image-size/dist/types/icns.cjs +90 -0
  1153. package/node_modules/image-size/dist/types/icns.d.mts +5 -0
  1154. package/node_modules/image-size/dist/types/icns.d.ts +5 -0
  1155. package/node_modules/image-size/dist/types/icns.mjs +88 -0
  1156. package/node_modules/image-size/dist/types/ico.cjs +47 -0
  1157. package/node_modules/image-size/dist/types/ico.d.mts +5 -0
  1158. package/node_modules/image-size/dist/types/ico.d.ts +5 -0
  1159. package/node_modules/image-size/dist/types/ico.mjs +45 -0
  1160. package/node_modules/image-size/dist/types/index.cjs +942 -0
  1161. package/node_modules/image-size/dist/types/index.d.mts +7 -0
  1162. package/node_modules/image-size/dist/types/index.d.ts +7 -0
  1163. package/node_modules/image-size/dist/types/index.mjs +939 -0
  1164. package/node_modules/image-size/dist/types/interface.cjs +2 -0
  1165. package/node_modules/image-size/dist/types/interface.d.mts +15 -0
  1166. package/node_modules/image-size/dist/types/interface.d.ts +15 -0
  1167. package/node_modules/image-size/dist/types/interface.mjs +1 -0
  1168. package/node_modules/image-size/dist/types/j2c.cjs +18 -0
  1169. package/node_modules/image-size/dist/types/j2c.d.mts +5 -0
  1170. package/node_modules/image-size/dist/types/j2c.d.ts +5 -0
  1171. package/node_modules/image-size/dist/types/j2c.mjs +16 -0
  1172. package/node_modules/image-size/dist/types/jp2.cjs +50 -0
  1173. package/node_modules/image-size/dist/types/jp2.d.mts +5 -0
  1174. package/node_modules/image-size/dist/types/jp2.d.ts +5 -0
  1175. package/node_modules/image-size/dist/types/jp2.mjs +48 -0
  1176. package/node_modules/image-size/dist/types/jpg.cjs +118 -0
  1177. package/node_modules/image-size/dist/types/jpg.d.mts +5 -0
  1178. package/node_modules/image-size/dist/types/jpg.d.ts +5 -0
  1179. package/node_modules/image-size/dist/types/jpg.mjs +116 -0
  1180. package/node_modules/image-size/dist/types/jxl-stream.cjs +80 -0
  1181. package/node_modules/image-size/dist/types/jxl-stream.d.mts +5 -0
  1182. package/node_modules/image-size/dist/types/jxl-stream.d.ts +5 -0
  1183. package/node_modules/image-size/dist/types/jxl-stream.mjs +78 -0
  1184. package/node_modules/image-size/dist/types/jxl.cjs +155 -0
  1185. package/node_modules/image-size/dist/types/jxl.d.mts +5 -0
  1186. package/node_modules/image-size/dist/types/jxl.d.ts +5 -0
  1187. package/node_modules/image-size/dist/types/jxl.mjs +153 -0
  1188. package/node_modules/image-size/dist/types/ktx.cjs +26 -0
  1189. package/node_modules/image-size/dist/types/ktx.d.mts +5 -0
  1190. package/node_modules/image-size/dist/types/ktx.d.ts +5 -0
  1191. package/node_modules/image-size/dist/types/ktx.mjs +24 -0
  1192. package/node_modules/image-size/dist/types/png.cjs +41 -0
  1193. package/node_modules/image-size/dist/types/png.d.mts +5 -0
  1194. package/node_modules/image-size/dist/types/png.d.ts +5 -0
  1195. package/node_modules/image-size/dist/types/png.mjs +39 -0
  1196. package/node_modules/image-size/dist/types/pnm.cjs +72 -0
  1197. package/node_modules/image-size/dist/types/pnm.d.mts +5 -0
  1198. package/node_modules/image-size/dist/types/pnm.d.ts +5 -0
  1199. package/node_modules/image-size/dist/types/pnm.mjs +70 -0
  1200. package/node_modules/image-size/dist/types/psd.cjs +18 -0
  1201. package/node_modules/image-size/dist/types/psd.d.mts +5 -0
  1202. package/node_modules/image-size/dist/types/psd.d.ts +5 -0
  1203. package/node_modules/image-size/dist/types/psd.mjs +16 -0
  1204. package/node_modules/image-size/dist/types/svg.cjs +97 -0
  1205. package/node_modules/image-size/dist/types/svg.d.mts +5 -0
  1206. package/node_modules/image-size/dist/types/svg.d.ts +5 -0
  1207. package/node_modules/image-size/dist/types/svg.mjs +95 -0
  1208. package/node_modules/image-size/dist/types/tga.cjs +21 -0
  1209. package/node_modules/image-size/dist/types/tga.d.mts +5 -0
  1210. package/node_modules/image-size/dist/types/tga.d.ts +5 -0
  1211. package/node_modules/image-size/dist/types/tga.mjs +19 -0
  1212. package/node_modules/image-size/dist/types/tiff.cjs +142 -0
  1213. package/node_modules/image-size/dist/types/tiff.d.mts +5 -0
  1214. package/node_modules/image-size/dist/types/tiff.d.ts +5 -0
  1215. package/node_modules/image-size/dist/types/tiff.mjs +140 -0
  1216. package/node_modules/image-size/dist/types/utils.cjs +60 -0
  1217. package/node_modules/image-size/dist/types/utils.d.mts +18 -0
  1218. package/node_modules/image-size/dist/types/utils.d.ts +18 -0
  1219. package/node_modules/image-size/dist/types/utils.mjs +47 -0
  1220. package/node_modules/image-size/dist/types/webp.cjs +63 -0
  1221. package/node_modules/image-size/dist/types/webp.d.mts +5 -0
  1222. package/node_modules/image-size/dist/types/webp.d.ts +5 -0
  1223. package/node_modules/image-size/dist/types/webp.mjs +61 -0
  1224. package/node_modules/image-size/dist/utils/bit-reader.cjs +43 -0
  1225. package/node_modules/image-size/dist/utils/bit-reader.d.mts +12 -0
  1226. package/node_modules/image-size/dist/utils/bit-reader.d.ts +12 -0
  1227. package/node_modules/image-size/dist/utils/bit-reader.mjs +41 -0
  1228. package/node_modules/image-size/package.json +104 -0
  1229. package/node_modules/mime-db/HISTORY.md +507 -0
  1230. package/node_modules/mime-db/LICENSE +23 -0
  1231. package/node_modules/mime-db/README.md +100 -0
  1232. package/node_modules/mime-db/db.json +8519 -0
  1233. package/node_modules/mime-db/index.js +12 -0
  1234. package/node_modules/mime-db/package.json +60 -0
  1235. package/node_modules/mime-types/HISTORY.md +397 -0
  1236. package/node_modules/mime-types/LICENSE +23 -0
  1237. package/node_modules/mime-types/README.md +113 -0
  1238. package/node_modules/mime-types/index.js +188 -0
  1239. package/node_modules/mime-types/package.json +44 -0
  1240. package/node_modules/minimist/.eslintrc +29 -0
  1241. package/node_modules/minimist/.github/FUNDING.yml +12 -0
  1242. package/node_modules/minimist/.nycrc +14 -0
  1243. package/node_modules/minimist/CHANGELOG.md +298 -0
  1244. package/node_modules/minimist/LICENSE +18 -0
  1245. package/node_modules/minimist/README.md +121 -0
  1246. package/node_modules/minimist/example/parse.js +4 -0
  1247. package/node_modules/minimist/index.js +263 -0
  1248. package/node_modules/minimist/package.json +75 -0
  1249. package/node_modules/minimist/test/all_bool.js +34 -0
  1250. package/node_modules/minimist/test/bool.js +177 -0
  1251. package/node_modules/minimist/test/dash.js +43 -0
  1252. package/node_modules/minimist/test/default_bool.js +37 -0
  1253. package/node_modules/minimist/test/dotted.js +24 -0
  1254. package/node_modules/minimist/test/kv_short.js +32 -0
  1255. package/node_modules/minimist/test/long.js +33 -0
  1256. package/node_modules/minimist/test/num.js +38 -0
  1257. package/node_modules/minimist/test/parse.js +209 -0
  1258. package/node_modules/minimist/test/parse_modified.js +11 -0
  1259. package/node_modules/minimist/test/proto.js +64 -0
  1260. package/node_modules/minimist/test/short.js +69 -0
  1261. package/node_modules/minimist/test/stop_early.js +17 -0
  1262. package/node_modules/minimist/test/unknown.js +104 -0
  1263. package/node_modules/minimist/test/whitespace.js +10 -0
  1264. package/node_modules/music-metadata/LICENSE.txt +9 -0
  1265. package/node_modules/music-metadata/README.md +878 -0
  1266. package/node_modules/music-metadata/lib/ParseError.d.ts +87 -0
  1267. package/node_modules/music-metadata/lib/ParseError.js +38 -0
  1268. package/node_modules/music-metadata/lib/ParserFactory.d.ts +44 -0
  1269. package/node_modules/music-metadata/lib/ParserFactory.js +141 -0
  1270. package/node_modules/music-metadata/lib/aiff/AiffLoader.d.ts +2 -0
  1271. package/node_modules/music-metadata/lib/aiff/AiffLoader.js +8 -0
  1272. package/node_modules/music-metadata/lib/aiff/AiffParser.d.ts +15 -0
  1273. package/node_modules/music-metadata/lib/aiff/AiffParser.js +104 -0
  1274. package/node_modules/music-metadata/lib/aiff/AiffTagMap.d.ts +4 -0
  1275. package/node_modules/music-metadata/lib/aiff/AiffTagMap.js +15 -0
  1276. package/node_modules/music-metadata/lib/aiff/AiffToken.d.ts +48 -0
  1277. package/node_modules/music-metadata/lib/aiff/AiffToken.js +58 -0
  1278. package/node_modules/music-metadata/lib/apev2/APEv2Parser.d.ts +46 -0
  1279. package/node_modules/music-metadata/lib/apev2/APEv2Parser.js +176 -0
  1280. package/node_modules/music-metadata/lib/apev2/APEv2TagMapper.d.ts +4 -0
  1281. package/node_modules/music-metadata/lib/apev2/APEv2TagMapper.js +83 -0
  1282. package/node_modules/music-metadata/lib/apev2/APEv2Token.d.ts +99 -0
  1283. package/node_modules/music-metadata/lib/apev2/APEv2Token.js +116 -0
  1284. package/node_modules/music-metadata/lib/apev2/Apev2Loader.d.ts +2 -0
  1285. package/node_modules/music-metadata/lib/apev2/Apev2Loader.js +8 -0
  1286. package/node_modules/music-metadata/lib/asf/AsfGuid.d.ts +83 -0
  1287. package/node_modules/music-metadata/lib/asf/AsfGuid.js +109 -0
  1288. package/node_modules/music-metadata/lib/asf/AsfLoader.d.ts +2 -0
  1289. package/node_modules/music-metadata/lib/asf/AsfLoader.js +8 -0
  1290. package/node_modules/music-metadata/lib/asf/AsfObject.d.ts +325 -0
  1291. package/node_modules/music-metadata/lib/asf/AsfObject.js +347 -0
  1292. package/node_modules/music-metadata/lib/asf/AsfParser.d.ts +17 -0
  1293. package/node_modules/music-metadata/lib/asf/AsfParser.js +134 -0
  1294. package/node_modules/music-metadata/lib/asf/AsfTagMapper.d.ts +7 -0
  1295. package/node_modules/music-metadata/lib/asf/AsfTagMapper.js +92 -0
  1296. package/node_modules/music-metadata/lib/asf/AsfUtil.d.ts +4 -0
  1297. package/node_modules/music-metadata/lib/asf/AsfUtil.js +32 -0
  1298. package/node_modules/music-metadata/lib/common/BasicParser.d.ts +17 -0
  1299. package/node_modules/music-metadata/lib/common/BasicParser.js +13 -0
  1300. package/node_modules/music-metadata/lib/common/CaseInsensitiveTagMap.d.ts +10 -0
  1301. package/node_modules/music-metadata/lib/common/CaseInsensitiveTagMap.js +17 -0
  1302. package/node_modules/music-metadata/lib/common/CombinedTagMapper.d.ts +19 -0
  1303. package/node_modules/music-metadata/lib/common/CombinedTagMapper.js +50 -0
  1304. package/node_modules/music-metadata/lib/common/FourCC.d.ts +6 -0
  1305. package/node_modules/music-metadata/lib/common/FourCC.js +25 -0
  1306. package/node_modules/music-metadata/lib/common/GenericTagMapper.d.ts +51 -0
  1307. package/node_modules/music-metadata/lib/common/GenericTagMapper.js +51 -0
  1308. package/node_modules/music-metadata/lib/common/GenericTagTypes.d.ts +34 -0
  1309. package/node_modules/music-metadata/lib/common/GenericTagTypes.js +133 -0
  1310. package/node_modules/music-metadata/lib/common/MetadataCollector.d.ts +86 -0
  1311. package/node_modules/music-metadata/lib/common/MetadataCollector.js +307 -0
  1312. package/node_modules/music-metadata/lib/common/Util.d.ts +56 -0
  1313. package/node_modules/music-metadata/lib/common/Util.js +152 -0
  1314. package/node_modules/music-metadata/lib/core.d.ts +75 -0
  1315. package/node_modules/music-metadata/lib/core.js +126 -0
  1316. package/node_modules/music-metadata/lib/dsdiff/DsdiffLoader.d.ts +2 -0
  1317. package/node_modules/music-metadata/lib/dsdiff/DsdiffLoader.js +8 -0
  1318. package/node_modules/music-metadata/lib/dsdiff/DsdiffParser.d.ts +29 -0
  1319. package/node_modules/music-metadata/lib/dsdiff/DsdiffParser.js +154 -0
  1320. package/node_modules/music-metadata/lib/dsdiff/DsdiffToken.d.ts +9 -0
  1321. package/node_modules/music-metadata/lib/dsdiff/DsdiffToken.js +18 -0
  1322. package/node_modules/music-metadata/lib/dsf/DsfChunk.d.ts +87 -0
  1323. package/node_modules/music-metadata/lib/dsf/DsfChunk.js +50 -0
  1324. package/node_modules/music-metadata/lib/dsf/DsfLoader.d.ts +2 -0
  1325. package/node_modules/music-metadata/lib/dsf/DsfLoader.js +8 -0
  1326. package/node_modules/music-metadata/lib/dsf/DsfParser.d.ts +24 -0
  1327. package/node_modules/music-metadata/lib/dsf/DsfParser.js +57 -0
  1328. package/node_modules/music-metadata/lib/ebml/EbmlIterator.d.ts +67 -0
  1329. package/node_modules/music-metadata/lib/ebml/EbmlIterator.js +218 -0
  1330. package/node_modules/music-metadata/lib/ebml/types.d.ts +37 -0
  1331. package/node_modules/music-metadata/lib/ebml/types.js +8 -0
  1332. package/node_modules/music-metadata/lib/flac/FlacLoader.d.ts +2 -0
  1333. package/node_modules/music-metadata/lib/flac/FlacLoader.js +8 -0
  1334. package/node_modules/music-metadata/lib/flac/FlacParser.d.ts +29 -0
  1335. package/node_modules/music-metadata/lib/flac/FlacParser.js +125 -0
  1336. package/node_modules/music-metadata/lib/flac/FlacToken.d.ts +45 -0
  1337. package/node_modules/music-metadata/lib/flac/FlacToken.js +63 -0
  1338. package/node_modules/music-metadata/lib/id3v1/ID3v1Parser.d.ts +17 -0
  1339. package/node_modules/music-metadata/lib/id3v1/ID3v1Parser.js +137 -0
  1340. package/node_modules/music-metadata/lib/id3v1/ID3v1TagMap.d.ts +4 -0
  1341. package/node_modules/music-metadata/lib/id3v1/ID3v1TagMap.js +18 -0
  1342. package/node_modules/music-metadata/lib/id3v2/AbstractID3Parser.d.ts +17 -0
  1343. package/node_modules/music-metadata/lib/id3v2/AbstractID3Parser.js +56 -0
  1344. package/node_modules/music-metadata/lib/id3v2/FrameHeader.d.ts +31 -0
  1345. package/node_modules/music-metadata/lib/id3v2/FrameHeader.js +73 -0
  1346. package/node_modules/music-metadata/lib/id3v2/FrameParser.d.ts +92 -0
  1347. package/node_modules/music-metadata/lib/id3v2/FrameParser.js +470 -0
  1348. package/node_modules/music-metadata/lib/id3v2/ID3v22TagMapper.d.ts +9 -0
  1349. package/node_modules/music-metadata/lib/id3v2/ID3v22TagMapper.js +46 -0
  1350. package/node_modules/music-metadata/lib/id3v2/ID3v24TagMapper.d.ts +14 -0
  1351. package/node_modules/music-metadata/lib/id3v2/ID3v24TagMapper.js +195 -0
  1352. package/node_modules/music-metadata/lib/id3v2/ID3v2ChapterToken.d.ts +11 -0
  1353. package/node_modules/music-metadata/lib/id3v2/ID3v2ChapterToken.js +17 -0
  1354. package/node_modules/music-metadata/lib/id3v2/ID3v2Parser.d.ts +33 -0
  1355. package/node_modules/music-metadata/lib/id3v2/ID3v2Parser.js +169 -0
  1356. package/node_modules/music-metadata/lib/id3v2/ID3v2Token.d.ts +111 -0
  1357. package/node_modules/music-metadata/lib/id3v2/ID3v2Token.js +146 -0
  1358. package/node_modules/music-metadata/lib/iff/index.d.ts +33 -0
  1359. package/node_modules/music-metadata/lib/iff/index.js +16 -0
  1360. package/node_modules/music-metadata/lib/index.d.ts +22 -0
  1361. package/node_modules/music-metadata/lib/index.js +53 -0
  1362. package/node_modules/music-metadata/lib/lrc/LyricsParser.d.ts +9 -0
  1363. package/node_modules/music-metadata/lib/lrc/LyricsParser.js +45 -0
  1364. package/node_modules/music-metadata/lib/lyrics3/Lyrics3.d.ts +3 -0
  1365. package/node_modules/music-metadata/lib/lyrics3/Lyrics3.js +17 -0
  1366. package/node_modules/music-metadata/lib/matroska/MatroskaDtd.d.ts +8 -0
  1367. package/node_modules/music-metadata/lib/matroska/MatroskaDtd.js +283 -0
  1368. package/node_modules/music-metadata/lib/matroska/MatroskaLoader.d.ts +2 -0
  1369. package/node_modules/music-metadata/lib/matroska/MatroskaLoader.js +8 -0
  1370. package/node_modules/music-metadata/lib/matroska/MatroskaParser.d.ts +19 -0
  1371. package/node_modules/music-metadata/lib/matroska/MatroskaParser.js +143 -0
  1372. package/node_modules/music-metadata/lib/matroska/MatroskaTagMapper.d.ts +4 -0
  1373. package/node_modules/music-metadata/lib/matroska/MatroskaTagMapper.js +32 -0
  1374. package/node_modules/music-metadata/lib/matroska/types.d.ts +142 -0
  1375. package/node_modules/music-metadata/lib/matroska/types.js +27 -0
  1376. package/node_modules/music-metadata/lib/mp4/Atom.d.ts +16 -0
  1377. package/node_modules/music-metadata/lib/mp4/Atom.js +65 -0
  1378. package/node_modules/music-metadata/lib/mp4/AtomToken.d.ts +487 -0
  1379. package/node_modules/music-metadata/lib/mp4/AtomToken.js +524 -0
  1380. package/node_modules/music-metadata/lib/mp4/MP4Parser.d.ts +32 -0
  1381. package/node_modules/music-metadata/lib/mp4/MP4Parser.js +647 -0
  1382. package/node_modules/music-metadata/lib/mp4/MP4TagMapper.d.ts +8 -0
  1383. package/node_modules/music-metadata/lib/mp4/MP4TagMapper.js +123 -0
  1384. package/node_modules/music-metadata/lib/mp4/Mp4Loader.d.ts +2 -0
  1385. package/node_modules/music-metadata/lib/mp4/Mp4Loader.js +8 -0
  1386. package/node_modules/music-metadata/lib/mpeg/ExtendedLameHeader.d.ts +27 -0
  1387. package/node_modules/music-metadata/lib/mpeg/ExtendedLameHeader.js +28 -0
  1388. package/node_modules/music-metadata/lib/mpeg/MpegLoader.d.ts +2 -0
  1389. package/node_modules/music-metadata/lib/mpeg/MpegLoader.js +8 -0
  1390. package/node_modules/music-metadata/lib/mpeg/MpegParser.d.ts +62 -0
  1391. package/node_modules/music-metadata/lib/mpeg/MpegParser.js +569 -0
  1392. package/node_modules/music-metadata/lib/mpeg/ReplayGainDataFormat.d.ts +57 -0
  1393. package/node_modules/music-metadata/lib/mpeg/ReplayGainDataFormat.js +64 -0
  1394. package/node_modules/music-metadata/lib/mpeg/XingTag.d.ts +44 -0
  1395. package/node_modules/music-metadata/lib/mpeg/XingTag.js +65 -0
  1396. package/node_modules/music-metadata/lib/musepack/MusepackConentError.d.ts +15 -0
  1397. package/node_modules/music-metadata/lib/musepack/MusepackConentError.js +3 -0
  1398. package/node_modules/music-metadata/lib/musepack/MusepackLoader.d.ts +2 -0
  1399. package/node_modules/music-metadata/lib/musepack/MusepackLoader.js +8 -0
  1400. package/node_modules/music-metadata/lib/musepack/MusepackParser.d.ts +4 -0
  1401. package/node_modules/music-metadata/lib/musepack/MusepackParser.js +30 -0
  1402. package/node_modules/music-metadata/lib/musepack/sv7/BitReader.d.ts +13 -0
  1403. package/node_modules/music-metadata/lib/musepack/sv7/BitReader.js +46 -0
  1404. package/node_modules/music-metadata/lib/musepack/sv7/MpcSv7Parser.d.ts +8 -0
  1405. package/node_modules/music-metadata/lib/musepack/sv7/MpcSv7Parser.js +47 -0
  1406. package/node_modules/music-metadata/lib/musepack/sv7/StreamVersion7.d.ts +28 -0
  1407. package/node_modules/music-metadata/lib/musepack/sv7/StreamVersion7.js +39 -0
  1408. package/node_modules/music-metadata/lib/musepack/sv8/MpcSv8Parser.d.ts +6 -0
  1409. package/node_modules/music-metadata/lib/musepack/sv8/MpcSv8Parser.js +56 -0
  1410. package/node_modules/music-metadata/lib/musepack/sv8/StreamVersion8.d.ts +42 -0
  1411. package/node_modules/music-metadata/lib/musepack/sv8/StreamVersion8.js +82 -0
  1412. package/node_modules/music-metadata/lib/ogg/OggLoader.d.ts +2 -0
  1413. package/node_modules/music-metadata/lib/ogg/OggLoader.js +8 -0
  1414. package/node_modules/music-metadata/lib/ogg/OggParser.d.ts +27 -0
  1415. package/node_modules/music-metadata/lib/ogg/OggParser.js +125 -0
  1416. package/node_modules/music-metadata/lib/ogg/OggToken.d.ts +83 -0
  1417. package/node_modules/music-metadata/lib/ogg/OggToken.js +41 -0
  1418. package/node_modules/music-metadata/lib/ogg/flac/FlacStream.d.ts +29 -0
  1419. package/node_modules/music-metadata/lib/ogg/flac/FlacStream.js +74 -0
  1420. package/node_modules/music-metadata/lib/ogg/opus/Opus.d.ts +63 -0
  1421. package/node_modules/music-metadata/lib/ogg/opus/Opus.js +27 -0
  1422. package/node_modules/music-metadata/lib/ogg/opus/OpusStream.d.ts +24 -0
  1423. package/node_modules/music-metadata/lib/ogg/opus/OpusStream.js +56 -0
  1424. package/node_modules/music-metadata/lib/ogg/speex/Speex.d.ts +36 -0
  1425. package/node_modules/music-metadata/lib/ogg/speex/Speex.js +28 -0
  1426. package/node_modules/music-metadata/lib/ogg/speex/SpeexStream.d.ts +20 -0
  1427. package/node_modules/music-metadata/lib/ogg/speex/SpeexStream.js +31 -0
  1428. package/node_modules/music-metadata/lib/ogg/theora/Theora.d.ts +20 -0
  1429. package/node_modules/music-metadata/lib/ogg/theora/Theora.js +20 -0
  1430. package/node_modules/music-metadata/lib/ogg/theora/TheoraStream.d.ts +25 -0
  1431. package/node_modules/music-metadata/lib/ogg/theora/TheoraStream.js +39 -0
  1432. package/node_modules/music-metadata/lib/ogg/vorbis/Vorbis.d.ts +68 -0
  1433. package/node_modules/music-metadata/lib/ogg/vorbis/Vorbis.js +83 -0
  1434. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisDecoder.d.ts +12 -0
  1435. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisDecoder.js +29 -0
  1436. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisStream.d.ts +53 -0
  1437. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisStream.js +136 -0
  1438. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisTagMapper.d.ts +7 -0
  1439. package/node_modules/music-metadata/lib/ogg/vorbis/VorbisTagMapper.js +133 -0
  1440. package/node_modules/music-metadata/lib/riff/RiffChunk.d.ts +16 -0
  1441. package/node_modules/music-metadata/lib/riff/RiffChunk.js +28 -0
  1442. package/node_modules/music-metadata/lib/riff/RiffInfoTagMap.d.ts +10 -0
  1443. package/node_modules/music-metadata/lib/riff/RiffInfoTagMap.js +34 -0
  1444. package/node_modules/music-metadata/lib/type.d.ts +661 -0
  1445. package/node_modules/music-metadata/lib/type.js +2 -0
  1446. package/node_modules/music-metadata/lib/wav/BwfChunk.d.ts +17 -0
  1447. package/node_modules/music-metadata/lib/wav/BwfChunk.js +26 -0
  1448. package/node_modules/music-metadata/lib/wav/WaveChunk.d.ts +94 -0
  1449. package/node_modules/music-metadata/lib/wav/WaveChunk.js +78 -0
  1450. package/node_modules/music-metadata/lib/wav/WaveLoader.d.ts +2 -0
  1451. package/node_modules/music-metadata/lib/wav/WaveLoader.js +8 -0
  1452. package/node_modules/music-metadata/lib/wav/WaveParser.d.ts +24 -0
  1453. package/node_modules/music-metadata/lib/wav/WaveParser.js +170 -0
  1454. package/node_modules/music-metadata/lib/wavpack/WavPackLoader.d.ts +2 -0
  1455. package/node_modules/music-metadata/lib/wavpack/WavPackLoader.js +8 -0
  1456. package/node_modules/music-metadata/lib/wavpack/WavPackParser.d.ts +30 -0
  1457. package/node_modules/music-metadata/lib/wavpack/WavPackParser.js +109 -0
  1458. package/node_modules/music-metadata/lib/wavpack/WavPackToken.d.ts +60 -0
  1459. package/node_modules/music-metadata/lib/wavpack/WavPackToken.js +70 -0
  1460. package/node_modules/music-metadata/node_modules/file-type/core.d.ts +253 -0
  1461. package/node_modules/music-metadata/node_modules/file-type/core.js +2899 -0
  1462. package/node_modules/music-metadata/node_modules/file-type/index.d.ts +98 -0
  1463. package/node_modules/music-metadata/node_modules/file-type/index.js +163 -0
  1464. package/node_modules/music-metadata/node_modules/file-type/license +9 -0
  1465. package/node_modules/music-metadata/node_modules/file-type/package.json +290 -0
  1466. package/node_modules/music-metadata/node_modules/file-type/readme.md +667 -0
  1467. package/node_modules/music-metadata/node_modules/file-type/supported.js +360 -0
  1468. package/node_modules/music-metadata/node_modules/file-type/util.js +60 -0
  1469. package/node_modules/music-metadata/node_modules/strtok3/LICENSE.txt +21 -0
  1470. package/node_modules/music-metadata/node_modules/strtok3/README.md +399 -0
  1471. package/node_modules/music-metadata/node_modules/strtok3/lib/AbstractTokenizer.d.ts +76 -0
  1472. package/node_modules/music-metadata/node_modules/strtok3/lib/AbstractTokenizer.js +111 -0
  1473. package/node_modules/music-metadata/node_modules/strtok3/lib/BlobTokenizer.d.ts +29 -0
  1474. package/node_modules/music-metadata/node_modules/strtok3/lib/BlobTokenizer.js +53 -0
  1475. package/node_modules/music-metadata/node_modules/strtok3/lib/BufferTokenizer.d.ts +29 -0
  1476. package/node_modules/music-metadata/node_modules/strtok3/lib/BufferTokenizer.js +52 -0
  1477. package/node_modules/music-metadata/node_modules/strtok3/lib/FileTokenizer.d.ts +37 -0
  1478. package/node_modules/music-metadata/node_modules/strtok3/lib/FileTokenizer.js +61 -0
  1479. package/node_modules/music-metadata/node_modules/strtok3/lib/ReadStreamTokenizer.d.ts +34 -0
  1480. package/node_modules/music-metadata/node_modules/strtok3/lib/ReadStreamTokenizer.js +107 -0
  1481. package/node_modules/music-metadata/node_modules/strtok3/lib/core.d.ts +40 -0
  1482. package/node_modules/music-metadata/node_modules/strtok3/lib/core.js +62 -0
  1483. package/node_modules/music-metadata/node_modules/strtok3/lib/index.d.ts +16 -0
  1484. package/node_modules/music-metadata/node_modules/strtok3/lib/index.js +22 -0
  1485. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/AbstractStreamReader.d.ts +54 -0
  1486. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/AbstractStreamReader.js +71 -0
  1487. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/Deferred.d.ts +6 -0
  1488. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/Deferred.js +10 -0
  1489. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/Errors.d.ts +10 -0
  1490. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/Errors.js +16 -0
  1491. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/StreamReader.d.ts +29 -0
  1492. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/StreamReader.js +83 -0
  1493. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamByobReader.d.ts +14 -0
  1494. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamByobReader.js +27 -0
  1495. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamDefaultReader.d.ts +19 -0
  1496. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamDefaultReader.js +62 -0
  1497. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamReader.d.ts +14 -0
  1498. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamReader.js +13 -0
  1499. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamReaderFactory.d.ts +5 -0
  1500. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/WebStreamReaderFactory.js +19 -0
  1501. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/index.d.ts +6 -0
  1502. package/node_modules/music-metadata/node_modules/strtok3/lib/stream/index.js +5 -0
  1503. package/node_modules/music-metadata/node_modules/strtok3/lib/types.d.ts +139 -0
  1504. package/node_modules/music-metadata/node_modules/strtok3/lib/types.js +1 -0
  1505. package/node_modules/music-metadata/node_modules/strtok3/package.json +94 -0
  1506. package/node_modules/music-metadata/node_modules/token-types/LICENSE.txt +9 -0
  1507. package/node_modules/music-metadata/node_modules/token-types/README.md +120 -0
  1508. package/node_modules/music-metadata/node_modules/token-types/lib/index.d.ts +135 -0
  1509. package/node_modules/music-metadata/node_modules/token-types/lib/index.js +401 -0
  1510. package/node_modules/music-metadata/node_modules/token-types/package.json +81 -0
  1511. package/node_modules/music-metadata/package.json +156 -0
  1512. package/node_modules/nth-check/LICENSE +11 -0
  1513. package/node_modules/nth-check/README.md +136 -0
  1514. package/node_modules/nth-check/lib/compile.d.ts +55 -0
  1515. package/node_modules/nth-check/lib/compile.d.ts.map +1 -0
  1516. package/node_modules/nth-check/lib/compile.js +121 -0
  1517. package/node_modules/nth-check/lib/compile.js.map +1 -0
  1518. package/node_modules/nth-check/lib/esm/compile.d.ts +55 -0
  1519. package/node_modules/nth-check/lib/esm/compile.d.ts.map +1 -0
  1520. package/node_modules/nth-check/lib/esm/compile.js +113 -0
  1521. package/node_modules/nth-check/lib/esm/compile.js.map +1 -0
  1522. package/node_modules/nth-check/lib/esm/index.d.ts +59 -0
  1523. package/node_modules/nth-check/lib/esm/index.d.ts.map +1 -0
  1524. package/node_modules/nth-check/lib/esm/index.js +63 -0
  1525. package/node_modules/nth-check/lib/esm/index.js.map +1 -0
  1526. package/node_modules/nth-check/lib/esm/package.json +1 -0
  1527. package/node_modules/nth-check/lib/esm/parse.d.ts +9 -0
  1528. package/node_modules/nth-check/lib/esm/parse.d.ts.map +1 -0
  1529. package/node_modules/nth-check/lib/esm/parse.js +73 -0
  1530. package/node_modules/nth-check/lib/esm/parse.js.map +1 -0
  1531. package/node_modules/nth-check/lib/index.d.ts +59 -0
  1532. package/node_modules/nth-check/lib/index.d.ts.map +1 -0
  1533. package/node_modules/nth-check/lib/index.js +70 -0
  1534. package/node_modules/nth-check/lib/index.js.map +1 -0
  1535. package/node_modules/nth-check/lib/parse.d.ts +9 -0
  1536. package/node_modules/nth-check/lib/parse.d.ts.map +1 -0
  1537. package/node_modules/nth-check/lib/parse.js +77 -0
  1538. package/node_modules/nth-check/lib/parse.js.map +1 -0
  1539. package/node_modules/nth-check/package.json +78 -0
  1540. package/node_modules/papaparse/.eslintrc.js +280 -0
  1541. package/node_modules/papaparse/.github/workflows/node.js.yml +29 -0
  1542. package/node_modules/papaparse/Gruntfile.js +27 -0
  1543. package/node_modules/papaparse/LICENSE +20 -0
  1544. package/node_modules/papaparse/README.md +77 -0
  1545. package/node_modules/papaparse/bower.json +40 -0
  1546. package/node_modules/papaparse/package.json +58 -0
  1547. package/node_modules/papaparse/papaparse.js +1945 -0
  1548. package/node_modules/papaparse/papaparse.min.js +7 -0
  1549. package/node_modules/papaparse/player/player.css +1045 -0
  1550. package/node_modules/papaparse/player/player.html +79 -0
  1551. package/node_modules/papaparse/player/player.js +181 -0
  1552. package/node_modules/papaparse/tests/.eslintrc.js +12 -0
  1553. package/node_modules/papaparse/tests/long-sample.csv +8 -0
  1554. package/node_modules/papaparse/tests/node-tests.js +302 -0
  1555. package/node_modules/papaparse/tests/sample-header.csv +3 -0
  1556. package/node_modules/papaparse/tests/sample.csv +2 -0
  1557. package/node_modules/papaparse/tests/test-cases.js +2840 -0
  1558. package/node_modules/papaparse/tests/test.js +20 -0
  1559. package/node_modules/papaparse/tests/tests.html +22 -0
  1560. package/node_modules/papaparse/tests/utf-8-bom-sample.csv +2 -0
  1561. package/node_modules/papaparse/tests/verylong-sample.csv +2001 -0
  1562. package/node_modules/parse5/LICENSE +19 -0
  1563. package/node_modules/parse5/README.md +38 -0
  1564. package/node_modules/parse5/dist/cjs/common/doctype.d.ts +4 -0
  1565. package/node_modules/parse5/dist/cjs/common/doctype.js +118 -0
  1566. package/node_modules/parse5/dist/cjs/common/error-codes.d.ts +67 -0
  1567. package/node_modules/parse5/dist/cjs/common/error-codes.js +66 -0
  1568. package/node_modules/parse5/dist/cjs/common/foreign-content.d.ts +9 -0
  1569. package/node_modules/parse5/dist/cjs/common/foreign-content.js +237 -0
  1570. package/node_modules/parse5/dist/cjs/common/html.d.ts +289 -0
  1571. package/node_modules/parse5/dist/cjs/common/html.js +528 -0
  1572. package/node_modules/parse5/dist/cjs/common/token.d.ts +84 -0
  1573. package/node_modules/parse5/dist/cjs/common/token.js +24 -0
  1574. package/node_modules/parse5/dist/cjs/common/unicode.d.ts +42 -0
  1575. package/node_modules/parse5/dist/cjs/common/unicode.js +70 -0
  1576. package/node_modules/parse5/dist/cjs/index.d.ts +71 -0
  1577. package/node_modules/parse5/dist/cjs/index.js +54 -0
  1578. package/node_modules/parse5/dist/cjs/package.json +1 -0
  1579. package/node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts +36 -0
  1580. package/node_modules/parse5/dist/cjs/parser/formatting-element-list.js +114 -0
  1581. package/node_modules/parse5/dist/cjs/parser/index.d.ts +221 -0
  1582. package/node_modules/parse5/dist/cjs/parser/index.js +3240 -0
  1583. package/node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts +53 -0
  1584. package/node_modules/parse5/dist/cjs/parser/open-element-stack.js +328 -0
  1585. package/node_modules/parse5/dist/cjs/serializer/index.d.ts +60 -0
  1586. package/node_modules/parse5/dist/cjs/serializer/index.js +172 -0
  1587. package/node_modules/parse5/dist/cjs/tokenizer/index.d.ts +247 -0
  1588. package/node_modules/parse5/dist/cjs/tokenizer/index.js +2714 -0
  1589. package/node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts +36 -0
  1590. package/node_modules/parse5/dist/cjs/tokenizer/preprocessor.js +200 -0
  1591. package/node_modules/parse5/dist/cjs/tree-adapters/default.d.ts +84 -0
  1592. package/node_modules/parse5/dist/cjs/tree-adapters/default.js +176 -0
  1593. package/node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts +255 -0
  1594. package/node_modules/parse5/dist/cjs/tree-adapters/interface.js +2 -0
  1595. package/node_modules/parse5/dist/common/doctype.d.ts +4 -0
  1596. package/node_modules/parse5/dist/common/doctype.js +114 -0
  1597. package/node_modules/parse5/dist/common/error-codes.d.ts +67 -0
  1598. package/node_modules/parse5/dist/common/error-codes.js +63 -0
  1599. package/node_modules/parse5/dist/common/foreign-content.d.ts +9 -0
  1600. package/node_modules/parse5/dist/common/foreign-content.js +228 -0
  1601. package/node_modules/parse5/dist/common/html.d.ts +289 -0
  1602. package/node_modules/parse5/dist/common/html.js +523 -0
  1603. package/node_modules/parse5/dist/common/token.d.ts +84 -0
  1604. package/node_modules/parse5/dist/common/token.js +20 -0
  1605. package/node_modules/parse5/dist/common/unicode.d.ts +42 -0
  1606. package/node_modules/parse5/dist/common/unicode.js +62 -0
  1607. package/node_modules/parse5/dist/index.d.ts +71 -0
  1608. package/node_modules/parse5/dist/index.js +42 -0
  1609. package/node_modules/parse5/dist/parser/formatting-element-list.d.ts +36 -0
  1610. package/node_modules/parse5/dist/parser/formatting-element-list.js +110 -0
  1611. package/node_modules/parse5/dist/parser/index.d.ts +221 -0
  1612. package/node_modules/parse5/dist/parser/index.js +3245 -0
  1613. package/node_modules/parse5/dist/parser/open-element-stack.d.ts +53 -0
  1614. package/node_modules/parse5/dist/parser/open-element-stack.js +324 -0
  1615. package/node_modules/parse5/dist/serializer/index.d.ts +60 -0
  1616. package/node_modules/parse5/dist/serializer/index.js +168 -0
  1617. package/node_modules/parse5/dist/tokenizer/index.d.ts +247 -0
  1618. package/node_modules/parse5/dist/tokenizer/index.js +2710 -0
  1619. package/node_modules/parse5/dist/tokenizer/preprocessor.d.ts +36 -0
  1620. package/node_modules/parse5/dist/tokenizer/preprocessor.js +196 -0
  1621. package/node_modules/parse5/dist/tree-adapters/default.d.ts +84 -0
  1622. package/node_modules/parse5/dist/tree-adapters/default.js +173 -0
  1623. package/node_modules/parse5/dist/tree-adapters/interface.d.ts +255 -0
  1624. package/node_modules/parse5/dist/tree-adapters/interface.js +1 -0
  1625. package/node_modules/parse5/node_modules/entities/LICENSE +11 -0
  1626. package/node_modules/parse5/node_modules/entities/decode.d.ts +1 -0
  1627. package/node_modules/parse5/node_modules/entities/decode.js +3 -0
  1628. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
  1629. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
  1630. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
  1631. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
  1632. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode.d.ts +209 -0
  1633. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
  1634. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode.js +511 -0
  1635. package/node_modules/parse5/node_modules/entities/dist/commonjs/decode.js.map +1 -0
  1636. package/node_modules/parse5/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
  1637. package/node_modules/parse5/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
  1638. package/node_modules/parse5/node_modules/entities/dist/commonjs/encode.js +73 -0
  1639. package/node_modules/parse5/node_modules/entities/dist/commonjs/encode.js.map +1 -0
  1640. package/node_modules/parse5/node_modules/entities/dist/commonjs/escape.d.ts +43 -0
  1641. package/node_modules/parse5/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
  1642. package/node_modules/parse5/node_modules/entities/dist/commonjs/escape.js +121 -0
  1643. package/node_modules/parse5/node_modules/entities/dist/commonjs/escape.js.map +1 -0
  1644. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +2 -0
  1645. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
  1646. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-html.js +10 -0
  1647. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
  1648. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
  1649. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
  1650. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +10 -0
  1651. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
  1652. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +8 -0
  1653. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
  1654. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/encode-html.js +13 -0
  1655. package/node_modules/parse5/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
  1656. package/node_modules/parse5/node_modules/entities/dist/commonjs/index.d.ts +96 -0
  1657. package/node_modules/parse5/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
  1658. package/node_modules/parse5/node_modules/entities/dist/commonjs/index.js +131 -0
  1659. package/node_modules/parse5/node_modules/entities/dist/commonjs/index.js.map +1 -0
  1660. package/node_modules/parse5/node_modules/entities/dist/commonjs/package.json +3 -0
  1661. package/node_modules/parse5/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
  1662. package/node_modules/parse5/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
  1663. package/node_modules/parse5/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
  1664. package/node_modules/parse5/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
  1665. package/node_modules/parse5/node_modules/entities/dist/esm/decode.d.ts +209 -0
  1666. package/node_modules/parse5/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
  1667. package/node_modules/parse5/node_modules/entities/dist/esm/decode.js +497 -0
  1668. package/node_modules/parse5/node_modules/entities/dist/esm/decode.js.map +1 -0
  1669. package/node_modules/parse5/node_modules/entities/dist/esm/encode.d.ts +22 -0
  1670. package/node_modules/parse5/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
  1671. package/node_modules/parse5/node_modules/entities/dist/esm/encode.js +69 -0
  1672. package/node_modules/parse5/node_modules/entities/dist/esm/encode.js.map +1 -0
  1673. package/node_modules/parse5/node_modules/entities/dist/esm/escape.d.ts +43 -0
  1674. package/node_modules/parse5/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
  1675. package/node_modules/parse5/node_modules/entities/dist/esm/escape.js +117 -0
  1676. package/node_modules/parse5/node_modules/entities/dist/esm/escape.js.map +1 -0
  1677. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +2 -0
  1678. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
  1679. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-html.js +7 -0
  1680. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
  1681. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +2 -0
  1682. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
  1683. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-xml.js +7 -0
  1684. package/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
  1685. package/node_modules/parse5/node_modules/entities/dist/esm/generated/encode-html.d.ts +8 -0
  1686. package/node_modules/parse5/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
  1687. package/node_modules/parse5/node_modules/entities/dist/esm/generated/encode-html.js +10 -0
  1688. package/node_modules/parse5/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
  1689. package/node_modules/parse5/node_modules/entities/dist/esm/index.d.ts +96 -0
  1690. package/node_modules/parse5/node_modules/entities/dist/esm/index.d.ts.map +1 -0
  1691. package/node_modules/parse5/node_modules/entities/dist/esm/index.js +107 -0
  1692. package/node_modules/parse5/node_modules/entities/dist/esm/index.js.map +1 -0
  1693. package/node_modules/parse5/node_modules/entities/dist/esm/package.json +3 -0
  1694. package/node_modules/parse5/node_modules/entities/escape.d.ts +1 -0
  1695. package/node_modules/parse5/node_modules/entities/escape.js +3 -0
  1696. package/node_modules/parse5/node_modules/entities/package.json +118 -0
  1697. package/node_modules/parse5/node_modules/entities/readme.md +122 -0
  1698. package/node_modules/parse5/node_modules/entities/src/decode-codepoint.ts +81 -0
  1699. package/node_modules/parse5/node_modules/entities/src/decode.spec.ts +320 -0
  1700. package/node_modules/parse5/node_modules/entities/src/decode.ts +620 -0
  1701. package/node_modules/parse5/node_modules/entities/src/encode.spec.ts +78 -0
  1702. package/node_modules/parse5/node_modules/entities/src/encode.ts +77 -0
  1703. package/node_modules/parse5/node_modules/entities/src/escape.spec.ts +14 -0
  1704. package/node_modules/parse5/node_modules/entities/src/escape.ts +148 -0
  1705. package/node_modules/parse5/node_modules/entities/src/generated/.eslintrc.json +10 -0
  1706. package/node_modules/parse5/node_modules/entities/src/generated/decode-data-html.ts +8 -0
  1707. package/node_modules/parse5/node_modules/entities/src/generated/decode-data-xml.ts +8 -0
  1708. package/node_modules/parse5/node_modules/entities/src/generated/encode-html.ts +17 -0
  1709. package/node_modules/parse5/node_modules/entities/src/index.spec.ts +125 -0
  1710. package/node_modules/parse5/node_modules/entities/src/index.ts +188 -0
  1711. package/node_modules/parse5/package.json +50 -0
  1712. package/node_modules/parse5-htmlparser2-tree-adapter/LICENSE +19 -0
  1713. package/node_modules/parse5-htmlparser2-tree-adapter/README.md +34 -0
  1714. package/node_modules/parse5-htmlparser2-tree-adapter/dist/cjs/index.d.ts +6 -0
  1715. package/node_modules/parse5-htmlparser2-tree-adapter/dist/cjs/index.js +214 -0
  1716. package/node_modules/parse5-htmlparser2-tree-adapter/dist/cjs/package.json +1 -0
  1717. package/node_modules/parse5-htmlparser2-tree-adapter/dist/index.d.ts +6 -0
  1718. package/node_modules/parse5-htmlparser2-tree-adapter/dist/index.js +213 -0
  1719. package/node_modules/parse5-htmlparser2-tree-adapter/package.json +40 -0
  1720. package/node_modules/parse5-parser-stream/LICENSE +19 -0
  1721. package/node_modules/parse5-parser-stream/README.md +34 -0
  1722. package/node_modules/parse5-parser-stream/dist/cjs/index.d.ts +85 -0
  1723. package/node_modules/parse5-parser-stream/dist/cjs/index.js +90 -0
  1724. package/node_modules/parse5-parser-stream/dist/cjs/package.json +1 -0
  1725. package/node_modules/parse5-parser-stream/dist/index.d.ts +85 -0
  1726. package/node_modules/parse5-parser-stream/dist/index.js +86 -0
  1727. package/node_modules/parse5-parser-stream/package.json +39 -0
  1728. package/node_modules/readable-web-to-node-stream/README.md +70 -0
  1729. package/node_modules/readable-web-to-node-stream/lib/index.d.ts +39 -0
  1730. package/node_modules/readable-web-to-node-stream/lib/index.js +73 -0
  1731. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/LICENSE +47 -0
  1732. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/README.md +116 -0
  1733. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/_stream_duplex.js +4 -0
  1734. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/_stream_passthrough.js +4 -0
  1735. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/_stream_readable.js +4 -0
  1736. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/_stream_transform.js +4 -0
  1737. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/_stream_writable.js +4 -0
  1738. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/add-abort-signal.js +52 -0
  1739. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/buffer_list.js +157 -0
  1740. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/compose.js +194 -0
  1741. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/destroy.js +290 -0
  1742. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/duplex.js +143 -0
  1743. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/duplexify.js +378 -0
  1744. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +286 -0
  1745. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/from.js +98 -0
  1746. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/lazy_transform.js +51 -0
  1747. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/legacy.js +89 -0
  1748. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/operators.js +457 -0
  1749. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/passthrough.js +39 -0
  1750. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/pipeline.js +471 -0
  1751. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/readable.js +1290 -0
  1752. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/state.js +39 -0
  1753. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/transform.js +180 -0
  1754. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/utils.js +327 -0
  1755. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/streams/writable.js +819 -0
  1756. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/internal/validators.js +530 -0
  1757. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/browser.js +35 -0
  1758. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/errors.js +343 -0
  1759. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/index.js +65 -0
  1760. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/primordials.js +124 -0
  1761. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/util/inspect.js +55 -0
  1762. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/ours/util.js +148 -0
  1763. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/stream/promises.js +43 -0
  1764. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/lib/stream.js +143 -0
  1765. package/node_modules/readable-web-to-node-stream/node_modules/readable-stream/package.json +88 -0
  1766. package/node_modules/readable-web-to-node-stream/node_modules/safe-buffer/LICENSE +21 -0
  1767. package/node_modules/readable-web-to-node-stream/node_modules/safe-buffer/README.md +584 -0
  1768. package/node_modules/readable-web-to-node-stream/node_modules/safe-buffer/index.d.ts +187 -0
  1769. package/node_modules/readable-web-to-node-stream/node_modules/safe-buffer/index.js +65 -0
  1770. package/node_modules/readable-web-to-node-stream/node_modules/safe-buffer/package.json +51 -0
  1771. package/node_modules/readable-web-to-node-stream/node_modules/string_decoder/LICENSE +48 -0
  1772. package/node_modules/readable-web-to-node-stream/node_modules/string_decoder/README.md +47 -0
  1773. package/node_modules/readable-web-to-node-stream/node_modules/string_decoder/lib/string_decoder.js +296 -0
  1774. package/node_modules/readable-web-to-node-stream/node_modules/string_decoder/package.json +34 -0
  1775. package/node_modules/readable-web-to-node-stream/package.json +84 -0
  1776. package/node_modules/sax/LICENSE.md +55 -0
  1777. package/node_modules/sax/README.md +227 -0
  1778. package/node_modules/sax/lib/sax.js +1848 -0
  1779. package/node_modules/sax/package.json +34 -0
  1780. package/node_modules/ssf/LICENSE +201 -0
  1781. package/node_modules/ssf/README.md +119 -0
  1782. package/node_modules/ssf/package.json +57 -0
  1783. package/node_modules/ssf/ssf.flow.js +980 -0
  1784. package/node_modules/ssf/ssf.js +966 -0
  1785. package/node_modules/ssf/types/index.d.ts +56 -0
  1786. package/node_modules/ssf/types/tsconfig.json +15 -0
  1787. package/node_modules/strtok3/LICENSE +15 -0
  1788. package/node_modules/strtok3/README.md +304 -0
  1789. package/node_modules/strtok3/lib/AbstractTokenizer.d.ts +69 -0
  1790. package/node_modules/strtok3/lib/AbstractTokenizer.js +104 -0
  1791. package/node_modules/strtok3/lib/BufferTokenizer.d.ts +26 -0
  1792. package/node_modules/strtok3/lib/BufferTokenizer.js +55 -0
  1793. package/node_modules/strtok3/lib/FileTokenizer.d.ts +22 -0
  1794. package/node_modules/strtok3/lib/FileTokenizer.js +55 -0
  1795. package/node_modules/strtok3/lib/FsPromise.d.ts +18 -0
  1796. package/node_modules/strtok3/lib/FsPromise.js +79 -0
  1797. package/node_modules/strtok3/lib/ReadStreamTokenizer.d.ts +28 -0
  1798. package/node_modules/strtok3/lib/ReadStreamTokenizer.js +98 -0
  1799. package/node_modules/strtok3/lib/core.d.ts +23 -0
  1800. package/node_modules/strtok3/lib/core.js +29 -0
  1801. package/node_modules/strtok3/lib/index.d.ts +15 -0
  1802. package/node_modules/strtok3/lib/index.js +27 -0
  1803. package/node_modules/strtok3/lib/types.d.ts +103 -0
  1804. package/node_modules/strtok3/lib/types.js +2 -0
  1805. package/node_modules/strtok3/package.json +103 -0
  1806. package/node_modules/token-types/LICENSE +7 -0
  1807. package/node_modules/token-types/README.md +115 -0
  1808. package/node_modules/token-types/lib/index.d.ts +150 -0
  1809. package/node_modules/token-types/lib/index.js +455 -0
  1810. package/node_modules/token-types/package.json +93 -0
  1811. package/node_modules/undici/LICENSE +21 -0
  1812. package/node_modules/undici/README.md +741 -0
  1813. package/node_modules/undici/docs/docs/api/Agent.md +84 -0
  1814. package/node_modules/undici/docs/docs/api/BalancedPool.md +99 -0
  1815. package/node_modules/undici/docs/docs/api/CacheStorage.md +30 -0
  1816. package/node_modules/undici/docs/docs/api/CacheStore.md +164 -0
  1817. package/node_modules/undici/docs/docs/api/Client.md +285 -0
  1818. package/node_modules/undici/docs/docs/api/ClientStats.md +27 -0
  1819. package/node_modules/undici/docs/docs/api/Connector.md +115 -0
  1820. package/node_modules/undici/docs/docs/api/ContentType.md +57 -0
  1821. package/node_modules/undici/docs/docs/api/Cookies.md +101 -0
  1822. package/node_modules/undici/docs/docs/api/Debug.md +62 -0
  1823. package/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +315 -0
  1824. package/node_modules/undici/docs/docs/api/Dispatcher.md +1392 -0
  1825. package/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +159 -0
  1826. package/node_modules/undici/docs/docs/api/Errors.md +49 -0
  1827. package/node_modules/undici/docs/docs/api/EventSource.md +45 -0
  1828. package/node_modules/undici/docs/docs/api/Fetch.md +60 -0
  1829. package/node_modules/undici/docs/docs/api/GlobalInstallation.md +139 -0
  1830. package/node_modules/undici/docs/docs/api/H2CClient.md +263 -0
  1831. package/node_modules/undici/docs/docs/api/MockAgent.md +603 -0
  1832. package/node_modules/undici/docs/docs/api/MockCallHistory.md +197 -0
  1833. package/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +43 -0
  1834. package/node_modules/undici/docs/docs/api/MockClient.md +81 -0
  1835. package/node_modules/undici/docs/docs/api/MockErrors.md +12 -0
  1836. package/node_modules/undici/docs/docs/api/MockPool.md +555 -0
  1837. package/node_modules/undici/docs/docs/api/Pool.md +84 -0
  1838. package/node_modules/undici/docs/docs/api/PoolStats.md +35 -0
  1839. package/node_modules/undici/docs/docs/api/ProxyAgent.md +229 -0
  1840. package/node_modules/undici/docs/docs/api/RedirectHandler.md +93 -0
  1841. package/node_modules/undici/docs/docs/api/RetryAgent.md +50 -0
  1842. package/node_modules/undici/docs/docs/api/RetryHandler.md +118 -0
  1843. package/node_modules/undici/docs/docs/api/RoundRobinPool.md +145 -0
  1844. package/node_modules/undici/docs/docs/api/SnapshotAgent.md +616 -0
  1845. package/node_modules/undici/docs/docs/api/Socks5ProxyAgent.md +274 -0
  1846. package/node_modules/undici/docs/docs/api/Util.md +25 -0
  1847. package/node_modules/undici/docs/docs/api/WebSocket.md +141 -0
  1848. package/node_modules/undici/docs/docs/api/api-lifecycle.md +91 -0
  1849. package/node_modules/undici/docs/docs/best-practices/client-certificate.md +64 -0
  1850. package/node_modules/undici/docs/docs/best-practices/crawling.md +58 -0
  1851. package/node_modules/undici/docs/docs/best-practices/mocking-request.md +190 -0
  1852. package/node_modules/undici/docs/docs/best-practices/proxy.md +127 -0
  1853. package/node_modules/undici/docs/docs/best-practices/undici-vs-builtin-fetch.md +224 -0
  1854. package/node_modules/undici/docs/docs/best-practices/writing-tests.md +63 -0
  1855. package/node_modules/undici/index-fetch.js +65 -0
  1856. package/node_modules/undici/index.d.ts +3 -0
  1857. package/node_modules/undici/index.js +234 -0
  1858. package/node_modules/undici/lib/api/abort-signal.js +59 -0
  1859. package/node_modules/undici/lib/api/api-connect.js +110 -0
  1860. package/node_modules/undici/lib/api/api-pipeline.js +252 -0
  1861. package/node_modules/undici/lib/api/api-request.js +214 -0
  1862. package/node_modules/undici/lib/api/api-stream.js +209 -0
  1863. package/node_modules/undici/lib/api/api-upgrade.js +111 -0
  1864. package/node_modules/undici/lib/api/index.js +7 -0
  1865. package/node_modules/undici/lib/api/readable.js +580 -0
  1866. package/node_modules/undici/lib/cache/memory-cache-store.js +234 -0
  1867. package/node_modules/undici/lib/cache/sqlite-cache-store.js +461 -0
  1868. package/node_modules/undici/lib/core/connect.js +137 -0
  1869. package/node_modules/undici/lib/core/constants.js +143 -0
  1870. package/node_modules/undici/lib/core/diagnostics.js +227 -0
  1871. package/node_modules/undici/lib/core/errors.js +477 -0
  1872. package/node_modules/undici/lib/core/request.js +438 -0
  1873. package/node_modules/undici/lib/core/socks5-client.js +407 -0
  1874. package/node_modules/undici/lib/core/socks5-utils.js +203 -0
  1875. package/node_modules/undici/lib/core/symbols.js +75 -0
  1876. package/node_modules/undici/lib/core/tree.js +160 -0
  1877. package/node_modules/undici/lib/core/util.js +992 -0
  1878. package/node_modules/undici/lib/dispatcher/agent.js +158 -0
  1879. package/node_modules/undici/lib/dispatcher/balanced-pool.js +219 -0
  1880. package/node_modules/undici/lib/dispatcher/client-h1.js +1610 -0
  1881. package/node_modules/undici/lib/dispatcher/client-h2.js +995 -0
  1882. package/node_modules/undici/lib/dispatcher/client.js +659 -0
  1883. package/node_modules/undici/lib/dispatcher/dispatcher-base.js +165 -0
  1884. package/node_modules/undici/lib/dispatcher/dispatcher.js +48 -0
  1885. package/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +146 -0
  1886. package/node_modules/undici/lib/dispatcher/fixed-queue.js +135 -0
  1887. package/node_modules/undici/lib/dispatcher/h2c-client.js +51 -0
  1888. package/node_modules/undici/lib/dispatcher/pool-base.js +214 -0
  1889. package/node_modules/undici/lib/dispatcher/pool.js +118 -0
  1890. package/node_modules/undici/lib/dispatcher/proxy-agent.js +318 -0
  1891. package/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
  1892. package/node_modules/undici/lib/dispatcher/round-robin-pool.js +137 -0
  1893. package/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +249 -0
  1894. package/node_modules/undici/lib/encoding/index.js +33 -0
  1895. package/node_modules/undici/lib/global.js +50 -0
  1896. package/node_modules/undici/lib/handler/cache-handler.js +578 -0
  1897. package/node_modules/undici/lib/handler/cache-revalidation-handler.js +124 -0
  1898. package/node_modules/undici/lib/handler/decorator-handler.js +67 -0
  1899. package/node_modules/undici/lib/handler/deduplication-handler.js +460 -0
  1900. package/node_modules/undici/lib/handler/redirect-handler.js +238 -0
  1901. package/node_modules/undici/lib/handler/retry-handler.js +394 -0
  1902. package/node_modules/undici/lib/handler/unwrap-handler.js +100 -0
  1903. package/node_modules/undici/lib/handler/wrap-handler.js +105 -0
  1904. package/node_modules/undici/lib/interceptor/cache.js +495 -0
  1905. package/node_modules/undici/lib/interceptor/decompress.js +259 -0
  1906. package/node_modules/undici/lib/interceptor/deduplicate.js +117 -0
  1907. package/node_modules/undici/lib/interceptor/dns.js +571 -0
  1908. package/node_modules/undici/lib/interceptor/dump.js +112 -0
  1909. package/node_modules/undici/lib/interceptor/redirect.js +21 -0
  1910. package/node_modules/undici/lib/interceptor/response-error.js +95 -0
  1911. package/node_modules/undici/lib/interceptor/retry.js +19 -0
  1912. package/node_modules/undici/lib/llhttp/.gitkeep +0 -0
  1913. package/node_modules/undici/lib/llhttp/constants.d.ts +195 -0
  1914. package/node_modules/undici/lib/llhttp/constants.js +531 -0
  1915. package/node_modules/undici/lib/llhttp/llhttp-wasm.js +15 -0
  1916. package/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +15 -0
  1917. package/node_modules/undici/lib/llhttp/utils.d.ts +2 -0
  1918. package/node_modules/undici/lib/llhttp/utils.js +12 -0
  1919. package/node_modules/undici/lib/mock/mock-agent.js +232 -0
  1920. package/node_modules/undici/lib/mock/mock-call-history.js +248 -0
  1921. package/node_modules/undici/lib/mock/mock-client.js +68 -0
  1922. package/node_modules/undici/lib/mock/mock-errors.js +29 -0
  1923. package/node_modules/undici/lib/mock/mock-interceptor.js +209 -0
  1924. package/node_modules/undici/lib/mock/mock-pool.js +68 -0
  1925. package/node_modules/undici/lib/mock/mock-symbols.js +32 -0
  1926. package/node_modules/undici/lib/mock/mock-utils.js +486 -0
  1927. package/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
  1928. package/node_modules/undici/lib/mock/snapshot-agent.js +353 -0
  1929. package/node_modules/undici/lib/mock/snapshot-recorder.js +588 -0
  1930. package/node_modules/undici/lib/mock/snapshot-utils.js +158 -0
  1931. package/node_modules/undici/lib/util/cache.js +407 -0
  1932. package/node_modules/undici/lib/util/date.js +653 -0
  1933. package/node_modules/undici/lib/util/promise.js +28 -0
  1934. package/node_modules/undici/lib/util/runtime-features.js +124 -0
  1935. package/node_modules/undici/lib/util/stats.js +32 -0
  1936. package/node_modules/undici/lib/util/timers.js +425 -0
  1937. package/node_modules/undici/lib/web/cache/cache.js +864 -0
  1938. package/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
  1939. package/node_modules/undici/lib/web/cache/util.js +45 -0
  1940. package/node_modules/undici/lib/web/cookies/constants.js +12 -0
  1941. package/node_modules/undici/lib/web/cookies/index.js +199 -0
  1942. package/node_modules/undici/lib/web/cookies/parse.js +322 -0
  1943. package/node_modules/undici/lib/web/cookies/util.js +282 -0
  1944. package/node_modules/undici/lib/web/eventsource/eventsource-stream.js +399 -0
  1945. package/node_modules/undici/lib/web/eventsource/eventsource.js +501 -0
  1946. package/node_modules/undici/lib/web/eventsource/util.js +29 -0
  1947. package/node_modules/undici/lib/web/fetch/LICENSE +21 -0
  1948. package/node_modules/undici/lib/web/fetch/body.js +509 -0
  1949. package/node_modules/undici/lib/web/fetch/constants.js +131 -0
  1950. package/node_modules/undici/lib/web/fetch/data-url.js +596 -0
  1951. package/node_modules/undici/lib/web/fetch/formdata-parser.js +575 -0
  1952. package/node_modules/undici/lib/web/fetch/formdata.js +259 -0
  1953. package/node_modules/undici/lib/web/fetch/global.js +40 -0
  1954. package/node_modules/undici/lib/web/fetch/headers.js +719 -0
  1955. package/node_modules/undici/lib/web/fetch/index.js +2397 -0
  1956. package/node_modules/undici/lib/web/fetch/request.js +1115 -0
  1957. package/node_modules/undici/lib/web/fetch/response.js +641 -0
  1958. package/node_modules/undici/lib/web/fetch/util.js +1520 -0
  1959. package/node_modules/undici/lib/web/infra/index.js +229 -0
  1960. package/node_modules/undici/lib/web/subresource-integrity/Readme.md +9 -0
  1961. package/node_modules/undici/lib/web/subresource-integrity/subresource-integrity.js +307 -0
  1962. package/node_modules/undici/lib/web/webidl/index.js +1006 -0
  1963. package/node_modules/undici/lib/web/websocket/connection.js +329 -0
  1964. package/node_modules/undici/lib/web/websocket/constants.js +126 -0
  1965. package/node_modules/undici/lib/web/websocket/events.js +331 -0
  1966. package/node_modules/undici/lib/web/websocket/frame.js +133 -0
  1967. package/node_modules/undici/lib/web/websocket/permessage-deflate.js +118 -0
  1968. package/node_modules/undici/lib/web/websocket/receiver.js +450 -0
  1969. package/node_modules/undici/lib/web/websocket/sender.js +109 -0
  1970. package/node_modules/undici/lib/web/websocket/stream/websocketerror.js +104 -0
  1971. package/node_modules/undici/lib/web/websocket/stream/websocketstream.js +497 -0
  1972. package/node_modules/undici/lib/web/websocket/util.js +347 -0
  1973. package/node_modules/undici/lib/web/websocket/websocket.js +751 -0
  1974. package/node_modules/undici/package.json +152 -0
  1975. package/node_modules/undici/scripts/strip-comments.js +10 -0
  1976. package/node_modules/undici/types/README.md +6 -0
  1977. package/node_modules/undici/types/agent.d.ts +32 -0
  1978. package/node_modules/undici/types/api.d.ts +43 -0
  1979. package/node_modules/undici/types/balanced-pool.d.ts +30 -0
  1980. package/node_modules/undici/types/cache-interceptor.d.ts +179 -0
  1981. package/node_modules/undici/types/cache.d.ts +36 -0
  1982. package/node_modules/undici/types/client-stats.d.ts +15 -0
  1983. package/node_modules/undici/types/client.d.ts +123 -0
  1984. package/node_modules/undici/types/connector.d.ts +36 -0
  1985. package/node_modules/undici/types/content-type.d.ts +21 -0
  1986. package/node_modules/undici/types/cookies.d.ts +30 -0
  1987. package/node_modules/undici/types/diagnostics-channel.d.ts +74 -0
  1988. package/node_modules/undici/types/dispatcher.d.ts +273 -0
  1989. package/node_modules/undici/types/env-http-proxy-agent.d.ts +22 -0
  1990. package/node_modules/undici/types/errors.d.ts +177 -0
  1991. package/node_modules/undici/types/eventsource.d.ts +66 -0
  1992. package/node_modules/undici/types/fetch.d.ts +231 -0
  1993. package/node_modules/undici/types/formdata.d.ts +114 -0
  1994. package/node_modules/undici/types/global-dispatcher.d.ts +9 -0
  1995. package/node_modules/undici/types/global-origin.d.ts +7 -0
  1996. package/node_modules/undici/types/h2c-client.d.ts +73 -0
  1997. package/node_modules/undici/types/handlers.d.ts +14 -0
  1998. package/node_modules/undici/types/header.d.ts +160 -0
  1999. package/node_modules/undici/types/index.d.ts +91 -0
  2000. package/node_modules/undici/types/interceptors.d.ts +80 -0
  2001. package/node_modules/undici/types/mock-agent.d.ts +68 -0
  2002. package/node_modules/undici/types/mock-call-history.d.ts +111 -0
  2003. package/node_modules/undici/types/mock-client.d.ts +27 -0
  2004. package/node_modules/undici/types/mock-errors.d.ts +12 -0
  2005. package/node_modules/undici/types/mock-interceptor.d.ts +94 -0
  2006. package/node_modules/undici/types/mock-pool.d.ts +27 -0
  2007. package/node_modules/undici/types/patch.d.ts +29 -0
  2008. package/node_modules/undici/types/pool-stats.d.ts +19 -0
  2009. package/node_modules/undici/types/pool.d.ts +41 -0
  2010. package/node_modules/undici/types/proxy-agent.d.ts +29 -0
  2011. package/node_modules/undici/types/readable.d.ts +68 -0
  2012. package/node_modules/undici/types/retry-agent.d.ts +8 -0
  2013. package/node_modules/undici/types/retry-handler.d.ts +125 -0
  2014. package/node_modules/undici/types/round-robin-pool.d.ts +41 -0
  2015. package/node_modules/undici/types/snapshot-agent.d.ts +109 -0
  2016. package/node_modules/undici/types/socks5-proxy-agent.d.ts +25 -0
  2017. package/node_modules/undici/types/util.d.ts +18 -0
  2018. package/node_modules/undici/types/utility.d.ts +7 -0
  2019. package/node_modules/undici/types/webidl.d.ts +347 -0
  2020. package/node_modules/undici/types/websocket.d.ts +188 -0
  2021. package/node_modules/unpdf/LICENSE +21 -0
  2022. package/node_modules/unpdf/README.md +371 -0
  2023. package/node_modules/unpdf/dist/index.cjs +340 -0
  2024. package/node_modules/unpdf/dist/index.d.cts +152 -0
  2025. package/node_modules/unpdf/dist/index.d.mts +152 -0
  2026. package/node_modules/unpdf/dist/index.d.ts +152 -0
  2027. package/node_modules/unpdf/dist/index.mjs +328 -0
  2028. package/node_modules/unpdf/dist/pdfjs.d.mts +1 -0
  2029. package/node_modules/unpdf/dist/pdfjs.d.ts +1 -0
  2030. package/node_modules/unpdf/dist/pdfjs.mjs +1 -0
  2031. package/node_modules/unpdf/dist/types/src/display/annotation_layer.d.ts +271 -0
  2032. package/node_modules/unpdf/dist/types/src/display/annotation_storage.d.ts +94 -0
  2033. package/node_modules/unpdf/dist/types/src/display/api.d.ts +1595 -0
  2034. package/node_modules/unpdf/dist/types/src/display/api_utils.d.ts +13 -0
  2035. package/node_modules/unpdf/dist/types/src/display/canvas.d.ts +207 -0
  2036. package/node_modules/unpdf/dist/types/src/display/canvas_dependency_tracker.d.ts +160 -0
  2037. package/node_modules/unpdf/dist/types/src/display/canvas_factory.d.ts +27 -0
  2038. package/node_modules/unpdf/dist/types/src/display/cmap_reader_factory.d.ts +25 -0
  2039. package/node_modules/unpdf/dist/types/src/display/content_disposition.d.ts +7 -0
  2040. package/node_modules/unpdf/dist/types/src/display/display_utils.d.ts +280 -0
  2041. package/node_modules/unpdf/dist/types/src/display/draw_layer.d.ts +26 -0
  2042. package/node_modules/unpdf/dist/types/src/display/editor/alt_text.d.ts +34 -0
  2043. package/node_modules/unpdf/dist/types/src/display/editor/annotation_editor_layer.d.ts +232 -0
  2044. package/node_modules/unpdf/dist/types/src/display/editor/color_picker.d.ts +39 -0
  2045. package/node_modules/unpdf/dist/types/src/display/editor/comment.d.ts +47 -0
  2046. package/node_modules/unpdf/dist/types/src/display/editor/draw.d.ts +121 -0
  2047. package/node_modules/unpdf/dist/types/src/display/editor/drawers/contour.d.ts +3 -0
  2048. package/node_modules/unpdf/dist/types/src/display/editor/drawers/freedraw.d.ts +32 -0
  2049. package/node_modules/unpdf/dist/types/src/display/editor/drawers/highlight.d.ts +37 -0
  2050. package/node_modules/unpdf/dist/types/src/display/editor/drawers/inkdraw.d.ts +129 -0
  2051. package/node_modules/unpdf/dist/types/src/display/editor/drawers/outline.d.ts +19 -0
  2052. package/node_modules/unpdf/dist/types/src/display/editor/drawers/signaturedraw.d.ts +79 -0
  2053. package/node_modules/unpdf/dist/types/src/display/editor/editor.d.ts +575 -0
  2054. package/node_modules/unpdf/dist/types/src/display/editor/freetext.d.ts +63 -0
  2055. package/node_modules/unpdf/dist/types/src/display/editor/highlight.d.ts +76 -0
  2056. package/node_modules/unpdf/dist/types/src/display/editor/ink.d.ts +42 -0
  2057. package/node_modules/unpdf/dist/types/src/display/editor/signature.d.ts +77 -0
  2058. package/node_modules/unpdf/dist/types/src/display/editor/stamp.d.ts +49 -0
  2059. package/node_modules/unpdf/dist/types/src/display/editor/toolbar.d.ts +26 -0
  2060. package/node_modules/unpdf/dist/types/src/display/editor/tools.d.ts +448 -0
  2061. package/node_modules/unpdf/dist/types/src/display/fetch_stream.d.ts +60 -0
  2062. package/node_modules/unpdf/dist/types/src/display/filter_factory.d.ts +29 -0
  2063. package/node_modules/unpdf/dist/types/src/display/font_loader.d.ts +65 -0
  2064. package/node_modules/unpdf/dist/types/src/display/metadata.d.ts +10 -0
  2065. package/node_modules/unpdf/dist/types/src/display/network.d.ts +86 -0
  2066. package/node_modules/unpdf/dist/types/src/display/network_utils.d.ts +15 -0
  2067. package/node_modules/unpdf/dist/types/src/display/node_stream.d.ts +54 -0
  2068. package/node_modules/unpdf/dist/types/src/display/node_utils.d.ts +32 -0
  2069. package/node_modules/unpdf/dist/types/src/display/optional_content_config.d.ts +18 -0
  2070. package/node_modules/unpdf/dist/types/src/display/pattern_helper.d.ts +75 -0
  2071. package/node_modules/unpdf/dist/types/src/display/pdf_objects.d.ts +40 -0
  2072. package/node_modules/unpdf/dist/types/src/display/standard_fontdata_factory.d.ts +20 -0
  2073. package/node_modules/unpdf/dist/types/src/display/svg_factory.d.ts +14 -0
  2074. package/node_modules/unpdf/dist/types/src/display/text_layer.d.ts +85 -0
  2075. package/node_modules/unpdf/dist/types/src/display/touch_manager.d.ts +18 -0
  2076. package/node_modules/unpdf/dist/types/src/display/transport_stream.d.ts +67 -0
  2077. package/node_modules/unpdf/dist/types/src/display/wasm_factory.d.ts +20 -0
  2078. package/node_modules/unpdf/dist/types/src/display/worker_options.d.ts +25 -0
  2079. package/node_modules/unpdf/dist/types/src/display/xfa_layer.d.ts +47 -0
  2080. package/node_modules/unpdf/dist/types/src/display/xfa_text.d.ts +21 -0
  2081. package/node_modules/unpdf/dist/types/src/interfaces.d.ts +122 -0
  2082. package/node_modules/unpdf/dist/types/src/pdf.d.ts +63 -0
  2083. package/node_modules/unpdf/dist/types/src/shared/image_utils.d.ts +17 -0
  2084. package/node_modules/unpdf/dist/types/src/shared/message_handler.d.ts +48 -0
  2085. package/node_modules/unpdf/dist/types/src/shared/murmurhash3.d.ts +7 -0
  2086. package/node_modules/unpdf/dist/types/src/shared/obj-bin-transform.d.ts +64 -0
  2087. package/node_modules/unpdf/dist/types/src/shared/scripting_utils.d.ts +18 -0
  2088. package/node_modules/unpdf/dist/types/src/shared/util.d.ts +415 -0
  2089. package/node_modules/unpdf/dist/types/web/annotation_editor_layer_builder.d.ts +65 -0
  2090. package/node_modules/unpdf/dist/types/web/annotation_layer_builder.d.ts +108 -0
  2091. package/node_modules/unpdf/dist/types/web/app_options.d.ts +16 -0
  2092. package/node_modules/unpdf/dist/types/web/autolinker.d.ts +28 -0
  2093. package/node_modules/unpdf/dist/types/web/base_pdf_page_view.d.ts +28 -0
  2094. package/node_modules/unpdf/dist/types/web/comment_manager.d.ts +20 -0
  2095. package/node_modules/unpdf/dist/types/web/download_manager.d.ts +13 -0
  2096. package/node_modules/unpdf/dist/types/web/draw_layer_builder.d.ts +34 -0
  2097. package/node_modules/unpdf/dist/types/web/event_utils.d.ts +77 -0
  2098. package/node_modules/unpdf/dist/types/web/generic_scripting.d.ts +8 -0
  2099. package/node_modules/unpdf/dist/types/web/genericl10n.d.ts +22 -0
  2100. package/node_modules/unpdf/dist/types/web/interfaces.d.ts +174 -0
  2101. package/node_modules/unpdf/dist/types/web/l10n.d.ts +34 -0
  2102. package/node_modules/unpdf/dist/types/web/pdf_find_controller.d.ts +134 -0
  2103. package/node_modules/unpdf/dist/types/web/pdf_find_utils.d.ts +16 -0
  2104. package/node_modules/unpdf/dist/types/web/pdf_history.d.ts +116 -0
  2105. package/node_modules/unpdf/dist/types/web/pdf_link_service.d.ts +147 -0
  2106. package/node_modules/unpdf/dist/types/web/pdf_page_detail_view.d.ts +33 -0
  2107. package/node_modules/unpdf/dist/types/web/pdf_page_view.d.ts +243 -0
  2108. package/node_modules/unpdf/dist/types/web/pdf_rendering_queue.d.ts +54 -0
  2109. package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.component.d.ts +5 -0
  2110. package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.d.ts +57 -0
  2111. package/node_modules/unpdf/dist/types/web/pdf_single_page_viewer.d.ts +7 -0
  2112. package/node_modules/unpdf/dist/types/web/pdf_thumbnail_view.d.ts +132 -0
  2113. package/node_modules/unpdf/dist/types/web/pdf_thumbnail_viewer.d.ts +117 -0
  2114. package/node_modules/unpdf/dist/types/web/pdf_viewer.component.d.ts +23 -0
  2115. package/node_modules/unpdf/dist/types/web/pdf_viewer.d.ts +616 -0
  2116. package/node_modules/unpdf/dist/types/web/struct_tree_layer_builder.d.ts +25 -0
  2117. package/node_modules/unpdf/dist/types/web/text_accessibility.d.ts +44 -0
  2118. package/node_modules/unpdf/dist/types/web/text_highlighter.d.ts +63 -0
  2119. package/node_modules/unpdf/dist/types/web/text_layer_builder.d.ts +65 -0
  2120. package/node_modules/unpdf/dist/types/web/ui_utils.d.ts +273 -0
  2121. package/node_modules/unpdf/dist/types/web/xfa_layer_builder.d.ts +50 -0
  2122. package/node_modules/unpdf/package.json +92 -0
  2123. package/node_modules/whatwg-encoding/LICENSE.txt +7 -0
  2124. package/node_modules/whatwg-encoding/README.md +50 -0
  2125. package/node_modules/whatwg-encoding/lib/labels-to-names.json +217 -0
  2126. package/node_modules/whatwg-encoding/lib/supported-names.json +38 -0
  2127. package/node_modules/whatwg-encoding/lib/whatwg-encoding.js +60 -0
  2128. package/node_modules/whatwg-encoding/package.json +32 -0
  2129. package/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
  2130. package/node_modules/whatwg-mimetype/README.md +101 -0
  2131. package/node_modules/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
  2132. package/node_modules/whatwg-mimetype/lib/mime-type.js +127 -0
  2133. package/node_modules/whatwg-mimetype/lib/parser.js +105 -0
  2134. package/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
  2135. package/node_modules/whatwg-mimetype/lib/utils.js +60 -0
  2136. package/node_modules/whatwg-mimetype/package.json +45 -0
  2137. package/node_modules/wmf/LICENSE +201 -0
  2138. package/node_modules/wmf/README.md +92 -0
  2139. package/node_modules/wmf/dist/wmf.js +2 -0
  2140. package/node_modules/wmf/dist/wmf.js.map +1 -0
  2141. package/node_modules/wmf/dist/wmf.node.js +2 -0
  2142. package/node_modules/wmf/dist/wmf.node.js.map +1 -0
  2143. package/node_modules/wmf/package.json +68 -0
  2144. package/node_modules/word/CONTRIBUTING.md +61 -0
  2145. package/node_modules/word/LICENSE +201 -0
  2146. package/node_modules/word/README.md +2 -0
  2147. package/node_modules/word/package.json +29 -0
  2148. package/node_modules/word/word.js +1 -0
  2149. package/node_modules/xlsx/CHANGELOG.md +264 -0
  2150. package/node_modules/xlsx/LICENSE +201 -0
  2151. package/node_modules/xlsx/README.md +4504 -0
  2152. package/node_modules/xlsx/bin/xlsx.njs +310 -0
  2153. package/node_modules/xlsx/bower.json +22 -0
  2154. package/node_modules/xlsx/dist/LICENSE +201 -0
  2155. package/node_modules/xlsx/dist/cpexcel.full.mjs +1502 -0
  2156. package/node_modules/xlsx/dist/cpexcel.js +1506 -0
  2157. package/node_modules/xlsx/dist/shim.min.js +2 -0
  2158. package/node_modules/xlsx/dist/xlsx.core.min.js +15 -0
  2159. package/node_modules/xlsx/dist/xlsx.core.min.map +1 -0
  2160. package/node_modules/xlsx/dist/xlsx.extendscript.js +24642 -0
  2161. package/node_modules/xlsx/dist/xlsx.full.min.js +22 -0
  2162. package/node_modules/xlsx/dist/xlsx.full.min.map +1 -0
  2163. package/node_modules/xlsx/dist/xlsx.mini.min.js +9 -0
  2164. package/node_modules/xlsx/dist/xlsx.mini.min.map +1 -0
  2165. package/node_modules/xlsx/dist/xlsx.zahl.js +4 -0
  2166. package/node_modules/xlsx/dist/xlsx.zahl.mjs +2 -0
  2167. package/node_modules/xlsx/formats.png +0 -0
  2168. package/node_modules/xlsx/legend.png +0 -0
  2169. package/node_modules/xlsx/package.json +101 -0
  2170. package/node_modules/xlsx/types/index.d.ts +900 -0
  2171. package/node_modules/xlsx/types/tsconfig.json +15 -0
  2172. package/node_modules/xlsx/xlsx.js +24486 -0
  2173. package/node_modules/xlsx/xlsx.mjs +24597 -0
  2174. package/node_modules/xlsx/xlsxworker.js +14 -0
  2175. package/node_modules/xml2js/LICENSE +19 -0
  2176. package/node_modules/xml2js/README.md +507 -0
  2177. package/node_modules/xml2js/lib/bom.js +12 -0
  2178. package/node_modules/xml2js/lib/builder.js +127 -0
  2179. package/node_modules/xml2js/lib/defaults.js +72 -0
  2180. package/node_modules/xml2js/lib/parser.js +395 -0
  2181. package/node_modules/xml2js/lib/processors.js +34 -0
  2182. package/node_modules/xml2js/lib/xml2js.bc.js +28337 -0
  2183. package/node_modules/xml2js/lib/xml2js.js +39 -0
  2184. package/node_modules/xml2js/node_modules/xmlbuilder/CHANGELOG.md +470 -0
  2185. package/node_modules/xml2js/node_modules/xmlbuilder/LICENSE +21 -0
  2186. package/node_modules/xml2js/node_modules/xmlbuilder/README.md +86 -0
  2187. package/node_modules/xml2js/node_modules/xmlbuilder/appveyor.yml +20 -0
  2188. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Derivation.js +10 -0
  2189. package/node_modules/xml2js/node_modules/xmlbuilder/lib/DocumentPosition.js +12 -0
  2190. package/node_modules/xml2js/node_modules/xmlbuilder/lib/NodeType.js +23 -0
  2191. package/node_modules/xml2js/node_modules/xmlbuilder/lib/OperationType.js +11 -0
  2192. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Utility.js +83 -0
  2193. package/node_modules/xml2js/node_modules/xmlbuilder/lib/WriterState.js +10 -0
  2194. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLAttribute.js +108 -0
  2195. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCData.js +36 -0
  2196. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCharacterData.js +79 -0
  2197. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLComment.js +36 -0
  2198. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js +64 -0
  2199. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js +16 -0
  2200. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMImplementation.js +32 -0
  2201. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMStringList.js +28 -0
  2202. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDAttList.js +55 -0
  2203. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDElement.js +38 -0
  2204. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDEntity.js +97 -0
  2205. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDNotation.js +52 -0
  2206. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDeclaration.js +43 -0
  2207. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocType.js +186 -0
  2208. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocument.js +242 -0
  2209. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentCB.js +528 -0
  2210. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentFragment.js +24 -0
  2211. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDummy.js +31 -0
  2212. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLElement.js +298 -0
  2213. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js +58 -0
  2214. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNode.js +785 -0
  2215. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeFilter.js +48 -0
  2216. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeList.js +28 -0
  2217. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js +49 -0
  2218. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLRaw.js +35 -0
  2219. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStreamWriter.js +176 -0
  2220. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringWriter.js +35 -0
  2221. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringifier.js +240 -0
  2222. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLText.js +69 -0
  2223. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLTypeInfo.js +21 -0
  2224. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLUserDataHandler.js +16 -0
  2225. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLWriterBase.js +428 -0
  2226. package/node_modules/xml2js/node_modules/xmlbuilder/lib/index.js +65 -0
  2227. package/node_modules/xml2js/node_modules/xmlbuilder/package.json +39 -0
  2228. package/node_modules/xml2js/node_modules/xmlbuilder/typings/index.d.ts +153 -0
  2229. package/node_modules/xml2js/package.json +93 -0
  2230. package/package.json +52 -2
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../src/utils/fileDetection.ts","../src/converters/pdf.ts","../src/utils/markdown.ts","../src/converters/html.ts","../src/converters/docx.ts","../src/converters/text.ts","../src/converters/notebook.ts","../src/converters/xml.ts","../src/converters/spreadsheet.ts","../node_modules/image-size/dist/index.mjs","../src/converters/media.ts","../src/converters/archive.ts","../src/types/index.ts","../src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,"// lib/types/utils.ts\nvar decoder = new TextDecoder();\nvar toUTF8String = (input, start = 0, end = input.length) => decoder.decode(input.slice(start, end));\nvar toHexString = (input, start = 0, end = input.length) => input.slice(start, end).reduce((memo, i) => memo + `0${i.toString(16)}`.slice(-2), \"\");\nvar getView = (input, offset) => new DataView(input.buffer, input.byteOffset + offset);\nvar readInt16LE = (input, offset = 0) => getView(input, offset).getInt16(0, true);\nvar readUInt16BE = (input, offset = 0) => getView(input, offset).getUint16(0, false);\nvar readUInt16LE = (input, offset = 0) => getView(input, offset).getUint16(0, true);\nvar readUInt24LE = (input, offset = 0) => {\n const view = getView(input, offset);\n return view.getUint16(0, true) + (view.getUint8(2) << 16);\n};\nvar readInt32LE = (input, offset = 0) => getView(input, offset).getInt32(0, true);\nvar readUInt32BE = (input, offset = 0) => getView(input, offset).getUint32(0, false);\nvar readUInt32LE = (input, offset = 0) => getView(input, offset).getUint32(0, true);\nvar readUInt64 = (input, offset, isBigEndian) => getView(input, offset).getBigUint64(0, !isBigEndian);\nvar methods = {\n readUInt16BE,\n readUInt16LE,\n readUInt32BE,\n readUInt32LE\n};\nfunction readUInt(input, bits, offset = 0, isBigEndian = false) {\n const endian = isBigEndian ? \"BE\" : \"LE\";\n const methodName = `readUInt${bits}${endian}`;\n return methods[methodName](input, offset);\n}\nfunction readBox(input, offset) {\n if (input.length - offset < 4) return;\n const boxSize = readUInt32BE(input, offset);\n if (input.length - offset < boxSize) return;\n return {\n name: toUTF8String(input, 4 + offset, 8 + offset),\n offset,\n size: boxSize\n };\n}\nfunction findBox(input, boxName, currentOffset) {\n while (currentOffset < input.length) {\n const box = readBox(input, currentOffset);\n if (!box) break;\n if (box.name === boxName) return box;\n currentOffset += box.size > 0 ? box.size : 8;\n }\n}\n\n// lib/types/bmp.ts\nvar BMP = {\n validate: (input) => toUTF8String(input, 0, 2) === \"BM\",\n calculate: (input) => ({\n height: Math.abs(readInt32LE(input, 22)),\n width: readUInt32LE(input, 18)\n })\n};\n\n// lib/types/ico.ts\nvar TYPE_ICON = 1;\nvar SIZE_HEADER = 2 + 2 + 2;\nvar SIZE_IMAGE_ENTRY = 1 + 1 + 1 + 1 + 2 + 2 + 4 + 4;\nfunction getSizeFromOffset(input, offset) {\n const value = input[offset];\n return value === 0 ? 256 : value;\n}\nfunction getImageSize(input, imageIndex) {\n const offset = SIZE_HEADER + imageIndex * SIZE_IMAGE_ENTRY;\n return {\n height: getSizeFromOffset(input, offset + 1),\n width: getSizeFromOffset(input, offset)\n };\n}\nvar ICO = {\n validate(input) {\n const reserved = readUInt16LE(input, 0);\n const imageCount = readUInt16LE(input, 4);\n if (reserved !== 0 || imageCount === 0) return false;\n const imageType = readUInt16LE(input, 2);\n return imageType === TYPE_ICON;\n },\n calculate(input) {\n const nbImages = readUInt16LE(input, 4);\n const imageSize2 = getImageSize(input, 0);\n if (nbImages === 1) return imageSize2;\n const images = [];\n for (let imageIndex = 0; imageIndex < nbImages; imageIndex += 1) {\n images.push(getImageSize(input, imageIndex));\n }\n return {\n width: imageSize2.width,\n height: imageSize2.height,\n images\n };\n }\n};\n\n// lib/types/cur.ts\nvar TYPE_CURSOR = 2;\nvar CUR = {\n validate(input) {\n const reserved = readUInt16LE(input, 0);\n const imageCount = readUInt16LE(input, 4);\n if (reserved !== 0 || imageCount === 0) return false;\n const imageType = readUInt16LE(input, 2);\n return imageType === TYPE_CURSOR;\n },\n calculate: (input) => ICO.calculate(input)\n};\n\n// lib/types/dds.ts\nvar DDS = {\n validate: (input) => readUInt32LE(input, 0) === 542327876,\n calculate: (input) => ({\n height: readUInt32LE(input, 12),\n width: readUInt32LE(input, 16)\n })\n};\n\n// lib/types/gif.ts\nvar gifRegexp = /^GIF8[79]a/;\nvar GIF = {\n validate: (input) => gifRegexp.test(toUTF8String(input, 0, 6)),\n calculate: (input) => ({\n height: readUInt16LE(input, 8),\n width: readUInt16LE(input, 6)\n })\n};\n\n// lib/types/heif.ts\nvar brandMap = {\n avif: \"avif\",\n mif1: \"heif\",\n msf1: \"heif\",\n // heif-sequence\n heic: \"heic\",\n heix: \"heic\",\n hevc: \"heic\",\n // heic-sequence\n hevx: \"heic\"\n // heic-sequence\n};\nvar HEIF = {\n validate(input) {\n const boxType = toUTF8String(input, 4, 8);\n if (boxType !== \"ftyp\") return false;\n const ftypBox = findBox(input, \"ftyp\", 0);\n if (!ftypBox) return false;\n const brand = toUTF8String(input, ftypBox.offset + 8, ftypBox.offset + 12);\n return brand in brandMap;\n },\n calculate(input) {\n const metaBox = findBox(input, \"meta\", 0);\n const iprpBox = metaBox && findBox(input, \"iprp\", metaBox.offset + 12);\n const ipcoBox = iprpBox && findBox(input, \"ipco\", iprpBox.offset + 8);\n if (!ipcoBox) {\n throw new TypeError(\"Invalid HEIF, no ipco box found\");\n }\n const type = toUTF8String(input, 8, 12);\n const images = [];\n let currentOffset = ipcoBox.offset + 8;\n while (currentOffset < ipcoBox.offset + ipcoBox.size) {\n const ispeBox = findBox(input, \"ispe\", currentOffset);\n if (!ispeBox) break;\n const rawWidth = readUInt32BE(input, ispeBox.offset + 12);\n const rawHeight = readUInt32BE(input, ispeBox.offset + 16);\n const clapBox = findBox(input, \"clap\", currentOffset);\n let width = rawWidth;\n let height = rawHeight;\n if (clapBox && clapBox.offset < ipcoBox.offset + ipcoBox.size) {\n const cropRight = readUInt32BE(input, clapBox.offset + 12);\n width = rawWidth - cropRight;\n }\n images.push({ height, width });\n currentOffset = ispeBox.offset + ispeBox.size;\n }\n if (images.length === 0) {\n throw new TypeError(\"Invalid HEIF, no sizes found\");\n }\n return {\n width: images[0].width,\n height: images[0].height,\n type,\n ...images.length > 1 ? { images } : {}\n };\n }\n};\n\n// lib/types/icns.ts\nvar SIZE_HEADER2 = 4 + 4;\nvar FILE_LENGTH_OFFSET = 4;\nvar ENTRY_LENGTH_OFFSET = 4;\nvar ICON_TYPE_SIZE = {\n ICON: 32,\n \"ICN#\": 32,\n // m => 16 x 16\n \"icm#\": 16,\n icm4: 16,\n icm8: 16,\n // s => 16 x 16\n \"ics#\": 16,\n ics4: 16,\n ics8: 16,\n is32: 16,\n s8mk: 16,\n icp4: 16,\n // l => 32 x 32\n icl4: 32,\n icl8: 32,\n il32: 32,\n l8mk: 32,\n icp5: 32,\n ic11: 32,\n // h => 48 x 48\n ich4: 48,\n ich8: 48,\n ih32: 48,\n h8mk: 48,\n // . => 64 x 64\n icp6: 64,\n ic12: 32,\n // t => 128 x 128\n it32: 128,\n t8mk: 128,\n ic07: 128,\n // . => 256 x 256\n ic08: 256,\n ic13: 256,\n // . => 512 x 512\n ic09: 512,\n ic14: 512,\n // . => 1024 x 1024\n ic10: 1024\n};\nfunction readImageHeader(input, imageOffset) {\n const imageLengthOffset = imageOffset + ENTRY_LENGTH_OFFSET;\n return [\n toUTF8String(input, imageOffset, imageLengthOffset),\n readUInt32BE(input, imageLengthOffset)\n ];\n}\nfunction getImageSize2(type) {\n const size = ICON_TYPE_SIZE[type];\n return { width: size, height: size, type };\n}\nvar ICNS = {\n validate: (input) => toUTF8String(input, 0, 4) === \"icns\",\n calculate(input) {\n const inputLength = input.length;\n const fileLength = readUInt32BE(input, FILE_LENGTH_OFFSET);\n let imageOffset = SIZE_HEADER2;\n const images = [];\n while (imageOffset < fileLength && imageOffset < inputLength) {\n const imageHeader = readImageHeader(input, imageOffset);\n const imageSize2 = getImageSize2(imageHeader[0]);\n images.push(imageSize2);\n imageOffset += imageHeader[1];\n }\n if (images.length === 0) {\n throw new TypeError(\"Invalid ICNS, no sizes found\");\n }\n return {\n width: images[0].width,\n height: images[0].height,\n ...images.length > 1 ? { images } : {}\n };\n }\n};\n\n// lib/types/j2c.ts\nvar J2C = {\n // TODO: this doesn't seem right. SIZ marker doesn't have to be right after the SOC\n validate: (input) => readUInt32BE(input, 0) === 4283432785,\n calculate: (input) => ({\n height: readUInt32BE(input, 12),\n width: readUInt32BE(input, 8)\n })\n};\n\n// lib/types/jp2.ts\nvar JP2 = {\n validate(input) {\n const boxType = toUTF8String(input, 4, 8);\n if (boxType !== \"jP \") return false;\n const ftypBox = findBox(input, \"ftyp\", 0);\n if (!ftypBox) return false;\n const brand = toUTF8String(input, ftypBox.offset + 8, ftypBox.offset + 12);\n return brand === \"jp2 \";\n },\n calculate(input) {\n const jp2hBox = findBox(input, \"jp2h\", 0);\n const ihdrBox = jp2hBox && findBox(input, \"ihdr\", jp2hBox.offset + 8);\n if (ihdrBox) {\n return {\n height: readUInt32BE(input, ihdrBox.offset + 8),\n width: readUInt32BE(input, ihdrBox.offset + 12)\n };\n }\n throw new TypeError(\"Unsupported JPEG 2000 format\");\n }\n};\n\n// lib/types/jpg.ts\nvar EXIF_MARKER = \"45786966\";\nvar APP1_DATA_SIZE_BYTES = 2;\nvar EXIF_HEADER_BYTES = 6;\nvar TIFF_BYTE_ALIGN_BYTES = 2;\nvar BIG_ENDIAN_BYTE_ALIGN = \"4d4d\";\nvar LITTLE_ENDIAN_BYTE_ALIGN = \"4949\";\nvar IDF_ENTRY_BYTES = 12;\nvar NUM_DIRECTORY_ENTRIES_BYTES = 2;\nfunction isEXIF(input) {\n return toHexString(input, 2, 6) === EXIF_MARKER;\n}\nfunction extractSize(input, index) {\n return {\n height: readUInt16BE(input, index),\n width: readUInt16BE(input, index + 2)\n };\n}\nfunction extractOrientation(exifBlock, isBigEndian) {\n const idfOffset = 8;\n const offset = EXIF_HEADER_BYTES + idfOffset;\n const idfDirectoryEntries = readUInt(exifBlock, 16, offset, isBigEndian);\n for (let directoryEntryNumber = 0; directoryEntryNumber < idfDirectoryEntries; directoryEntryNumber++) {\n const start = offset + NUM_DIRECTORY_ENTRIES_BYTES + directoryEntryNumber * IDF_ENTRY_BYTES;\n const end = start + IDF_ENTRY_BYTES;\n if (start > exifBlock.length) {\n return;\n }\n const block = exifBlock.slice(start, end);\n const tagNumber = readUInt(block, 16, 0, isBigEndian);\n if (tagNumber === 274) {\n const dataFormat = readUInt(block, 16, 2, isBigEndian);\n if (dataFormat !== 3) {\n return;\n }\n const numberOfComponents = readUInt(block, 32, 4, isBigEndian);\n if (numberOfComponents !== 1) {\n return;\n }\n return readUInt(block, 16, 8, isBigEndian);\n }\n }\n}\nfunction validateExifBlock(input, index) {\n const exifBlock = input.slice(APP1_DATA_SIZE_BYTES, index);\n const byteAlign = toHexString(\n exifBlock,\n EXIF_HEADER_BYTES,\n EXIF_HEADER_BYTES + TIFF_BYTE_ALIGN_BYTES\n );\n const isBigEndian = byteAlign === BIG_ENDIAN_BYTE_ALIGN;\n const isLittleEndian = byteAlign === LITTLE_ENDIAN_BYTE_ALIGN;\n if (isBigEndian || isLittleEndian) {\n return extractOrientation(exifBlock, isBigEndian);\n }\n}\nfunction validateInput(input, index) {\n if (index > input.length) {\n throw new TypeError(\"Corrupt JPG, exceeded buffer limits\");\n }\n}\nvar JPG = {\n validate: (input) => toHexString(input, 0, 2) === \"ffd8\",\n calculate(_input) {\n let input = _input.slice(4);\n let orientation;\n let next;\n while (input.length) {\n const i = readUInt16BE(input, 0);\n validateInput(input, i);\n if (input[i] !== 255) {\n input = input.slice(1);\n continue;\n }\n if (isEXIF(input)) {\n orientation = validateExifBlock(input, i);\n }\n next = input[i + 1];\n if (next === 192 || next === 193 || next === 194) {\n const size = extractSize(input, i + 5);\n if (!orientation) {\n return size;\n }\n return {\n height: size.height,\n orientation,\n width: size.width\n };\n }\n input = input.slice(i + 2);\n }\n throw new TypeError(\"Invalid JPG, no size found\");\n }\n};\n\n// lib/utils/bit-reader.ts\nvar BitReader = class {\n constructor(input, endianness) {\n this.input = input;\n this.endianness = endianness;\n // Skip the first 16 bits (2 bytes) of signature\n this.byteOffset = 2;\n this.bitOffset = 0;\n }\n /** Reads a specified number of bits, and move the offset */\n getBits(length = 1) {\n let result = 0;\n let bitsRead = 0;\n while (bitsRead < length) {\n if (this.byteOffset >= this.input.length) {\n throw new Error(\"Reached end of input\");\n }\n const currentByte = this.input[this.byteOffset];\n const bitsLeft = 8 - this.bitOffset;\n const bitsToRead = Math.min(length - bitsRead, bitsLeft);\n if (this.endianness === \"little-endian\") {\n const mask = (1 << bitsToRead) - 1;\n const bits = currentByte >> this.bitOffset & mask;\n result |= bits << bitsRead;\n } else {\n const mask = (1 << bitsToRead) - 1 << 8 - this.bitOffset - bitsToRead;\n const bits = (currentByte & mask) >> 8 - this.bitOffset - bitsToRead;\n result = result << bitsToRead | bits;\n }\n bitsRead += bitsToRead;\n this.bitOffset += bitsToRead;\n if (this.bitOffset === 8) {\n this.byteOffset++;\n this.bitOffset = 0;\n }\n }\n return result;\n }\n};\n\n// lib/types/jxl-stream.ts\nfunction calculateImageDimension(reader, isSmallImage) {\n if (isSmallImage) {\n return 8 * (1 + reader.getBits(5));\n }\n const sizeClass = reader.getBits(2);\n const extraBits = [9, 13, 18, 30][sizeClass];\n return 1 + reader.getBits(extraBits);\n}\nfunction calculateImageWidth(reader, isSmallImage, widthMode, height) {\n if (isSmallImage && widthMode === 0) {\n return 8 * (1 + reader.getBits(5));\n }\n if (widthMode === 0) {\n return calculateImageDimension(reader, false);\n }\n const aspectRatios = [1, 1.2, 4 / 3, 1.5, 16 / 9, 5 / 4, 2];\n return Math.floor(height * aspectRatios[widthMode - 1]);\n}\nvar JXLStream = {\n validate: (input) => {\n return toHexString(input, 0, 2) === \"ff0a\";\n },\n calculate(input) {\n const reader = new BitReader(input, \"little-endian\");\n const isSmallImage = reader.getBits(1) === 1;\n const height = calculateImageDimension(reader, isSmallImage);\n const widthMode = reader.getBits(3);\n const width = calculateImageWidth(reader, isSmallImage, widthMode, height);\n return { width, height };\n }\n};\n\n// lib/types/jxl.ts\nfunction extractCodestream(input) {\n const jxlcBox = findBox(input, \"jxlc\", 0);\n if (jxlcBox) {\n return input.slice(jxlcBox.offset + 8, jxlcBox.offset + jxlcBox.size);\n }\n const partialStreams = extractPartialStreams(input);\n if (partialStreams.length > 0) {\n return concatenateCodestreams(partialStreams);\n }\n return void 0;\n}\nfunction extractPartialStreams(input) {\n const partialStreams = [];\n let offset = 0;\n while (offset < input.length) {\n const jxlpBox = findBox(input, \"jxlp\", offset);\n if (!jxlpBox) break;\n partialStreams.push(\n input.slice(jxlpBox.offset + 12, jxlpBox.offset + jxlpBox.size)\n );\n offset = jxlpBox.offset + jxlpBox.size;\n }\n return partialStreams;\n}\nfunction concatenateCodestreams(partialCodestreams) {\n const totalLength = partialCodestreams.reduce(\n (acc, curr) => acc + curr.length,\n 0\n );\n const codestream = new Uint8Array(totalLength);\n let position = 0;\n for (const partial of partialCodestreams) {\n codestream.set(partial, position);\n position += partial.length;\n }\n return codestream;\n}\nvar JXL = {\n validate: (input) => {\n const boxType = toUTF8String(input, 4, 8);\n if (boxType !== \"JXL \") return false;\n const ftypBox = findBox(input, \"ftyp\", 0);\n if (!ftypBox) return false;\n const brand = toUTF8String(input, ftypBox.offset + 8, ftypBox.offset + 12);\n return brand === \"jxl \";\n },\n calculate(input) {\n const codestream = extractCodestream(input);\n if (codestream) return JXLStream.calculate(codestream);\n throw new Error(\"No codestream found in JXL container\");\n }\n};\n\n// lib/types/ktx.ts\nvar KTX = {\n validate: (input) => {\n const signature = toUTF8String(input, 1, 7);\n return [\"KTX 11\", \"KTX 20\"].includes(signature);\n },\n calculate: (input) => {\n const type = input[5] === 49 ? \"ktx\" : \"ktx2\";\n const offset = type === \"ktx\" ? 36 : 20;\n return {\n height: readUInt32LE(input, offset + 4),\n width: readUInt32LE(input, offset),\n type\n };\n }\n};\n\n// lib/types/png.ts\nvar pngSignature = \"PNG\\r\\n\u001a\\n\";\nvar pngImageHeaderChunkName = \"IHDR\";\nvar pngFriedChunkName = \"CgBI\";\nvar PNG = {\n validate(input) {\n if (pngSignature === toUTF8String(input, 1, 8)) {\n let chunkName = toUTF8String(input, 12, 16);\n if (chunkName === pngFriedChunkName) {\n chunkName = toUTF8String(input, 28, 32);\n }\n if (chunkName !== pngImageHeaderChunkName) {\n throw new TypeError(\"Invalid PNG\");\n }\n return true;\n }\n return false;\n },\n calculate(input) {\n if (toUTF8String(input, 12, 16) === pngFriedChunkName) {\n return {\n height: readUInt32BE(input, 36),\n width: readUInt32BE(input, 32)\n };\n }\n return {\n height: readUInt32BE(input, 20),\n width: readUInt32BE(input, 16)\n };\n }\n};\n\n// lib/types/pnm.ts\nvar PNMTypes = {\n P1: \"pbm/ascii\",\n P2: \"pgm/ascii\",\n P3: \"ppm/ascii\",\n P4: \"pbm\",\n P5: \"pgm\",\n P6: \"ppm\",\n P7: \"pam\",\n PF: \"pfm\"\n};\nvar handlers = {\n default: (lines) => {\n let dimensions = [];\n while (lines.length > 0) {\n const line = lines.shift();\n if (line[0] === \"#\") {\n continue;\n }\n dimensions = line.split(\" \");\n break;\n }\n if (dimensions.length === 2) {\n return {\n height: Number.parseInt(dimensions[1], 10),\n width: Number.parseInt(dimensions[0], 10)\n };\n }\n throw new TypeError(\"Invalid PNM\");\n },\n pam: (lines) => {\n const size = {};\n while (lines.length > 0) {\n const line = lines.shift();\n if (line.length > 16 || line.charCodeAt(0) > 128) {\n continue;\n }\n const [key, value] = line.split(\" \");\n if (key && value) {\n size[key.toLowerCase()] = Number.parseInt(value, 10);\n }\n if (size.height && size.width) {\n break;\n }\n }\n if (size.height && size.width) {\n return {\n height: size.height,\n width: size.width\n };\n }\n throw new TypeError(\"Invalid PAM\");\n }\n};\nvar PNM = {\n validate: (input) => toUTF8String(input, 0, 2) in PNMTypes,\n calculate(input) {\n const signature = toUTF8String(input, 0, 2);\n const type = PNMTypes[signature];\n const lines = toUTF8String(input, 3).split(/[\\r\\n]+/);\n const handler = handlers[type] || handlers.default;\n return handler(lines);\n }\n};\n\n// lib/types/psd.ts\nvar PSD = {\n validate: (input) => toUTF8String(input, 0, 4) === \"8BPS\",\n calculate: (input) => ({\n height: readUInt32BE(input, 14),\n width: readUInt32BE(input, 18)\n })\n};\n\n// lib/types/svg.ts\nvar svgReg = /<svg\\s([^>\"']|\"[^\"]*\"|'[^']*')*>/;\nvar extractorRegExps = {\n height: /\\sheight=(['\"])([^%]+?)\\1/,\n root: svgReg,\n viewbox: /\\sviewBox=(['\"])(.+?)\\1/i,\n width: /\\swidth=(['\"])([^%]+?)\\1/\n};\nvar INCH_CM = 2.54;\nvar units = {\n in: 96,\n cm: 96 / INCH_CM,\n em: 16,\n ex: 8,\n m: 96 / INCH_CM * 100,\n mm: 96 / INCH_CM / 10,\n pc: 96 / 72 / 12,\n pt: 96 / 72,\n px: 1\n};\nvar unitsReg = new RegExp(\n `^([0-9.]+(?:e\\\\d+)?)(${Object.keys(units).join(\"|\")})?$`\n);\nfunction parseLength(len) {\n const m = unitsReg.exec(len);\n if (!m) {\n return void 0;\n }\n return Math.round(Number(m[1]) * (units[m[2]] || 1));\n}\nfunction parseViewbox(viewbox) {\n const bounds = viewbox.split(\" \");\n return {\n height: parseLength(bounds[3]),\n width: parseLength(bounds[2])\n };\n}\nfunction parseAttributes(root) {\n const width = root.match(extractorRegExps.width);\n const height = root.match(extractorRegExps.height);\n const viewbox = root.match(extractorRegExps.viewbox);\n return {\n height: height && parseLength(height[2]),\n viewbox: viewbox && parseViewbox(viewbox[2]),\n width: width && parseLength(width[2])\n };\n}\nfunction calculateByDimensions(attrs) {\n return {\n height: attrs.height,\n width: attrs.width\n };\n}\nfunction calculateByViewbox(attrs, viewbox) {\n const ratio = viewbox.width / viewbox.height;\n if (attrs.width) {\n return {\n height: Math.floor(attrs.width / ratio),\n width: attrs.width\n };\n }\n if (attrs.height) {\n return {\n height: attrs.height,\n width: Math.floor(attrs.height * ratio)\n };\n }\n return {\n height: viewbox.height,\n width: viewbox.width\n };\n}\nvar SVG = {\n // Scan only the first kilo-byte to speed up the check on larger files\n validate: (input) => svgReg.test(toUTF8String(input, 0, 1e3)),\n calculate(input) {\n const root = toUTF8String(input).match(extractorRegExps.root);\n if (root) {\n const attrs = parseAttributes(root[0]);\n if (attrs.width && attrs.height) {\n return calculateByDimensions(attrs);\n }\n if (attrs.viewbox) {\n return calculateByViewbox(attrs, attrs.viewbox);\n }\n }\n throw new TypeError(\"Invalid SVG\");\n }\n};\n\n// lib/types/tga.ts\nvar TGA = {\n validate(input) {\n return readUInt16LE(input, 0) === 0 && readUInt16LE(input, 4) === 0;\n },\n calculate(input) {\n return {\n height: readUInt16LE(input, 14),\n width: readUInt16LE(input, 12)\n };\n }\n};\n\n// lib/types/tiff.ts\nvar CONSTANTS = {\n TAG: {\n WIDTH: 256,\n HEIGHT: 257,\n COMPRESSION: 259\n },\n TYPE: {\n SHORT: 3,\n LONG: 4,\n LONG8: 16\n },\n ENTRY_SIZE: {\n STANDARD: 12,\n BIG: 20\n },\n COUNT_SIZE: {\n STANDARD: 2,\n BIG: 8\n }\n};\nfunction readIFD(input, { isBigEndian, isBigTiff }) {\n const ifdOffset = isBigTiff ? Number(readUInt64(input, 8, isBigEndian)) : readUInt(input, 32, 4, isBigEndian);\n const entryCountSize = isBigTiff ? CONSTANTS.COUNT_SIZE.BIG : CONSTANTS.COUNT_SIZE.STANDARD;\n return input.slice(ifdOffset + entryCountSize);\n}\nfunction readTagValue(input, type, offset, isBigEndian) {\n switch (type) {\n case CONSTANTS.TYPE.SHORT:\n return readUInt(input, 16, offset, isBigEndian);\n case CONSTANTS.TYPE.LONG:\n return readUInt(input, 32, offset, isBigEndian);\n case CONSTANTS.TYPE.LONG8: {\n const value = Number(readUInt64(input, offset, isBigEndian));\n if (value > Number.MAX_SAFE_INTEGER) {\n throw new TypeError(\"Value too large\");\n }\n return value;\n }\n default:\n return 0;\n }\n}\nfunction nextTag(input, isBigTiff) {\n const entrySize = isBigTiff ? CONSTANTS.ENTRY_SIZE.BIG : CONSTANTS.ENTRY_SIZE.STANDARD;\n if (input.length > entrySize) {\n return input.slice(entrySize);\n }\n}\nfunction extractTags(input, { isBigEndian, isBigTiff }) {\n const tags = {};\n let temp = input;\n while (temp?.length) {\n const code = readUInt(temp, 16, 0, isBigEndian);\n const type = readUInt(temp, 16, 2, isBigEndian);\n const length = isBigTiff ? Number(readUInt64(temp, 4, isBigEndian)) : readUInt(temp, 32, 4, isBigEndian);\n if (code === 0) break;\n if (length === 1 && (type === CONSTANTS.TYPE.SHORT || type === CONSTANTS.TYPE.LONG || isBigTiff && type === CONSTANTS.TYPE.LONG8)) {\n const valueOffset = isBigTiff ? 12 : 8;\n tags[code] = readTagValue(temp, type, valueOffset, isBigEndian);\n }\n temp = nextTag(temp, isBigTiff);\n }\n return tags;\n}\nfunction determineFormat(input) {\n const signature = toUTF8String(input, 0, 2);\n const version = readUInt(input, 16, 2, signature === \"MM\");\n return {\n isBigEndian: signature === \"MM\",\n isBigTiff: version === 43\n };\n}\nfunction validateBigTIFFHeader(input, isBigEndian) {\n const byteSize = readUInt(input, 16, 4, isBigEndian);\n const reserved = readUInt(input, 16, 6, isBigEndian);\n if (byteSize !== 8 || reserved !== 0) {\n throw new TypeError(\"Invalid BigTIFF header\");\n }\n}\nvar signatures = /* @__PURE__ */ new Set([\n \"49492a00\",\n // Little Endian\n \"4d4d002a\",\n // Big Endian\n \"49492b00\",\n // BigTIFF Little Endian\n \"4d4d002b\"\n // BigTIFF Big Endian\n]);\nvar TIFF = {\n validate: (input) => {\n const signature = toHexString(input, 0, 4);\n return signatures.has(signature);\n },\n calculate(input) {\n const format = determineFormat(input);\n if (format.isBigTiff) {\n validateBigTIFFHeader(input, format.isBigEndian);\n }\n const ifdBuffer = readIFD(input, format);\n const tags = extractTags(ifdBuffer, format);\n const info = {\n height: tags[CONSTANTS.TAG.HEIGHT],\n width: tags[CONSTANTS.TAG.WIDTH],\n type: format.isBigTiff ? \"bigtiff\" : \"tiff\"\n };\n if (tags[CONSTANTS.TAG.COMPRESSION]) {\n info.compression = tags[CONSTANTS.TAG.COMPRESSION];\n }\n if (!info.width || !info.height) {\n throw new TypeError(\"Invalid Tiff. Missing tags\");\n }\n return info;\n }\n};\n\n// lib/types/webp.ts\nfunction calculateExtended(input) {\n return {\n height: 1 + readUInt24LE(input, 7),\n width: 1 + readUInt24LE(input, 4)\n };\n}\nfunction calculateLossless(input) {\n return {\n height: 1 + ((input[4] & 15) << 10 | input[3] << 2 | (input[2] & 192) >> 6),\n width: 1 + ((input[2] & 63) << 8 | input[1])\n };\n}\nfunction calculateLossy(input) {\n return {\n height: readInt16LE(input, 8) & 16383,\n width: readInt16LE(input, 6) & 16383\n };\n}\nvar WEBP = {\n validate(input) {\n const riffHeader = \"RIFF\" === toUTF8String(input, 0, 4);\n const webpHeader = \"WEBP\" === toUTF8String(input, 8, 12);\n const vp8Header = \"VP8\" === toUTF8String(input, 12, 15);\n return riffHeader && webpHeader && vp8Header;\n },\n calculate(_input) {\n const chunkHeader = toUTF8String(_input, 12, 16);\n const input = _input.slice(20, 30);\n if (chunkHeader === \"VP8X\") {\n const extendedHeader = input[0];\n const validStart = (extendedHeader & 192) === 0;\n const validEnd = (extendedHeader & 1) === 0;\n if (validStart && validEnd) {\n return calculateExtended(input);\n }\n throw new TypeError(\"Invalid WebP\");\n }\n if (chunkHeader === \"VP8 \" && input[0] !== 47) {\n return calculateLossy(input);\n }\n const signature = toHexString(input, 3, 6);\n if (chunkHeader === \"VP8L\" && signature !== \"9d012a\") {\n return calculateLossless(input);\n }\n throw new TypeError(\"Invalid WebP\");\n }\n};\n\n// lib/types/index.ts\nvar typeHandlers = /* @__PURE__ */ new Map([\n [\"bmp\", BMP],\n [\"cur\", CUR],\n [\"dds\", DDS],\n [\"gif\", GIF],\n [\"heif\", HEIF],\n [\"icns\", ICNS],\n [\"ico\", ICO],\n [\"j2c\", J2C],\n [\"jp2\", JP2],\n [\"jpg\", JPG],\n [\"jxl\", JXL],\n [\"jxl-stream\", JXLStream],\n [\"ktx\", KTX],\n [\"png\", PNG],\n [\"pnm\", PNM],\n [\"psd\", PSD],\n [\"svg\", SVG],\n [\"tga\", TGA],\n [\"tiff\", TIFF],\n [\"webp\", WEBP]\n]);\nvar types = Array.from(typeHandlers.keys());\n\n// lib/detector.ts\nvar firstBytes = /* @__PURE__ */ new Map([\n [0, \"heif\"],\n [56, \"psd\"],\n [66, \"bmp\"],\n [68, \"dds\"],\n [71, \"gif\"],\n [73, \"tiff\"],\n [77, \"tiff\"],\n [82, \"webp\"],\n [105, \"icns\"],\n [137, \"png\"],\n [255, \"jpg\"]\n]);\nfunction detector(input) {\n const byte = input[0];\n const type = firstBytes.get(byte);\n if (type && typeHandlers.get(type).validate(input)) {\n return type;\n }\n return types.find((type2) => typeHandlers.get(type2).validate(input));\n}\n\n// lib/lookup.ts\nvar globalOptions = {\n disabledTypes: []\n};\nfunction imageSize(input) {\n const type = detector(input);\n if (typeof type !== \"undefined\") {\n if (globalOptions.disabledTypes.indexOf(type) > -1) {\n throw new TypeError(`disabled file type: ${type}`);\n }\n const size = typeHandlers.get(type).calculate(input);\n if (size !== void 0) {\n size.type = size.type ?? type;\n if (size.images && size.images.length > 1) {\n const largestImage = size.images.reduce((largest, current) => {\n return current.width * current.height > largest.width * largest.height ? current : largest;\n }, size.images[0]);\n size.width = largestImage.width;\n size.height = largestImage.height;\n }\n return size;\n }\n }\n throw new TypeError(`unsupported file type: ${type}`);\n}\nvar disableTypes = (types2) => {\n globalOptions.disabledTypes = types2;\n};\n\nexport { imageSize as default, disableTypes, imageSize, types };\n",null,null,null,null],"names":["sizeOf"],"mappings":"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","x_google_ignoreList":[9]}
@@ -0,0 +1,78 @@
1
+ /**
2
+ * Converter options for converting various file formats to Markdown
3
+ */
4
+ export interface ConverterOptions {
5
+ /** Name of the file (helpful for buffer inputs) */
6
+ fileName?: string;
7
+ /** Force a specific file extension for processing */
8
+ forceExtension?: string;
9
+ /** Original URL (used for web content like YouTube or Bing search) */
10
+ url?: string;
11
+ }
12
+ /**
13
+ * Input type for converter - can be file path, base64 string, or buffer
14
+ */
15
+ export type ConverterInput = string | Buffer;
16
+ /**
17
+ * Supported file extensions
18
+ */
19
+ export declare enum FileExtension {
20
+ PDF = ".pdf",
21
+ DOCX = ".docx",
22
+ HTML = ".html",
23
+ HTM = ".htm",
24
+ TXT = ".txt",
25
+ IPYNB = ".ipynb",
26
+ XML = ".xml",
27
+ RSS = ".rss",
28
+ ATOM = ".atom",
29
+ XLSX = ".xlsx",
30
+ XLS = ".xls",
31
+ CSV = ".csv",
32
+ MP3 = ".mp3",
33
+ WAV = ".wav",
34
+ PPTX = ".pptx",
35
+ ZIP = ".zip",
36
+ JPG = ".jpg",
37
+ JPEG = ".jpeg",
38
+ PNG = ".png",
39
+ GIF = ".gif"
40
+ }
41
+ /**
42
+ * Turndown service options for HTML to Markdown conversion
43
+ */
44
+ export interface TurndownOptions {
45
+ headingStyle: 'setext' | 'atx';
46
+ hr: string;
47
+ bulletListMarker: string;
48
+ codeBlockStyle: 'indented' | 'fenced';
49
+ emDelimiter: string;
50
+ keepHeaderLevels?: boolean;
51
+ }
52
+ /**
53
+ * Image metadata interface
54
+ */
55
+ export interface ImageMetadata {
56
+ width?: number;
57
+ height?: number;
58
+ format?: string;
59
+ size?: number;
60
+ }
61
+ /**
62
+ * Audio metadata interface
63
+ */
64
+ export interface AudioMetadata {
65
+ title?: string;
66
+ artist?: string;
67
+ album?: string;
68
+ duration?: number;
69
+ bitrate?: number;
70
+ }
71
+ /**
72
+ * Result of file type detection
73
+ */
74
+ export interface FileTypeResult {
75
+ ext: string;
76
+ mime: string;
77
+ }
78
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,mDAAmD;IACnD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,qDAAqD;IACrD,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,sEAAsE;IACtE,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,GAAG,MAAM,CAAC;AAE7C;;GAEG;AACH,oBAAY,aAAa;IACvB,GAAG,SAAS;IACZ,IAAI,UAAU;IACd,IAAI,UAAU;IACd,GAAG,SAAS;IACZ,GAAG,SAAS;IACZ,KAAK,WAAW;IAChB,GAAG,SAAS;IACZ,GAAG,SAAS;IACZ,IAAI,UAAU;IACd,IAAI,UAAU;IACd,GAAG,SAAS;IACZ,GAAG,SAAS;IACZ,GAAG,SAAS;IACZ,GAAG,SAAS;IACZ,IAAI,UAAU;IACd,GAAG,SAAS;IACZ,GAAG,SAAS;IACZ,IAAI,UAAU;IACd,GAAG,SAAS;IACZ,GAAG,SAAS;CACb;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,YAAY,EAAE,QAAQ,GAAG,KAAK,CAAC;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,UAAU,GAAG,QAAQ,CAAC;IACtC,WAAW,EAAE,MAAM,CAAC;IACpB,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;CACd"}
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Supported file extensions
3
+ */
4
+ export var FileExtension;
5
+ (function (FileExtension) {
6
+ FileExtension["PDF"] = ".pdf";
7
+ FileExtension["DOCX"] = ".docx";
8
+ FileExtension["HTML"] = ".html";
9
+ FileExtension["HTM"] = ".htm";
10
+ FileExtension["TXT"] = ".txt";
11
+ FileExtension["IPYNB"] = ".ipynb";
12
+ FileExtension["XML"] = ".xml";
13
+ FileExtension["RSS"] = ".rss";
14
+ FileExtension["ATOM"] = ".atom";
15
+ FileExtension["XLSX"] = ".xlsx";
16
+ FileExtension["XLS"] = ".xls";
17
+ FileExtension["CSV"] = ".csv";
18
+ FileExtension["MP3"] = ".mp3";
19
+ FileExtension["WAV"] = ".wav";
20
+ FileExtension["PPTX"] = ".pptx";
21
+ FileExtension["ZIP"] = ".zip";
22
+ FileExtension["JPG"] = ".jpg";
23
+ FileExtension["JPEG"] = ".jpeg";
24
+ FileExtension["PNG"] = ".png";
25
+ FileExtension["GIF"] = ".gif";
26
+ })(FileExtension || (FileExtension = {}));
27
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAiBA;;GAEG;AACH,MAAM,CAAN,IAAY,aAqBX;AArBD,WAAY,aAAa;IACvB,6BAAY,CAAA;IACZ,+BAAc,CAAA;IACd,+BAAc,CAAA;IACd,6BAAY,CAAA;IACZ,6BAAY,CAAA;IACZ,iCAAgB,CAAA;IAChB,6BAAY,CAAA;IACZ,6BAAY,CAAA;IACZ,+BAAc,CAAA;IACd,+BAAc,CAAA;IACd,6BAAY,CAAA;IACZ,6BAAY,CAAA;IACZ,6BAAY,CAAA;IACZ,6BAAY,CAAA;IACZ,+BAAc,CAAA;IACd,6BAAY,CAAA;IACZ,6BAAY,CAAA;IACZ,+BAAc,CAAA;IACd,6BAAY,CAAA;IACZ,6BAAY,CAAA;AACd,CAAC,EArBW,aAAa,KAAb,aAAa,QAqBxB"}
@@ -0,0 +1,12 @@
1
+ import type { ConverterInput, ConverterOptions } from '../types/index.js';
2
+ /**
3
+ * Detects and returns file extension and buffer from various input types
4
+ * @param input - File path, base64 string, or buffer
5
+ * @param options - Converter options
6
+ * @returns Object containing buffer and extension
7
+ */
8
+ export declare function detectFileType(input: ConverterInput, options?: ConverterOptions): Promise<{
9
+ buffer: Buffer;
10
+ extension: string;
11
+ }>;
12
+ //# sourceMappingURL=fileDetection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fileDetection.d.ts","sourceRoot":"","sources":["../../src/utils/fileDetection.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,gBAAgB,EAAkB,MAAM,mBAAmB,CAAC;AAE1F;;;;;GAKG;AACH,wBAAsB,cAAc,CAClC,KAAK,EAAE,cAAc,EACrB,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,CAAC,CAmEhD"}
@@ -0,0 +1,75 @@
1
+ import { fromBuffer } from 'file-type';
2
+ import { extension, lookup } from 'mime-types';
3
+ import { existsSync, readFileSync } from 'fs';
4
+ import { extname } from 'path';
5
+ /**
6
+ * Detects and returns file extension and buffer from various input types
7
+ * @param input - File path, base64 string, or buffer
8
+ * @param options - Converter options
9
+ * @returns Object containing buffer and extension
10
+ */
11
+ export async function detectFileType(input, options = {}) {
12
+ let fileBuffer;
13
+ let ext = null;
14
+ if (typeof input === 'string') {
15
+ // Handle base64 or data URL
16
+ if (input.startsWith('data:') || /^[A-Za-z0-9+/]+={0,2}$/.test(input)) {
17
+ try {
18
+ const base64Data = input.split('base64,').pop() || input;
19
+ fileBuffer = Buffer.from(base64Data, 'base64');
20
+ const mimeType = input.startsWith('data:')
21
+ ? input.split(';')[0].split(':')[1]
22
+ : lookup(options.fileName || '');
23
+ ext = mimeType ? '.' + extension(mimeType) : null;
24
+ if (!ext) {
25
+ const fType = await fromBuffer(fileBuffer);
26
+ if (fType) {
27
+ ext = '.' + fType.ext;
28
+ }
29
+ }
30
+ }
31
+ catch (err) {
32
+ throw new Error(`Failed to convert base64: ${err.message}`);
33
+ }
34
+ }
35
+ else {
36
+ // Handle file path
37
+ if (!existsSync(input)) {
38
+ throw new Error('File not found: ' + input);
39
+ }
40
+ fileBuffer = readFileSync(input);
41
+ ext = options.forceExtension
42
+ ? options.forceExtension.toLowerCase()
43
+ : extname(input).toLowerCase();
44
+ if (!ext || ext === '') {
45
+ const fType = await fromBuffer(fileBuffer);
46
+ if (fType) {
47
+ ext = '.' + fType.ext;
48
+ }
49
+ else {
50
+ ext = '.txt';
51
+ }
52
+ }
53
+ }
54
+ }
55
+ else if (Buffer.isBuffer(input)) {
56
+ fileBuffer = input;
57
+ ext = options.forceExtension ? options.forceExtension.toLowerCase() : null;
58
+ if (!ext || ext === '') {
59
+ const fType = await fromBuffer(fileBuffer);
60
+ if (fType) {
61
+ ext = '.' + fType.ext;
62
+ }
63
+ else {
64
+ ext = '.txt';
65
+ }
66
+ }
67
+ }
68
+ else {
69
+ throw new Error('Invalid input format. Must be a string (file path or base64) or Buffer');
70
+ }
71
+ if (!ext)
72
+ ext = '.txt';
73
+ return { buffer: fileBuffer, extension: ext };
74
+ }
75
+ //# sourceMappingURL=fileDetection.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fileDetection.js","sourceRoot":"","sources":["../../src/utils/fileDetection.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Formats markdown text by applying consistent styling and spacing
3
+ * @param text - The markdown text to format
4
+ * @returns Formatted markdown string
5
+ */
6
+ export declare function formatMarkdown(text: string): string;
7
+ /**
8
+ * Converts a 2D array to a markdown table
9
+ * @param data - 2D array where first row is headers
10
+ * @returns Markdown table string
11
+ */
12
+ export declare function arrayToMarkdownTable(data: any[][]): string;
13
+ //# sourceMappingURL=markdown.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"markdown.d.ts","sourceRoot":"","sources":["../../src/utils/markdown.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CA2CnD;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,GAAG,MAAM,CAgB1D"}
@@ -0,0 +1,60 @@
1
+ /**
2
+ * Formats markdown text by applying consistent styling and spacing
3
+ * @param text - The markdown text to format
4
+ * @returns Formatted markdown string
5
+ */
6
+ export function formatMarkdown(text) {
7
+ const lines = text.split('\n').map((line) => line.trim());
8
+ const formattedLines = [];
9
+ for (let i = 0; i < lines.length; i++) {
10
+ let line = lines[i];
11
+ if (!line)
12
+ continue;
13
+ // Convert bold text to heading
14
+ if (line.startsWith('**') && line.endsWith('**')) {
15
+ line = '## ' + line.replace(/^\*\*|\*\*$/g, '');
16
+ }
17
+ // Convert potential titles to headings
18
+ else if (/^[A-Z0-9][^.!?]{2,}[.!?]?$/.test(line) && line.length < 100) {
19
+ line = '## ' + line;
20
+ }
21
+ // Normalize list markers
22
+ if (/^[•\-\*]\s/.test(line)) {
23
+ line = '* ' + line.replace(/^[•\-\*]\s+/, '');
24
+ }
25
+ // Merge continuous non-heading, non-list lines
26
+ if (!line.startsWith('#') && !line.startsWith('*')) {
27
+ if (formattedLines.length > 0 &&
28
+ !formattedLines[formattedLines.length - 1].startsWith('#') &&
29
+ !formattedLines[formattedLines.length - 1].startsWith('*')) {
30
+ formattedLines[formattedLines.length - 1] += ' ' + line;
31
+ continue;
32
+ }
33
+ }
34
+ formattedLines.push(line);
35
+ }
36
+ return formattedLines
37
+ .join('\n\n')
38
+ .replace(/\n{3,}/g, '\n\n')
39
+ .replace(/\s+$/gm, '')
40
+ .trim();
41
+ }
42
+ /**
43
+ * Converts a 2D array to a markdown table
44
+ * @param data - 2D array where first row is headers
45
+ * @returns Markdown table string
46
+ */
47
+ export function arrayToMarkdownTable(data) {
48
+ if (!data || data.length === 0) {
49
+ return '';
50
+ }
51
+ const header = data[0];
52
+ const rows = data.slice(1);
53
+ let md = '| ' + header.join(' | ') + ' |\n';
54
+ md += '| ' + header.map(() => '---').join(' | ') + ' |\n';
55
+ for (const row of rows) {
56
+ md += '| ' + row.join(' | ') + ' |\n';
57
+ }
58
+ return md;
59
+ }
60
+ //# sourceMappingURL=markdown.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"markdown.js","sourceRoot":"","sources":["../../src/utils/markdown.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "@cognipeer/to-markdown",
3
+ "version": "2.0.1",
4
+ "description": "A versatile utility library for converting various file formats to Markdown. Now with TypeScript support!",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "type": "module",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ }
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "README.md",
24
+ "LICENSE"
25
+ ],
26
+ "scripts": {
27
+ "build": "npm run clean && npm run build:ts && npm run build:rollup",
28
+ "build:ts": "tsc",
29
+ "build:rollup": "rollup -c",
30
+ "clean": "rm -rf dist",
31
+ "dev": "tsc --watch",
32
+ "prepublishOnly": "npm run build",
33
+ "test": "echo \"Error: no test specified\" && exit 1",
34
+ "docs:dev": "cd docs && bundle exec jekyll serve",
35
+ "docs:build": "cd docs && bundle exec jekyll build",
36
+ "publish-private": "npm publish",
37
+ "publish-public": "npm publish --access public"
38
+ },
39
+ "keywords": [
40
+ "markdown",
41
+ "converter",
42
+ "pdf",
43
+ "docx",
44
+ "html",
45
+ "excel",
46
+ "csv",
47
+ "jupyter",
48
+ "to-markdown",
49
+ "file-converter",
50
+ "typescript"
51
+ ],
52
+ "author": "Cognipeer",
53
+ "license": "MIT",
54
+ "repository": {
55
+ "type": "git",
56
+ "url": "https://github.com/Cognipeer/to-markdown.git"
57
+ },
58
+ "bugs": {
59
+ "url": "https://github.com/Cognipeer/to-markdown/issues"
60
+ },
61
+ "homepage": "https://cognipeer.github.io/to-markdown",
62
+ "dependencies": {
63
+ "@opendocsg/pdf2md": "^0.2.1",
64
+ "adm-zip": "^0.5.16",
65
+ "cheerio": "^1.0.0",
66
+ "file-type": "^16.5.4",
67
+ "image-size": "^2.0.2",
68
+ "mammoth": "^1.8.0",
69
+ "mime-types": "^2.1.35",
70
+ "music-metadata": "^11.0.5",
71
+ "papaparse": "^5.5.2",
72
+ "turndown": "^7.2.0",
73
+ "xlsx": "^0.18.5",
74
+ "xml2js": "^0.6.2"
75
+ },
76
+ "devDependencies": {
77
+ "@rollup/plugin-commonjs": "^28.0.3",
78
+ "@rollup/plugin-json": "^6.1.0",
79
+ "@rollup/plugin-node-resolve": "^16.0.1",
80
+ "@rollup/plugin-typescript": "^12.1.2",
81
+ "@types/adm-zip": "^0.5.5",
82
+ "@types/image-size": "^0.7.0",
83
+ "@types/mime-types": "^2.1.4",
84
+ "@types/node": "^22.10.5",
85
+ "@types/papaparse": "^5.3.15",
86
+ "@types/turndown": "^5.0.5",
87
+ "@types/xml2js": "^0.4.14",
88
+ "rollup": "^4.39.0",
89
+ "tslib": "^2.8.1",
90
+ "tsx": "^4.19.2",
91
+ "typescript": "^5.7.2"
92
+ },
93
+ "engines": {
94
+ "node": ">=16.0.0"
95
+ }
96
+ }
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Johannes Zillmann
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.