node-red-contrib-tak-registration 0.6.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2932) hide show
  1. package/README.md +21 -3
  2. package/icons/tak.png +0 -0
  3. package/node_modules/@ampproject/remapping/LICENSE +202 -0
  4. package/node_modules/@ampproject/remapping/README.md +218 -0
  5. package/node_modules/@ampproject/remapping/dist/remapping.mjs +191 -0
  6. package/node_modules/@ampproject/remapping/dist/remapping.mjs.map +1 -0
  7. package/node_modules/@ampproject/remapping/dist/remapping.umd.js +196 -0
  8. package/node_modules/@ampproject/remapping/dist/remapping.umd.js.map +1 -0
  9. package/node_modules/@ampproject/remapping/dist/types/build-source-map-tree.d.ts +14 -0
  10. package/node_modules/@ampproject/remapping/dist/types/remapping.d.ts +19 -0
  11. package/node_modules/@ampproject/remapping/dist/types/source-map-tree.d.ts +42 -0
  12. package/node_modules/@ampproject/remapping/dist/types/source-map.d.ts +17 -0
  13. package/node_modules/@ampproject/remapping/dist/types/types.d.ts +14 -0
  14. package/node_modules/@ampproject/remapping/package.json +75 -0
  15. package/node_modules/@babel/code-frame/LICENSE +22 -0
  16. package/node_modules/@babel/code-frame/README.md +19 -0
  17. package/node_modules/@babel/code-frame/lib/index.js +142 -0
  18. package/node_modules/@babel/code-frame/lib/index.js.map +1 -0
  19. package/node_modules/@babel/code-frame/package.json +28 -0
  20. package/node_modules/@babel/compat-data/LICENSE +22 -0
  21. package/node_modules/@babel/compat-data/README.md +19 -0
  22. package/node_modules/@babel/compat-data/corejs2-built-ins.js +2 -0
  23. package/node_modules/@babel/compat-data/corejs3-shipped-proposals.js +2 -0
  24. package/node_modules/@babel/compat-data/data/corejs2-built-ins.json +2081 -0
  25. package/node_modules/@babel/compat-data/data/corejs3-shipped-proposals.json +5 -0
  26. package/node_modules/@babel/compat-data/data/native-modules.json +18 -0
  27. package/node_modules/@babel/compat-data/data/overlapping-plugins.json +25 -0
  28. package/node_modules/@babel/compat-data/data/plugin-bugfixes.json +201 -0
  29. package/node_modules/@babel/compat-data/data/plugins.json +763 -0
  30. package/node_modules/@babel/compat-data/native-modules.js +1 -0
  31. package/node_modules/@babel/compat-data/overlapping-plugins.js +1 -0
  32. package/node_modules/@babel/compat-data/package.json +40 -0
  33. package/node_modules/@babel/compat-data/plugin-bugfixes.js +1 -0
  34. package/node_modules/@babel/compat-data/plugins.js +1 -0
  35. package/node_modules/@babel/core/LICENSE +22 -0
  36. package/node_modules/@babel/core/README.md +19 -0
  37. package/node_modules/@babel/core/cjs-proxy.cjs +51 -0
  38. package/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
  39. package/node_modules/@babel/core/lib/config/cache-contexts.js.map +1 -0
  40. package/node_modules/@babel/core/lib/config/caching.js +261 -0
  41. package/node_modules/@babel/core/lib/config/caching.js.map +1 -0
  42. package/node_modules/@babel/core/lib/config/config-chain.js +467 -0
  43. package/node_modules/@babel/core/lib/config/config-chain.js.map +1 -0
  44. package/node_modules/@babel/core/lib/config/config-descriptors.js +189 -0
  45. package/node_modules/@babel/core/lib/config/config-descriptors.js.map +1 -0
  46. package/node_modules/@babel/core/lib/config/files/configuration.js +284 -0
  47. package/node_modules/@babel/core/lib/config/files/configuration.js.map +1 -0
  48. package/node_modules/@babel/core/lib/config/files/import-meta-resolve.js +17 -0
  49. package/node_modules/@babel/core/lib/config/files/import-meta-resolve.js.map +1 -0
  50. package/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
  51. package/node_modules/@babel/core/lib/config/files/import.cjs.map +1 -0
  52. package/node_modules/@babel/core/lib/config/files/index-browser.js +59 -0
  53. package/node_modules/@babel/core/lib/config/files/index-browser.js.map +1 -0
  54. package/node_modules/@babel/core/lib/config/files/index.js +78 -0
  55. package/node_modules/@babel/core/lib/config/files/index.js.map +1 -0
  56. package/node_modules/@babel/core/lib/config/files/module-types.js +155 -0
  57. package/node_modules/@babel/core/lib/config/files/module-types.js.map +1 -0
  58. package/node_modules/@babel/core/lib/config/files/package.js +61 -0
  59. package/node_modules/@babel/core/lib/config/files/package.js.map +1 -0
  60. package/node_modules/@babel/core/lib/config/files/plugins.js +206 -0
  61. package/node_modules/@babel/core/lib/config/files/plugins.js.map +1 -0
  62. package/node_modules/@babel/core/lib/config/files/types.js +3 -0
  63. package/node_modules/@babel/core/lib/config/files/types.js.map +1 -0
  64. package/node_modules/@babel/core/lib/config/files/utils.js +36 -0
  65. package/node_modules/@babel/core/lib/config/files/utils.js.map +1 -0
  66. package/node_modules/@babel/core/lib/config/full.js +311 -0
  67. package/node_modules/@babel/core/lib/config/full.js.map +1 -0
  68. package/node_modules/@babel/core/lib/config/helpers/config-api.js +85 -0
  69. package/node_modules/@babel/core/lib/config/helpers/config-api.js.map +1 -0
  70. package/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
  71. package/node_modules/@babel/core/lib/config/helpers/deep-array.js.map +1 -0
  72. package/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
  73. package/node_modules/@babel/core/lib/config/helpers/environment.js.map +1 -0
  74. package/node_modules/@babel/core/lib/config/index.js +73 -0
  75. package/node_modules/@babel/core/lib/config/index.js.map +1 -0
  76. package/node_modules/@babel/core/lib/config/item.js +67 -0
  77. package/node_modules/@babel/core/lib/config/item.js.map +1 -0
  78. package/node_modules/@babel/core/lib/config/partial.js +166 -0
  79. package/node_modules/@babel/core/lib/config/partial.js.map +1 -0
  80. package/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
  81. package/node_modules/@babel/core/lib/config/pattern-to-regex.js.map +1 -0
  82. package/node_modules/@babel/core/lib/config/plugin.js +33 -0
  83. package/node_modules/@babel/core/lib/config/plugin.js.map +1 -0
  84. package/node_modules/@babel/core/lib/config/printer.js +114 -0
  85. package/node_modules/@babel/core/lib/config/printer.js.map +1 -0
  86. package/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
  87. package/node_modules/@babel/core/lib/config/resolve-targets-browser.js.map +1 -0
  88. package/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
  89. package/node_modules/@babel/core/lib/config/resolve-targets.js.map +1 -0
  90. package/node_modules/@babel/core/lib/config/util.js +31 -0
  91. package/node_modules/@babel/core/lib/config/util.js.map +1 -0
  92. package/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
  93. package/node_modules/@babel/core/lib/config/validation/option-assertions.js.map +1 -0
  94. package/node_modules/@babel/core/lib/config/validation/options.js +193 -0
  95. package/node_modules/@babel/core/lib/config/validation/options.js.map +1 -0
  96. package/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
  97. package/node_modules/@babel/core/lib/config/validation/plugins.js.map +1 -0
  98. package/node_modules/@babel/core/lib/config/validation/removed.js +69 -0
  99. package/node_modules/@babel/core/lib/config/validation/removed.js.map +1 -0
  100. package/node_modules/@babel/core/lib/errors/config-error.js +18 -0
  101. package/node_modules/@babel/core/lib/errors/config-error.js.map +1 -0
  102. package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
  103. package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js.map +1 -0
  104. package/node_modules/@babel/core/lib/gensync-utils/async.js +93 -0
  105. package/node_modules/@babel/core/lib/gensync-utils/async.js.map +1 -0
  106. package/node_modules/@babel/core/lib/gensync-utils/fs.js +33 -0
  107. package/node_modules/@babel/core/lib/gensync-utils/fs.js.map +1 -0
  108. package/node_modules/@babel/core/lib/gensync-utils/functional.js +33 -0
  109. package/node_modules/@babel/core/lib/gensync-utils/functional.js.map +1 -0
  110. package/node_modules/@babel/core/lib/index.js +245 -0
  111. package/node_modules/@babel/core/lib/index.js.map +1 -0
  112. package/node_modules/@babel/core/lib/parse.js +48 -0
  113. package/node_modules/@babel/core/lib/parse.js.map +1 -0
  114. package/node_modules/@babel/core/lib/parser/index.js +79 -0
  115. package/node_modules/@babel/core/lib/parser/index.js.map +1 -0
  116. package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +329 -0
  117. package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js.map +1 -0
  118. package/node_modules/@babel/core/lib/tools/build-external-helpers.js +143 -0
  119. package/node_modules/@babel/core/lib/tools/build-external-helpers.js.map +1 -0
  120. package/node_modules/@babel/core/lib/transform-ast.js +51 -0
  121. package/node_modules/@babel/core/lib/transform-ast.js.map +1 -0
  122. package/node_modules/@babel/core/lib/transform-file-browser.js +24 -0
  123. package/node_modules/@babel/core/lib/transform-file-browser.js.map +1 -0
  124. package/node_modules/@babel/core/lib/transform-file.js +40 -0
  125. package/node_modules/@babel/core/lib/transform-file.js.map +1 -0
  126. package/node_modules/@babel/core/lib/transform.js +50 -0
  127. package/node_modules/@babel/core/lib/transform.js.map +1 -0
  128. package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +77 -0
  129. package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js.map +1 -0
  130. package/node_modules/@babel/core/lib/transformation/file/file.js +211 -0
  131. package/node_modules/@babel/core/lib/transformation/file/file.js.map +1 -0
  132. package/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
  133. package/node_modules/@babel/core/lib/transformation/file/generate.js.map +1 -0
  134. package/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
  135. package/node_modules/@babel/core/lib/transformation/file/merge-map.js.map +1 -0
  136. package/node_modules/@babel/core/lib/transformation/index.js +99 -0
  137. package/node_modules/@babel/core/lib/transformation/index.js.map +1 -0
  138. package/node_modules/@babel/core/lib/transformation/normalize-file.js +127 -0
  139. package/node_modules/@babel/core/lib/transformation/normalize-file.js.map +1 -0
  140. package/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
  141. package/node_modules/@babel/core/lib/transformation/normalize-opts.js.map +1 -0
  142. package/node_modules/@babel/core/lib/transformation/plugin-pass.js +48 -0
  143. package/node_modules/@babel/core/lib/transformation/plugin-pass.js.map +1 -0
  144. package/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
  145. package/node_modules/@babel/core/lib/transformation/util/clone-deep.js.map +1 -0
  146. package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1012 -0
  147. package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js.map +1 -0
  148. package/node_modules/@babel/core/package.json +82 -0
  149. package/node_modules/@babel/core/src/config/files/index-browser.ts +109 -0
  150. package/node_modules/@babel/core/src/config/files/index.ts +29 -0
  151. package/node_modules/@babel/core/src/config/resolve-targets-browser.ts +40 -0
  152. package/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
  153. package/node_modules/@babel/core/src/transform-file-browser.ts +31 -0
  154. package/node_modules/@babel/core/src/transform-file.ts +55 -0
  155. package/node_modules/@babel/generator/LICENSE +22 -0
  156. package/node_modules/@babel/generator/README.md +19 -0
  157. package/node_modules/@babel/generator/lib/buffer.js +307 -0
  158. package/node_modules/@babel/generator/lib/buffer.js.map +1 -0
  159. package/node_modules/@babel/generator/lib/generators/base.js +92 -0
  160. package/node_modules/@babel/generator/lib/generators/base.js.map +1 -0
  161. package/node_modules/@babel/generator/lib/generators/classes.js +177 -0
  162. package/node_modules/@babel/generator/lib/generators/classes.js.map +1 -0
  163. package/node_modules/@babel/generator/lib/generators/expressions.js +309 -0
  164. package/node_modules/@babel/generator/lib/generators/expressions.js.map +1 -0
  165. package/node_modules/@babel/generator/lib/generators/flow.js +668 -0
  166. package/node_modules/@babel/generator/lib/generators/flow.js.map +1 -0
  167. package/node_modules/@babel/generator/lib/generators/index.js +128 -0
  168. package/node_modules/@babel/generator/lib/generators/index.js.map +1 -0
  169. package/node_modules/@babel/generator/lib/generators/jsx.js +123 -0
  170. package/node_modules/@babel/generator/lib/generators/jsx.js.map +1 -0
  171. package/node_modules/@babel/generator/lib/generators/methods.js +173 -0
  172. package/node_modules/@babel/generator/lib/generators/methods.js.map +1 -0
  173. package/node_modules/@babel/generator/lib/generators/modules.js +254 -0
  174. package/node_modules/@babel/generator/lib/generators/modules.js.map +1 -0
  175. package/node_modules/@babel/generator/lib/generators/statements.js +277 -0
  176. package/node_modules/@babel/generator/lib/generators/statements.js.map +1 -0
  177. package/node_modules/@babel/generator/lib/generators/template-literals.js +30 -0
  178. package/node_modules/@babel/generator/lib/generators/template-literals.js.map +1 -0
  179. package/node_modules/@babel/generator/lib/generators/types.js +220 -0
  180. package/node_modules/@babel/generator/lib/generators/types.js.map +1 -0
  181. package/node_modules/@babel/generator/lib/generators/typescript.js +694 -0
  182. package/node_modules/@babel/generator/lib/generators/typescript.js.map +1 -0
  183. package/node_modules/@babel/generator/lib/index.js +94 -0
  184. package/node_modules/@babel/generator/lib/index.js.map +1 -0
  185. package/node_modules/@babel/generator/lib/node/index.js +78 -0
  186. package/node_modules/@babel/generator/lib/node/index.js.map +1 -0
  187. package/node_modules/@babel/generator/lib/node/parentheses.js +305 -0
  188. package/node_modules/@babel/generator/lib/node/parentheses.js.map +1 -0
  189. package/node_modules/@babel/generator/lib/node/whitespace.js +146 -0
  190. package/node_modules/@babel/generator/lib/node/whitespace.js.map +1 -0
  191. package/node_modules/@babel/generator/lib/printer.js +651 -0
  192. package/node_modules/@babel/generator/lib/printer.js.map +1 -0
  193. package/node_modules/@babel/generator/lib/source-map.js +85 -0
  194. package/node_modules/@babel/generator/lib/source-map.js.map +1 -0
  195. package/node_modules/@babel/generator/package.json +38 -0
  196. package/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
  197. package/node_modules/@babel/helper-compilation-targets/README.md +19 -0
  198. package/node_modules/@babel/helper-compilation-targets/lib/debug.js +28 -0
  199. package/node_modules/@babel/helper-compilation-targets/lib/debug.js.map +1 -0
  200. package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js +67 -0
  201. package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js.map +1 -0
  202. package/node_modules/@babel/helper-compilation-targets/lib/index.js +224 -0
  203. package/node_modules/@babel/helper-compilation-targets/lib/index.js.map +1 -0
  204. package/node_modules/@babel/helper-compilation-targets/lib/options.js +25 -0
  205. package/node_modules/@babel/helper-compilation-targets/lib/options.js.map +1 -0
  206. package/node_modules/@babel/helper-compilation-targets/lib/pretty.js +40 -0
  207. package/node_modules/@babel/helper-compilation-targets/lib/pretty.js.map +1 -0
  208. package/node_modules/@babel/helper-compilation-targets/lib/targets.js +30 -0
  209. package/node_modules/@babel/helper-compilation-targets/lib/targets.js.map +1 -0
  210. package/node_modules/@babel/helper-compilation-targets/lib/utils.js +58 -0
  211. package/node_modules/@babel/helper-compilation-targets/lib/utils.js.map +1 -0
  212. package/node_modules/@babel/helper-compilation-targets/package.json +44 -0
  213. package/node_modules/@babel/helper-environment-visitor/LICENSE +22 -0
  214. package/node_modules/@babel/helper-environment-visitor/README.md +19 -0
  215. package/node_modules/@babel/helper-environment-visitor/lib/index.js +56 -0
  216. package/node_modules/@babel/helper-environment-visitor/lib/index.js.map +1 -0
  217. package/node_modules/@babel/helper-environment-visitor/package.json +29 -0
  218. package/node_modules/@babel/helper-function-name/LICENSE +22 -0
  219. package/node_modules/@babel/helper-function-name/README.md +19 -0
  220. package/node_modules/@babel/helper-function-name/lib/index.js +170 -0
  221. package/node_modules/@babel/helper-function-name/lib/index.js.map +1 -0
  222. package/node_modules/@babel/helper-function-name/package.json +25 -0
  223. package/node_modules/@babel/helper-hoist-variables/LICENSE +22 -0
  224. package/node_modules/@babel/helper-hoist-variables/README.md +19 -0
  225. package/node_modules/@babel/helper-hoist-variables/lib/index.js +50 -0
  226. package/node_modules/@babel/helper-hoist-variables/lib/index.js.map +1 -0
  227. package/node_modules/@babel/helper-hoist-variables/package.json +28 -0
  228. package/node_modules/@babel/helper-module-imports/LICENSE +22 -0
  229. package/node_modules/@babel/helper-module-imports/README.md +19 -0
  230. package/node_modules/@babel/helper-module-imports/lib/import-builder.js +122 -0
  231. package/node_modules/@babel/helper-module-imports/lib/import-builder.js.map +1 -0
  232. package/node_modules/@babel/helper-module-imports/lib/import-injector.js +240 -0
  233. package/node_modules/@babel/helper-module-imports/lib/import-injector.js.map +1 -0
  234. package/node_modules/@babel/helper-module-imports/lib/index.js +37 -0
  235. package/node_modules/@babel/helper-module-imports/lib/index.js.map +1 -0
  236. package/node_modules/@babel/helper-module-imports/lib/is-module.js +11 -0
  237. package/node_modules/@babel/helper-module-imports/lib/is-module.js.map +1 -0
  238. package/node_modules/@babel/helper-module-imports/package.json +28 -0
  239. package/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
  240. package/node_modules/@babel/helper-module-transforms/README.md +19 -0
  241. package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js +52 -0
  242. package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js.map +1 -0
  243. package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js +48 -0
  244. package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js.map +1 -0
  245. package/node_modules/@babel/helper-module-transforms/lib/index.js +375 -0
  246. package/node_modules/@babel/helper-module-transforms/lib/index.js.map +1 -0
  247. package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +354 -0
  248. package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js.map +1 -0
  249. package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +349 -0
  250. package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js.map +1 -0
  251. package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +24 -0
  252. package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js.map +1 -0
  253. package/node_modules/@babel/helper-module-transforms/package.json +35 -0
  254. package/node_modules/@babel/helper-simple-access/LICENSE +22 -0
  255. package/node_modules/@babel/helper-simple-access/README.md +19 -0
  256. package/node_modules/@babel/helper-simple-access/lib/index.js +91 -0
  257. package/node_modules/@babel/helper-simple-access/lib/index.js.map +1 -0
  258. package/node_modules/@babel/helper-simple-access/package.json +28 -0
  259. package/node_modules/@babel/helper-split-export-declaration/LICENSE +22 -0
  260. package/node_modules/@babel/helper-split-export-declaration/README.md +19 -0
  261. package/node_modules/@babel/helper-split-export-declaration/lib/index.js +59 -0
  262. package/node_modules/@babel/helper-split-export-declaration/lib/index.js.map +1 -0
  263. package/node_modules/@babel/helper-split-export-declaration/package.json +24 -0
  264. package/node_modules/@babel/helper-string-parser/LICENSE +22 -0
  265. package/node_modules/@babel/helper-string-parser/README.md +19 -0
  266. package/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
  267. package/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
  268. package/node_modules/@babel/helper-string-parser/package.json +28 -0
  269. package/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
  270. package/node_modules/@babel/helper-validator-identifier/README.md +19 -0
  271. package/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
  272. package/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
  273. package/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
  274. package/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
  275. package/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
  276. package/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
  277. package/node_modules/@babel/helper-validator-identifier/package.json +28 -0
  278. package/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js +75 -0
  279. package/node_modules/@babel/helper-validator-option/LICENSE +22 -0
  280. package/node_modules/@babel/helper-validator-option/README.md +19 -0
  281. package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js +39 -0
  282. package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js.map +1 -0
  283. package/node_modules/@babel/helper-validator-option/lib/index.js +21 -0
  284. package/node_modules/@babel/helper-validator-option/lib/index.js.map +1 -0
  285. package/node_modules/@babel/helper-validator-option/lib/validator.js +48 -0
  286. package/node_modules/@babel/helper-validator-option/lib/validator.js.map +1 -0
  287. package/node_modules/@babel/helper-validator-option/package.json +24 -0
  288. package/node_modules/@babel/helpers/LICENSE +22 -0
  289. package/node_modules/@babel/helpers/README.md +19 -0
  290. package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js +92 -0
  291. package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js.map +1 -0
  292. package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js +12 -0
  293. package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js.map +1 -0
  294. package/node_modules/@babel/helpers/lib/helpers/applyDecs.js +448 -0
  295. package/node_modules/@babel/helpers/lib/helpers/applyDecs.js.map +1 -0
  296. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js +363 -0
  297. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js.map +1 -0
  298. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js +365 -0
  299. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js.map +1 -0
  300. package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js +410 -0
  301. package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js.map +1 -0
  302. package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js +388 -0
  303. package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js.map +1 -0
  304. package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js +52 -0
  305. package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js.map +1 -0
  306. package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js +70 -0
  307. package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js.map +1 -0
  308. package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js +12 -0
  309. package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js.map +1 -0
  310. package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js +14 -0
  311. package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js.map +1 -0
  312. package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js +16 -0
  313. package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js.map +1 -0
  314. package/node_modules/@babel/helpers/lib/helpers/dispose.js +47 -0
  315. package/node_modules/@babel/helpers/lib/helpers/dispose.js.map +1 -0
  316. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js +41 -0
  317. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js.map +1 -0
  318. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js +18 -0
  319. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js.map +1 -0
  320. package/node_modules/@babel/helpers/lib/helpers/jsx.js +47 -0
  321. package/node_modules/@babel/helpers/lib/helpers/jsx.js.map +1 -0
  322. package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js +39 -0
  323. package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js.map +1 -0
  324. package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js +501 -0
  325. package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js.map +1 -0
  326. package/node_modules/@babel/helpers/lib/helpers/typeof.js +22 -0
  327. package/node_modules/@babel/helpers/lib/helpers/typeof.js.map +1 -0
  328. package/node_modules/@babel/helpers/lib/helpers/using.js +29 -0
  329. package/node_modules/@babel/helpers/lib/helpers/using.js.map +1 -0
  330. package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js +66 -0
  331. package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js.map +1 -0
  332. package/node_modules/@babel/helpers/lib/helpers-generated.js +41 -0
  333. package/node_modules/@babel/helpers/lib/helpers-generated.js.map +1 -0
  334. package/node_modules/@babel/helpers/lib/helpers.js +1784 -0
  335. package/node_modules/@babel/helpers/lib/helpers.js.map +1 -0
  336. package/node_modules/@babel/helpers/lib/index.js +242 -0
  337. package/node_modules/@babel/helpers/lib/index.js.map +1 -0
  338. package/node_modules/@babel/helpers/package.json +33 -0
  339. package/node_modules/@babel/helpers/scripts/generate-helpers.js +64 -0
  340. package/node_modules/@babel/helpers/scripts/generate-regenerator-runtime.js +63 -0
  341. package/node_modules/@babel/helpers/scripts/package.json +1 -0
  342. package/node_modules/@babel/highlight/LICENSE +22 -0
  343. package/node_modules/@babel/highlight/README.md +19 -0
  344. package/node_modules/@babel/highlight/lib/index.js +96 -0
  345. package/node_modules/@babel/highlight/lib/index.js.map +1 -0
  346. package/node_modules/@babel/highlight/package.json +30 -0
  347. package/node_modules/@babel/parser/CHANGELOG.md +1073 -0
  348. package/node_modules/@babel/parser/LICENSE +19 -0
  349. package/node_modules/@babel/parser/README.md +19 -0
  350. package/node_modules/@babel/parser/bin/babel-parser.js +15 -0
  351. package/node_modules/@babel/parser/index.cjs +5 -0
  352. package/node_modules/@babel/parser/lib/index.js +14429 -0
  353. package/node_modules/@babel/parser/lib/index.js.map +1 -0
  354. package/node_modules/@babel/parser/lib/options.js +40 -0
  355. package/node_modules/@babel/parser/lib/options.js.map +1 -0
  356. package/node_modules/@babel/parser/lib/parse-error/credentials.js +28 -0
  357. package/node_modules/@babel/parser/lib/parse-error/credentials.js.map +1 -0
  358. package/node_modules/@babel/parser/lib/parse-error/module-errors.js +20 -0
  359. package/node_modules/@babel/parser/lib/parse-error/module-errors.js.map +1 -0
  360. package/node_modules/@babel/parser/lib/parse-error/pipeline-operator-errors.js +32 -0
  361. package/node_modules/@babel/parser/lib/parse-error/pipeline-operator-errors.js.map +1 -0
  362. package/node_modules/@babel/parser/lib/parse-error/standard-errors.js +220 -0
  363. package/node_modules/@babel/parser/lib/parse-error/standard-errors.js.map +1 -0
  364. package/node_modules/@babel/parser/lib/parse-error/strict-mode-errors.js +22 -0
  365. package/node_modules/@babel/parser/lib/parse-error/strict-mode-errors.js.map +1 -0
  366. package/node_modules/@babel/parser/lib/parse-error/to-node-description.js +39 -0
  367. package/node_modules/@babel/parser/lib/parse-error/to-node-description.js.map +1 -0
  368. package/node_modules/@babel/parser/lib/parse-error.js +106 -0
  369. package/node_modules/@babel/parser/lib/parse-error.js.map +1 -0
  370. package/node_modules/@babel/parser/lib/parser/base.js +36 -0
  371. package/node_modules/@babel/parser/lib/parser/base.js.map +1 -0
  372. package/node_modules/@babel/parser/lib/parser/comments.js +190 -0
  373. package/node_modules/@babel/parser/lib/parser/comments.js.map +1 -0
  374. package/node_modules/@babel/parser/lib/parser/expression.js +1824 -0
  375. package/node_modules/@babel/parser/lib/parser/expression.js.map +1 -0
  376. package/node_modules/@babel/parser/lib/parser/index.js +43 -0
  377. package/node_modules/@babel/parser/lib/parser/index.js.map +1 -0
  378. package/node_modules/@babel/parser/lib/parser/lval.js +421 -0
  379. package/node_modules/@babel/parser/lib/parser/lval.js.map +1 -0
  380. package/node_modules/@babel/parser/lib/parser/node.js +127 -0
  381. package/node_modules/@babel/parser/lib/parser/node.js.map +1 -0
  382. package/node_modules/@babel/parser/lib/parser/statement.js +2032 -0
  383. package/node_modules/@babel/parser/lib/parser/statement.js.map +1 -0
  384. package/node_modules/@babel/parser/lib/parser/util.js +238 -0
  385. package/node_modules/@babel/parser/lib/parser/util.js.map +1 -0
  386. package/node_modules/@babel/parser/lib/plugin-utils.js +136 -0
  387. package/node_modules/@babel/parser/lib/plugin-utils.js.map +1 -0
  388. package/node_modules/@babel/parser/lib/plugins/estree.js +340 -0
  389. package/node_modules/@babel/parser/lib/plugins/estree.js.map +1 -0
  390. package/node_modules/@babel/parser/lib/plugins/flow/index.js +2474 -0
  391. package/node_modules/@babel/parser/lib/plugins/flow/index.js.map +1 -0
  392. package/node_modules/@babel/parser/lib/plugins/flow/scope.js +44 -0
  393. package/node_modules/@babel/parser/lib/plugins/flow/scope.js.map +1 -0
  394. package/node_modules/@babel/parser/lib/plugins/jsx/index.js +444 -0
  395. package/node_modules/@babel/parser/lib/plugins/jsx/index.js.map +1 -0
  396. package/node_modules/@babel/parser/lib/plugins/jsx/xhtml.js +266 -0
  397. package/node_modules/@babel/parser/lib/plugins/jsx/xhtml.js.map +1 -0
  398. package/node_modules/@babel/parser/lib/plugins/placeholders.js +197 -0
  399. package/node_modules/@babel/parser/lib/plugins/placeholders.js.map +1 -0
  400. package/node_modules/@babel/parser/lib/plugins/typescript/index.js +2656 -0
  401. package/node_modules/@babel/parser/lib/plugins/typescript/index.js.map +1 -0
  402. package/node_modules/@babel/parser/lib/plugins/typescript/scope.js +119 -0
  403. package/node_modules/@babel/parser/lib/plugins/typescript/scope.js.map +1 -0
  404. package/node_modules/@babel/parser/lib/plugins/v8intrinsic.js +31 -0
  405. package/node_modules/@babel/parser/lib/plugins/v8intrinsic.js.map +1 -0
  406. package/node_modules/@babel/parser/lib/tokenizer/context.js +27 -0
  407. package/node_modules/@babel/parser/lib/tokenizer/context.js.map +1 -0
  408. package/node_modules/@babel/parser/lib/tokenizer/index.js +1119 -0
  409. package/node_modules/@babel/parser/lib/tokenizer/index.js.map +1 -0
  410. package/node_modules/@babel/parser/lib/tokenizer/state.js +82 -0
  411. package/node_modules/@babel/parser/lib/tokenizer/state.js.map +1 -0
  412. package/node_modules/@babel/parser/lib/tokenizer/types.js +586 -0
  413. package/node_modules/@babel/parser/lib/tokenizer/types.js.map +1 -0
  414. package/node_modules/@babel/parser/lib/util/class-scope.js +92 -0
  415. package/node_modules/@babel/parser/lib/util/class-scope.js.map +1 -0
  416. package/node_modules/@babel/parser/lib/util/expression-scope.js +147 -0
  417. package/node_modules/@babel/parser/lib/util/expression-scope.js.map +1 -0
  418. package/node_modules/@babel/parser/lib/util/identifier.js +62 -0
  419. package/node_modules/@babel/parser/lib/util/identifier.js.map +1 -0
  420. package/node_modules/@babel/parser/lib/util/location.js +39 -0
  421. package/node_modules/@babel/parser/lib/util/location.js.map +1 -0
  422. package/node_modules/@babel/parser/lib/util/production-parameter.js +49 -0
  423. package/node_modules/@babel/parser/lib/util/production-parameter.js.map +1 -0
  424. package/node_modules/@babel/parser/lib/util/scope.js +161 -0
  425. package/node_modules/@babel/parser/lib/util/scope.js.map +1 -0
  426. package/node_modules/@babel/parser/lib/util/scopeflags.js +106 -0
  427. package/node_modules/@babel/parser/lib/util/scopeflags.js.map +1 -0
  428. package/node_modules/@babel/parser/lib/util/whitespace.js +59 -0
  429. package/node_modules/@babel/parser/lib/util/whitespace.js.map +1 -0
  430. package/node_modules/@babel/parser/package.json +46 -0
  431. package/node_modules/@babel/parser/typings/babel-parser.d.ts +241 -0
  432. package/node_modules/@babel/template/LICENSE +22 -0
  433. package/node_modules/@babel/template/README.md +19 -0
  434. package/node_modules/@babel/template/lib/builder.js +69 -0
  435. package/node_modules/@babel/template/lib/builder.js.map +1 -0
  436. package/node_modules/@babel/template/lib/formatters.js +66 -0
  437. package/node_modules/@babel/template/lib/formatters.js.map +1 -0
  438. package/node_modules/@babel/template/lib/index.js +29 -0
  439. package/node_modules/@babel/template/lib/index.js.map +1 -0
  440. package/node_modules/@babel/template/lib/literal.js +69 -0
  441. package/node_modules/@babel/template/lib/literal.js.map +1 -0
  442. package/node_modules/@babel/template/lib/options.js +73 -0
  443. package/node_modules/@babel/template/lib/options.js.map +1 -0
  444. package/node_modules/@babel/template/lib/parse.js +160 -0
  445. package/node_modules/@babel/template/lib/parse.js.map +1 -0
  446. package/node_modules/@babel/template/lib/populate.js +122 -0
  447. package/node_modules/@babel/template/lib/populate.js.map +1 -0
  448. package/node_modules/@babel/template/lib/string.js +20 -0
  449. package/node_modules/@babel/template/lib/string.js.map +1 -0
  450. package/node_modules/@babel/template/package.json +27 -0
  451. package/node_modules/@babel/traverse/LICENSE +22 -0
  452. package/node_modules/@babel/traverse/README.md +19 -0
  453. package/node_modules/@babel/traverse/lib/cache.js +25 -0
  454. package/node_modules/@babel/traverse/lib/cache.js.map +1 -0
  455. package/node_modules/@babel/traverse/lib/context.js +115 -0
  456. package/node_modules/@babel/traverse/lib/context.js.map +1 -0
  457. package/node_modules/@babel/traverse/lib/hub.js +19 -0
  458. package/node_modules/@babel/traverse/lib/hub.js.map +1 -0
  459. package/node_modules/@babel/traverse/lib/index.js +93 -0
  460. package/node_modules/@babel/traverse/lib/index.js.map +1 -0
  461. package/node_modules/@babel/traverse/lib/path/ancestry.js +141 -0
  462. package/node_modules/@babel/traverse/lib/path/ancestry.js.map +1 -0
  463. package/node_modules/@babel/traverse/lib/path/comments.js +54 -0
  464. package/node_modules/@babel/traverse/lib/path/comments.js.map +1 -0
  465. package/node_modules/@babel/traverse/lib/path/context.js +222 -0
  466. package/node_modules/@babel/traverse/lib/path/context.js.map +1 -0
  467. package/node_modules/@babel/traverse/lib/path/conversion.js +473 -0
  468. package/node_modules/@babel/traverse/lib/path/conversion.js.map +1 -0
  469. package/node_modules/@babel/traverse/lib/path/evaluation.js +340 -0
  470. package/node_modules/@babel/traverse/lib/path/evaluation.js.map +1 -0
  471. package/node_modules/@babel/traverse/lib/path/family.js +336 -0
  472. package/node_modules/@babel/traverse/lib/path/family.js.map +1 -0
  473. package/node_modules/@babel/traverse/lib/path/index.js +197 -0
  474. package/node_modules/@babel/traverse/lib/path/index.js.map +1 -0
  475. package/node_modules/@babel/traverse/lib/path/inference/index.js +149 -0
  476. package/node_modules/@babel/traverse/lib/path/inference/index.js.map +1 -0
  477. package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +151 -0
  478. package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js.map +1 -0
  479. package/node_modules/@babel/traverse/lib/path/inference/inferers.js +207 -0
  480. package/node_modules/@babel/traverse/lib/path/inference/inferers.js.map +1 -0
  481. package/node_modules/@babel/traverse/lib/path/inference/util.js +30 -0
  482. package/node_modules/@babel/traverse/lib/path/inference/util.js.map +1 -0
  483. package/node_modules/@babel/traverse/lib/path/introspection.js +385 -0
  484. package/node_modules/@babel/traverse/lib/path/introspection.js.map +1 -0
  485. package/node_modules/@babel/traverse/lib/path/lib/hoister.js +171 -0
  486. package/node_modules/@babel/traverse/lib/path/lib/hoister.js.map +1 -0
  487. package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +38 -0
  488. package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js.map +1 -0
  489. package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +161 -0
  490. package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js.map +1 -0
  491. package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +44 -0
  492. package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js.map +1 -0
  493. package/node_modules/@babel/traverse/lib/path/modification.js +224 -0
  494. package/node_modules/@babel/traverse/lib/path/modification.js.map +1 -0
  495. package/node_modules/@babel/traverse/lib/path/removal.js +58 -0
  496. package/node_modules/@babel/traverse/lib/path/removal.js.map +1 -0
  497. package/node_modules/@babel/traverse/lib/path/replacement.js +205 -0
  498. package/node_modules/@babel/traverse/lib/path/replacement.js.map +1 -0
  499. package/node_modules/@babel/traverse/lib/scope/binding.js +85 -0
  500. package/node_modules/@babel/traverse/lib/scope/binding.js.map +1 -0
  501. package/node_modules/@babel/traverse/lib/scope/index.js +887 -0
  502. package/node_modules/@babel/traverse/lib/scope/index.js.map +1 -0
  503. package/node_modules/@babel/traverse/lib/scope/lib/renamer.js +113 -0
  504. package/node_modules/@babel/traverse/lib/scope/lib/renamer.js.map +1 -0
  505. package/node_modules/@babel/traverse/lib/traverse-node.js +25 -0
  506. package/node_modules/@babel/traverse/lib/traverse-node.js.map +1 -0
  507. package/node_modules/@babel/traverse/lib/types.js +3 -0
  508. package/node_modules/@babel/traverse/lib/types.js.map +1 -0
  509. package/node_modules/@babel/traverse/lib/visitors.js +218 -0
  510. package/node_modules/@babel/traverse/lib/visitors.js.map +1 -0
  511. package/node_modules/@babel/traverse/package.json +37 -0
  512. package/node_modules/@babel/types/LICENSE +22 -0
  513. package/node_modules/@babel/types/README.md +19 -0
  514. package/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
  515. package/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
  516. package/node_modules/@babel/types/lib/asserts/generated/index.js +1231 -0
  517. package/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
  518. package/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
  519. package/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
  520. package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
  521. package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
  522. package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +32 -0
  523. package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
  524. package/node_modules/@babel/types/lib/builders/generated/index.js +1985 -0
  525. package/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
  526. package/node_modules/@babel/types/lib/builders/generated/uppercase.js +1526 -0
  527. package/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
  528. package/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
  529. package/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
  530. package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
  531. package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
  532. package/node_modules/@babel/types/lib/builders/validateNode.js +17 -0
  533. package/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
  534. package/node_modules/@babel/types/lib/clone/clone.js +12 -0
  535. package/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
  536. package/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
  537. package/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
  538. package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
  539. package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
  540. package/node_modules/@babel/types/lib/clone/cloneNode.js +100 -0
  541. package/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
  542. package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
  543. package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
  544. package/node_modules/@babel/types/lib/comments/addComment.js +15 -0
  545. package/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
  546. package/node_modules/@babel/types/lib/comments/addComments.js +22 -0
  547. package/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
  548. package/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
  549. package/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
  550. package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
  551. package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
  552. package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
  553. package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
  554. package/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
  555. package/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
  556. package/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
  557. package/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
  558. package/node_modules/@babel/types/lib/constants/generated/index.js +109 -0
  559. package/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
  560. package/node_modules/@babel/types/lib/constants/index.js +51 -0
  561. package/node_modules/@babel/types/lib/constants/index.js.map +1 -0
  562. package/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
  563. package/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
  564. package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +64 -0
  565. package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
  566. package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
  567. package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
  568. package/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
  569. package/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
  570. package/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
  571. package/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
  572. package/node_modules/@babel/types/lib/converters/toExpression.js +28 -0
  573. package/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
  574. package/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
  575. package/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
  576. package/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
  577. package/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
  578. package/node_modules/@babel/types/lib/converters/toSequenceExpression.js +19 -0
  579. package/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
  580. package/node_modules/@babel/types/lib/converters/toStatement.js +40 -0
  581. package/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
  582. package/node_modules/@babel/types/lib/converters/valueToNode.js +77 -0
  583. package/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
  584. package/node_modules/@babel/types/lib/definitions/core.js +1663 -0
  585. package/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
  586. package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +12 -0
  587. package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
  588. package/node_modules/@babel/types/lib/definitions/experimental.js +134 -0
  589. package/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
  590. package/node_modules/@babel/types/lib/definitions/flow.js +488 -0
  591. package/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
  592. package/node_modules/@babel/types/lib/definitions/index.js +97 -0
  593. package/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
  594. package/node_modules/@babel/types/lib/definitions/jsx.js +158 -0
  595. package/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
  596. package/node_modules/@babel/types/lib/definitions/misc.js +32 -0
  597. package/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
  598. package/node_modules/@babel/types/lib/definitions/placeholders.js +30 -0
  599. package/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
  600. package/node_modules/@babel/types/lib/definitions/typescript.js +490 -0
  601. package/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
  602. package/node_modules/@babel/types/lib/definitions/utils.js +280 -0
  603. package/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
  604. package/node_modules/@babel/types/lib/index-legacy.d.ts +2748 -0
  605. package/node_modules/@babel/types/lib/index.d.ts +3266 -0
  606. package/node_modules/@babel/types/lib/index.js +570 -0
  607. package/node_modules/@babel/types/lib/index.js.flow +2602 -0
  608. package/node_modules/@babel/types/lib/index.js.map +1 -0
  609. package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
  610. package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
  611. package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
  612. package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
  613. package/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
  614. package/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
  615. package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
  616. package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
  617. package/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
  618. package/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
  619. package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
  620. package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
  621. package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +65 -0
  622. package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
  623. package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +93 -0
  624. package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
  625. package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +14 -0
  626. package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
  627. package/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
  628. package/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
  629. package/node_modules/@babel/types/lib/traverse/traverseFast.js +26 -0
  630. package/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
  631. package/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
  632. package/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
  633. package/node_modules/@babel/types/lib/utils/inherit.js +13 -0
  634. package/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
  635. package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
  636. package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
  637. package/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
  638. package/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
  639. package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
  640. package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
  641. package/node_modules/@babel/types/lib/validators/generated/index.js +2744 -0
  642. package/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
  643. package/node_modules/@babel/types/lib/validators/is.js +27 -0
  644. package/node_modules/@babel/types/lib/validators/is.js.map +1 -0
  645. package/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
  646. package/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
  647. package/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
  648. package/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
  649. package/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
  650. package/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
  651. package/node_modules/@babel/types/lib/validators/isLet.js +13 -0
  652. package/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
  653. package/node_modules/@babel/types/lib/validators/isNode.js +12 -0
  654. package/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
  655. package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
  656. package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
  657. package/node_modules/@babel/types/lib/validators/isPlaceholderType.js +19 -0
  658. package/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
  659. package/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
  660. package/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
  661. package/node_modules/@babel/types/lib/validators/isScope.js +18 -0
  662. package/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
  663. package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
  664. package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
  665. package/node_modules/@babel/types/lib/validators/isType.js +21 -0
  666. package/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
  667. package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
  668. package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
  669. package/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
  670. package/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
  671. package/node_modules/@babel/types/lib/validators/isVar.js +15 -0
  672. package/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
  673. package/node_modules/@babel/types/lib/validators/matchesPattern.js +36 -0
  674. package/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
  675. package/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
  676. package/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
  677. package/node_modules/@babel/types/lib/validators/react/isReactComponent.js +12 -0
  678. package/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
  679. package/node_modules/@babel/types/lib/validators/validate.js +30 -0
  680. package/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
  681. package/node_modules/@babel/types/package.json +41 -0
  682. package/node_modules/@istanbuljs/load-nyc-config/CHANGELOG.md +41 -0
  683. package/node_modules/@istanbuljs/load-nyc-config/LICENSE +16 -0
  684. package/node_modules/@istanbuljs/load-nyc-config/README.md +64 -0
  685. package/node_modules/@istanbuljs/load-nyc-config/index.js +166 -0
  686. package/node_modules/@istanbuljs/load-nyc-config/load-esm.js +12 -0
  687. package/node_modules/@istanbuljs/load-nyc-config/package.json +49 -0
  688. package/node_modules/@istanbuljs/schema/CHANGELOG.md +44 -0
  689. package/node_modules/@istanbuljs/schema/LICENSE +21 -0
  690. package/node_modules/@istanbuljs/schema/README.md +30 -0
  691. package/node_modules/@istanbuljs/schema/default-exclude.js +22 -0
  692. package/node_modules/@istanbuljs/schema/default-extension.js +10 -0
  693. package/node_modules/@istanbuljs/schema/index.js +466 -0
  694. package/node_modules/@istanbuljs/schema/package.json +30 -0
  695. package/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
  696. package/node_modules/@jridgewell/gen-mapping/README.md +227 -0
  697. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +230 -0
  698. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +1 -0
  699. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +236 -0
  700. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +1 -0
  701. package/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +90 -0
  702. package/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
  703. package/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +35 -0
  704. package/node_modules/@jridgewell/gen-mapping/package.json +77 -0
  705. package/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
  706. package/node_modules/@jridgewell/resolve-uri/README.md +40 -0
  707. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +242 -0
  708. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
  709. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +250 -0
  710. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
  711. package/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
  712. package/node_modules/@jridgewell/resolve-uri/package.json +69 -0
  713. package/node_modules/@jridgewell/set-array/LICENSE +19 -0
  714. package/node_modules/@jridgewell/set-array/README.md +37 -0
  715. package/node_modules/@jridgewell/set-array/dist/set-array.mjs +48 -0
  716. package/node_modules/@jridgewell/set-array/dist/set-array.mjs.map +1 -0
  717. package/node_modules/@jridgewell/set-array/dist/set-array.umd.js +58 -0
  718. package/node_modules/@jridgewell/set-array/dist/set-array.umd.js.map +1 -0
  719. package/node_modules/@jridgewell/set-array/dist/types/set-array.d.ts +26 -0
  720. package/node_modules/@jridgewell/set-array/package.json +66 -0
  721. package/node_modules/@jridgewell/set-array/src/set-array.ts +55 -0
  722. package/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
  723. package/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
  724. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
  725. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
  726. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
  727. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
  728. package/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
  729. package/node_modules/@jridgewell/sourcemap-codec/package.json +74 -0
  730. package/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
  731. package/node_modules/@jridgewell/trace-mapping/README.md +252 -0
  732. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +552 -0
  733. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
  734. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +566 -0
  735. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
  736. package/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
  737. package/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
  738. package/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
  739. package/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
  740. package/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
  741. package/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
  742. package/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
  743. package/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +74 -0
  744. package/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +92 -0
  745. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
  746. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
  747. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
  748. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
  749. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
  750. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
  751. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
  752. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/package.json +75 -0
  753. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/src/sourcemap-codec.ts +198 -0
  754. package/node_modules/@jridgewell/trace-mapping/package.json +75 -0
  755. package/node_modules/@protobufjs/aspromise/LICENSE +26 -0
  756. package/node_modules/@protobufjs/aspromise/README.md +13 -0
  757. package/node_modules/@protobufjs/aspromise/index.d.ts +13 -0
  758. package/node_modules/@protobufjs/aspromise/index.js +52 -0
  759. package/node_modules/@protobufjs/aspromise/package.json +21 -0
  760. package/node_modules/@protobufjs/aspromise/tests/index.js +130 -0
  761. package/node_modules/@protobufjs/base64/LICENSE +26 -0
  762. package/node_modules/@protobufjs/base64/README.md +19 -0
  763. package/node_modules/@protobufjs/base64/index.d.ts +32 -0
  764. package/node_modules/@protobufjs/base64/index.js +139 -0
  765. package/node_modules/@protobufjs/base64/package.json +21 -0
  766. package/node_modules/@protobufjs/base64/tests/index.js +46 -0
  767. package/node_modules/@protobufjs/codegen/LICENSE +26 -0
  768. package/node_modules/@protobufjs/codegen/README.md +49 -0
  769. package/node_modules/@protobufjs/codegen/index.d.ts +31 -0
  770. package/node_modules/@protobufjs/codegen/index.js +99 -0
  771. package/node_modules/@protobufjs/codegen/package.json +13 -0
  772. package/node_modules/@protobufjs/codegen/tests/index.js +13 -0
  773. package/node_modules/@protobufjs/eventemitter/LICENSE +26 -0
  774. package/node_modules/@protobufjs/eventemitter/README.md +22 -0
  775. package/node_modules/@protobufjs/eventemitter/index.d.ts +43 -0
  776. package/node_modules/@protobufjs/eventemitter/index.js +76 -0
  777. package/node_modules/@protobufjs/eventemitter/package.json +21 -0
  778. package/node_modules/@protobufjs/eventemitter/tests/index.js +47 -0
  779. package/node_modules/@protobufjs/fetch/LICENSE +26 -0
  780. package/node_modules/@protobufjs/fetch/README.md +13 -0
  781. package/node_modules/@protobufjs/fetch/index.d.ts +56 -0
  782. package/node_modules/@protobufjs/fetch/index.js +115 -0
  783. package/node_modules/@protobufjs/fetch/package.json +25 -0
  784. package/node_modules/@protobufjs/fetch/tests/index.js +16 -0
  785. package/node_modules/@protobufjs/float/LICENSE +26 -0
  786. package/node_modules/@protobufjs/float/README.md +102 -0
  787. package/node_modules/@protobufjs/float/bench/index.js +87 -0
  788. package/node_modules/@protobufjs/float/bench/suite.js +46 -0
  789. package/node_modules/@protobufjs/float/index.d.ts +83 -0
  790. package/node_modules/@protobufjs/float/index.js +335 -0
  791. package/node_modules/@protobufjs/float/package.json +26 -0
  792. package/node_modules/@protobufjs/float/tests/index.js +100 -0
  793. package/node_modules/@protobufjs/inquire/.npmignore +3 -0
  794. package/node_modules/@protobufjs/inquire/LICENSE +26 -0
  795. package/node_modules/@protobufjs/inquire/README.md +13 -0
  796. package/node_modules/@protobufjs/inquire/index.d.ts +9 -0
  797. package/node_modules/@protobufjs/inquire/index.js +17 -0
  798. package/node_modules/@protobufjs/inquire/package.json +21 -0
  799. package/node_modules/@protobufjs/inquire/tests/data/array.js +1 -0
  800. package/node_modules/@protobufjs/inquire/tests/data/emptyArray.js +1 -0
  801. package/node_modules/@protobufjs/inquire/tests/data/emptyObject.js +1 -0
  802. package/node_modules/@protobufjs/inquire/tests/data/object.js +1 -0
  803. package/node_modules/@protobufjs/inquire/tests/index.js +20 -0
  804. package/node_modules/@protobufjs/path/LICENSE +26 -0
  805. package/node_modules/@protobufjs/path/README.md +19 -0
  806. package/node_modules/@protobufjs/path/index.d.ts +22 -0
  807. package/node_modules/@protobufjs/path/index.js +65 -0
  808. package/node_modules/@protobufjs/path/package.json +21 -0
  809. package/node_modules/@protobufjs/path/tests/index.js +60 -0
  810. package/node_modules/@protobufjs/pool/.npmignore +3 -0
  811. package/node_modules/@protobufjs/pool/LICENSE +26 -0
  812. package/node_modules/@protobufjs/pool/README.md +13 -0
  813. package/node_modules/@protobufjs/pool/index.d.ts +32 -0
  814. package/node_modules/@protobufjs/pool/index.js +48 -0
  815. package/node_modules/@protobufjs/pool/package.json +21 -0
  816. package/node_modules/@protobufjs/pool/tests/index.js +33 -0
  817. package/node_modules/@protobufjs/utf8/.npmignore +3 -0
  818. package/node_modules/@protobufjs/utf8/LICENSE +26 -0
  819. package/node_modules/@protobufjs/utf8/README.md +20 -0
  820. package/node_modules/@protobufjs/utf8/index.d.ts +24 -0
  821. package/node_modules/@protobufjs/utf8/index.js +105 -0
  822. package/node_modules/@protobufjs/utf8/package.json +21 -0
  823. package/node_modules/@protobufjs/utf8/tests/data/utf8.txt +216 -0
  824. package/node_modules/@protobufjs/utf8/tests/index.js +57 -0
  825. package/node_modules/@types/node/LICENSE +21 -0
  826. package/node_modules/@types/node/README.md +16 -0
  827. package/node_modules/@types/node/assert/strict.d.ts +8 -0
  828. package/node_modules/@types/node/assert.d.ts +972 -0
  829. package/node_modules/@types/node/async_hooks.d.ts +530 -0
  830. package/node_modules/@types/node/buffer.d.ts +2354 -0
  831. package/node_modules/@types/node/child_process.d.ts +1395 -0
  832. package/node_modules/@types/node/cluster.d.ts +414 -0
  833. package/node_modules/@types/node/console.d.ts +412 -0
  834. package/node_modules/@types/node/constants.d.ts +18 -0
  835. package/node_modules/@types/node/crypto.d.ts +3978 -0
  836. package/node_modules/@types/node/dgram.d.ts +545 -0
  837. package/node_modules/@types/node/diagnostics_channel.d.ts +191 -0
  838. package/node_modules/@types/node/dns/promises.d.ts +414 -0
  839. package/node_modules/@types/node/dns.d.ts +668 -0
  840. package/node_modules/@types/node/dom-events.d.ts +126 -0
  841. package/node_modules/@types/node/domain.d.ts +170 -0
  842. package/node_modules/@types/node/events.d.ts +753 -0
  843. package/node_modules/@types/node/fs/promises.d.ts +1197 -0
  844. package/node_modules/@types/node/fs.d.ts +4044 -0
  845. package/node_modules/@types/node/globals.d.ts +303 -0
  846. package/node_modules/@types/node/globals.global.d.ts +1 -0
  847. package/node_modules/@types/node/http.d.ts +1724 -0
  848. package/node_modules/@types/node/http2.d.ts +2129 -0
  849. package/node_modules/@types/node/https.d.ts +441 -0
  850. package/node_modules/@types/node/index.d.ts +133 -0
  851. package/node_modules/@types/node/inspector.d.ts +2748 -0
  852. package/node_modules/@types/node/module.d.ts +129 -0
  853. package/node_modules/@types/node/net.d.ts +888 -0
  854. package/node_modules/@types/node/os.d.ts +477 -0
  855. package/node_modules/@types/node/package.json +232 -0
  856. package/node_modules/@types/node/path.d.ts +191 -0
  857. package/node_modules/@types/node/perf_hooks.d.ts +638 -0
  858. package/node_modules/@types/node/process.d.ts +1494 -0
  859. package/node_modules/@types/node/punycode.d.ts +117 -0
  860. package/node_modules/@types/node/querystring.d.ts +131 -0
  861. package/node_modules/@types/node/readline/promises.d.ts +145 -0
  862. package/node_modules/@types/node/readline.d.ts +526 -0
  863. package/node_modules/@types/node/repl.d.ts +424 -0
  864. package/node_modules/@types/node/stream/consumers.d.ts +12 -0
  865. package/node_modules/@types/node/stream/promises.d.ts +42 -0
  866. package/node_modules/@types/node/stream/web.d.ts +330 -0
  867. package/node_modules/@types/node/stream.d.ts +1425 -0
  868. package/node_modules/@types/node/string_decoder.d.ts +67 -0
  869. package/node_modules/@types/node/test.d.ts +1432 -0
  870. package/node_modules/@types/node/timers/promises.d.ts +93 -0
  871. package/node_modules/@types/node/timers.d.ts +215 -0
  872. package/node_modules/@types/node/tls.d.ts +1130 -0
  873. package/node_modules/@types/node/trace_events.d.ts +182 -0
  874. package/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
  875. package/node_modules/@types/node/ts4.8/assert.d.ts +972 -0
  876. package/node_modules/@types/node/ts4.8/async_hooks.d.ts +530 -0
  877. package/node_modules/@types/node/ts4.8/buffer.d.ts +2354 -0
  878. package/node_modules/@types/node/ts4.8/child_process.d.ts +1395 -0
  879. package/node_modules/@types/node/ts4.8/cluster.d.ts +414 -0
  880. package/node_modules/@types/node/ts4.8/console.d.ts +412 -0
  881. package/node_modules/@types/node/ts4.8/constants.d.ts +18 -0
  882. package/node_modules/@types/node/ts4.8/crypto.d.ts +3977 -0
  883. package/node_modules/@types/node/ts4.8/dgram.d.ts +545 -0
  884. package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +191 -0
  885. package/node_modules/@types/node/ts4.8/dns/promises.d.ts +414 -0
  886. package/node_modules/@types/node/ts4.8/dns.d.ts +668 -0
  887. package/node_modules/@types/node/ts4.8/dom-events.d.ts +126 -0
  888. package/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
  889. package/node_modules/@types/node/ts4.8/events.d.ts +753 -0
  890. package/node_modules/@types/node/ts4.8/fs/promises.d.ts +1197 -0
  891. package/node_modules/@types/node/ts4.8/fs.d.ts +4044 -0
  892. package/node_modules/@types/node/ts4.8/globals.d.ts +303 -0
  893. package/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
  894. package/node_modules/@types/node/ts4.8/http.d.ts +1724 -0
  895. package/node_modules/@types/node/ts4.8/http2.d.ts +2129 -0
  896. package/node_modules/@types/node/ts4.8/https.d.ts +441 -0
  897. package/node_modules/@types/node/ts4.8/index.d.ts +88 -0
  898. package/node_modules/@types/node/ts4.8/inspector.d.ts +2748 -0
  899. package/node_modules/@types/node/ts4.8/module.d.ts +129 -0
  900. package/node_modules/@types/node/ts4.8/net.d.ts +888 -0
  901. package/node_modules/@types/node/ts4.8/os.d.ts +477 -0
  902. package/node_modules/@types/node/ts4.8/path.d.ts +191 -0
  903. package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +638 -0
  904. package/node_modules/@types/node/ts4.8/process.d.ts +1494 -0
  905. package/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
  906. package/node_modules/@types/node/ts4.8/querystring.d.ts +131 -0
  907. package/node_modules/@types/node/ts4.8/readline/promises.d.ts +145 -0
  908. package/node_modules/@types/node/ts4.8/readline.d.ts +526 -0
  909. package/node_modules/@types/node/ts4.8/repl.d.ts +424 -0
  910. package/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
  911. package/node_modules/@types/node/ts4.8/stream/promises.d.ts +42 -0
  912. package/node_modules/@types/node/ts4.8/stream/web.d.ts +330 -0
  913. package/node_modules/@types/node/ts4.8/stream.d.ts +1396 -0
  914. package/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
  915. package/node_modules/@types/node/ts4.8/test.d.ts +1414 -0
  916. package/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
  917. package/node_modules/@types/node/ts4.8/timers.d.ts +215 -0
  918. package/node_modules/@types/node/ts4.8/tls.d.ts +1130 -0
  919. package/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
  920. package/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
  921. package/node_modules/@types/node/ts4.8/url.d.ts +915 -0
  922. package/node_modules/@types/node/ts4.8/util.d.ts +2116 -0
  923. package/node_modules/@types/node/ts4.8/v8.d.ts +635 -0
  924. package/node_modules/@types/node/ts4.8/vm.d.ts +894 -0
  925. package/node_modules/@types/node/ts4.8/wasi.d.ts +152 -0
  926. package/node_modules/@types/node/ts4.8/worker_threads.d.ts +693 -0
  927. package/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
  928. package/node_modules/@types/node/tty.d.ts +208 -0
  929. package/node_modules/@types/node/url.d.ts +915 -0
  930. package/node_modules/@types/node/util.d.ts +2116 -0
  931. package/node_modules/@types/node/v8.d.ts +635 -0
  932. package/node_modules/@types/node/vm.d.ts +894 -0
  933. package/node_modules/@types/node/wasi.d.ts +152 -0
  934. package/node_modules/@types/node/worker_threads.d.ts +693 -0
  935. package/node_modules/@types/node/zlib.d.ts +517 -0
  936. package/node_modules/aggregate-error/index.d.ts +51 -0
  937. package/node_modules/aggregate-error/index.js +47 -0
  938. package/node_modules/aggregate-error/license +9 -0
  939. package/node_modules/aggregate-error/package.json +41 -0
  940. package/node_modules/aggregate-error/readme.md +61 -0
  941. package/node_modules/ansi-regex/index.d.ts +37 -0
  942. package/node_modules/ansi-regex/index.js +10 -0
  943. package/node_modules/ansi-regex/license +9 -0
  944. package/node_modules/ansi-regex/package.json +55 -0
  945. package/node_modules/ansi-regex/readme.md +78 -0
  946. package/node_modules/ansi-styles/index.js +165 -0
  947. package/node_modules/ansi-styles/license +9 -0
  948. package/node_modules/ansi-styles/package.json +56 -0
  949. package/node_modules/ansi-styles/readme.md +147 -0
  950. package/node_modules/append-transform/CHANGELOG.md +14 -0
  951. package/node_modules/append-transform/index.js +91 -0
  952. package/node_modules/append-transform/license +21 -0
  953. package/node_modules/append-transform/package.json +47 -0
  954. package/node_modules/append-transform/readme.md +76 -0
  955. package/node_modules/archy/.travis.yml +4 -0
  956. package/node_modules/archy/LICENSE +18 -0
  957. package/node_modules/archy/examples/beep.js +24 -0
  958. package/node_modules/archy/examples/multi_line.js +25 -0
  959. package/node_modules/archy/index.js +35 -0
  960. package/node_modules/archy/package.json +40 -0
  961. package/node_modules/archy/readme.markdown +88 -0
  962. package/node_modules/archy/test/beep.js +40 -0
  963. package/node_modules/archy/test/multi_line.js +45 -0
  964. package/node_modules/archy/test/non_unicode.js +40 -0
  965. package/node_modules/argparse/CHANGELOG.md +185 -0
  966. package/node_modules/argparse/LICENSE +21 -0
  967. package/node_modules/argparse/README.md +257 -0
  968. package/node_modules/argparse/index.js +3 -0
  969. package/node_modules/argparse/lib/action/append/constant.js +47 -0
  970. package/node_modules/argparse/lib/action/append.js +53 -0
  971. package/node_modules/argparse/lib/action/count.js +40 -0
  972. package/node_modules/argparse/lib/action/help.js +47 -0
  973. package/node_modules/argparse/lib/action/store/constant.js +43 -0
  974. package/node_modules/argparse/lib/action/store/false.js +27 -0
  975. package/node_modules/argparse/lib/action/store/true.js +26 -0
  976. package/node_modules/argparse/lib/action/store.js +50 -0
  977. package/node_modules/argparse/lib/action/subparsers.js +149 -0
  978. package/node_modules/argparse/lib/action/version.js +47 -0
  979. package/node_modules/argparse/lib/action.js +146 -0
  980. package/node_modules/argparse/lib/action_container.js +482 -0
  981. package/node_modules/argparse/lib/argparse.js +14 -0
  982. package/node_modules/argparse/lib/argument/error.js +50 -0
  983. package/node_modules/argparse/lib/argument/exclusive.js +54 -0
  984. package/node_modules/argparse/lib/argument/group.js +75 -0
  985. package/node_modules/argparse/lib/argument_parser.js +1161 -0
  986. package/node_modules/argparse/lib/const.js +21 -0
  987. package/node_modules/argparse/lib/help/added_formatters.js +87 -0
  988. package/node_modules/argparse/lib/help/formatter.js +795 -0
  989. package/node_modules/argparse/lib/namespace.js +76 -0
  990. package/node_modules/argparse/lib/utils.js +57 -0
  991. package/node_modules/argparse/package.json +34 -0
  992. package/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  993. package/node_modules/balanced-match/LICENSE.md +21 -0
  994. package/node_modules/balanced-match/README.md +97 -0
  995. package/node_modules/balanced-match/index.js +62 -0
  996. package/node_modules/balanced-match/package.json +48 -0
  997. package/node_modules/brace-expansion/LICENSE +21 -0
  998. package/node_modules/brace-expansion/README.md +129 -0
  999. package/node_modules/brace-expansion/index.js +201 -0
  1000. package/node_modules/brace-expansion/package.json +47 -0
  1001. package/node_modules/browserslist/LICENSE +20 -0
  1002. package/node_modules/browserslist/README.md +73 -0
  1003. package/node_modules/browserslist/browser.js +52 -0
  1004. package/node_modules/browserslist/cli.js +151 -0
  1005. package/node_modules/browserslist/error.d.ts +7 -0
  1006. package/node_modules/browserslist/error.js +12 -0
  1007. package/node_modules/browserslist/index.d.ts +200 -0
  1008. package/node_modules/browserslist/index.js +1196 -0
  1009. package/node_modules/browserslist/node.js +410 -0
  1010. package/node_modules/browserslist/package.json +44 -0
  1011. package/node_modules/browserslist/parse.js +78 -0
  1012. package/node_modules/caching-transform/index.js +102 -0
  1013. package/node_modules/caching-transform/license +21 -0
  1014. package/node_modules/caching-transform/package.json +46 -0
  1015. package/node_modules/caching-transform/readme.md +163 -0
  1016. package/node_modules/camelcase/index.d.ts +63 -0
  1017. package/node_modules/camelcase/index.js +76 -0
  1018. package/node_modules/camelcase/license +9 -0
  1019. package/node_modules/camelcase/package.json +43 -0
  1020. package/node_modules/camelcase/readme.md +99 -0
  1021. package/node_modules/caniuse-lite/LICENSE +395 -0
  1022. package/node_modules/caniuse-lite/README.md +6 -0
  1023. package/node_modules/caniuse-lite/data/agents.js +1 -0
  1024. package/node_modules/caniuse-lite/data/browserVersions.js +1 -0
  1025. package/node_modules/caniuse-lite/data/browsers.js +1 -0
  1026. package/node_modules/caniuse-lite/data/features/aac.js +1 -0
  1027. package/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -0
  1028. package/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -0
  1029. package/node_modules/caniuse-lite/data/features/accelerometer.js +1 -0
  1030. package/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -0
  1031. package/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -0
  1032. package/node_modules/caniuse-lite/data/features/ambient-light.js +1 -0
  1033. package/node_modules/caniuse-lite/data/features/apng.js +1 -0
  1034. package/node_modules/caniuse-lite/data/features/array-find-index.js +1 -0
  1035. package/node_modules/caniuse-lite/data/features/array-find.js +1 -0
  1036. package/node_modules/caniuse-lite/data/features/array-flat.js +1 -0
  1037. package/node_modules/caniuse-lite/data/features/array-includes.js +1 -0
  1038. package/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -0
  1039. package/node_modules/caniuse-lite/data/features/asmjs.js +1 -0
  1040. package/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -0
  1041. package/node_modules/caniuse-lite/data/features/async-functions.js +1 -0
  1042. package/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -0
  1043. package/node_modules/caniuse-lite/data/features/audio-api.js +1 -0
  1044. package/node_modules/caniuse-lite/data/features/audio.js +1 -0
  1045. package/node_modules/caniuse-lite/data/features/audiotracks.js +1 -0
  1046. package/node_modules/caniuse-lite/data/features/autofocus.js +1 -0
  1047. package/node_modules/caniuse-lite/data/features/auxclick.js +1 -0
  1048. package/node_modules/caniuse-lite/data/features/av1.js +1 -0
  1049. package/node_modules/caniuse-lite/data/features/avif.js +1 -0
  1050. package/node_modules/caniuse-lite/data/features/background-attachment.js +1 -0
  1051. package/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -0
  1052. package/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -0
  1053. package/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -0
  1054. package/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -0
  1055. package/node_modules/caniuse-lite/data/features/background-sync.js +1 -0
  1056. package/node_modules/caniuse-lite/data/features/battery-status.js +1 -0
  1057. package/node_modules/caniuse-lite/data/features/beacon.js +1 -0
  1058. package/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -0
  1059. package/node_modules/caniuse-lite/data/features/bigint.js +1 -0
  1060. package/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -0
  1061. package/node_modules/caniuse-lite/data/features/bloburls.js +1 -0
  1062. package/node_modules/caniuse-lite/data/features/border-image.js +1 -0
  1063. package/node_modules/caniuse-lite/data/features/border-radius.js +1 -0
  1064. package/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -0
  1065. package/node_modules/caniuse-lite/data/features/brotli.js +1 -0
  1066. package/node_modules/caniuse-lite/data/features/calc.js +1 -0
  1067. package/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -0
  1068. package/node_modules/caniuse-lite/data/features/canvas-text.js +1 -0
  1069. package/node_modules/caniuse-lite/data/features/canvas.js +1 -0
  1070. package/node_modules/caniuse-lite/data/features/ch-unit.js +1 -0
  1071. package/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -0
  1072. package/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -0
  1073. package/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -0
  1074. package/node_modules/caniuse-lite/data/features/classlist.js +1 -0
  1075. package/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -0
  1076. package/node_modules/caniuse-lite/data/features/clipboard.js +1 -0
  1077. package/node_modules/caniuse-lite/data/features/colr-v1.js +1 -0
  1078. package/node_modules/caniuse-lite/data/features/colr.js +1 -0
  1079. package/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -0
  1080. package/node_modules/caniuse-lite/data/features/console-basic.js +1 -0
  1081. package/node_modules/caniuse-lite/data/features/console-time.js +1 -0
  1082. package/node_modules/caniuse-lite/data/features/const.js +1 -0
  1083. package/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -0
  1084. package/node_modules/caniuse-lite/data/features/contenteditable.js +1 -0
  1085. package/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -0
  1086. package/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -0
  1087. package/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -0
  1088. package/node_modules/caniuse-lite/data/features/cors.js +1 -0
  1089. package/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -0
  1090. package/node_modules/caniuse-lite/data/features/credential-management.js +1 -0
  1091. package/node_modules/caniuse-lite/data/features/cryptography.js +1 -0
  1092. package/node_modules/caniuse-lite/data/features/css-all.js +1 -0
  1093. package/node_modules/caniuse-lite/data/features/css-animation.js +1 -0
  1094. package/node_modules/caniuse-lite/data/features/css-any-link.js +1 -0
  1095. package/node_modules/caniuse-lite/data/features/css-appearance.js +1 -0
  1096. package/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -0
  1097. package/node_modules/caniuse-lite/data/features/css-autofill.js +1 -0
  1098. package/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -0
  1099. package/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -0
  1100. package/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -0
  1101. package/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -0
  1102. package/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -0
  1103. package/node_modules/caniuse-lite/data/features/css-canvas.js +1 -0
  1104. package/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -0
  1105. package/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -0
  1106. package/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -0
  1107. package/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -0
  1108. package/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -0
  1109. package/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -0
  1110. package/node_modules/caniuse-lite/data/features/css-color-function.js +1 -0
  1111. package/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -0
  1112. package/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -0
  1113. package/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -0
  1114. package/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -0
  1115. package/node_modules/caniuse-lite/data/features/css-containment.js +1 -0
  1116. package/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -0
  1117. package/node_modules/caniuse-lite/data/features/css-counters.js +1 -0
  1118. package/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -0
  1119. package/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -0
  1120. package/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -0
  1121. package/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -0
  1122. package/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -0
  1123. package/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -0
  1124. package/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -0
  1125. package/node_modules/caniuse-lite/data/features/css-element-function.js +1 -0
  1126. package/node_modules/caniuse-lite/data/features/css-env-function.js +1 -0
  1127. package/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -0
  1128. package/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -0
  1129. package/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -0
  1130. package/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -0
  1131. package/node_modules/caniuse-lite/data/features/css-filters.js +1 -0
  1132. package/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -0
  1133. package/node_modules/caniuse-lite/data/features/css-first-line.js +1 -0
  1134. package/node_modules/caniuse-lite/data/features/css-fixed.js +1 -0
  1135. package/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -0
  1136. package/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -0
  1137. package/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -0
  1138. package/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -0
  1139. package/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -0
  1140. package/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -0
  1141. package/node_modules/caniuse-lite/data/features/css-gradients.js +1 -0
  1142. package/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -0
  1143. package/node_modules/caniuse-lite/data/features/css-grid.js +1 -0
  1144. package/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -0
  1145. package/node_modules/caniuse-lite/data/features/css-has.js +1 -0
  1146. package/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -0
  1147. package/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -0
  1148. package/node_modules/caniuse-lite/data/features/css-image-set.js +1 -0
  1149. package/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -0
  1150. package/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -0
  1151. package/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -0
  1152. package/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -0
  1153. package/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -0
  1154. package/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -0
  1155. package/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -0
  1156. package/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -0
  1157. package/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -0
  1158. package/node_modules/caniuse-lite/data/features/css-masks.js +1 -0
  1159. package/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -0
  1160. package/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -0
  1161. package/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -0
  1162. package/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -0
  1163. package/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -0
  1164. package/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -0
  1165. package/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -0
  1166. package/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -0
  1167. package/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -0
  1168. package/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -0
  1169. package/node_modules/caniuse-lite/data/features/css-nesting.js +1 -0
  1170. package/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -0
  1171. package/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -0
  1172. package/node_modules/caniuse-lite/data/features/css-opacity.js +1 -0
  1173. package/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -0
  1174. package/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -0
  1175. package/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -0
  1176. package/node_modules/caniuse-lite/data/features/css-overflow.js +1 -0
  1177. package/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -0
  1178. package/node_modules/caniuse-lite/data/features/css-page-break.js +1 -0
  1179. package/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -0
  1180. package/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -0
  1181. package/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -0
  1182. package/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -0
  1183. package/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -0
  1184. package/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -0
  1185. package/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -0
  1186. package/node_modules/caniuse-lite/data/features/css-reflections.js +1 -0
  1187. package/node_modules/caniuse-lite/data/features/css-regions.js +1 -0
  1188. package/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -0
  1189. package/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -0
  1190. package/node_modules/caniuse-lite/data/features/css-resize.js +1 -0
  1191. package/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -0
  1192. package/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -0
  1193. package/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -0
  1194. package/node_modules/caniuse-lite/data/features/css-scroll-timeline.js +1 -0
  1195. package/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -0
  1196. package/node_modules/caniuse-lite/data/features/css-sel2.js +1 -0
  1197. package/node_modules/caniuse-lite/data/features/css-sel3.js +1 -0
  1198. package/node_modules/caniuse-lite/data/features/css-selection.js +1 -0
  1199. package/node_modules/caniuse-lite/data/features/css-shapes.js +1 -0
  1200. package/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -0
  1201. package/node_modules/caniuse-lite/data/features/css-sticky.js +1 -0
  1202. package/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -0
  1203. package/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -0
  1204. package/node_modules/caniuse-lite/data/features/css-table.js +1 -0
  1205. package/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -0
  1206. package/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -0
  1207. package/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -0
  1208. package/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -0
  1209. package/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -0
  1210. package/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -0
  1211. package/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -0
  1212. package/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -0
  1213. package/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -0
  1214. package/node_modules/caniuse-lite/data/features/css-transitions.js +1 -0
  1215. package/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -0
  1216. package/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -0
  1217. package/node_modules/caniuse-lite/data/features/css-variables.js +1 -0
  1218. package/node_modules/caniuse-lite/data/features/css-when-else.js +1 -0
  1219. package/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -0
  1220. package/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -0
  1221. package/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -0
  1222. package/node_modules/caniuse-lite/data/features/css-zoom.js +1 -0
  1223. package/node_modules/caniuse-lite/data/features/css3-attr.js +1 -0
  1224. package/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -0
  1225. package/node_modules/caniuse-lite/data/features/css3-colors.js +1 -0
  1226. package/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -0
  1227. package/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -0
  1228. package/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -0
  1229. package/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -0
  1230. package/node_modules/caniuse-lite/data/features/currentcolor.js +1 -0
  1231. package/node_modules/caniuse-lite/data/features/custom-elements.js +1 -0
  1232. package/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -0
  1233. package/node_modules/caniuse-lite/data/features/customevent.js +1 -0
  1234. package/node_modules/caniuse-lite/data/features/datalist.js +1 -0
  1235. package/node_modules/caniuse-lite/data/features/dataset.js +1 -0
  1236. package/node_modules/caniuse-lite/data/features/datauri.js +1 -0
  1237. package/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -0
  1238. package/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -0
  1239. package/node_modules/caniuse-lite/data/features/decorators.js +1 -0
  1240. package/node_modules/caniuse-lite/data/features/details.js +1 -0
  1241. package/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -0
  1242. package/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -0
  1243. package/node_modules/caniuse-lite/data/features/dialog.js +1 -0
  1244. package/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -0
  1245. package/node_modules/caniuse-lite/data/features/dnssec.js +1 -0
  1246. package/node_modules/caniuse-lite/data/features/do-not-track.js +1 -0
  1247. package/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -0
  1248. package/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -0
  1249. package/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -0
  1250. package/node_modules/caniuse-lite/data/features/document-policy.js +1 -0
  1251. package/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -0
  1252. package/node_modules/caniuse-lite/data/features/documenthead.js +1 -0
  1253. package/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -0
  1254. package/node_modules/caniuse-lite/data/features/dom-range.js +1 -0
  1255. package/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -0
  1256. package/node_modules/caniuse-lite/data/features/dommatrix.js +1 -0
  1257. package/node_modules/caniuse-lite/data/features/download.js +1 -0
  1258. package/node_modules/caniuse-lite/data/features/dragndrop.js +1 -0
  1259. package/node_modules/caniuse-lite/data/features/element-closest.js +1 -0
  1260. package/node_modules/caniuse-lite/data/features/element-from-point.js +1 -0
  1261. package/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -0
  1262. package/node_modules/caniuse-lite/data/features/eme.js +1 -0
  1263. package/node_modules/caniuse-lite/data/features/eot.js +1 -0
  1264. package/node_modules/caniuse-lite/data/features/es5.js +1 -0
  1265. package/node_modules/caniuse-lite/data/features/es6-class.js +1 -0
  1266. package/node_modules/caniuse-lite/data/features/es6-generators.js +1 -0
  1267. package/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -0
  1268. package/node_modules/caniuse-lite/data/features/es6-module.js +1 -0
  1269. package/node_modules/caniuse-lite/data/features/es6-number.js +1 -0
  1270. package/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -0
  1271. package/node_modules/caniuse-lite/data/features/es6.js +1 -0
  1272. package/node_modules/caniuse-lite/data/features/eventsource.js +1 -0
  1273. package/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -0
  1274. package/node_modules/caniuse-lite/data/features/feature-policy.js +1 -0
  1275. package/node_modules/caniuse-lite/data/features/fetch.js +1 -0
  1276. package/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -0
  1277. package/node_modules/caniuse-lite/data/features/fileapi.js +1 -0
  1278. package/node_modules/caniuse-lite/data/features/filereader.js +1 -0
  1279. package/node_modules/caniuse-lite/data/features/filereadersync.js +1 -0
  1280. package/node_modules/caniuse-lite/data/features/filesystem.js +1 -0
  1281. package/node_modules/caniuse-lite/data/features/flac.js +1 -0
  1282. package/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -0
  1283. package/node_modules/caniuse-lite/data/features/flexbox.js +1 -0
  1284. package/node_modules/caniuse-lite/data/features/flow-root.js +1 -0
  1285. package/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -0
  1286. package/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -0
  1287. package/node_modules/caniuse-lite/data/features/font-feature.js +1 -0
  1288. package/node_modules/caniuse-lite/data/features/font-kerning.js +1 -0
  1289. package/node_modules/caniuse-lite/data/features/font-loading.js +1 -0
  1290. package/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -0
  1291. package/node_modules/caniuse-lite/data/features/font-smooth.js +1 -0
  1292. package/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -0
  1293. package/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -0
  1294. package/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -0
  1295. package/node_modules/caniuse-lite/data/features/fontface.js +1 -0
  1296. package/node_modules/caniuse-lite/data/features/form-attribute.js +1 -0
  1297. package/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -0
  1298. package/node_modules/caniuse-lite/data/features/form-validation.js +1 -0
  1299. package/node_modules/caniuse-lite/data/features/forms.js +1 -0
  1300. package/node_modules/caniuse-lite/data/features/fullscreen.js +1 -0
  1301. package/node_modules/caniuse-lite/data/features/gamepad.js +1 -0
  1302. package/node_modules/caniuse-lite/data/features/geolocation.js +1 -0
  1303. package/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -0
  1304. package/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -0
  1305. package/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -0
  1306. package/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -0
  1307. package/node_modules/caniuse-lite/data/features/gyroscope.js +1 -0
  1308. package/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -0
  1309. package/node_modules/caniuse-lite/data/features/hashchange.js +1 -0
  1310. package/node_modules/caniuse-lite/data/features/heif.js +1 -0
  1311. package/node_modules/caniuse-lite/data/features/hevc.js +1 -0
  1312. package/node_modules/caniuse-lite/data/features/hidden.js +1 -0
  1313. package/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -0
  1314. package/node_modules/caniuse-lite/data/features/history.js +1 -0
  1315. package/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -0
  1316. package/node_modules/caniuse-lite/data/features/html5semantic.js +1 -0
  1317. package/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -0
  1318. package/node_modules/caniuse-lite/data/features/http2.js +1 -0
  1319. package/node_modules/caniuse-lite/data/features/http3.js +1 -0
  1320. package/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -0
  1321. package/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -0
  1322. package/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -0
  1323. package/node_modules/caniuse-lite/data/features/imagecapture.js +1 -0
  1324. package/node_modules/caniuse-lite/data/features/ime.js +1 -0
  1325. package/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -0
  1326. package/node_modules/caniuse-lite/data/features/import-maps.js +1 -0
  1327. package/node_modules/caniuse-lite/data/features/imports.js +1 -0
  1328. package/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -0
  1329. package/node_modules/caniuse-lite/data/features/indexeddb.js +1 -0
  1330. package/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -0
  1331. package/node_modules/caniuse-lite/data/features/inline-block.js +1 -0
  1332. package/node_modules/caniuse-lite/data/features/innertext.js +1 -0
  1333. package/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -0
  1334. package/node_modules/caniuse-lite/data/features/input-color.js +1 -0
  1335. package/node_modules/caniuse-lite/data/features/input-datetime.js +1 -0
  1336. package/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -0
  1337. package/node_modules/caniuse-lite/data/features/input-event.js +1 -0
  1338. package/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -0
  1339. package/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -0
  1340. package/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -0
  1341. package/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -0
  1342. package/node_modules/caniuse-lite/data/features/input-minlength.js +1 -0
  1343. package/node_modules/caniuse-lite/data/features/input-number.js +1 -0
  1344. package/node_modules/caniuse-lite/data/features/input-pattern.js +1 -0
  1345. package/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -0
  1346. package/node_modules/caniuse-lite/data/features/input-range.js +1 -0
  1347. package/node_modules/caniuse-lite/data/features/input-search.js +1 -0
  1348. package/node_modules/caniuse-lite/data/features/input-selection.js +1 -0
  1349. package/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -0
  1350. package/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -0
  1351. package/node_modules/caniuse-lite/data/features/internationalization.js +1 -0
  1352. package/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -0
  1353. package/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -0
  1354. package/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -0
  1355. package/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -0
  1356. package/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -0
  1357. package/node_modules/caniuse-lite/data/features/jpegxl.js +1 -0
  1358. package/node_modules/caniuse-lite/data/features/jpegxr.js +1 -0
  1359. package/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -0
  1360. package/node_modules/caniuse-lite/data/features/json.js +1 -0
  1361. package/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -0
  1362. package/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -0
  1363. package/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -0
  1364. package/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -0
  1365. package/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -0
  1366. package/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -0
  1367. package/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -0
  1368. package/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -0
  1369. package/node_modules/caniuse-lite/data/features/lazyload.js +1 -0
  1370. package/node_modules/caniuse-lite/data/features/let.js +1 -0
  1371. package/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -0
  1372. package/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -0
  1373. package/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -0
  1374. package/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -0
  1375. package/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -0
  1376. package/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -0
  1377. package/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -0
  1378. package/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -0
  1379. package/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -0
  1380. package/node_modules/caniuse-lite/data/features/localecompare.js +1 -0
  1381. package/node_modules/caniuse-lite/data/features/magnetometer.js +1 -0
  1382. package/node_modules/caniuse-lite/data/features/matchesselector.js +1 -0
  1383. package/node_modules/caniuse-lite/data/features/matchmedia.js +1 -0
  1384. package/node_modules/caniuse-lite/data/features/mathml.js +1 -0
  1385. package/node_modules/caniuse-lite/data/features/maxlength.js +1 -0
  1386. package/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -0
  1387. package/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -0
  1388. package/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -0
  1389. package/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -0
  1390. package/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -0
  1391. package/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -0
  1392. package/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -0
  1393. package/node_modules/caniuse-lite/data/features/media-fragments.js +1 -0
  1394. package/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -0
  1395. package/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -0
  1396. package/node_modules/caniuse-lite/data/features/mediasource.js +1 -0
  1397. package/node_modules/caniuse-lite/data/features/menu.js +1 -0
  1398. package/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -0
  1399. package/node_modules/caniuse-lite/data/features/meter.js +1 -0
  1400. package/node_modules/caniuse-lite/data/features/midi.js +1 -0
  1401. package/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -0
  1402. package/node_modules/caniuse-lite/data/features/mp3.js +1 -0
  1403. package/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -0
  1404. package/node_modules/caniuse-lite/data/features/mpeg4.js +1 -0
  1405. package/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -0
  1406. package/node_modules/caniuse-lite/data/features/multicolumn.js +1 -0
  1407. package/node_modules/caniuse-lite/data/features/mutation-events.js +1 -0
  1408. package/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -0
  1409. package/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -0
  1410. package/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
  1411. package/node_modules/caniuse-lite/data/features/nav-timing.js +1 -0
  1412. package/node_modules/caniuse-lite/data/features/netinfo.js +1 -0
  1413. package/node_modules/caniuse-lite/data/features/notifications.js +1 -0
  1414. package/node_modules/caniuse-lite/data/features/object-entries.js +1 -0
  1415. package/node_modules/caniuse-lite/data/features/object-fit.js +1 -0
  1416. package/node_modules/caniuse-lite/data/features/object-observe.js +1 -0
  1417. package/node_modules/caniuse-lite/data/features/object-values.js +1 -0
  1418. package/node_modules/caniuse-lite/data/features/objectrtc.js +1 -0
  1419. package/node_modules/caniuse-lite/data/features/offline-apps.js +1 -0
  1420. package/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -0
  1421. package/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -0
  1422. package/node_modules/caniuse-lite/data/features/ogv.js +1 -0
  1423. package/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -0
  1424. package/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -0
  1425. package/node_modules/caniuse-lite/data/features/online-status.js +1 -0
  1426. package/node_modules/caniuse-lite/data/features/opus.js +1 -0
  1427. package/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -0
  1428. package/node_modules/caniuse-lite/data/features/outline.js +1 -0
  1429. package/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -0
  1430. package/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -0
  1431. package/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -0
  1432. package/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -0
  1433. package/node_modules/caniuse-lite/data/features/passkeys.js +1 -0
  1434. package/node_modules/caniuse-lite/data/features/passwordrules.js +1 -0
  1435. package/node_modules/caniuse-lite/data/features/path2d.js +1 -0
  1436. package/node_modules/caniuse-lite/data/features/payment-request.js +1 -0
  1437. package/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -0
  1438. package/node_modules/caniuse-lite/data/features/permissions-api.js +1 -0
  1439. package/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -0
  1440. package/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -0
  1441. package/node_modules/caniuse-lite/data/features/picture.js +1 -0
  1442. package/node_modules/caniuse-lite/data/features/ping.js +1 -0
  1443. package/node_modules/caniuse-lite/data/features/png-alpha.js +1 -0
  1444. package/node_modules/caniuse-lite/data/features/pointer-events.js +1 -0
  1445. package/node_modules/caniuse-lite/data/features/pointer.js +1 -0
  1446. package/node_modules/caniuse-lite/data/features/pointerlock.js +1 -0
  1447. package/node_modules/caniuse-lite/data/features/portals.js +1 -0
  1448. package/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -0
  1449. package/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -0
  1450. package/node_modules/caniuse-lite/data/features/progress.js +1 -0
  1451. package/node_modules/caniuse-lite/data/features/promise-finally.js +1 -0
  1452. package/node_modules/caniuse-lite/data/features/promises.js +1 -0
  1453. package/node_modules/caniuse-lite/data/features/proximity.js +1 -0
  1454. package/node_modules/caniuse-lite/data/features/proxy.js +1 -0
  1455. package/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -0
  1456. package/node_modules/caniuse-lite/data/features/push-api.js +1 -0
  1457. package/node_modules/caniuse-lite/data/features/queryselector.js +1 -0
  1458. package/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -0
  1459. package/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -0
  1460. package/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -0
  1461. package/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -0
  1462. package/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -0
  1463. package/node_modules/caniuse-lite/data/features/rellist.js +1 -0
  1464. package/node_modules/caniuse-lite/data/features/rem.js +1 -0
  1465. package/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -0
  1466. package/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -0
  1467. package/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -0
  1468. package/node_modules/caniuse-lite/data/features/resource-timing.js +1 -0
  1469. package/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -0
  1470. package/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -0
  1471. package/node_modules/caniuse-lite/data/features/ruby.js +1 -0
  1472. package/node_modules/caniuse-lite/data/features/run-in.js +1 -0
  1473. package/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -0
  1474. package/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -0
  1475. package/node_modules/caniuse-lite/data/features/script-async.js +1 -0
  1476. package/node_modules/caniuse-lite/data/features/script-defer.js +1 -0
  1477. package/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -0
  1478. package/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -0
  1479. package/node_modules/caniuse-lite/data/features/sdch.js +1 -0
  1480. package/node_modules/caniuse-lite/data/features/selection-api.js +1 -0
  1481. package/node_modules/caniuse-lite/data/features/server-timing.js +1 -0
  1482. package/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -0
  1483. package/node_modules/caniuse-lite/data/features/setimmediate.js +1 -0
  1484. package/node_modules/caniuse-lite/data/features/shadowdom.js +1 -0
  1485. package/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -0
  1486. package/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -0
  1487. package/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -0
  1488. package/node_modules/caniuse-lite/data/features/sni.js +1 -0
  1489. package/node_modules/caniuse-lite/data/features/spdy.js +1 -0
  1490. package/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -0
  1491. package/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -0
  1492. package/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -0
  1493. package/node_modules/caniuse-lite/data/features/sql-storage.js +1 -0
  1494. package/node_modules/caniuse-lite/data/features/srcset.js +1 -0
  1495. package/node_modules/caniuse-lite/data/features/stream.js +1 -0
  1496. package/node_modules/caniuse-lite/data/features/streams.js +1 -0
  1497. package/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -0
  1498. package/node_modules/caniuse-lite/data/features/style-scoped.js +1 -0
  1499. package/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -0
  1500. package/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -0
  1501. package/node_modules/caniuse-lite/data/features/svg-css.js +1 -0
  1502. package/node_modules/caniuse-lite/data/features/svg-filters.js +1 -0
  1503. package/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -0
  1504. package/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -0
  1505. package/node_modules/caniuse-lite/data/features/svg-html.js +1 -0
  1506. package/node_modules/caniuse-lite/data/features/svg-html5.js +1 -0
  1507. package/node_modules/caniuse-lite/data/features/svg-img.js +1 -0
  1508. package/node_modules/caniuse-lite/data/features/svg-smil.js +1 -0
  1509. package/node_modules/caniuse-lite/data/features/svg.js +1 -0
  1510. package/node_modules/caniuse-lite/data/features/sxg.js +1 -0
  1511. package/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -0
  1512. package/node_modules/caniuse-lite/data/features/template-literals.js +1 -0
  1513. package/node_modules/caniuse-lite/data/features/template.js +1 -0
  1514. package/node_modules/caniuse-lite/data/features/temporal.js +1 -0
  1515. package/node_modules/caniuse-lite/data/features/testfeat.js +1 -0
  1516. package/node_modules/caniuse-lite/data/features/text-decoration.js +1 -0
  1517. package/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -0
  1518. package/node_modules/caniuse-lite/data/features/text-overflow.js +1 -0
  1519. package/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -0
  1520. package/node_modules/caniuse-lite/data/features/text-stroke.js +1 -0
  1521. package/node_modules/caniuse-lite/data/features/textcontent.js +1 -0
  1522. package/node_modules/caniuse-lite/data/features/textencoder.js +1 -0
  1523. package/node_modules/caniuse-lite/data/features/tls1-1.js +1 -0
  1524. package/node_modules/caniuse-lite/data/features/tls1-2.js +1 -0
  1525. package/node_modules/caniuse-lite/data/features/tls1-3.js +1 -0
  1526. package/node_modules/caniuse-lite/data/features/touch.js +1 -0
  1527. package/node_modules/caniuse-lite/data/features/transforms2d.js +1 -0
  1528. package/node_modules/caniuse-lite/data/features/transforms3d.js +1 -0
  1529. package/node_modules/caniuse-lite/data/features/trusted-types.js +1 -0
  1530. package/node_modules/caniuse-lite/data/features/ttf.js +1 -0
  1531. package/node_modules/caniuse-lite/data/features/typedarrays.js +1 -0
  1532. package/node_modules/caniuse-lite/data/features/u2f.js +1 -0
  1533. package/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -0
  1534. package/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -0
  1535. package/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -0
  1536. package/node_modules/caniuse-lite/data/features/url.js +1 -0
  1537. package/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -0
  1538. package/node_modules/caniuse-lite/data/features/use-strict.js +1 -0
  1539. package/node_modules/caniuse-lite/data/features/user-select-none.js +1 -0
  1540. package/node_modules/caniuse-lite/data/features/user-timing.js +1 -0
  1541. package/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -0
  1542. package/node_modules/caniuse-lite/data/features/vector-effect.js +1 -0
  1543. package/node_modules/caniuse-lite/data/features/vibration.js +1 -0
  1544. package/node_modules/caniuse-lite/data/features/video.js +1 -0
  1545. package/node_modules/caniuse-lite/data/features/videotracks.js +1 -0
  1546. package/node_modules/caniuse-lite/data/features/view-transitions.js +1 -0
  1547. package/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -0
  1548. package/node_modules/caniuse-lite/data/features/viewport-units.js +1 -0
  1549. package/node_modules/caniuse-lite/data/features/wai-aria.js +1 -0
  1550. package/node_modules/caniuse-lite/data/features/wake-lock.js +1 -0
  1551. package/node_modules/caniuse-lite/data/features/wasm.js +1 -0
  1552. package/node_modules/caniuse-lite/data/features/wav.js +1 -0
  1553. package/node_modules/caniuse-lite/data/features/wbr-element.js +1 -0
  1554. package/node_modules/caniuse-lite/data/features/web-animation.js +1 -0
  1555. package/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -0
  1556. package/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -0
  1557. package/node_modules/caniuse-lite/data/features/web-serial.js +1 -0
  1558. package/node_modules/caniuse-lite/data/features/web-share.js +1 -0
  1559. package/node_modules/caniuse-lite/data/features/webauthn.js +1 -0
  1560. package/node_modules/caniuse-lite/data/features/webcodecs.js +1 -0
  1561. package/node_modules/caniuse-lite/data/features/webgl.js +1 -0
  1562. package/node_modules/caniuse-lite/data/features/webgl2.js +1 -0
  1563. package/node_modules/caniuse-lite/data/features/webgpu.js +1 -0
  1564. package/node_modules/caniuse-lite/data/features/webhid.js +1 -0
  1565. package/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -0
  1566. package/node_modules/caniuse-lite/data/features/webm.js +1 -0
  1567. package/node_modules/caniuse-lite/data/features/webnfc.js +1 -0
  1568. package/node_modules/caniuse-lite/data/features/webp.js +1 -0
  1569. package/node_modules/caniuse-lite/data/features/websockets.js +1 -0
  1570. package/node_modules/caniuse-lite/data/features/webtransport.js +1 -0
  1571. package/node_modules/caniuse-lite/data/features/webusb.js +1 -0
  1572. package/node_modules/caniuse-lite/data/features/webvr.js +1 -0
  1573. package/node_modules/caniuse-lite/data/features/webvtt.js +1 -0
  1574. package/node_modules/caniuse-lite/data/features/webworkers.js +1 -0
  1575. package/node_modules/caniuse-lite/data/features/webxr.js +1 -0
  1576. package/node_modules/caniuse-lite/data/features/will-change.js +1 -0
  1577. package/node_modules/caniuse-lite/data/features/woff.js +1 -0
  1578. package/node_modules/caniuse-lite/data/features/woff2.js +1 -0
  1579. package/node_modules/caniuse-lite/data/features/word-break.js +1 -0
  1580. package/node_modules/caniuse-lite/data/features/wordwrap.js +1 -0
  1581. package/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -0
  1582. package/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -0
  1583. package/node_modules/caniuse-lite/data/features/xhr2.js +1 -0
  1584. package/node_modules/caniuse-lite/data/features/xhtml.js +1 -0
  1585. package/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -0
  1586. package/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -0
  1587. package/node_modules/caniuse-lite/data/features/zstd.js +1 -0
  1588. package/node_modules/caniuse-lite/data/features.js +1 -0
  1589. package/node_modules/caniuse-lite/data/regions/AD.js +1 -0
  1590. package/node_modules/caniuse-lite/data/regions/AE.js +1 -0
  1591. package/node_modules/caniuse-lite/data/regions/AF.js +1 -0
  1592. package/node_modules/caniuse-lite/data/regions/AG.js +1 -0
  1593. package/node_modules/caniuse-lite/data/regions/AI.js +1 -0
  1594. package/node_modules/caniuse-lite/data/regions/AL.js +1 -0
  1595. package/node_modules/caniuse-lite/data/regions/AM.js +1 -0
  1596. package/node_modules/caniuse-lite/data/regions/AO.js +1 -0
  1597. package/node_modules/caniuse-lite/data/regions/AR.js +1 -0
  1598. package/node_modules/caniuse-lite/data/regions/AS.js +1 -0
  1599. package/node_modules/caniuse-lite/data/regions/AT.js +1 -0
  1600. package/node_modules/caniuse-lite/data/regions/AU.js +1 -0
  1601. package/node_modules/caniuse-lite/data/regions/AW.js +1 -0
  1602. package/node_modules/caniuse-lite/data/regions/AX.js +1 -0
  1603. package/node_modules/caniuse-lite/data/regions/AZ.js +1 -0
  1604. package/node_modules/caniuse-lite/data/regions/BA.js +1 -0
  1605. package/node_modules/caniuse-lite/data/regions/BB.js +1 -0
  1606. package/node_modules/caniuse-lite/data/regions/BD.js +1 -0
  1607. package/node_modules/caniuse-lite/data/regions/BE.js +1 -0
  1608. package/node_modules/caniuse-lite/data/regions/BF.js +1 -0
  1609. package/node_modules/caniuse-lite/data/regions/BG.js +1 -0
  1610. package/node_modules/caniuse-lite/data/regions/BH.js +1 -0
  1611. package/node_modules/caniuse-lite/data/regions/BI.js +1 -0
  1612. package/node_modules/caniuse-lite/data/regions/BJ.js +1 -0
  1613. package/node_modules/caniuse-lite/data/regions/BM.js +1 -0
  1614. package/node_modules/caniuse-lite/data/regions/BN.js +1 -0
  1615. package/node_modules/caniuse-lite/data/regions/BO.js +1 -0
  1616. package/node_modules/caniuse-lite/data/regions/BR.js +1 -0
  1617. package/node_modules/caniuse-lite/data/regions/BS.js +1 -0
  1618. package/node_modules/caniuse-lite/data/regions/BT.js +1 -0
  1619. package/node_modules/caniuse-lite/data/regions/BW.js +1 -0
  1620. package/node_modules/caniuse-lite/data/regions/BY.js +1 -0
  1621. package/node_modules/caniuse-lite/data/regions/BZ.js +1 -0
  1622. package/node_modules/caniuse-lite/data/regions/CA.js +1 -0
  1623. package/node_modules/caniuse-lite/data/regions/CD.js +1 -0
  1624. package/node_modules/caniuse-lite/data/regions/CF.js +1 -0
  1625. package/node_modules/caniuse-lite/data/regions/CG.js +1 -0
  1626. package/node_modules/caniuse-lite/data/regions/CH.js +1 -0
  1627. package/node_modules/caniuse-lite/data/regions/CI.js +1 -0
  1628. package/node_modules/caniuse-lite/data/regions/CK.js +1 -0
  1629. package/node_modules/caniuse-lite/data/regions/CL.js +1 -0
  1630. package/node_modules/caniuse-lite/data/regions/CM.js +1 -0
  1631. package/node_modules/caniuse-lite/data/regions/CN.js +1 -0
  1632. package/node_modules/caniuse-lite/data/regions/CO.js +1 -0
  1633. package/node_modules/caniuse-lite/data/regions/CR.js +1 -0
  1634. package/node_modules/caniuse-lite/data/regions/CU.js +1 -0
  1635. package/node_modules/caniuse-lite/data/regions/CV.js +1 -0
  1636. package/node_modules/caniuse-lite/data/regions/CX.js +1 -0
  1637. package/node_modules/caniuse-lite/data/regions/CY.js +1 -0
  1638. package/node_modules/caniuse-lite/data/regions/CZ.js +1 -0
  1639. package/node_modules/caniuse-lite/data/regions/DE.js +1 -0
  1640. package/node_modules/caniuse-lite/data/regions/DJ.js +1 -0
  1641. package/node_modules/caniuse-lite/data/regions/DK.js +1 -0
  1642. package/node_modules/caniuse-lite/data/regions/DM.js +1 -0
  1643. package/node_modules/caniuse-lite/data/regions/DO.js +1 -0
  1644. package/node_modules/caniuse-lite/data/regions/DZ.js +1 -0
  1645. package/node_modules/caniuse-lite/data/regions/EC.js +1 -0
  1646. package/node_modules/caniuse-lite/data/regions/EE.js +1 -0
  1647. package/node_modules/caniuse-lite/data/regions/EG.js +1 -0
  1648. package/node_modules/caniuse-lite/data/regions/ER.js +1 -0
  1649. package/node_modules/caniuse-lite/data/regions/ES.js +1 -0
  1650. package/node_modules/caniuse-lite/data/regions/ET.js +1 -0
  1651. package/node_modules/caniuse-lite/data/regions/FI.js +1 -0
  1652. package/node_modules/caniuse-lite/data/regions/FJ.js +1 -0
  1653. package/node_modules/caniuse-lite/data/regions/FK.js +1 -0
  1654. package/node_modules/caniuse-lite/data/regions/FM.js +1 -0
  1655. package/node_modules/caniuse-lite/data/regions/FO.js +1 -0
  1656. package/node_modules/caniuse-lite/data/regions/FR.js +1 -0
  1657. package/node_modules/caniuse-lite/data/regions/GA.js +1 -0
  1658. package/node_modules/caniuse-lite/data/regions/GB.js +1 -0
  1659. package/node_modules/caniuse-lite/data/regions/GD.js +1 -0
  1660. package/node_modules/caniuse-lite/data/regions/GE.js +1 -0
  1661. package/node_modules/caniuse-lite/data/regions/GF.js +1 -0
  1662. package/node_modules/caniuse-lite/data/regions/GG.js +1 -0
  1663. package/node_modules/caniuse-lite/data/regions/GH.js +1 -0
  1664. package/node_modules/caniuse-lite/data/regions/GI.js +1 -0
  1665. package/node_modules/caniuse-lite/data/regions/GL.js +1 -0
  1666. package/node_modules/caniuse-lite/data/regions/GM.js +1 -0
  1667. package/node_modules/caniuse-lite/data/regions/GN.js +1 -0
  1668. package/node_modules/caniuse-lite/data/regions/GP.js +1 -0
  1669. package/node_modules/caniuse-lite/data/regions/GQ.js +1 -0
  1670. package/node_modules/caniuse-lite/data/regions/GR.js +1 -0
  1671. package/node_modules/caniuse-lite/data/regions/GT.js +1 -0
  1672. package/node_modules/caniuse-lite/data/regions/GU.js +1 -0
  1673. package/node_modules/caniuse-lite/data/regions/GW.js +1 -0
  1674. package/node_modules/caniuse-lite/data/regions/GY.js +1 -0
  1675. package/node_modules/caniuse-lite/data/regions/HK.js +1 -0
  1676. package/node_modules/caniuse-lite/data/regions/HN.js +1 -0
  1677. package/node_modules/caniuse-lite/data/regions/HR.js +1 -0
  1678. package/node_modules/caniuse-lite/data/regions/HT.js +1 -0
  1679. package/node_modules/caniuse-lite/data/regions/HU.js +1 -0
  1680. package/node_modules/caniuse-lite/data/regions/ID.js +1 -0
  1681. package/node_modules/caniuse-lite/data/regions/IE.js +1 -0
  1682. package/node_modules/caniuse-lite/data/regions/IL.js +1 -0
  1683. package/node_modules/caniuse-lite/data/regions/IM.js +1 -0
  1684. package/node_modules/caniuse-lite/data/regions/IN.js +1 -0
  1685. package/node_modules/caniuse-lite/data/regions/IQ.js +1 -0
  1686. package/node_modules/caniuse-lite/data/regions/IR.js +1 -0
  1687. package/node_modules/caniuse-lite/data/regions/IS.js +1 -0
  1688. package/node_modules/caniuse-lite/data/regions/IT.js +1 -0
  1689. package/node_modules/caniuse-lite/data/regions/JE.js +1 -0
  1690. package/node_modules/caniuse-lite/data/regions/JM.js +1 -0
  1691. package/node_modules/caniuse-lite/data/regions/JO.js +1 -0
  1692. package/node_modules/caniuse-lite/data/regions/JP.js +1 -0
  1693. package/node_modules/caniuse-lite/data/regions/KE.js +1 -0
  1694. package/node_modules/caniuse-lite/data/regions/KG.js +1 -0
  1695. package/node_modules/caniuse-lite/data/regions/KH.js +1 -0
  1696. package/node_modules/caniuse-lite/data/regions/KI.js +1 -0
  1697. package/node_modules/caniuse-lite/data/regions/KM.js +1 -0
  1698. package/node_modules/caniuse-lite/data/regions/KN.js +1 -0
  1699. package/node_modules/caniuse-lite/data/regions/KP.js +1 -0
  1700. package/node_modules/caniuse-lite/data/regions/KR.js +1 -0
  1701. package/node_modules/caniuse-lite/data/regions/KW.js +1 -0
  1702. package/node_modules/caniuse-lite/data/regions/KY.js +1 -0
  1703. package/node_modules/caniuse-lite/data/regions/KZ.js +1 -0
  1704. package/node_modules/caniuse-lite/data/regions/LA.js +1 -0
  1705. package/node_modules/caniuse-lite/data/regions/LB.js +1 -0
  1706. package/node_modules/caniuse-lite/data/regions/LC.js +1 -0
  1707. package/node_modules/caniuse-lite/data/regions/LI.js +1 -0
  1708. package/node_modules/caniuse-lite/data/regions/LK.js +1 -0
  1709. package/node_modules/caniuse-lite/data/regions/LR.js +1 -0
  1710. package/node_modules/caniuse-lite/data/regions/LS.js +1 -0
  1711. package/node_modules/caniuse-lite/data/regions/LT.js +1 -0
  1712. package/node_modules/caniuse-lite/data/regions/LU.js +1 -0
  1713. package/node_modules/caniuse-lite/data/regions/LV.js +1 -0
  1714. package/node_modules/caniuse-lite/data/regions/LY.js +1 -0
  1715. package/node_modules/caniuse-lite/data/regions/MA.js +1 -0
  1716. package/node_modules/caniuse-lite/data/regions/MC.js +1 -0
  1717. package/node_modules/caniuse-lite/data/regions/MD.js +1 -0
  1718. package/node_modules/caniuse-lite/data/regions/ME.js +1 -0
  1719. package/node_modules/caniuse-lite/data/regions/MG.js +1 -0
  1720. package/node_modules/caniuse-lite/data/regions/MH.js +1 -0
  1721. package/node_modules/caniuse-lite/data/regions/MK.js +1 -0
  1722. package/node_modules/caniuse-lite/data/regions/ML.js +1 -0
  1723. package/node_modules/caniuse-lite/data/regions/MM.js +1 -0
  1724. package/node_modules/caniuse-lite/data/regions/MN.js +1 -0
  1725. package/node_modules/caniuse-lite/data/regions/MO.js +1 -0
  1726. package/node_modules/caniuse-lite/data/regions/MP.js +1 -0
  1727. package/node_modules/caniuse-lite/data/regions/MQ.js +1 -0
  1728. package/node_modules/caniuse-lite/data/regions/MR.js +1 -0
  1729. package/node_modules/caniuse-lite/data/regions/MS.js +1 -0
  1730. package/node_modules/caniuse-lite/data/regions/MT.js +1 -0
  1731. package/node_modules/caniuse-lite/data/regions/MU.js +1 -0
  1732. package/node_modules/caniuse-lite/data/regions/MV.js +1 -0
  1733. package/node_modules/caniuse-lite/data/regions/MW.js +1 -0
  1734. package/node_modules/caniuse-lite/data/regions/MX.js +1 -0
  1735. package/node_modules/caniuse-lite/data/regions/MY.js +1 -0
  1736. package/node_modules/caniuse-lite/data/regions/MZ.js +1 -0
  1737. package/node_modules/caniuse-lite/data/regions/NA.js +1 -0
  1738. package/node_modules/caniuse-lite/data/regions/NC.js +1 -0
  1739. package/node_modules/caniuse-lite/data/regions/NE.js +1 -0
  1740. package/node_modules/caniuse-lite/data/regions/NF.js +1 -0
  1741. package/node_modules/caniuse-lite/data/regions/NG.js +1 -0
  1742. package/node_modules/caniuse-lite/data/regions/NI.js +1 -0
  1743. package/node_modules/caniuse-lite/data/regions/NL.js +1 -0
  1744. package/node_modules/caniuse-lite/data/regions/NO.js +1 -0
  1745. package/node_modules/caniuse-lite/data/regions/NP.js +1 -0
  1746. package/node_modules/caniuse-lite/data/regions/NR.js +1 -0
  1747. package/node_modules/caniuse-lite/data/regions/NU.js +1 -0
  1748. package/node_modules/caniuse-lite/data/regions/NZ.js +1 -0
  1749. package/node_modules/caniuse-lite/data/regions/OM.js +1 -0
  1750. package/node_modules/caniuse-lite/data/regions/PA.js +1 -0
  1751. package/node_modules/caniuse-lite/data/regions/PE.js +1 -0
  1752. package/node_modules/caniuse-lite/data/regions/PF.js +1 -0
  1753. package/node_modules/caniuse-lite/data/regions/PG.js +1 -0
  1754. package/node_modules/caniuse-lite/data/regions/PH.js +1 -0
  1755. package/node_modules/caniuse-lite/data/regions/PK.js +1 -0
  1756. package/node_modules/caniuse-lite/data/regions/PL.js +1 -0
  1757. package/node_modules/caniuse-lite/data/regions/PM.js +1 -0
  1758. package/node_modules/caniuse-lite/data/regions/PN.js +1 -0
  1759. package/node_modules/caniuse-lite/data/regions/PR.js +1 -0
  1760. package/node_modules/caniuse-lite/data/regions/PS.js +1 -0
  1761. package/node_modules/caniuse-lite/data/regions/PT.js +1 -0
  1762. package/node_modules/caniuse-lite/data/regions/PW.js +1 -0
  1763. package/node_modules/caniuse-lite/data/regions/PY.js +1 -0
  1764. package/node_modules/caniuse-lite/data/regions/QA.js +1 -0
  1765. package/node_modules/caniuse-lite/data/regions/RE.js +1 -0
  1766. package/node_modules/caniuse-lite/data/regions/RO.js +1 -0
  1767. package/node_modules/caniuse-lite/data/regions/RS.js +1 -0
  1768. package/node_modules/caniuse-lite/data/regions/RU.js +1 -0
  1769. package/node_modules/caniuse-lite/data/regions/RW.js +1 -0
  1770. package/node_modules/caniuse-lite/data/regions/SA.js +1 -0
  1771. package/node_modules/caniuse-lite/data/regions/SB.js +1 -0
  1772. package/node_modules/caniuse-lite/data/regions/SC.js +1 -0
  1773. package/node_modules/caniuse-lite/data/regions/SD.js +1 -0
  1774. package/node_modules/caniuse-lite/data/regions/SE.js +1 -0
  1775. package/node_modules/caniuse-lite/data/regions/SG.js +1 -0
  1776. package/node_modules/caniuse-lite/data/regions/SH.js +1 -0
  1777. package/node_modules/caniuse-lite/data/regions/SI.js +1 -0
  1778. package/node_modules/caniuse-lite/data/regions/SK.js +1 -0
  1779. package/node_modules/caniuse-lite/data/regions/SL.js +1 -0
  1780. package/node_modules/caniuse-lite/data/regions/SM.js +1 -0
  1781. package/node_modules/caniuse-lite/data/regions/SN.js +1 -0
  1782. package/node_modules/caniuse-lite/data/regions/SO.js +1 -0
  1783. package/node_modules/caniuse-lite/data/regions/SR.js +1 -0
  1784. package/node_modules/caniuse-lite/data/regions/ST.js +1 -0
  1785. package/node_modules/caniuse-lite/data/regions/SV.js +1 -0
  1786. package/node_modules/caniuse-lite/data/regions/SY.js +1 -0
  1787. package/node_modules/caniuse-lite/data/regions/SZ.js +1 -0
  1788. package/node_modules/caniuse-lite/data/regions/TC.js +1 -0
  1789. package/node_modules/caniuse-lite/data/regions/TD.js +1 -0
  1790. package/node_modules/caniuse-lite/data/regions/TG.js +1 -0
  1791. package/node_modules/caniuse-lite/data/regions/TH.js +1 -0
  1792. package/node_modules/caniuse-lite/data/regions/TJ.js +1 -0
  1793. package/node_modules/caniuse-lite/data/regions/TK.js +1 -0
  1794. package/node_modules/caniuse-lite/data/regions/TL.js +1 -0
  1795. package/node_modules/caniuse-lite/data/regions/TM.js +1 -0
  1796. package/node_modules/caniuse-lite/data/regions/TN.js +1 -0
  1797. package/node_modules/caniuse-lite/data/regions/TO.js +1 -0
  1798. package/node_modules/caniuse-lite/data/regions/TR.js +1 -0
  1799. package/node_modules/caniuse-lite/data/regions/TT.js +1 -0
  1800. package/node_modules/caniuse-lite/data/regions/TV.js +1 -0
  1801. package/node_modules/caniuse-lite/data/regions/TW.js +1 -0
  1802. package/node_modules/caniuse-lite/data/regions/TZ.js +1 -0
  1803. package/node_modules/caniuse-lite/data/regions/UA.js +1 -0
  1804. package/node_modules/caniuse-lite/data/regions/UG.js +1 -0
  1805. package/node_modules/caniuse-lite/data/regions/US.js +1 -0
  1806. package/node_modules/caniuse-lite/data/regions/UY.js +1 -0
  1807. package/node_modules/caniuse-lite/data/regions/UZ.js +1 -0
  1808. package/node_modules/caniuse-lite/data/regions/VA.js +1 -0
  1809. package/node_modules/caniuse-lite/data/regions/VC.js +1 -0
  1810. package/node_modules/caniuse-lite/data/regions/VE.js +1 -0
  1811. package/node_modules/caniuse-lite/data/regions/VG.js +1 -0
  1812. package/node_modules/caniuse-lite/data/regions/VI.js +1 -0
  1813. package/node_modules/caniuse-lite/data/regions/VN.js +1 -0
  1814. package/node_modules/caniuse-lite/data/regions/VU.js +1 -0
  1815. package/node_modules/caniuse-lite/data/regions/WF.js +1 -0
  1816. package/node_modules/caniuse-lite/data/regions/WS.js +1 -0
  1817. package/node_modules/caniuse-lite/data/regions/YE.js +1 -0
  1818. package/node_modules/caniuse-lite/data/regions/YT.js +1 -0
  1819. package/node_modules/caniuse-lite/data/regions/ZA.js +1 -0
  1820. package/node_modules/caniuse-lite/data/regions/ZM.js +1 -0
  1821. package/node_modules/caniuse-lite/data/regions/ZW.js +1 -0
  1822. package/node_modules/caniuse-lite/data/regions/alt-af.js +1 -0
  1823. package/node_modules/caniuse-lite/data/regions/alt-an.js +1 -0
  1824. package/node_modules/caniuse-lite/data/regions/alt-as.js +1 -0
  1825. package/node_modules/caniuse-lite/data/regions/alt-eu.js +1 -0
  1826. package/node_modules/caniuse-lite/data/regions/alt-na.js +1 -0
  1827. package/node_modules/caniuse-lite/data/regions/alt-oc.js +1 -0
  1828. package/node_modules/caniuse-lite/data/regions/alt-sa.js +1 -0
  1829. package/node_modules/caniuse-lite/data/regions/alt-ww.js +1 -0
  1830. package/node_modules/caniuse-lite/dist/lib/statuses.js +9 -0
  1831. package/node_modules/caniuse-lite/dist/lib/supported.js +9 -0
  1832. package/node_modules/caniuse-lite/dist/unpacker/agents.js +47 -0
  1833. package/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +1 -0
  1834. package/node_modules/caniuse-lite/dist/unpacker/browsers.js +1 -0
  1835. package/node_modules/caniuse-lite/dist/unpacker/feature.js +48 -0
  1836. package/node_modules/caniuse-lite/dist/unpacker/features.js +6 -0
  1837. package/node_modules/caniuse-lite/dist/unpacker/index.js +4 -0
  1838. package/node_modules/caniuse-lite/dist/unpacker/region.js +22 -0
  1839. package/node_modules/caniuse-lite/package.json +34 -0
  1840. package/node_modules/chalk/index.js +228 -0
  1841. package/node_modules/chalk/index.js.flow +93 -0
  1842. package/node_modules/chalk/license +9 -0
  1843. package/node_modules/chalk/package.json +71 -0
  1844. package/node_modules/chalk/readme.md +314 -0
  1845. package/node_modules/chalk/templates.js +128 -0
  1846. package/node_modules/chalk/types/index.d.ts +97 -0
  1847. package/node_modules/clean-stack/index.d.ts +47 -0
  1848. package/node_modules/clean-stack/index.js +40 -0
  1849. package/node_modules/clean-stack/license +9 -0
  1850. package/node_modules/clean-stack/package.json +39 -0
  1851. package/node_modules/clean-stack/readme.md +76 -0
  1852. package/node_modules/cliui/CHANGELOG.md +76 -0
  1853. package/node_modules/cliui/LICENSE.txt +14 -0
  1854. package/node_modules/cliui/README.md +115 -0
  1855. package/node_modules/cliui/index.js +354 -0
  1856. package/node_modules/cliui/package.json +65 -0
  1857. package/node_modules/color-convert/CHANGELOG.md +54 -0
  1858. package/node_modules/color-convert/LICENSE +21 -0
  1859. package/node_modules/color-convert/README.md +68 -0
  1860. package/node_modules/color-convert/conversions.js +868 -0
  1861. package/node_modules/color-convert/index.js +78 -0
  1862. package/node_modules/color-convert/package.json +46 -0
  1863. package/node_modules/color-convert/route.js +97 -0
  1864. package/node_modules/color-name/.eslintrc.json +43 -0
  1865. package/node_modules/color-name/.npmignore +107 -0
  1866. package/node_modules/color-name/LICENSE +8 -0
  1867. package/node_modules/color-name/README.md +11 -0
  1868. package/node_modules/color-name/index.js +152 -0
  1869. package/node_modules/color-name/package.json +25 -0
  1870. package/node_modules/color-name/test.js +7 -0
  1871. package/node_modules/commondir/LICENSE +24 -0
  1872. package/node_modules/commondir/example/dir.js +3 -0
  1873. package/node_modules/commondir/index.js +29 -0
  1874. package/node_modules/commondir/package.json +34 -0
  1875. package/node_modules/commondir/readme.markdown +48 -0
  1876. package/node_modules/commondir/test/dirs.js +55 -0
  1877. package/node_modules/concat-map/.travis.yml +4 -0
  1878. package/node_modules/concat-map/LICENSE +18 -0
  1879. package/node_modules/concat-map/README.markdown +62 -0
  1880. package/node_modules/concat-map/example/map.js +6 -0
  1881. package/node_modules/concat-map/index.js +13 -0
  1882. package/node_modules/concat-map/package.json +43 -0
  1883. package/node_modules/concat-map/test/map.js +39 -0
  1884. package/node_modules/convert-source-map/LICENSE +23 -0
  1885. package/node_modules/convert-source-map/README.md +123 -0
  1886. package/node_modules/convert-source-map/index.js +179 -0
  1887. package/node_modules/convert-source-map/package.json +41 -0
  1888. package/node_modules/cross-spawn/CHANGELOG.md +130 -0
  1889. package/node_modules/cross-spawn/LICENSE +21 -0
  1890. package/node_modules/cross-spawn/README.md +96 -0
  1891. package/node_modules/cross-spawn/index.js +39 -0
  1892. package/node_modules/cross-spawn/lib/enoent.js +59 -0
  1893. package/node_modules/cross-spawn/lib/parse.js +91 -0
  1894. package/node_modules/cross-spawn/lib/util/escape.js +45 -0
  1895. package/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  1896. package/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  1897. package/node_modules/cross-spawn/package.json +73 -0
  1898. package/node_modules/debug/LICENSE +20 -0
  1899. package/node_modules/debug/README.md +481 -0
  1900. package/node_modules/debug/package.json +59 -0
  1901. package/node_modules/debug/src/browser.js +269 -0
  1902. package/node_modules/debug/src/common.js +274 -0
  1903. package/node_modules/debug/src/index.js +10 -0
  1904. package/node_modules/debug/src/node.js +263 -0
  1905. package/node_modules/decamelize/index.js +13 -0
  1906. package/node_modules/decamelize/license +21 -0
  1907. package/node_modules/decamelize/package.json +38 -0
  1908. package/node_modules/decamelize/readme.md +48 -0
  1909. package/node_modules/default-require-extensions/js.js +8 -0
  1910. package/node_modules/default-require-extensions/json.js +14 -0
  1911. package/node_modules/default-require-extensions/license +11 -0
  1912. package/node_modules/default-require-extensions/package.json +43 -0
  1913. package/node_modules/default-require-extensions/readme.md +27 -0
  1914. package/node_modules/electron-to-chromium/CHANGELOG.md +14 -0
  1915. package/node_modules/electron-to-chromium/LICENSE +5 -0
  1916. package/node_modules/electron-to-chromium/README.md +186 -0
  1917. package/node_modules/electron-to-chromium/chromium-versions.js +57 -0
  1918. package/node_modules/electron-to-chromium/chromium-versions.json +1 -0
  1919. package/node_modules/electron-to-chromium/full-chromium-versions.js +2726 -0
  1920. package/node_modules/electron-to-chromium/full-chromium-versions.json +1 -0
  1921. package/node_modules/electron-to-chromium/full-versions.js +1994 -0
  1922. package/node_modules/electron-to-chromium/full-versions.json +1 -0
  1923. package/node_modules/electron-to-chromium/index.js +36 -0
  1924. package/node_modules/electron-to-chromium/package.json +44 -0
  1925. package/node_modules/electron-to-chromium/versions.js +129 -0
  1926. package/node_modules/electron-to-chromium/versions.json +1 -0
  1927. package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  1928. package/node_modules/emoji-regex/README.md +73 -0
  1929. package/node_modules/emoji-regex/es2015/index.js +6 -0
  1930. package/node_modules/emoji-regex/es2015/text.js +6 -0
  1931. package/node_modules/emoji-regex/index.d.ts +23 -0
  1932. package/node_modules/emoji-regex/index.js +6 -0
  1933. package/node_modules/emoji-regex/package.json +50 -0
  1934. package/node_modules/emoji-regex/text.js +6 -0
  1935. package/node_modules/es6-error/CHANGELOG.md +26 -0
  1936. package/node_modules/es6-error/LICENSE.md +21 -0
  1937. package/node_modules/es6-error/README.md +59 -0
  1938. package/node_modules/es6-error/es6/index.js +72 -0
  1939. package/node_modules/es6-error/lib/index.js +79 -0
  1940. package/node_modules/es6-error/package.json +48 -0
  1941. package/node_modules/es6-error/typings/index.d.ts +1 -0
  1942. package/node_modules/escalade/dist/index.js +22 -0
  1943. package/node_modules/escalade/dist/index.mjs +22 -0
  1944. package/node_modules/escalade/index.d.ts +3 -0
  1945. package/node_modules/escalade/license +9 -0
  1946. package/node_modules/escalade/package.json +61 -0
  1947. package/node_modules/escalade/readme.md +211 -0
  1948. package/node_modules/escalade/sync/index.d.ts +2 -0
  1949. package/node_modules/escalade/sync/index.js +18 -0
  1950. package/node_modules/escalade/sync/index.mjs +18 -0
  1951. package/node_modules/escape-string-regexp/index.js +11 -0
  1952. package/node_modules/escape-string-regexp/license +21 -0
  1953. package/node_modules/escape-string-regexp/package.json +41 -0
  1954. package/node_modules/escape-string-regexp/readme.md +27 -0
  1955. package/node_modules/esprima/ChangeLog +235 -0
  1956. package/node_modules/esprima/LICENSE.BSD +21 -0
  1957. package/node_modules/esprima/README.md +46 -0
  1958. package/node_modules/esprima/bin/esparse.js +139 -0
  1959. package/node_modules/esprima/bin/esvalidate.js +236 -0
  1960. package/node_modules/esprima/dist/esprima.js +6709 -0
  1961. package/node_modules/esprima/package.json +112 -0
  1962. package/node_modules/fast-xml-parser/LICENSE +21 -0
  1963. package/node_modules/fast-xml-parser/README.md +367 -0
  1964. package/node_modules/fast-xml-parser/cli.js +101 -0
  1965. package/node_modules/fast-xml-parser/package.json +94 -0
  1966. package/node_modules/fast-xml-parser/src/json2xml.js +274 -0
  1967. package/node_modules/fast-xml-parser/src/nimndata.js +144 -0
  1968. package/node_modules/fast-xml-parser/src/node2json.js +42 -0
  1969. package/node_modules/fast-xml-parser/src/node2json_str.js +63 -0
  1970. package/node_modules/fast-xml-parser/src/parser.d.ts +79 -0
  1971. package/node_modules/fast-xml-parser/src/parser.js +76 -0
  1972. package/node_modules/fast-xml-parser/src/read.js +92 -0
  1973. package/node_modules/fast-xml-parser/src/util.js +108 -0
  1974. package/node_modules/fast-xml-parser/src/validator.js +413 -0
  1975. package/node_modules/fast-xml-parser/src/xmlNode.js +17 -0
  1976. package/node_modules/fast-xml-parser/src/xmlstr2xmlnode.js +339 -0
  1977. package/node_modules/find-cache-dir/index.js +67 -0
  1978. package/node_modules/find-cache-dir/license +9 -0
  1979. package/node_modules/find-cache-dir/package.json +44 -0
  1980. package/node_modules/find-cache-dir/readme.md +123 -0
  1981. package/node_modules/find-up/index.d.ts +137 -0
  1982. package/node_modules/find-up/index.js +89 -0
  1983. package/node_modules/find-up/license +9 -0
  1984. package/node_modules/find-up/package.json +53 -0
  1985. package/node_modules/find-up/readme.md +156 -0
  1986. package/node_modules/foreground-child/CHANGELOG.md +99 -0
  1987. package/node_modules/foreground-child/LICENSE +15 -0
  1988. package/node_modules/foreground-child/README.md +62 -0
  1989. package/node_modules/foreground-child/changelog.sh +10 -0
  1990. package/node_modules/foreground-child/index.js +133 -0
  1991. package/node_modules/foreground-child/package.json +40 -0
  1992. package/node_modules/fromentries/LICENSE +20 -0
  1993. package/node_modules/fromentries/README.md +70 -0
  1994. package/node_modules/fromentries/index.d.ts +3 -0
  1995. package/node_modules/fromentries/index.js +7 -0
  1996. package/node_modules/fromentries/package.json +58 -0
  1997. package/node_modules/fs.realpath/LICENSE +43 -0
  1998. package/node_modules/fs.realpath/README.md +33 -0
  1999. package/node_modules/fs.realpath/index.js +66 -0
  2000. package/node_modules/fs.realpath/old.js +303 -0
  2001. package/node_modules/fs.realpath/package.json +26 -0
  2002. package/node_modules/gensync/LICENSE +7 -0
  2003. package/node_modules/gensync/README.md +196 -0
  2004. package/node_modules/gensync/index.js +373 -0
  2005. package/node_modules/gensync/index.js.flow +32 -0
  2006. package/node_modules/gensync/package.json +37 -0
  2007. package/node_modules/gensync/test/.babelrc +5 -0
  2008. package/node_modules/gensync/test/index.test.js +489 -0
  2009. package/node_modules/get-caller-file/LICENSE.md +6 -0
  2010. package/node_modules/get-caller-file/README.md +41 -0
  2011. package/node_modules/get-caller-file/index.d.ts +2 -0
  2012. package/node_modules/get-caller-file/index.js +22 -0
  2013. package/node_modules/get-caller-file/index.js.map +1 -0
  2014. package/node_modules/get-caller-file/package.json +42 -0
  2015. package/node_modules/get-package-type/CHANGELOG.md +10 -0
  2016. package/node_modules/get-package-type/LICENSE +21 -0
  2017. package/node_modules/get-package-type/README.md +32 -0
  2018. package/node_modules/get-package-type/async.cjs +52 -0
  2019. package/node_modules/get-package-type/cache.cjs +3 -0
  2020. package/node_modules/get-package-type/index.cjs +7 -0
  2021. package/node_modules/get-package-type/is-node-modules.cjs +15 -0
  2022. package/node_modules/get-package-type/package.json +35 -0
  2023. package/node_modules/get-package-type/sync.cjs +42 -0
  2024. package/node_modules/glob/LICENSE +21 -0
  2025. package/node_modules/glob/README.md +378 -0
  2026. package/node_modules/glob/common.js +238 -0
  2027. package/node_modules/glob/glob.js +790 -0
  2028. package/node_modules/glob/package.json +55 -0
  2029. package/node_modules/glob/sync.js +486 -0
  2030. package/node_modules/globals/globals.json +1563 -0
  2031. package/node_modules/globals/index.js +2 -0
  2032. package/node_modules/globals/license +9 -0
  2033. package/node_modules/globals/package.json +41 -0
  2034. package/node_modules/globals/readme.md +41 -0
  2035. package/node_modules/graceful-fs/LICENSE +15 -0
  2036. package/node_modules/graceful-fs/README.md +143 -0
  2037. package/node_modules/graceful-fs/clone.js +23 -0
  2038. package/node_modules/graceful-fs/graceful-fs.js +448 -0
  2039. package/node_modules/graceful-fs/legacy-streams.js +118 -0
  2040. package/node_modules/graceful-fs/package.json +53 -0
  2041. package/node_modules/graceful-fs/polyfills.js +355 -0
  2042. package/node_modules/has-flag/index.js +8 -0
  2043. package/node_modules/has-flag/license +9 -0
  2044. package/node_modules/has-flag/package.json +44 -0
  2045. package/node_modules/has-flag/readme.md +70 -0
  2046. package/node_modules/hasha/index.d.ts +167 -0
  2047. package/node_modules/hasha/index.js +150 -0
  2048. package/node_modules/hasha/license +9 -0
  2049. package/node_modules/hasha/package.json +62 -0
  2050. package/node_modules/hasha/readme.md +129 -0
  2051. package/node_modules/hasha/thread.js +57 -0
  2052. package/node_modules/html-escaper/LICENSE.txt +19 -0
  2053. package/node_modules/html-escaper/README.md +97 -0
  2054. package/node_modules/html-escaper/cjs/index.js +65 -0
  2055. package/node_modules/html-escaper/cjs/package.json +1 -0
  2056. package/node_modules/html-escaper/esm/index.js +62 -0
  2057. package/node_modules/html-escaper/index.js +70 -0
  2058. package/node_modules/html-escaper/min.js +1 -0
  2059. package/node_modules/html-escaper/package.json +42 -0
  2060. package/node_modules/html-escaper/test/index.js +23 -0
  2061. package/node_modules/html-escaper/test/package.json +1 -0
  2062. package/node_modules/imurmurhash/README.md +122 -0
  2063. package/node_modules/imurmurhash/imurmurhash.js +138 -0
  2064. package/node_modules/imurmurhash/imurmurhash.min.js +12 -0
  2065. package/node_modules/imurmurhash/package.json +40 -0
  2066. package/node_modules/indent-string/index.d.ts +42 -0
  2067. package/node_modules/indent-string/index.js +35 -0
  2068. package/node_modules/indent-string/license +9 -0
  2069. package/node_modules/indent-string/package.json +37 -0
  2070. package/node_modules/indent-string/readme.md +70 -0
  2071. package/node_modules/inflight/LICENSE +15 -0
  2072. package/node_modules/inflight/README.md +37 -0
  2073. package/node_modules/inflight/inflight.js +54 -0
  2074. package/node_modules/inflight/package.json +29 -0
  2075. package/node_modules/inherits/LICENSE +16 -0
  2076. package/node_modules/inherits/README.md +42 -0
  2077. package/node_modules/inherits/inherits.js +9 -0
  2078. package/node_modules/inherits/inherits_browser.js +27 -0
  2079. package/node_modules/inherits/package.json +29 -0
  2080. package/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
  2081. package/node_modules/is-fullwidth-code-point/index.js +50 -0
  2082. package/node_modules/is-fullwidth-code-point/license +9 -0
  2083. package/node_modules/is-fullwidth-code-point/package.json +42 -0
  2084. package/node_modules/is-fullwidth-code-point/readme.md +39 -0
  2085. package/node_modules/is-stream/index.d.ts +79 -0
  2086. package/node_modules/is-stream/index.js +28 -0
  2087. package/node_modules/is-stream/license +9 -0
  2088. package/node_modules/is-stream/package.json +42 -0
  2089. package/node_modules/is-stream/readme.md +60 -0
  2090. package/node_modules/is-typedarray/LICENSE.md +18 -0
  2091. package/node_modules/is-typedarray/README.md +16 -0
  2092. package/node_modules/is-typedarray/index.js +41 -0
  2093. package/node_modules/is-typedarray/package.json +30 -0
  2094. package/node_modules/is-typedarray/test.js +34 -0
  2095. package/node_modules/is-windows/LICENSE +21 -0
  2096. package/node_modules/is-windows/README.md +95 -0
  2097. package/node_modules/is-windows/index.js +27 -0
  2098. package/node_modules/is-windows/package.json +71 -0
  2099. package/node_modules/isexe/.npmignore +2 -0
  2100. package/node_modules/isexe/LICENSE +15 -0
  2101. package/node_modules/isexe/README.md +51 -0
  2102. package/node_modules/isexe/index.js +57 -0
  2103. package/node_modules/isexe/mode.js +41 -0
  2104. package/node_modules/isexe/package.json +31 -0
  2105. package/node_modules/isexe/test/basic.js +221 -0
  2106. package/node_modules/isexe/windows.js +42 -0
  2107. package/node_modules/istanbul-lib-coverage/CHANGELOG.md +193 -0
  2108. package/node_modules/istanbul-lib-coverage/LICENSE +24 -0
  2109. package/node_modules/istanbul-lib-coverage/README.md +29 -0
  2110. package/node_modules/istanbul-lib-coverage/index.js +64 -0
  2111. package/node_modules/istanbul-lib-coverage/lib/coverage-map.js +134 -0
  2112. package/node_modules/istanbul-lib-coverage/lib/coverage-summary.js +112 -0
  2113. package/node_modules/istanbul-lib-coverage/lib/data-properties.js +12 -0
  2114. package/node_modules/istanbul-lib-coverage/lib/file-coverage.js +345 -0
  2115. package/node_modules/istanbul-lib-coverage/lib/percent.js +15 -0
  2116. package/node_modules/istanbul-lib-coverage/package.json +47 -0
  2117. package/node_modules/istanbul-lib-hook/CHANGELOG.md +184 -0
  2118. package/node_modules/istanbul-lib-hook/LICENSE +24 -0
  2119. package/node_modules/istanbul-lib-hook/README.md +6 -0
  2120. package/node_modules/istanbul-lib-hook/index.js +6 -0
  2121. package/node_modules/istanbul-lib-hook/lib/hook.js +237 -0
  2122. package/node_modules/istanbul-lib-hook/package.json +40 -0
  2123. package/node_modules/istanbul-lib-instrument/CHANGELOG.md +571 -0
  2124. package/node_modules/istanbul-lib-instrument/LICENSE +24 -0
  2125. package/node_modules/istanbul-lib-instrument/README.md +21 -0
  2126. package/node_modules/istanbul-lib-instrument/dist/constants.js +22 -0
  2127. package/node_modules/istanbul-lib-instrument/dist/index.js +42 -0
  2128. package/node_modules/istanbul-lib-instrument/dist/instrumenter.js +182 -0
  2129. package/node_modules/istanbul-lib-instrument/dist/read-coverage.js +87 -0
  2130. package/node_modules/istanbul-lib-instrument/dist/source-coverage.js +121 -0
  2131. package/node_modules/istanbul-lib-instrument/dist/visitor.js +683 -0
  2132. package/node_modules/istanbul-lib-instrument/package.json +54 -0
  2133. package/node_modules/istanbul-lib-processinfo/LICENSE +15 -0
  2134. package/node_modules/istanbul-lib-processinfo/README.md +188 -0
  2135. package/node_modules/istanbul-lib-processinfo/index.js +347 -0
  2136. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/CHANGELOG.md +229 -0
  2137. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/CONTRIBUTING.md +18 -0
  2138. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/LICENSE.md +9 -0
  2139. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/README.md +505 -0
  2140. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/bin/uuid +2 -0
  2141. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/index.js +9 -0
  2142. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  2143. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  2144. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  2145. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  2146. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/rng.js +19 -0
  2147. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  2148. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
  2149. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  2150. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  2151. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v35.js +64 -0
  2152. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v4.js +24 -0
  2153. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  2154. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  2155. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/version.js +11 -0
  2156. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/index.js +9 -0
  2157. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/md5.js +13 -0
  2158. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/nil.js +1 -0
  2159. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/parse.js +35 -0
  2160. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/regex.js +1 -0
  2161. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/rng.js +12 -0
  2162. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  2163. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/stringify.js +29 -0
  2164. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v1.js +95 -0
  2165. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v3.js +4 -0
  2166. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v35.js +64 -0
  2167. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v4.js +24 -0
  2168. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v5.js +4 -0
  2169. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/validate.js +7 -0
  2170. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/version.js +11 -0
  2171. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/index.js +79 -0
  2172. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/md5-browser.js +223 -0
  2173. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/md5.js +23 -0
  2174. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/nil.js +8 -0
  2175. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/parse.js +45 -0
  2176. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/regex.js +8 -0
  2177. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/rng-browser.js +26 -0
  2178. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/rng.js +24 -0
  2179. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/sha1-browser.js +104 -0
  2180. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/sha1.js +23 -0
  2181. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/stringify.js +39 -0
  2182. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuid.min.js +1 -0
  2183. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
  2184. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
  2185. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
  2186. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
  2187. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
  2188. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
  2189. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
  2190. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
  2191. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
  2192. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/uuid-bin.js +85 -0
  2193. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v1.js +107 -0
  2194. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v3.js +16 -0
  2195. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v35.js +78 -0
  2196. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v4.js +37 -0
  2197. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v5.js +16 -0
  2198. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/validate.js +17 -0
  2199. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/version.js +21 -0
  2200. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/package.json +135 -0
  2201. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/wrapper.mjs +10 -0
  2202. package/node_modules/istanbul-lib-processinfo/package.json +42 -0
  2203. package/node_modules/istanbul-lib-report/CHANGELOG.md +192 -0
  2204. package/node_modules/istanbul-lib-report/LICENSE +24 -0
  2205. package/node_modules/istanbul-lib-report/README.md +43 -0
  2206. package/node_modules/istanbul-lib-report/index.js +40 -0
  2207. package/node_modules/istanbul-lib-report/lib/context.js +132 -0
  2208. package/node_modules/istanbul-lib-report/lib/file-writer.js +189 -0
  2209. package/node_modules/istanbul-lib-report/lib/path.js +169 -0
  2210. package/node_modules/istanbul-lib-report/lib/report-base.js +16 -0
  2211. package/node_modules/istanbul-lib-report/lib/summarizer-factory.js +284 -0
  2212. package/node_modules/istanbul-lib-report/lib/tree.js +137 -0
  2213. package/node_modules/istanbul-lib-report/lib/watermarks.js +15 -0
  2214. package/node_modules/istanbul-lib-report/lib/xml-writer.js +90 -0
  2215. package/node_modules/istanbul-lib-report/node_modules/has-flag/index.d.ts +39 -0
  2216. package/node_modules/istanbul-lib-report/node_modules/has-flag/index.js +8 -0
  2217. package/node_modules/istanbul-lib-report/node_modules/has-flag/license +9 -0
  2218. package/node_modules/istanbul-lib-report/node_modules/has-flag/package.json +46 -0
  2219. package/node_modules/istanbul-lib-report/node_modules/has-flag/readme.md +89 -0
  2220. package/node_modules/istanbul-lib-report/node_modules/lru-cache/LICENSE +15 -0
  2221. package/node_modules/istanbul-lib-report/node_modules/lru-cache/README.md +166 -0
  2222. package/node_modules/istanbul-lib-report/node_modules/lru-cache/index.js +334 -0
  2223. package/node_modules/istanbul-lib-report/node_modules/lru-cache/package.json +34 -0
  2224. package/node_modules/istanbul-lib-report/node_modules/make-dir/index.d.ts +66 -0
  2225. package/node_modules/istanbul-lib-report/node_modules/make-dir/index.js +155 -0
  2226. package/node_modules/istanbul-lib-report/node_modules/make-dir/license +9 -0
  2227. package/node_modules/istanbul-lib-report/node_modules/make-dir/package.json +63 -0
  2228. package/node_modules/istanbul-lib-report/node_modules/make-dir/readme.md +125 -0
  2229. package/node_modules/istanbul-lib-report/node_modules/semver/LICENSE +15 -0
  2230. package/node_modules/istanbul-lib-report/node_modules/semver/README.md +637 -0
  2231. package/node_modules/istanbul-lib-report/node_modules/semver/bin/semver.js +197 -0
  2232. package/node_modules/istanbul-lib-report/node_modules/semver/classes/comparator.js +141 -0
  2233. package/node_modules/istanbul-lib-report/node_modules/semver/classes/index.js +5 -0
  2234. package/node_modules/istanbul-lib-report/node_modules/semver/classes/range.js +539 -0
  2235. package/node_modules/istanbul-lib-report/node_modules/semver/classes/semver.js +302 -0
  2236. package/node_modules/istanbul-lib-report/node_modules/semver/functions/clean.js +6 -0
  2237. package/node_modules/istanbul-lib-report/node_modules/semver/functions/cmp.js +52 -0
  2238. package/node_modules/istanbul-lib-report/node_modules/semver/functions/coerce.js +52 -0
  2239. package/node_modules/istanbul-lib-report/node_modules/semver/functions/compare-build.js +7 -0
  2240. package/node_modules/istanbul-lib-report/node_modules/semver/functions/compare-loose.js +3 -0
  2241. package/node_modules/istanbul-lib-report/node_modules/semver/functions/compare.js +5 -0
  2242. package/node_modules/istanbul-lib-report/node_modules/semver/functions/diff.js +65 -0
  2243. package/node_modules/istanbul-lib-report/node_modules/semver/functions/eq.js +3 -0
  2244. package/node_modules/istanbul-lib-report/node_modules/semver/functions/gt.js +3 -0
  2245. package/node_modules/istanbul-lib-report/node_modules/semver/functions/gte.js +3 -0
  2246. package/node_modules/istanbul-lib-report/node_modules/semver/functions/inc.js +19 -0
  2247. package/node_modules/istanbul-lib-report/node_modules/semver/functions/lt.js +3 -0
  2248. package/node_modules/istanbul-lib-report/node_modules/semver/functions/lte.js +3 -0
  2249. package/node_modules/istanbul-lib-report/node_modules/semver/functions/major.js +3 -0
  2250. package/node_modules/istanbul-lib-report/node_modules/semver/functions/minor.js +3 -0
  2251. package/node_modules/istanbul-lib-report/node_modules/semver/functions/neq.js +3 -0
  2252. package/node_modules/istanbul-lib-report/node_modules/semver/functions/parse.js +16 -0
  2253. package/node_modules/istanbul-lib-report/node_modules/semver/functions/patch.js +3 -0
  2254. package/node_modules/istanbul-lib-report/node_modules/semver/functions/prerelease.js +6 -0
  2255. package/node_modules/istanbul-lib-report/node_modules/semver/functions/rcompare.js +3 -0
  2256. package/node_modules/istanbul-lib-report/node_modules/semver/functions/rsort.js +3 -0
  2257. package/node_modules/istanbul-lib-report/node_modules/semver/functions/satisfies.js +10 -0
  2258. package/node_modules/istanbul-lib-report/node_modules/semver/functions/sort.js +3 -0
  2259. package/node_modules/istanbul-lib-report/node_modules/semver/functions/valid.js +6 -0
  2260. package/node_modules/istanbul-lib-report/node_modules/semver/index.js +89 -0
  2261. package/node_modules/istanbul-lib-report/node_modules/semver/internal/constants.js +35 -0
  2262. package/node_modules/istanbul-lib-report/node_modules/semver/internal/debug.js +9 -0
  2263. package/node_modules/istanbul-lib-report/node_modules/semver/internal/identifiers.js +23 -0
  2264. package/node_modules/istanbul-lib-report/node_modules/semver/internal/parse-options.js +15 -0
  2265. package/node_modules/istanbul-lib-report/node_modules/semver/internal/re.js +212 -0
  2266. package/node_modules/istanbul-lib-report/node_modules/semver/package.json +87 -0
  2267. package/node_modules/istanbul-lib-report/node_modules/semver/preload.js +2 -0
  2268. package/node_modules/istanbul-lib-report/node_modules/semver/range.bnf +16 -0
  2269. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/gtr.js +4 -0
  2270. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/intersects.js +7 -0
  2271. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/ltr.js +4 -0
  2272. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/max-satisfying.js +25 -0
  2273. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/min-satisfying.js +24 -0
  2274. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/min-version.js +61 -0
  2275. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/outside.js +80 -0
  2276. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/simplify.js +47 -0
  2277. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/subset.js +247 -0
  2278. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/to-comparators.js +8 -0
  2279. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/valid.js +11 -0
  2280. package/node_modules/istanbul-lib-report/node_modules/supports-color/browser.js +5 -0
  2281. package/node_modules/istanbul-lib-report/node_modules/supports-color/index.js +135 -0
  2282. package/node_modules/istanbul-lib-report/node_modules/supports-color/license +9 -0
  2283. package/node_modules/istanbul-lib-report/node_modules/supports-color/package.json +53 -0
  2284. package/node_modules/istanbul-lib-report/node_modules/supports-color/readme.md +76 -0
  2285. package/node_modules/istanbul-lib-report/node_modules/yallist/LICENSE +15 -0
  2286. package/node_modules/istanbul-lib-report/node_modules/yallist/README.md +204 -0
  2287. package/node_modules/istanbul-lib-report/node_modules/yallist/iterator.js +8 -0
  2288. package/node_modules/istanbul-lib-report/node_modules/yallist/package.json +29 -0
  2289. package/node_modules/istanbul-lib-report/node_modules/yallist/yallist.js +426 -0
  2290. package/node_modules/istanbul-lib-report/package.json +44 -0
  2291. package/node_modules/istanbul-lib-source-maps/CHANGELOG.md +295 -0
  2292. package/node_modules/istanbul-lib-source-maps/LICENSE +24 -0
  2293. package/node_modules/istanbul-lib-source-maps/README.md +11 -0
  2294. package/node_modules/istanbul-lib-source-maps/index.js +15 -0
  2295. package/node_modules/istanbul-lib-source-maps/lib/get-mapping.js +182 -0
  2296. package/node_modules/istanbul-lib-source-maps/lib/map-store.js +226 -0
  2297. package/node_modules/istanbul-lib-source-maps/lib/mapped.js +113 -0
  2298. package/node_modules/istanbul-lib-source-maps/lib/pathutils.js +21 -0
  2299. package/node_modules/istanbul-lib-source-maps/lib/transform-utils.js +21 -0
  2300. package/node_modules/istanbul-lib-source-maps/lib/transformer.js +147 -0
  2301. package/node_modules/istanbul-lib-source-maps/package.json +45 -0
  2302. package/node_modules/istanbul-reports/CHANGELOG.md +457 -0
  2303. package/node_modules/istanbul-reports/LICENSE +24 -0
  2304. package/node_modules/istanbul-reports/README.md +13 -0
  2305. package/node_modules/istanbul-reports/index.js +24 -0
  2306. package/node_modules/istanbul-reports/lib/clover/index.js +163 -0
  2307. package/node_modules/istanbul-reports/lib/cobertura/index.js +151 -0
  2308. package/node_modules/istanbul-reports/lib/html/annotator.js +305 -0
  2309. package/node_modules/istanbul-reports/lib/html/assets/base.css +224 -0
  2310. package/node_modules/istanbul-reports/lib/html/assets/block-navigation.js +86 -0
  2311. package/node_modules/istanbul-reports/lib/html/assets/favicon.png +0 -0
  2312. package/node_modules/istanbul-reports/lib/html/assets/sort-arrow-sprite.png +0 -0
  2313. package/node_modules/istanbul-reports/lib/html/assets/sorter.js +195 -0
  2314. package/node_modules/istanbul-reports/lib/html/assets/vendor/prettify.css +1 -0
  2315. package/node_modules/istanbul-reports/lib/html/assets/vendor/prettify.js +1 -0
  2316. package/node_modules/istanbul-reports/lib/html/index.js +421 -0
  2317. package/node_modules/istanbul-reports/lib/html/insertion-text.js +114 -0
  2318. package/node_modules/istanbul-reports/lib/html-spa/.babelrc +3 -0
  2319. package/node_modules/istanbul-reports/lib/html-spa/assets/bundle.js +30 -0
  2320. package/node_modules/istanbul-reports/lib/html-spa/assets/sort-arrow-sprite.png +0 -0
  2321. package/node_modules/istanbul-reports/lib/html-spa/assets/spa.css +298 -0
  2322. package/node_modules/istanbul-reports/lib/html-spa/index.js +176 -0
  2323. package/node_modules/istanbul-reports/lib/html-spa/src/fileBreadcrumbs.js +31 -0
  2324. package/node_modules/istanbul-reports/lib/html-spa/src/filterToggle.js +50 -0
  2325. package/node_modules/istanbul-reports/lib/html-spa/src/flattenToggle.js +25 -0
  2326. package/node_modules/istanbul-reports/lib/html-spa/src/getChildData.js +155 -0
  2327. package/node_modules/istanbul-reports/lib/html-spa/src/index.js +160 -0
  2328. package/node_modules/istanbul-reports/lib/html-spa/src/routing.js +52 -0
  2329. package/node_modules/istanbul-reports/lib/html-spa/src/summaryHeader.js +63 -0
  2330. package/node_modules/istanbul-reports/lib/html-spa/src/summaryTableHeader.js +130 -0
  2331. package/node_modules/istanbul-reports/lib/html-spa/src/summaryTableLine.js +159 -0
  2332. package/node_modules/istanbul-reports/lib/html-spa/webpack.config.js +22 -0
  2333. package/node_modules/istanbul-reports/lib/json/index.js +44 -0
  2334. package/node_modules/istanbul-reports/lib/json-summary/index.js +56 -0
  2335. package/node_modules/istanbul-reports/lib/lcov/index.js +33 -0
  2336. package/node_modules/istanbul-reports/lib/lcovonly/index.js +77 -0
  2337. package/node_modules/istanbul-reports/lib/none/index.js +10 -0
  2338. package/node_modules/istanbul-reports/lib/teamcity/index.js +67 -0
  2339. package/node_modules/istanbul-reports/lib/text/index.js +298 -0
  2340. package/node_modules/istanbul-reports/lib/text-lcov/index.js +17 -0
  2341. package/node_modules/istanbul-reports/lib/text-summary/index.js +62 -0
  2342. package/node_modules/istanbul-reports/package.json +60 -0
  2343. package/node_modules/js-tokens/CHANGELOG.md +151 -0
  2344. package/node_modules/js-tokens/LICENSE +21 -0
  2345. package/node_modules/js-tokens/README.md +240 -0
  2346. package/node_modules/js-tokens/index.js +23 -0
  2347. package/node_modules/js-tokens/package.json +30 -0
  2348. package/node_modules/js-yaml/CHANGELOG.md +557 -0
  2349. package/node_modules/js-yaml/LICENSE +21 -0
  2350. package/node_modules/js-yaml/README.md +299 -0
  2351. package/node_modules/js-yaml/bin/js-yaml.js +132 -0
  2352. package/node_modules/js-yaml/dist/js-yaml.js +3989 -0
  2353. package/node_modules/js-yaml/dist/js-yaml.min.js +1 -0
  2354. package/node_modules/js-yaml/index.js +7 -0
  2355. package/node_modules/js-yaml/lib/js-yaml/common.js +59 -0
  2356. package/node_modules/js-yaml/lib/js-yaml/dumper.js +850 -0
  2357. package/node_modules/js-yaml/lib/js-yaml/exception.js +43 -0
  2358. package/node_modules/js-yaml/lib/js-yaml/loader.js +1644 -0
  2359. package/node_modules/js-yaml/lib/js-yaml/mark.js +76 -0
  2360. package/node_modules/js-yaml/lib/js-yaml/schema/core.js +18 -0
  2361. package/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +25 -0
  2362. package/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +28 -0
  2363. package/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +17 -0
  2364. package/node_modules/js-yaml/lib/js-yaml/schema/json.js +25 -0
  2365. package/node_modules/js-yaml/lib/js-yaml/schema.js +108 -0
  2366. package/node_modules/js-yaml/lib/js-yaml/type/binary.js +138 -0
  2367. package/node_modules/js-yaml/lib/js-yaml/type/bool.js +35 -0
  2368. package/node_modules/js-yaml/lib/js-yaml/type/float.js +116 -0
  2369. package/node_modules/js-yaml/lib/js-yaml/type/int.js +173 -0
  2370. package/node_modules/js-yaml/lib/js-yaml/type/js/function.js +93 -0
  2371. package/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +60 -0
  2372. package/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +28 -0
  2373. package/node_modules/js-yaml/lib/js-yaml/type/map.js +8 -0
  2374. package/node_modules/js-yaml/lib/js-yaml/type/merge.js +12 -0
  2375. package/node_modules/js-yaml/lib/js-yaml/type/null.js +34 -0
  2376. package/node_modules/js-yaml/lib/js-yaml/type/omap.js +44 -0
  2377. package/node_modules/js-yaml/lib/js-yaml/type/pairs.js +53 -0
  2378. package/node_modules/js-yaml/lib/js-yaml/type/seq.js +8 -0
  2379. package/node_modules/js-yaml/lib/js-yaml/type/set.js +29 -0
  2380. package/node_modules/js-yaml/lib/js-yaml/type/str.js +8 -0
  2381. package/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +88 -0
  2382. package/node_modules/js-yaml/lib/js-yaml/type.js +61 -0
  2383. package/node_modules/js-yaml/lib/js-yaml.js +39 -0
  2384. package/node_modules/js-yaml/package.json +49 -0
  2385. package/node_modules/jsesc/LICENSE-MIT.txt +20 -0
  2386. package/node_modules/jsesc/README.md +421 -0
  2387. package/node_modules/jsesc/bin/jsesc +148 -0
  2388. package/node_modules/jsesc/jsesc.js +329 -0
  2389. package/node_modules/jsesc/man/jsesc.1 +94 -0
  2390. package/node_modules/jsesc/package.json +54 -0
  2391. package/node_modules/json5/LICENSE.md +23 -0
  2392. package/node_modules/json5/README.md +282 -0
  2393. package/node_modules/json5/dist/index.js +1737 -0
  2394. package/node_modules/json5/dist/index.min.js +1 -0
  2395. package/node_modules/json5/dist/index.min.mjs +1 -0
  2396. package/node_modules/json5/dist/index.mjs +1426 -0
  2397. package/node_modules/json5/lib/cli.js +152 -0
  2398. package/node_modules/json5/lib/index.d.ts +4 -0
  2399. package/node_modules/json5/lib/index.js +9 -0
  2400. package/node_modules/json5/lib/parse.d.ts +15 -0
  2401. package/node_modules/json5/lib/parse.js +1114 -0
  2402. package/node_modules/json5/lib/register.js +13 -0
  2403. package/node_modules/json5/lib/require.js +4 -0
  2404. package/node_modules/json5/lib/stringify.d.ts +89 -0
  2405. package/node_modules/json5/lib/stringify.js +261 -0
  2406. package/node_modules/json5/lib/unicode.d.ts +3 -0
  2407. package/node_modules/json5/lib/unicode.js +4 -0
  2408. package/node_modules/json5/lib/util.d.ts +5 -0
  2409. package/node_modules/json5/lib/util.js +35 -0
  2410. package/node_modules/json5/package.json +72 -0
  2411. package/node_modules/locate-path/index.d.ts +83 -0
  2412. package/node_modules/locate-path/index.js +65 -0
  2413. package/node_modules/locate-path/license +9 -0
  2414. package/node_modules/locate-path/package.json +45 -0
  2415. package/node_modules/locate-path/readme.md +122 -0
  2416. package/node_modules/lodash.flattendeep/LICENSE +47 -0
  2417. package/node_modules/lodash.flattendeep/README.md +18 -0
  2418. package/node_modules/lodash.flattendeep/index.js +350 -0
  2419. package/node_modules/lodash.flattendeep/package.json +17 -0
  2420. package/node_modules/long/LICENSE +202 -0
  2421. package/node_modules/long/README.md +280 -0
  2422. package/node_modules/long/index.d.ts +457 -0
  2423. package/node_modules/long/index.js +1467 -0
  2424. package/node_modules/long/package.json +50 -0
  2425. package/node_modules/long/umd/index.d.ts +2 -0
  2426. package/node_modules/long/umd/index.js +1432 -0
  2427. package/node_modules/long/umd/package.json +3 -0
  2428. package/node_modules/lru-cache/LICENSE +15 -0
  2429. package/node_modules/lru-cache/README.md +166 -0
  2430. package/node_modules/lru-cache/index.js +334 -0
  2431. package/node_modules/lru-cache/package.json +32 -0
  2432. package/node_modules/make-dir/index.d.ts +66 -0
  2433. package/node_modules/make-dir/index.js +156 -0
  2434. package/node_modules/make-dir/license +9 -0
  2435. package/node_modules/make-dir/package.json +59 -0
  2436. package/node_modules/make-dir/readme.md +125 -0
  2437. package/node_modules/minimatch/LICENSE +15 -0
  2438. package/node_modules/minimatch/README.md +230 -0
  2439. package/node_modules/minimatch/minimatch.js +947 -0
  2440. package/node_modules/minimatch/package.json +33 -0
  2441. package/node_modules/ms/index.js +162 -0
  2442. package/node_modules/ms/license.md +21 -0
  2443. package/node_modules/ms/package.json +37 -0
  2444. package/node_modules/ms/readme.md +60 -0
  2445. package/node_modules/node-preload/CHANGELOG.md +61 -0
  2446. package/node_modules/node-preload/LICENSE +21 -0
  2447. package/node_modules/node-preload/README.md +47 -0
  2448. package/node_modules/node-preload/generate-require.js +31 -0
  2449. package/node_modules/node-preload/hook-spawn.js +21 -0
  2450. package/node_modules/node-preload/index.js +5 -0
  2451. package/node_modules/node-preload/internal-preload-module.js +25 -0
  2452. package/node_modules/node-preload/package.json +50 -0
  2453. package/node_modules/node-preload/preload-list-env.js +8 -0
  2454. package/node_modules/node-preload/preload-list.js +15 -0
  2455. package/node_modules/node-preload/preload-path/node-preload.js +11 -0
  2456. package/node_modules/node-preload/process-node-options.js +16 -0
  2457. package/node_modules/node-releases/LICENSE +21 -0
  2458. package/node_modules/node-releases/README.md +12 -0
  2459. package/node_modules/node-releases/data/processed/envs.json +1 -0
  2460. package/node_modules/node-releases/data/release-schedule/release-schedule.json +1 -0
  2461. package/node_modules/node-releases/package.json +19 -0
  2462. package/node_modules/nyc/CHANGELOG.md +1017 -0
  2463. package/node_modules/nyc/LICENSE.txt +16 -0
  2464. package/node_modules/nyc/README.md +388 -0
  2465. package/node_modules/nyc/bin/nyc.js +118 -0
  2466. package/node_modules/nyc/bin/wrap.js +4 -0
  2467. package/node_modules/nyc/index.js +546 -0
  2468. package/node_modules/nyc/lib/commands/check-coverage.js +28 -0
  2469. package/node_modules/nyc/lib/commands/helpers.js +74 -0
  2470. package/node_modules/nyc/lib/commands/instrument.js +63 -0
  2471. package/node_modules/nyc/lib/commands/merge.js +46 -0
  2472. package/node_modules/nyc/lib/commands/report.js +30 -0
  2473. package/node_modules/nyc/lib/config-util.js +65 -0
  2474. package/node_modules/nyc/lib/fs-promises.js +51 -0
  2475. package/node_modules/nyc/lib/hash.js +30 -0
  2476. package/node_modules/nyc/lib/instrumenters/istanbul.js +44 -0
  2477. package/node_modules/nyc/lib/instrumenters/noop.js +22 -0
  2478. package/node_modules/nyc/lib/process-args.js +39 -0
  2479. package/node_modules/nyc/lib/register-env.js +27 -0
  2480. package/node_modules/nyc/lib/source-maps.js +84 -0
  2481. package/node_modules/nyc/lib/wrap.js +28 -0
  2482. package/node_modules/nyc/package.json +107 -0
  2483. package/node_modules/once/LICENSE +15 -0
  2484. package/node_modules/once/README.md +79 -0
  2485. package/node_modules/once/once.js +42 -0
  2486. package/node_modules/once/package.json +33 -0
  2487. package/node_modules/p-limit/index.d.ts +38 -0
  2488. package/node_modules/p-limit/index.js +57 -0
  2489. package/node_modules/p-limit/license +9 -0
  2490. package/node_modules/p-limit/package.json +52 -0
  2491. package/node_modules/p-limit/readme.md +101 -0
  2492. package/node_modules/p-locate/index.d.ts +64 -0
  2493. package/node_modules/p-locate/index.js +52 -0
  2494. package/node_modules/p-locate/license +9 -0
  2495. package/node_modules/p-locate/package.json +53 -0
  2496. package/node_modules/p-locate/readme.md +90 -0
  2497. package/node_modules/p-map/index.d.ts +65 -0
  2498. package/node_modules/p-map/index.js +81 -0
  2499. package/node_modules/p-map/license +9 -0
  2500. package/node_modules/p-map/package.json +52 -0
  2501. package/node_modules/p-map/readme.md +99 -0
  2502. package/node_modules/p-try/index.d.ts +39 -0
  2503. package/node_modules/p-try/index.js +9 -0
  2504. package/node_modules/p-try/license +9 -0
  2505. package/node_modules/p-try/package.json +42 -0
  2506. package/node_modules/p-try/readme.md +58 -0
  2507. package/node_modules/package-hash/LICENSE +14 -0
  2508. package/node_modules/package-hash/README.md +79 -0
  2509. package/node_modules/package-hash/index.js +162 -0
  2510. package/node_modules/package-hash/package.json +60 -0
  2511. package/node_modules/path-exists/index.d.ts +28 -0
  2512. package/node_modules/path-exists/index.js +23 -0
  2513. package/node_modules/path-exists/license +9 -0
  2514. package/node_modules/path-exists/package.json +39 -0
  2515. package/node_modules/path-exists/readme.md +52 -0
  2516. package/node_modules/path-is-absolute/index.js +20 -0
  2517. package/node_modules/path-is-absolute/license +21 -0
  2518. package/node_modules/path-is-absolute/package.json +43 -0
  2519. package/node_modules/path-is-absolute/readme.md +59 -0
  2520. package/node_modules/path-key/index.d.ts +40 -0
  2521. package/node_modules/path-key/index.js +16 -0
  2522. package/node_modules/path-key/license +9 -0
  2523. package/node_modules/path-key/package.json +39 -0
  2524. package/node_modules/path-key/readme.md +61 -0
  2525. package/node_modules/picocolors/LICENSE +15 -0
  2526. package/node_modules/picocolors/README.md +21 -0
  2527. package/node_modules/picocolors/package.json +25 -0
  2528. package/node_modules/picocolors/picocolors.browser.js +4 -0
  2529. package/node_modules/picocolors/picocolors.d.ts +5 -0
  2530. package/node_modules/picocolors/picocolors.js +58 -0
  2531. package/node_modules/picocolors/types.ts +30 -0
  2532. package/node_modules/pkg-dir/index.d.ts +44 -0
  2533. package/node_modules/pkg-dir/index.js +17 -0
  2534. package/node_modules/pkg-dir/license +9 -0
  2535. package/node_modules/pkg-dir/package.json +56 -0
  2536. package/node_modules/pkg-dir/readme.md +66 -0
  2537. package/node_modules/process-on-spawn/CHANGELOG.md +10 -0
  2538. package/node_modules/process-on-spawn/LICENSE +21 -0
  2539. package/node_modules/process-on-spawn/README.md +64 -0
  2540. package/node_modules/process-on-spawn/index.js +112 -0
  2541. package/node_modules/process-on-spawn/package.json +34 -0
  2542. package/node_modules/protobufjs/LICENSE +39 -0
  2543. package/node_modules/protobufjs/README.md +740 -0
  2544. package/node_modules/protobufjs/dist/light/protobuf.js +7370 -0
  2545. package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -0
  2546. package/node_modules/protobufjs/dist/light/protobuf.min.js +8 -0
  2547. package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -0
  2548. package/node_modules/protobufjs/dist/minimal/protobuf.js +2731 -0
  2549. package/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -0
  2550. package/node_modules/protobufjs/dist/minimal/protobuf.min.js +8 -0
  2551. package/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -0
  2552. package/node_modules/protobufjs/dist/protobuf.js +9066 -0
  2553. package/node_modules/protobufjs/dist/protobuf.js.map +1 -0
  2554. package/node_modules/protobufjs/dist/protobuf.min.js +8 -0
  2555. package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -0
  2556. package/node_modules/protobufjs/ext/debug/README.md +4 -0
  2557. package/node_modules/protobufjs/ext/debug/index.js +71 -0
  2558. package/node_modules/protobufjs/ext/descriptor/README.md +72 -0
  2559. package/node_modules/protobufjs/ext/descriptor/index.d.ts +191 -0
  2560. package/node_modules/protobufjs/ext/descriptor/index.js +1052 -0
  2561. package/node_modules/protobufjs/ext/descriptor/test.js +54 -0
  2562. package/node_modules/protobufjs/google/LICENSE +27 -0
  2563. package/node_modules/protobufjs/google/README.md +1 -0
  2564. package/node_modules/protobufjs/google/api/annotations.json +83 -0
  2565. package/node_modules/protobufjs/google/api/annotations.proto +11 -0
  2566. package/node_modules/protobufjs/google/api/http.json +86 -0
  2567. package/node_modules/protobufjs/google/api/http.proto +31 -0
  2568. package/node_modules/protobufjs/google/protobuf/api.json +118 -0
  2569. package/node_modules/protobufjs/google/protobuf/api.proto +34 -0
  2570. package/node_modules/protobufjs/google/protobuf/descriptor.json +739 -0
  2571. package/node_modules/protobufjs/google/protobuf/descriptor.proto +286 -0
  2572. package/node_modules/protobufjs/google/protobuf/source_context.json +20 -0
  2573. package/node_modules/protobufjs/google/protobuf/source_context.proto +7 -0
  2574. package/node_modules/protobufjs/google/protobuf/type.json +202 -0
  2575. package/node_modules/protobufjs/google/protobuf/type.proto +89 -0
  2576. package/node_modules/protobufjs/index.d.ts +2741 -0
  2577. package/node_modules/protobufjs/index.js +4 -0
  2578. package/node_modules/protobufjs/light.d.ts +2 -0
  2579. package/node_modules/protobufjs/light.js +4 -0
  2580. package/node_modules/protobufjs/minimal.d.ts +2 -0
  2581. package/node_modules/protobufjs/minimal.js +4 -0
  2582. package/node_modules/protobufjs/package.json +111 -0
  2583. package/node_modules/protobufjs/scripts/postinstall.js +32 -0
  2584. package/node_modules/protobufjs/src/common.js +399 -0
  2585. package/node_modules/protobufjs/src/converter.js +301 -0
  2586. package/node_modules/protobufjs/src/decoder.js +129 -0
  2587. package/node_modules/protobufjs/src/encoder.js +100 -0
  2588. package/node_modules/protobufjs/src/enum.js +198 -0
  2589. package/node_modules/protobufjs/src/field.js +377 -0
  2590. package/node_modules/protobufjs/src/index-light.js +104 -0
  2591. package/node_modules/protobufjs/src/index-minimal.js +36 -0
  2592. package/node_modules/protobufjs/src/index.js +12 -0
  2593. package/node_modules/protobufjs/src/mapfield.js +126 -0
  2594. package/node_modules/protobufjs/src/message.js +139 -0
  2595. package/node_modules/protobufjs/src/method.js +160 -0
  2596. package/node_modules/protobufjs/src/namespace.js +433 -0
  2597. package/node_modules/protobufjs/src/object.js +243 -0
  2598. package/node_modules/protobufjs/src/oneof.js +203 -0
  2599. package/node_modules/protobufjs/src/parse.js +869 -0
  2600. package/node_modules/protobufjs/src/reader.js +411 -0
  2601. package/node_modules/protobufjs/src/reader_buffer.js +51 -0
  2602. package/node_modules/protobufjs/src/root.js +368 -0
  2603. package/node_modules/protobufjs/src/roots.js +18 -0
  2604. package/node_modules/protobufjs/src/rpc/service.js +142 -0
  2605. package/node_modules/protobufjs/src/rpc.js +36 -0
  2606. package/node_modules/protobufjs/src/service.js +167 -0
  2607. package/node_modules/protobufjs/src/tokenize.js +418 -0
  2608. package/node_modules/protobufjs/src/type.js +589 -0
  2609. package/node_modules/protobufjs/src/types.js +196 -0
  2610. package/node_modules/protobufjs/src/typescript.jsdoc +15 -0
  2611. package/node_modules/protobufjs/src/util/longbits.js +200 -0
  2612. package/node_modules/protobufjs/src/util/minimal.js +438 -0
  2613. package/node_modules/protobufjs/src/util.js +212 -0
  2614. package/node_modules/protobufjs/src/verifier.js +177 -0
  2615. package/node_modules/protobufjs/src/wrappers.js +102 -0
  2616. package/node_modules/protobufjs/src/writer.js +465 -0
  2617. package/node_modules/protobufjs/src/writer_buffer.js +85 -0
  2618. package/node_modules/protobufjs/tsconfig.json +8 -0
  2619. package/node_modules/release-zalgo/LICENSE +14 -0
  2620. package/node_modules/release-zalgo/README.md +194 -0
  2621. package/node_modules/release-zalgo/index.js +9 -0
  2622. package/node_modules/release-zalgo/lib/Async.js +21 -0
  2623. package/node_modules/release-zalgo/lib/Sync.js +24 -0
  2624. package/node_modules/release-zalgo/lib/Thenable.js +39 -0
  2625. package/node_modules/release-zalgo/lib/constants.js +6 -0
  2626. package/node_modules/release-zalgo/lib/unwrapSync.js +54 -0
  2627. package/node_modules/release-zalgo/package.json +49 -0
  2628. package/node_modules/require-directory/.jshintrc +67 -0
  2629. package/node_modules/require-directory/.npmignore +1 -0
  2630. package/node_modules/require-directory/.travis.yml +3 -0
  2631. package/node_modules/require-directory/LICENSE +22 -0
  2632. package/node_modules/require-directory/README.markdown +184 -0
  2633. package/node_modules/require-directory/index.js +86 -0
  2634. package/node_modules/require-directory/package.json +40 -0
  2635. package/node_modules/require-main-filename/CHANGELOG.md +26 -0
  2636. package/node_modules/require-main-filename/LICENSE.txt +14 -0
  2637. package/node_modules/require-main-filename/README.md +26 -0
  2638. package/node_modules/require-main-filename/index.js +18 -0
  2639. package/node_modules/require-main-filename/package.json +35 -0
  2640. package/node_modules/resolve-from/index.d.ts +31 -0
  2641. package/node_modules/resolve-from/index.js +47 -0
  2642. package/node_modules/resolve-from/license +9 -0
  2643. package/node_modules/resolve-from/package.json +36 -0
  2644. package/node_modules/resolve-from/readme.md +72 -0
  2645. package/node_modules/rimraf/CHANGELOG.md +65 -0
  2646. package/node_modules/rimraf/LICENSE +15 -0
  2647. package/node_modules/rimraf/README.md +101 -0
  2648. package/node_modules/rimraf/bin.js +68 -0
  2649. package/node_modules/rimraf/package.json +32 -0
  2650. package/node_modules/rimraf/rimraf.js +360 -0
  2651. package/node_modules/semver/LICENSE +15 -0
  2652. package/node_modules/semver/README.md +443 -0
  2653. package/node_modules/semver/bin/semver.js +174 -0
  2654. package/node_modules/semver/package.json +38 -0
  2655. package/node_modules/semver/range.bnf +16 -0
  2656. package/node_modules/semver/semver.js +1643 -0
  2657. package/node_modules/set-blocking/CHANGELOG.md +26 -0
  2658. package/node_modules/set-blocking/LICENSE.txt +14 -0
  2659. package/node_modules/set-blocking/README.md +31 -0
  2660. package/node_modules/set-blocking/index.js +7 -0
  2661. package/node_modules/set-blocking/package.json +42 -0
  2662. package/node_modules/shebang-command/index.js +19 -0
  2663. package/node_modules/shebang-command/license +9 -0
  2664. package/node_modules/shebang-command/package.json +34 -0
  2665. package/node_modules/shebang-command/readme.md +34 -0
  2666. package/node_modules/shebang-regex/index.d.ts +22 -0
  2667. package/node_modules/shebang-regex/index.js +2 -0
  2668. package/node_modules/shebang-regex/license +9 -0
  2669. package/node_modules/shebang-regex/package.json +35 -0
  2670. package/node_modules/shebang-regex/readme.md +33 -0
  2671. package/node_modules/signal-exit/LICENSE.txt +16 -0
  2672. package/node_modules/signal-exit/README.md +39 -0
  2673. package/node_modules/signal-exit/index.js +202 -0
  2674. package/node_modules/signal-exit/package.json +38 -0
  2675. package/node_modules/signal-exit/signals.js +53 -0
  2676. package/node_modules/source-map/CHANGELOG.md +301 -0
  2677. package/node_modules/source-map/LICENSE +28 -0
  2678. package/node_modules/source-map/README.md +742 -0
  2679. package/node_modules/source-map/dist/source-map.debug.js +3234 -0
  2680. package/node_modules/source-map/dist/source-map.js +3233 -0
  2681. package/node_modules/source-map/dist/source-map.min.js +2 -0
  2682. package/node_modules/source-map/dist/source-map.min.js.map +1 -0
  2683. package/node_modules/source-map/lib/array-set.js +121 -0
  2684. package/node_modules/source-map/lib/base64-vlq.js +140 -0
  2685. package/node_modules/source-map/lib/base64.js +67 -0
  2686. package/node_modules/source-map/lib/binary-search.js +111 -0
  2687. package/node_modules/source-map/lib/mapping-list.js +79 -0
  2688. package/node_modules/source-map/lib/quick-sort.js +114 -0
  2689. package/node_modules/source-map/lib/source-map-consumer.js +1145 -0
  2690. package/node_modules/source-map/lib/source-map-generator.js +425 -0
  2691. package/node_modules/source-map/lib/source-node.js +413 -0
  2692. package/node_modules/source-map/lib/util.js +488 -0
  2693. package/node_modules/source-map/package.json +73 -0
  2694. package/node_modules/source-map/source-map.d.ts +98 -0
  2695. package/node_modules/source-map/source-map.js +8 -0
  2696. package/node_modules/spawn-wrap/CHANGELOG.md +43 -0
  2697. package/node_modules/spawn-wrap/LICENSE +15 -0
  2698. package/node_modules/spawn-wrap/README.md +111 -0
  2699. package/node_modules/spawn-wrap/index.js +165 -0
  2700. package/node_modules/spawn-wrap/lib/debug.js +32 -0
  2701. package/node_modules/spawn-wrap/lib/exe-type.js +53 -0
  2702. package/node_modules/spawn-wrap/lib/homedir.js +5 -0
  2703. package/node_modules/spawn-wrap/lib/munge.js +84 -0
  2704. package/node_modules/spawn-wrap/lib/mungers/cmd.js +59 -0
  2705. package/node_modules/spawn-wrap/lib/mungers/env.js +49 -0
  2706. package/node_modules/spawn-wrap/lib/mungers/node.js +79 -0
  2707. package/node_modules/spawn-wrap/lib/mungers/npm.js +32 -0
  2708. package/node_modules/spawn-wrap/lib/mungers/sh.js +61 -0
  2709. package/node_modules/spawn-wrap/lib/mungers/shebang.js +43 -0
  2710. package/node_modules/spawn-wrap/lib/which-or-undefined.js +12 -0
  2711. package/node_modules/spawn-wrap/package.json +45 -0
  2712. package/node_modules/spawn-wrap/shim.js +156 -0
  2713. package/node_modules/sprintf-js/.npmignore +1 -0
  2714. package/node_modules/sprintf-js/LICENSE +24 -0
  2715. package/node_modules/sprintf-js/README.md +88 -0
  2716. package/node_modules/sprintf-js/bower.json +14 -0
  2717. package/node_modules/sprintf-js/demo/angular.html +20 -0
  2718. package/node_modules/sprintf-js/dist/angular-sprintf.min.js +4 -0
  2719. package/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +1 -0
  2720. package/node_modules/sprintf-js/dist/angular-sprintf.min.map +1 -0
  2721. package/node_modules/sprintf-js/dist/sprintf.min.js +4 -0
  2722. package/node_modules/sprintf-js/dist/sprintf.min.js.map +1 -0
  2723. package/node_modules/sprintf-js/dist/sprintf.min.map +1 -0
  2724. package/node_modules/sprintf-js/gruntfile.js +36 -0
  2725. package/node_modules/sprintf-js/package.json +22 -0
  2726. package/node_modules/sprintf-js/src/angular-sprintf.js +18 -0
  2727. package/node_modules/sprintf-js/src/sprintf.js +208 -0
  2728. package/node_modules/sprintf-js/test/test.js +82 -0
  2729. package/node_modules/string-width/index.d.ts +29 -0
  2730. package/node_modules/string-width/index.js +47 -0
  2731. package/node_modules/string-width/license +9 -0
  2732. package/node_modules/string-width/package.json +56 -0
  2733. package/node_modules/string-width/readme.md +50 -0
  2734. package/node_modules/strip-ansi/index.d.ts +17 -0
  2735. package/node_modules/strip-ansi/index.js +4 -0
  2736. package/node_modules/strip-ansi/license +9 -0
  2737. package/node_modules/strip-ansi/package.json +54 -0
  2738. package/node_modules/strip-ansi/readme.md +46 -0
  2739. package/node_modules/strip-bom/index.d.ts +14 -0
  2740. package/node_modules/strip-bom/index.js +15 -0
  2741. package/node_modules/strip-bom/license +9 -0
  2742. package/node_modules/strip-bom/package.json +42 -0
  2743. package/node_modules/strip-bom/readme.md +54 -0
  2744. package/node_modules/strnum/.vscode/launch.json +25 -0
  2745. package/node_modules/strnum/LICENSE +21 -0
  2746. package/node_modules/strnum/README.md +86 -0
  2747. package/node_modules/strnum/package.json +24 -0
  2748. package/node_modules/strnum/strnum.js +124 -0
  2749. package/node_modules/strnum/strnum.test.js +150 -0
  2750. package/node_modules/supports-color/browser.js +5 -0
  2751. package/node_modules/supports-color/index.js +131 -0
  2752. package/node_modules/supports-color/license +9 -0
  2753. package/node_modules/supports-color/package.json +53 -0
  2754. package/node_modules/supports-color/readme.md +66 -0
  2755. package/node_modules/test-exclude/CHANGELOG.md +352 -0
  2756. package/node_modules/test-exclude/LICENSE.txt +14 -0
  2757. package/node_modules/test-exclude/README.md +96 -0
  2758. package/node_modules/test-exclude/index.js +161 -0
  2759. package/node_modules/test-exclude/is-outside-dir-posix.js +7 -0
  2760. package/node_modules/test-exclude/is-outside-dir-win32.js +10 -0
  2761. package/node_modules/test-exclude/is-outside-dir.js +7 -0
  2762. package/node_modules/test-exclude/package.json +45 -0
  2763. package/node_modules/to-fast-properties/index.js +27 -0
  2764. package/node_modules/to-fast-properties/license +10 -0
  2765. package/node_modules/to-fast-properties/package.json +35 -0
  2766. package/node_modules/to-fast-properties/readme.md +37 -0
  2767. package/node_modules/type-fest/index.d.ts +20 -0
  2768. package/node_modules/type-fest/license +9 -0
  2769. package/node_modules/type-fest/package.json +51 -0
  2770. package/node_modules/type-fest/readme.md +635 -0
  2771. package/node_modules/type-fest/source/basic.d.ts +67 -0
  2772. package/node_modules/type-fest/source/except.d.ts +22 -0
  2773. package/node_modules/type-fest/source/literal-union.d.ts +33 -0
  2774. package/node_modules/type-fest/source/merge-exclusive.d.ts +39 -0
  2775. package/node_modules/type-fest/source/merge.d.ts +22 -0
  2776. package/node_modules/type-fest/source/mutable.d.ts +22 -0
  2777. package/node_modules/type-fest/source/opaque.d.ts +40 -0
  2778. package/node_modules/type-fest/source/package-json.d.ts +501 -0
  2779. package/node_modules/type-fest/source/partial-deep.d.ts +72 -0
  2780. package/node_modules/type-fest/source/promisable.d.ts +23 -0
  2781. package/node_modules/type-fest/source/readonly-deep.d.ts +59 -0
  2782. package/node_modules/type-fest/source/require-at-least-one.d.ts +32 -0
  2783. package/node_modules/type-fest/source/require-exactly-one.d.ts +36 -0
  2784. package/node_modules/type-fest/source/set-optional.d.ts +32 -0
  2785. package/node_modules/type-fest/source/set-required.d.ts +32 -0
  2786. package/node_modules/typedarray-to-buffer/.airtap.yml +15 -0
  2787. package/node_modules/typedarray-to-buffer/.travis.yml +11 -0
  2788. package/node_modules/typedarray-to-buffer/LICENSE +21 -0
  2789. package/node_modules/typedarray-to-buffer/README.md +85 -0
  2790. package/node_modules/typedarray-to-buffer/index.js +25 -0
  2791. package/node_modules/typedarray-to-buffer/package.json +50 -0
  2792. package/node_modules/typedarray-to-buffer/test/basic.js +50 -0
  2793. package/node_modules/update-browserslist-db/LICENSE +20 -0
  2794. package/node_modules/update-browserslist-db/README.md +22 -0
  2795. package/node_modules/update-browserslist-db/check-npm-version.js +16 -0
  2796. package/node_modules/update-browserslist-db/cli.js +42 -0
  2797. package/node_modules/update-browserslist-db/index.d.ts +6 -0
  2798. package/node_modules/update-browserslist-db/index.js +317 -0
  2799. package/node_modules/update-browserslist-db/package.json +40 -0
  2800. package/node_modules/update-browserslist-db/utils.js +22 -0
  2801. package/node_modules/which/CHANGELOG.md +166 -0
  2802. package/node_modules/which/LICENSE +15 -0
  2803. package/node_modules/which/README.md +54 -0
  2804. package/node_modules/which/bin/node-which +52 -0
  2805. package/node_modules/which/package.json +43 -0
  2806. package/node_modules/which/which.js +125 -0
  2807. package/node_modules/which-module/LICENSE +13 -0
  2808. package/node_modules/which-module/README.md +58 -0
  2809. package/node_modules/which-module/index.js +9 -0
  2810. package/node_modules/which-module/package.json +41 -0
  2811. package/node_modules/wrap-ansi/index.js +186 -0
  2812. package/node_modules/wrap-ansi/license +9 -0
  2813. package/node_modules/wrap-ansi/node_modules/ansi-styles/index.d.ts +345 -0
  2814. package/node_modules/wrap-ansi/node_modules/ansi-styles/index.js +163 -0
  2815. package/node_modules/wrap-ansi/node_modules/ansi-styles/license +9 -0
  2816. package/node_modules/wrap-ansi/node_modules/ansi-styles/package.json +56 -0
  2817. package/node_modules/wrap-ansi/node_modules/ansi-styles/readme.md +152 -0
  2818. package/node_modules/wrap-ansi/node_modules/color-convert/CHANGELOG.md +54 -0
  2819. package/node_modules/wrap-ansi/node_modules/color-convert/LICENSE +21 -0
  2820. package/node_modules/wrap-ansi/node_modules/color-convert/README.md +68 -0
  2821. package/node_modules/wrap-ansi/node_modules/color-convert/conversions.js +839 -0
  2822. package/node_modules/wrap-ansi/node_modules/color-convert/index.js +81 -0
  2823. package/node_modules/wrap-ansi/node_modules/color-convert/package.json +48 -0
  2824. package/node_modules/wrap-ansi/node_modules/color-convert/route.js +97 -0
  2825. package/node_modules/wrap-ansi/node_modules/color-name/LICENSE +8 -0
  2826. package/node_modules/wrap-ansi/node_modules/color-name/README.md +11 -0
  2827. package/node_modules/wrap-ansi/node_modules/color-name/index.js +152 -0
  2828. package/node_modules/wrap-ansi/node_modules/color-name/package.json +28 -0
  2829. package/node_modules/wrap-ansi/package.json +61 -0
  2830. package/node_modules/wrap-ansi/readme.md +97 -0
  2831. package/node_modules/wrappy/LICENSE +15 -0
  2832. package/node_modules/wrappy/README.md +36 -0
  2833. package/node_modules/wrappy/package.json +29 -0
  2834. package/node_modules/wrappy/wrappy.js +33 -0
  2835. package/node_modules/write-file-atomic/CHANGELOG.md +32 -0
  2836. package/node_modules/write-file-atomic/LICENSE +6 -0
  2837. package/node_modules/write-file-atomic/README.md +72 -0
  2838. package/node_modules/write-file-atomic/index.js +259 -0
  2839. package/node_modules/write-file-atomic/package.json +48 -0
  2840. package/node_modules/y18n/CHANGELOG.md +35 -0
  2841. package/node_modules/y18n/LICENSE +13 -0
  2842. package/node_modules/y18n/README.md +109 -0
  2843. package/node_modules/y18n/index.js +188 -0
  2844. package/node_modules/y18n/package.json +39 -0
  2845. package/node_modules/yallist/LICENSE +15 -0
  2846. package/node_modules/yallist/README.md +204 -0
  2847. package/node_modules/yallist/iterator.js +8 -0
  2848. package/node_modules/yallist/package.json +29 -0
  2849. package/node_modules/yallist/yallist.js +426 -0
  2850. package/node_modules/yargs/CHANGELOG.md +420 -0
  2851. package/node_modules/yargs/LICENSE +21 -0
  2852. package/node_modules/yargs/README.md +140 -0
  2853. package/node_modules/yargs/build/lib/apply-extends.d.ts +2 -0
  2854. package/node_modules/yargs/build/lib/apply-extends.js +65 -0
  2855. package/node_modules/yargs/build/lib/argsert.d.ts +2 -0
  2856. package/node_modules/yargs/build/lib/argsert.js +65 -0
  2857. package/node_modules/yargs/build/lib/command.d.ts +64 -0
  2858. package/node_modules/yargs/build/lib/command.js +416 -0
  2859. package/node_modules/yargs/build/lib/common-types.d.ts +36 -0
  2860. package/node_modules/yargs/build/lib/common-types.js +25 -0
  2861. package/node_modules/yargs/build/lib/completion-templates.d.ts +2 -0
  2862. package/node_modules/yargs/build/lib/completion-templates.js +50 -0
  2863. package/node_modules/yargs/build/lib/completion.d.ts +21 -0
  2864. package/node_modules/yargs/build/lib/completion.js +135 -0
  2865. package/node_modules/yargs/build/lib/is-promise.d.ts +1 -0
  2866. package/node_modules/yargs/build/lib/is-promise.js +9 -0
  2867. package/node_modules/yargs/build/lib/levenshtein.d.ts +1 -0
  2868. package/node_modules/yargs/build/lib/levenshtein.js +58 -0
  2869. package/node_modules/yargs/build/lib/middleware.d.ts +10 -0
  2870. package/node_modules/yargs/build/lib/middleware.js +57 -0
  2871. package/node_modules/yargs/build/lib/obj-filter.d.ts +1 -0
  2872. package/node_modules/yargs/build/lib/obj-filter.js +14 -0
  2873. package/node_modules/yargs/build/lib/parse-command.d.ts +11 -0
  2874. package/node_modules/yargs/build/lib/parse-command.js +36 -0
  2875. package/node_modules/yargs/build/lib/process-argv.d.ts +2 -0
  2876. package/node_modules/yargs/build/lib/process-argv.js +31 -0
  2877. package/node_modules/yargs/build/lib/usage.d.ts +49 -0
  2878. package/node_modules/yargs/build/lib/usage.js +540 -0
  2879. package/node_modules/yargs/build/lib/validation.d.ts +34 -0
  2880. package/node_modules/yargs/build/lib/validation.js +330 -0
  2881. package/node_modules/yargs/build/lib/yargs.d.ts +274 -0
  2882. package/node_modules/yargs/build/lib/yargs.js +1190 -0
  2883. package/node_modules/yargs/build/lib/yerror.d.ts +4 -0
  2884. package/node_modules/yargs/build/lib/yerror.js +11 -0
  2885. package/node_modules/yargs/index.js +40 -0
  2886. package/node_modules/yargs/locales/be.json +46 -0
  2887. package/node_modules/yargs/locales/de.json +46 -0
  2888. package/node_modules/yargs/locales/en.json +51 -0
  2889. package/node_modules/yargs/locales/es.json +46 -0
  2890. package/node_modules/yargs/locales/fi.json +49 -0
  2891. package/node_modules/yargs/locales/fr.json +53 -0
  2892. package/node_modules/yargs/locales/hi.json +49 -0
  2893. package/node_modules/yargs/locales/hu.json +46 -0
  2894. package/node_modules/yargs/locales/id.json +50 -0
  2895. package/node_modules/yargs/locales/it.json +46 -0
  2896. package/node_modules/yargs/locales/ja.json +51 -0
  2897. package/node_modules/yargs/locales/ko.json +49 -0
  2898. package/node_modules/yargs/locales/nb.json +44 -0
  2899. package/node_modules/yargs/locales/nl.json +49 -0
  2900. package/node_modules/yargs/locales/nn.json +44 -0
  2901. package/node_modules/yargs/locales/pirate.json +13 -0
  2902. package/node_modules/yargs/locales/pl.json +49 -0
  2903. package/node_modules/yargs/locales/pt.json +45 -0
  2904. package/node_modules/yargs/locales/pt_BR.json +48 -0
  2905. package/node_modules/yargs/locales/ru.json +46 -0
  2906. package/node_modules/yargs/locales/th.json +46 -0
  2907. package/node_modules/yargs/locales/tr.json +48 -0
  2908. package/node_modules/yargs/locales/zh_CN.json +48 -0
  2909. package/node_modules/yargs/locales/zh_TW.json +47 -0
  2910. package/node_modules/yargs/package.json +92 -0
  2911. package/node_modules/yargs/yargs.js +14 -0
  2912. package/node_modules/yargs-parser/CHANGELOG.md +601 -0
  2913. package/node_modules/yargs-parser/LICENSE.txt +14 -0
  2914. package/node_modules/yargs-parser/README.md +449 -0
  2915. package/node_modules/yargs-parser/index.js +1032 -0
  2916. package/node_modules/yargs-parser/lib/tokenize-arg-string.js +40 -0
  2917. package/node_modules/yargs-parser/package.json +46 -0
  2918. package/package.json +5 -1
  2919. package/proto/contact.proto +14 -0
  2920. package/proto/cotevent.proto +44 -0
  2921. package/proto/detail.proto +78 -0
  2922. package/proto/group.proto +13 -0
  2923. package/proto/precisionlocation.proto +13 -0
  2924. package/proto/protocol.txt +352 -0
  2925. package/proto/status.proto +12 -0
  2926. package/proto/takcontrol.proto +24 -0
  2927. package/proto/takmessage.proto +18 -0
  2928. package/proto/takv.proto +15 -0
  2929. package/proto/track.proto +13 -0
  2930. package/tak-ingest.html +1 -1
  2931. package/tak-ingest.js +49 -1
  2932. package/tak-registration.html +1 -1
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_assert","data","require","_fs","_interopRequireWildcard","_process","_url","_path","_module","_v","_util","_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","isWindows","process","platform","own$1","classRegExp","kTypes","Set","codes","formatList","array","type","length","join","slice","messages","Map","nodeInternalPrefix","userStackTraceLimit","ERR_INVALID_ARG_TYPE","createError","name","expected","actual","assert","Array","isArray","message","endsWith","includes","types","instances","other","value","push","toLowerCase","exec","pos","indexOf","determineSpecificType","TypeError","ERR_INVALID_MODULE_SPECIFIER","request","reason","base","undefined","ERR_INVALID_PACKAGE_CONFIG","path","Error","ERR_INVALID_PACKAGE_TARGET","pkgPath","target","isImport","relError","startsWith","JSON","stringify","ERR_MODULE_NOT_FOUND","ERR_NETWORK_IMPORT_DISALLOWED","ERR_PACKAGE_IMPORT_NOT_DEFINED","specifier","packagePath","ERR_PACKAGE_PATH_NOT_EXPORTED","subpath","ERR_UNSUPPORTED_DIR_IMPORT","ERR_UNKNOWN_FILE_EXTENSION","ext","ERR_INVALID_ARG_VALUE","inspected","inspect","ERR_UNSUPPORTED_ESM_URL_SCHEME","url","supported","protocol","sym","def","makeNodeErrorWithCode","Base","NodeError","args","limit","stackTraceLimit","isErrorStackTraceLimitWritable","error","getMessage","defineProperties","enumerable","writable","configurable","toString","captureLargerStackTrace","code","v8","startupSnapshot","isBuildingSnapshot","_unused","isExtensible","hideStackFrames","fn","hidden","stackTraceLimitIsWritable","Number","POSITIVE_INFINITY","captureStackTrace","self","Reflect","apply","regex","expectedLength","unshift","format","String","constructor","depth","colors","reader","read","packageJsonReader","jsonPath","string","fs","readFileSync","toNamespacedPath","dirname","exception","ERR_INVALID_PACKAGE_CONFIG$1","packageJsonCache","getPackageConfig","existing","source","packageConfig","pjsonPath","exists","main","exports","imports","packageJson","parse","fileURLToPath","getPackageScopeConfig","resolved","packageJsonUrl","URL","packageJsonPath","pathname","lastPackageJsonUrl","getPackageType","extensionFormatMap","__proto__","mimeToFormat","mime","test","protocolHandlers","getDataProtocolModuleFormat","getFileProtocolModuleFormat","getHttpProtocolModuleFormat","node:","parsed","extname","index","codePointAt","_context","ignoreErrors","filepath","defaultGetFormatWithoutErrors","context","DEFAULT_CONDITIONS","freeze","DEFAULT_CONDITIONS_SET","getDefaultConditions","getDefaultConditionsSet","getConditionsSet","conditions","RegExpPrototypeSymbolReplace","RegExp","Symbol","replace","experimentalNetworkImports","own","invalidSegmentRegEx","deprecatedInvalidSegmentRegEx","invalidPackageNameRegEx","patternRegEx","encodedSepRegEx","emittedPackageWarnings","doubleSlashRegEx","emitInvalidSegmentDeprecation","match","internal","isTarget","double","emitWarning","emitLegacyIndexDeprecation","parentURL","href","basePath","tryStatSync","statSync","_unused2","Stats","fileExists","stats","throwIfNoEntry","isFile","legacyMainResolve","guess","tries","i","finalizeResolution","preserveSymlinks","filePath","isDirectory","real","realpathSync","search","hash","pathToFileURL","sep","importNotDefined","exportsNotFound","throwInvalidSubpath","invalidPackageTarget","resolvePackageTargetString","pattern","isPathMap","isURL","_unused3","exportTarget","packageResolve","resolvedTarget","resolvedPath","isArrayIndex","keyNumber","resolvePackageTarget","packageSubpath","targetList","lastException","targetItem","resolveResult","keys","getOwnPropertyNames","conditionalTarget","isConditionalExportsMainSugar","isConditionalSugar","j","curIsConditionalSugar","emitTrailingSlashPatternDeprecation","pjsonUrl","add","packageExportsResolve","bestMatch","bestMatchSubpath","patternIndex","patternTrailer","patternKeyCompare","lastIndexOf","a","b","aPatternIndex","bPatternIndex","baseLengthA","baseLengthB","packageImportsResolve","parsePackageName","separatorIndex","validPackageName","isScoped","packageName","builtinModules","lastPath","stat","isRelativeSpecifier","shouldBeTreatedAsRelativeOrAbsolutePath","moduleResolve","isRemote","_unused4","checkIfDisallowedImport","parsedParentURL","parentProtocol","parsedProtocol","Boolean","throwIfInvalidParentURL","throwIfUnsupportedURLProtocol","throwIfUnsupportedURLScheme","concat","defaultResolve","_unused5","_unused6","maybeReturn","resolve","parent"],"sources":["../../src/vendor/import-meta-resolve.js"],"sourcesContent":["\n/****************************************************************************\\\n * NOTE FROM BABEL AUTHORS *\n * This file is inlined from https://github.com/wooorm/import-meta-resolve, *\n * because we need to compile it to CommonJS. *\n\\****************************************************************************/\n\n/*\n(The MIT License)\n\nCopyright (c) 2021 Titus Wormer <mailto:tituswormer@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n---\n\nThis is a derivative work based on:\n<https://github.com/nodejs/node>.\nWhich is licensed:\n\n\"\"\"\nCopyright Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n\nThis license applies to parts of Node.js originating from the\nhttps://github.com/joyent/node repository:\n\n\"\"\"\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n*/\n\nimport assert from 'assert';\nimport fs, { realpathSync, statSync, Stats } from 'fs';\nimport process from 'process';\nimport { fileURLToPath, URL, pathToFileURL } from 'url';\nimport path from 'path';\nimport { builtinModules } from 'module';\nimport v8 from 'v8';\nimport { format, inspect } from 'util';\n\n/**\n * @typedef ErrnoExceptionFields\n * @property {number | undefined} [errnode]\n * @property {string | undefined} [code]\n * @property {string | undefined} [path]\n * @property {string | undefined} [syscall]\n * @property {string | undefined} [url]\n *\n * @typedef {Error & ErrnoExceptionFields} ErrnoException\n */\n\nconst isWindows = process.platform === 'win32';\n\nconst own$1 = {}.hasOwnProperty;\n\nconst classRegExp = /^([A-Z][a-z\\d]*)+$/;\n// Sorted by a rough estimate on most frequently used entries.\nconst kTypes = new Set([\n 'string',\n 'function',\n 'number',\n 'object',\n // Accept 'Function' and 'Object' as alternative to the lower cased version.\n 'Function',\n 'Object',\n 'boolean',\n 'bigint',\n 'symbol'\n]);\n\nconst codes = {};\n\n/**\n * Create a list string in the form like 'A and B' or 'A, B, ..., and Z'.\n * We cannot use Intl.ListFormat because it's not available in\n * --without-intl builds.\n *\n * @param {Array<string>} array\n * An array of strings.\n * @param {string} [type]\n * The list type to be inserted before the last element.\n * @returns {string}\n */\nfunction formatList(array, type = 'and') {\n return array.length < 3\n ? array.join(` ${type} `)\n : `${array.slice(0, -1).join(', ')}, ${type} ${array[array.length - 1]}`\n}\n\n/** @type {Map<string, MessageFunction | string>} */\nconst messages = new Map();\nconst nodeInternalPrefix = '__node_internal_';\n/** @type {number} */\nlet userStackTraceLimit;\n\ncodes.ERR_INVALID_ARG_TYPE = createError(\n 'ERR_INVALID_ARG_TYPE',\n /**\n * @param {string} name\n * @param {Array<string> | string} expected\n * @param {unknown} actual\n */\n (name, expected, actual) => {\n assert(typeof name === 'string', \"'name' must be a string\");\n if (!Array.isArray(expected)) {\n expected = [expected];\n }\n\n let message = 'The ';\n if (name.endsWith(' argument')) {\n // For cases like 'first argument'\n message += `${name} `;\n } else {\n const type = name.includes('.') ? 'property' : 'argument';\n message += `\"${name}\" ${type} `;\n }\n\n message += 'must be ';\n\n /** @type {Array<string>} */\n const types = [];\n /** @type {Array<string>} */\n const instances = [];\n /** @type {Array<string>} */\n const other = [];\n\n for (const value of expected) {\n assert(\n typeof value === 'string',\n 'All expected entries have to be of type string'\n );\n\n if (kTypes.has(value)) {\n types.push(value.toLowerCase());\n } else if (classRegExp.exec(value) === null) {\n assert(\n value !== 'object',\n 'The value \"object\" should be written as \"Object\"'\n );\n other.push(value);\n } else {\n instances.push(value);\n }\n }\n\n // Special handle `object` in case other instances are allowed to outline\n // the differences between each other.\n if (instances.length > 0) {\n const pos = types.indexOf('object');\n if (pos !== -1) {\n types.slice(pos, 1);\n instances.push('Object');\n }\n }\n\n if (types.length > 0) {\n message += `${types.length > 1 ? 'one of type' : 'of type'} ${formatList(\n types,\n 'or'\n )}`;\n if (instances.length > 0 || other.length > 0) message += ' or ';\n }\n\n if (instances.length > 0) {\n message += `an instance of ${formatList(instances, 'or')}`;\n if (other.length > 0) message += ' or ';\n }\n\n if (other.length > 0) {\n if (other.length > 1) {\n message += `one of ${formatList(other, 'or')}`;\n } else {\n if (other[0].toLowerCase() !== other[0]) message += 'an ';\n message += `${other[0]}`;\n }\n }\n\n message += `. Received ${determineSpecificType(actual)}`;\n\n return message\n },\n TypeError\n);\n\ncodes.ERR_INVALID_MODULE_SPECIFIER = createError(\n 'ERR_INVALID_MODULE_SPECIFIER',\n /**\n * @param {string} request\n * @param {string} reason\n * @param {string} [base]\n */\n (request, reason, base = undefined) => {\n return `Invalid module \"${request}\" ${reason}${\n base ? ` imported from ${base}` : ''\n }`\n },\n TypeError\n);\n\ncodes.ERR_INVALID_PACKAGE_CONFIG = createError(\n 'ERR_INVALID_PACKAGE_CONFIG',\n /**\n * @param {string} path\n * @param {string} [base]\n * @param {string} [message]\n */\n (path, base, message) => {\n return `Invalid package config ${path}${\n base ? ` while importing ${base}` : ''\n }${message ? `. ${message}` : ''}`\n },\n Error\n);\n\ncodes.ERR_INVALID_PACKAGE_TARGET = createError(\n 'ERR_INVALID_PACKAGE_TARGET',\n /**\n * @param {string} pkgPath\n * @param {string} key\n * @param {unknown} target\n * @param {boolean} [isImport=false]\n * @param {string} [base]\n */\n (pkgPath, key, target, isImport = false, base = undefined) => {\n const relError =\n typeof target === 'string' &&\n !isImport &&\n target.length > 0 &&\n !target.startsWith('./');\n if (key === '.') {\n assert(isImport === false);\n return (\n `Invalid \"exports\" main target ${JSON.stringify(target)} defined ` +\n `in the package config ${pkgPath}package.json${\n base ? ` imported from ${base}` : ''\n }${relError ? '; targets must start with \"./\"' : ''}`\n )\n }\n\n return `Invalid \"${\n isImport ? 'imports' : 'exports'\n }\" target ${JSON.stringify(\n target\n )} defined for '${key}' in the package config ${pkgPath}package.json${\n base ? ` imported from ${base}` : ''\n }${relError ? '; targets must start with \"./\"' : ''}`\n },\n Error\n);\n\ncodes.ERR_MODULE_NOT_FOUND = createError(\n 'ERR_MODULE_NOT_FOUND',\n /**\n * @param {string} path\n * @param {string} base\n * @param {string} [type]\n */\n (path, base, type = 'package') => {\n return `Cannot find ${type} '${path}' imported from ${base}`\n },\n Error\n);\n\ncodes.ERR_NETWORK_IMPORT_DISALLOWED = createError(\n 'ERR_NETWORK_IMPORT_DISALLOWED',\n \"import of '%s' by %s is not supported: %s\",\n Error\n);\n\ncodes.ERR_PACKAGE_IMPORT_NOT_DEFINED = createError(\n 'ERR_PACKAGE_IMPORT_NOT_DEFINED',\n /**\n * @param {string} specifier\n * @param {string} packagePath\n * @param {string} base\n */\n (specifier, packagePath, base) => {\n return `Package import specifier \"${specifier}\" is not defined${\n packagePath ? ` in package ${packagePath}package.json` : ''\n } imported from ${base}`\n },\n TypeError\n);\n\ncodes.ERR_PACKAGE_PATH_NOT_EXPORTED = createError(\n 'ERR_PACKAGE_PATH_NOT_EXPORTED',\n /**\n * @param {string} pkgPath\n * @param {string} subpath\n * @param {string} [base]\n */\n (pkgPath, subpath, base = undefined) => {\n if (subpath === '.')\n return `No \"exports\" main defined in ${pkgPath}package.json${\n base ? ` imported from ${base}` : ''\n }`\n return `Package subpath '${subpath}' is not defined by \"exports\" in ${pkgPath}package.json${\n base ? ` imported from ${base}` : ''\n }`\n },\n Error\n);\n\ncodes.ERR_UNSUPPORTED_DIR_IMPORT = createError(\n 'ERR_UNSUPPORTED_DIR_IMPORT',\n \"Directory import '%s' is not supported \" +\n 'resolving ES modules imported from %s',\n Error\n);\n\ncodes.ERR_UNKNOWN_FILE_EXTENSION = createError(\n 'ERR_UNKNOWN_FILE_EXTENSION',\n /**\n * @param {string} ext\n * @param {string} path\n */\n (ext, path) => {\n return `Unknown file extension \"${ext}\" for ${path}`\n },\n TypeError\n);\n\ncodes.ERR_INVALID_ARG_VALUE = createError(\n 'ERR_INVALID_ARG_VALUE',\n /**\n * @param {string} name\n * @param {unknown} value\n * @param {string} [reason='is invalid']\n */\n (name, value, reason = 'is invalid') => {\n let inspected = inspect(value);\n\n if (inspected.length > 128) {\n inspected = `${inspected.slice(0, 128)}...`;\n }\n\n const type = name.includes('.') ? 'property' : 'argument';\n\n return `The ${type} '${name}' ${reason}. Received ${inspected}`\n },\n TypeError\n // Note: extra classes have been shaken out.\n // , RangeError\n);\n\ncodes.ERR_UNSUPPORTED_ESM_URL_SCHEME = createError(\n 'ERR_UNSUPPORTED_ESM_URL_SCHEME',\n /**\n * @param {URL} url\n * @param {Array<string>} supported\n */\n (url, supported) => {\n let message = `Only URLs with a scheme in: ${formatList(\n supported\n )} are supported by the default ESM loader`;\n\n if (isWindows && url.protocol.length === 2) {\n message += '. On Windows, absolute paths must be valid file:// URLs';\n }\n\n message += `. Received protocol '${url.protocol}'`;\n return message\n },\n Error\n);\n\n/**\n * Utility function for registering the error codes. Only used here. Exported\n * *only* to allow for testing.\n * @param {string} sym\n * @param {MessageFunction | string} value\n * @param {ErrorConstructor} def\n * @returns {new (...args: Array<any>) => Error}\n */\nfunction createError(sym, value, def) {\n // Special case for SystemError that formats the error message differently\n // The SystemErrors only have SystemError as their base classes.\n messages.set(sym, value);\n\n return makeNodeErrorWithCode(def, sym)\n}\n\n/**\n * @param {ErrorConstructor} Base\n * @param {string} key\n * @returns {ErrorConstructor}\n */\nfunction makeNodeErrorWithCode(Base, key) {\n // @ts-expect-error It’s a Node error.\n return NodeError\n /**\n * @param {Array<unknown>} args\n */\n function NodeError(...args) {\n const limit = Error.stackTraceLimit;\n if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = 0;\n const error = new Base();\n // Reset the limit and setting the name property.\n if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = limit;\n const message = getMessage(key, args, error);\n Object.defineProperties(error, {\n // Note: no need to implement `kIsNodeError` symbol, would be hard,\n // probably.\n message: {\n value: message,\n enumerable: false,\n writable: true,\n configurable: true\n },\n toString: {\n /** @this {Error} */\n value() {\n return `${this.name} [${key}]: ${this.message}`\n },\n enumerable: false,\n writable: true,\n configurable: true\n }\n });\n\n captureLargerStackTrace(error);\n // @ts-expect-error It’s a Node error.\n error.code = key;\n return error\n }\n}\n\n/**\n * @returns {boolean}\n */\nfunction isErrorStackTraceLimitWritable() {\n // Do no touch Error.stackTraceLimit as V8 would attempt to install\n // it again during deserialization.\n try {\n // @ts-expect-error: not in types?\n if (v8.startupSnapshot.isBuildingSnapshot()) {\n return false\n }\n } catch {}\n\n const desc = Object.getOwnPropertyDescriptor(Error, 'stackTraceLimit');\n if (desc === undefined) {\n return Object.isExtensible(Error)\n }\n\n return own$1.call(desc, 'writable') && desc.writable !== undefined\n ? desc.writable\n : desc.set !== undefined\n}\n\n/**\n * This function removes unnecessary frames from Node.js core errors.\n * @template {(...args: unknown[]) => unknown} T\n * @param {T} fn\n * @returns {T}\n */\nfunction hideStackFrames(fn) {\n // We rename the functions that will be hidden to cut off the stacktrace\n // at the outermost one\n const hidden = nodeInternalPrefix + fn.name;\n Object.defineProperty(fn, 'name', {value: hidden});\n return fn\n}\n\nconst captureLargerStackTrace = hideStackFrames(\n /**\n * @param {Error} error\n * @returns {Error}\n */\n // @ts-expect-error: fine\n function (error) {\n const stackTraceLimitIsWritable = isErrorStackTraceLimitWritable();\n if (stackTraceLimitIsWritable) {\n userStackTraceLimit = Error.stackTraceLimit;\n Error.stackTraceLimit = Number.POSITIVE_INFINITY;\n }\n\n Error.captureStackTrace(error);\n\n // Reset the limit\n if (stackTraceLimitIsWritable) Error.stackTraceLimit = userStackTraceLimit;\n\n return error\n }\n);\n\n/**\n * @param {string} key\n * @param {Array<unknown>} args\n * @param {Error} self\n * @returns {string}\n */\nfunction getMessage(key, args, self) {\n const message = messages.get(key);\n assert(message !== undefined, 'expected `message` to be found');\n\n if (typeof message === 'function') {\n assert(\n message.length <= args.length, // Default options do not count.\n `Code: ${key}; The provided arguments length (${args.length}) does not ` +\n `match the required ones (${message.length}).`\n );\n return Reflect.apply(message, self, args)\n }\n\n const regex = /%[dfijoOs]/g;\n let expectedLength = 0;\n while (regex.exec(message) !== null) expectedLength++;\n assert(\n expectedLength === args.length,\n `Code: ${key}; The provided arguments length (${args.length}) does not ` +\n `match the required ones (${expectedLength}).`\n );\n if (args.length === 0) return message\n\n args.unshift(message);\n return Reflect.apply(format, null, args)\n}\n\n/**\n * Determine the specific type of a value for type-mismatch errors.\n * @param {unknown} value\n * @returns {string}\n */\nfunction determineSpecificType(value) {\n if (value === null || value === undefined) {\n return String(value)\n }\n\n if (typeof value === 'function' && value.name) {\n return `function ${value.name}`\n }\n\n if (typeof value === 'object') {\n if (value.constructor && value.constructor.name) {\n return `an instance of ${value.constructor.name}`\n }\n\n return `${inspect(value, {depth: -1})}`\n }\n\n let inspected = inspect(value, {colors: false});\n\n if (inspected.length > 28) {\n inspected = `${inspected.slice(0, 25)}...`;\n }\n\n return `type ${typeof value} (${inspected})`\n}\n\n// Manually “tree shaken” from:\n\nconst reader = {read};\nvar packageJsonReader = reader;\n\n/**\n * @param {string} jsonPath\n * @returns {{string: string | undefined}}\n */\nfunction read(jsonPath) {\n try {\n const string = fs.readFileSync(\n path.toNamespacedPath(path.join(path.dirname(jsonPath), 'package.json')),\n 'utf8'\n );\n return {string}\n } catch (error) {\n const exception = /** @type {ErrnoException} */ (error);\n\n if (exception.code === 'ENOENT') {\n return {string: undefined}\n // Throw all other errors.\n /* c8 ignore next 4 */\n }\n\n throw exception\n }\n}\n\n// Manually “tree shaken” from:\n\nconst {ERR_INVALID_PACKAGE_CONFIG: ERR_INVALID_PACKAGE_CONFIG$1} = codes;\n\n/** @type {Map<string, PackageConfig>} */\nconst packageJsonCache = new Map();\n\n/**\n * @param {string} path\n * @param {URL | string} specifier Note: `specifier` is actually optional, not base.\n * @param {URL} [base]\n * @returns {PackageConfig}\n */\nfunction getPackageConfig(path, specifier, base) {\n const existing = packageJsonCache.get(path);\n if (existing !== undefined) {\n return existing\n }\n\n const source = packageJsonReader.read(path).string;\n\n if (source === undefined) {\n /** @type {PackageConfig} */\n const packageConfig = {\n pjsonPath: path,\n exists: false,\n main: undefined,\n name: undefined,\n type: 'none',\n exports: undefined,\n imports: undefined\n };\n packageJsonCache.set(path, packageConfig);\n return packageConfig\n }\n\n /** @type {Record<string, unknown>} */\n let packageJson;\n try {\n packageJson = JSON.parse(source);\n } catch (error) {\n const exception = /** @type {ErrnoException} */ (error);\n\n throw new ERR_INVALID_PACKAGE_CONFIG$1(\n path,\n (base ? `\"${specifier}\" from ` : '') + fileURLToPath(base || specifier),\n exception.message\n )\n }\n\n const {exports, imports, main, name, type} = packageJson;\n\n /** @type {PackageConfig} */\n const packageConfig = {\n pjsonPath: path,\n exists: true,\n main: typeof main === 'string' ? main : undefined,\n name: typeof name === 'string' ? name : undefined,\n type: type === 'module' || type === 'commonjs' ? type : 'none',\n // @ts-expect-error Assume `Record<string, unknown>`.\n exports,\n // @ts-expect-error Assume `Record<string, unknown>`.\n imports: imports && typeof imports === 'object' ? imports : undefined\n };\n packageJsonCache.set(path, packageConfig);\n return packageConfig\n}\n\n/**\n * @param {URL} resolved\n * @returns {PackageConfig}\n */\nfunction getPackageScopeConfig(resolved) {\n let packageJsonUrl = new URL('package.json', resolved);\n\n while (true) {\n const packageJsonPath = packageJsonUrl.pathname;\n\n if (packageJsonPath.endsWith('node_modules/package.json')) break\n\n const packageConfig = getPackageConfig(\n fileURLToPath(packageJsonUrl),\n resolved\n );\n if (packageConfig.exists) return packageConfig\n\n const lastPackageJsonUrl = packageJsonUrl;\n packageJsonUrl = new URL('../package.json', packageJsonUrl);\n\n // Terminates at root where ../package.json equals ../../package.json\n // (can't just check \"/package.json\" for Windows support).\n if (packageJsonUrl.pathname === lastPackageJsonUrl.pathname) break\n }\n\n const packageJsonPath = fileURLToPath(packageJsonUrl);\n /** @type {PackageConfig} */\n const packageConfig = {\n pjsonPath: packageJsonPath,\n exists: false,\n main: undefined,\n name: undefined,\n type: 'none',\n exports: undefined,\n imports: undefined\n };\n packageJsonCache.set(packageJsonPath, packageConfig);\n return packageConfig\n}\n\n// Manually “tree shaken” from:\n\n/**\n * @param {URL} url\n * @returns {PackageType}\n */\nfunction getPackageType(url) {\n const packageConfig = getPackageScopeConfig(url);\n return packageConfig.type\n}\n\n// Manually “tree shaken” from:\n\nconst {ERR_UNKNOWN_FILE_EXTENSION} = codes;\n\nconst hasOwnProperty = {}.hasOwnProperty;\n\n/** @type {Record<string, string>} */\nconst extensionFormatMap = {\n // @ts-expect-error: hush.\n __proto__: null,\n '.cjs': 'commonjs',\n '.js': 'module',\n '.json': 'json',\n '.mjs': 'module'\n};\n\n/**\n * @param {string | null} mime\n * @returns {string | null}\n */\nfunction mimeToFormat(mime) {\n if (\n mime &&\n /\\s*(text|application)\\/javascript\\s*(;\\s*charset=utf-?8\\s*)?/i.test(mime)\n )\n return 'module'\n if (mime === 'application/json') return 'json'\n return null\n}\n\n/**\n * @callback ProtocolHandler\n * @param {URL} parsed\n * @param {{parentURL: string}} context\n * @param {boolean} ignoreErrors\n * @returns {string | null | void}\n */\n\n/**\n * @type {Record<string, ProtocolHandler>}\n */\nconst protocolHandlers = {\n // @ts-expect-error: hush.\n __proto__: null,\n 'data:': getDataProtocolModuleFormat,\n 'file:': getFileProtocolModuleFormat,\n 'http:': getHttpProtocolModuleFormat,\n 'https:': getHttpProtocolModuleFormat,\n 'node:'() {\n return 'builtin'\n }\n};\n\n/**\n * @param {URL} parsed\n */\nfunction getDataProtocolModuleFormat(parsed) {\n const {1: mime} = /^([^/]+\\/[^;,]+)[^,]*?(;base64)?,/.exec(\n parsed.pathname\n ) || [null, null, null];\n return mimeToFormat(mime)\n}\n\n/**\n * Returns the file extension from a URL.\n *\n * Should give similar result to\n * `require('node:path').extname(require('node:url').fileURLToPath(url))`\n * when used with a `file:` URL.\n *\n * @param {URL} url\n * @returns {string}\n */\nfunction extname(url) {\n const pathname = url.pathname;\n let index = pathname.length;\n\n while (index--) {\n const code = pathname.codePointAt(index);\n\n if (code === 47 /* `/` */) {\n return ''\n }\n\n if (code === 46 /* `.` */) {\n return pathname.codePointAt(index - 1) === 47 /* `/` */\n ? ''\n : pathname.slice(index)\n }\n }\n\n return ''\n}\n\n/**\n * @type {ProtocolHandler}\n */\nfunction getFileProtocolModuleFormat(url, _context, ignoreErrors) {\n const ext = extname(url);\n\n if (ext === '.js') {\n return getPackageType(url) === 'module' ? 'module' : 'commonjs'\n }\n\n const format = extensionFormatMap[ext];\n if (format) return format\n\n // Explicit undefined return indicates load hook should rerun format check\n if (ignoreErrors) {\n return undefined\n }\n\n const filepath = fileURLToPath(url);\n throw new ERR_UNKNOWN_FILE_EXTENSION(ext, filepath)\n}\n\nfunction getHttpProtocolModuleFormat() {\n // To do: HTTPS imports.\n}\n\n/**\n * @param {URL} url\n * @param {{parentURL: string}} context\n * @returns {string | null}\n */\nfunction defaultGetFormatWithoutErrors(url, context) {\n if (!hasOwnProperty.call(protocolHandlers, url.protocol)) {\n return null\n }\n\n return protocolHandlers[url.protocol](url, context, true) || null\n}\n\n// Manually “tree shaken” from:\n\nconst {ERR_INVALID_ARG_VALUE} = codes;\n\n// In Node itself these values are populated from CLI arguments, before any\n// user code runs.\n// Here we just define the defaults.\nconst DEFAULT_CONDITIONS = Object.freeze(['node', 'import']);\nconst DEFAULT_CONDITIONS_SET = new Set(DEFAULT_CONDITIONS);\n\nfunction getDefaultConditions() {\n return DEFAULT_CONDITIONS\n}\n\nfunction getDefaultConditionsSet() {\n return DEFAULT_CONDITIONS_SET\n}\n\n/**\n * @param {Array<string>} [conditions]\n * @returns {Set<string>}\n */\nfunction getConditionsSet(conditions) {\n if (conditions !== undefined && conditions !== getDefaultConditions()) {\n if (!Array.isArray(conditions)) {\n throw new ERR_INVALID_ARG_VALUE(\n 'conditions',\n conditions,\n 'expected an array'\n )\n }\n\n return new Set(conditions)\n }\n\n return getDefaultConditionsSet()\n}\n\n// Manually “tree shaken” from:\n\nconst RegExpPrototypeSymbolReplace = RegExp.prototype[Symbol.replace];\n\n// To do: potentially enable?\nconst experimentalNetworkImports = false;\n\nconst {\n ERR_NETWORK_IMPORT_DISALLOWED,\n ERR_INVALID_MODULE_SPECIFIER,\n ERR_INVALID_PACKAGE_CONFIG,\n ERR_INVALID_PACKAGE_TARGET,\n ERR_MODULE_NOT_FOUND,\n ERR_PACKAGE_IMPORT_NOT_DEFINED,\n ERR_PACKAGE_PATH_NOT_EXPORTED,\n ERR_UNSUPPORTED_DIR_IMPORT,\n ERR_UNSUPPORTED_ESM_URL_SCHEME\n} = codes;\n\nconst own = {}.hasOwnProperty;\n\nconst invalidSegmentRegEx =\n /(^|\\\\|\\/)((\\.|%2e)(\\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))?(\\\\|\\/|$)/i;\nconst deprecatedInvalidSegmentRegEx =\n /(^|\\\\|\\/)((\\.|%2e)(\\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))(\\\\|\\/|$)/i;\nconst invalidPackageNameRegEx = /^\\.|%|\\\\/;\nconst patternRegEx = /\\*/g;\nconst encodedSepRegEx = /%2f|%5c/i;\n/** @type {Set<string>} */\nconst emittedPackageWarnings = new Set();\n\nconst doubleSlashRegEx = /[/\\\\]{2}/;\n\n/**\n *\n * @param {string} target\n * @param {string} request\n * @param {string} match\n * @param {URL} packageJsonUrl\n * @param {boolean} internal\n * @param {URL} base\n * @param {boolean} isTarget\n */\nfunction emitInvalidSegmentDeprecation(\n target,\n request,\n match,\n packageJsonUrl,\n internal,\n base,\n isTarget\n) {\n const pjsonPath = fileURLToPath(packageJsonUrl);\n const double = doubleSlashRegEx.exec(isTarget ? target : request) !== null;\n process.emitWarning(\n `Use of deprecated ${\n double ? 'double slash' : 'leading or trailing slash matching'\n } resolving \"${target}\" for module ` +\n `request \"${request}\" ${\n request === match ? '' : `matched to \"${match}\" `\n }in the \"${\n internal ? 'imports' : 'exports'\n }\" field module resolution of the package at ${pjsonPath}${\n base ? ` imported from ${fileURLToPath(base)}` : ''\n }.`,\n 'DeprecationWarning',\n 'DEP0166'\n );\n}\n\n/**\n * @param {URL} url\n * @param {URL} packageJsonUrl\n * @param {URL} base\n * @param {unknown} [main]\n * @returns {void}\n */\nfunction emitLegacyIndexDeprecation(url, packageJsonUrl, base, main) {\n const format = defaultGetFormatWithoutErrors(url, {parentURL: base.href});\n if (format !== 'module') return\n const path = fileURLToPath(url.href);\n const pkgPath = fileURLToPath(new URL('.', packageJsonUrl));\n const basePath = fileURLToPath(base);\n if (main)\n process.emitWarning(\n `Package ${pkgPath} has a \"main\" field set to ${JSON.stringify(main)}, ` +\n `excluding the full filename and extension to the resolved file at \"${path.slice(\n pkgPath.length\n )}\", imported from ${basePath}.\\n Automatic extension resolution of the \"main\" field is` +\n 'deprecated for ES modules.',\n 'DeprecationWarning',\n 'DEP0151'\n );\n else\n process.emitWarning(\n `No \"main\" or \"exports\" field defined in the package.json for ${pkgPath} resolving the main entry point \"${path.slice(\n pkgPath.length\n )}\", imported from ${basePath}.\\nDefault \"index\" lookups for the main are deprecated for ES modules.`,\n 'DeprecationWarning',\n 'DEP0151'\n );\n}\n\n/**\n * @param {string} path\n * @returns {Stats}\n */\nfunction tryStatSync(path) {\n // Note: from Node 15 onwards we can use `throwIfNoEntry: false` instead.\n try {\n return statSync(path)\n } catch {\n return new Stats()\n }\n}\n\n/**\n * Legacy CommonJS main resolution:\n * 1. let M = pkg_url + (json main field)\n * 2. TRY(M, M.js, M.json, M.node)\n * 3. TRY(M/index.js, M/index.json, M/index.node)\n * 4. TRY(pkg_url/index.js, pkg_url/index.json, pkg_url/index.node)\n * 5. NOT_FOUND\n *\n * @param {URL} url\n * @returns {boolean}\n */\nfunction fileExists(url) {\n const stats = statSync(url, {throwIfNoEntry: false});\n const isFile = stats ? stats.isFile() : undefined;\n return isFile === null || isFile === undefined ? false : isFile\n}\n\n/**\n * @param {URL} packageJsonUrl\n * @param {PackageConfig} packageConfig\n * @param {URL} base\n * @returns {URL}\n */\nfunction legacyMainResolve(packageJsonUrl, packageConfig, base) {\n /** @type {URL | undefined} */\n let guess;\n if (packageConfig.main !== undefined) {\n guess = new URL(packageConfig.main, packageJsonUrl);\n // Note: fs check redundances will be handled by Descriptor cache here.\n if (fileExists(guess)) return guess\n\n const tries = [\n `./${packageConfig.main}.js`,\n `./${packageConfig.main}.json`,\n `./${packageConfig.main}.node`,\n `./${packageConfig.main}/index.js`,\n `./${packageConfig.main}/index.json`,\n `./${packageConfig.main}/index.node`\n ];\n let i = -1;\n\n while (++i < tries.length) {\n guess = new URL(tries[i], packageJsonUrl);\n if (fileExists(guess)) break\n guess = undefined;\n }\n\n if (guess) {\n emitLegacyIndexDeprecation(\n guess,\n packageJsonUrl,\n base,\n packageConfig.main\n );\n return guess\n }\n // Fallthrough.\n }\n\n const tries = ['./index.js', './index.json', './index.node'];\n let i = -1;\n\n while (++i < tries.length) {\n guess = new URL(tries[i], packageJsonUrl);\n if (fileExists(guess)) break\n guess = undefined;\n }\n\n if (guess) {\n emitLegacyIndexDeprecation(guess, packageJsonUrl, base, packageConfig.main);\n return guess\n }\n\n // Not found.\n throw new ERR_MODULE_NOT_FOUND(\n fileURLToPath(new URL('.', packageJsonUrl)),\n fileURLToPath(base)\n )\n}\n\n/**\n * @param {URL} resolved\n * @param {URL} base\n * @param {boolean} [preserveSymlinks]\n * @returns {URL}\n */\nfunction finalizeResolution(resolved, base, preserveSymlinks) {\n if (encodedSepRegEx.exec(resolved.pathname) !== null)\n throw new ERR_INVALID_MODULE_SPECIFIER(\n resolved.pathname,\n 'must not include encoded \"/\" or \"\\\\\" characters',\n fileURLToPath(base)\n )\n\n const filePath = fileURLToPath(resolved);\n\n const stats = tryStatSync(\n filePath.endsWith('/') ? filePath.slice(-1) : filePath\n );\n\n if (stats.isDirectory()) {\n const error = new ERR_UNSUPPORTED_DIR_IMPORT(filePath, fileURLToPath(base));\n // @ts-expect-error Add this for `import.meta.resolve`.\n error.url = String(resolved);\n throw error\n }\n\n if (!stats.isFile()) {\n throw new ERR_MODULE_NOT_FOUND(\n filePath || resolved.pathname,\n base && fileURLToPath(base),\n 'module'\n )\n }\n\n if (!preserveSymlinks) {\n const real = realpathSync(filePath);\n const {search, hash} = resolved;\n resolved = pathToFileURL(real + (filePath.endsWith(path.sep) ? '/' : ''));\n resolved.search = search;\n resolved.hash = hash;\n }\n\n return resolved\n}\n\n/**\n * @param {string} specifier\n * @param {URL | undefined} packageJsonUrl\n * @param {URL} base\n * @returns {Error}\n */\nfunction importNotDefined(specifier, packageJsonUrl, base) {\n return new ERR_PACKAGE_IMPORT_NOT_DEFINED(\n specifier,\n packageJsonUrl && fileURLToPath(new URL('.', packageJsonUrl)),\n fileURLToPath(base)\n )\n}\n\n/**\n * @param {string} subpath\n * @param {URL} packageJsonUrl\n * @param {URL} base\n * @returns {Error}\n */\nfunction exportsNotFound(subpath, packageJsonUrl, base) {\n return new ERR_PACKAGE_PATH_NOT_EXPORTED(\n fileURLToPath(new URL('.', packageJsonUrl)),\n subpath,\n base && fileURLToPath(base)\n )\n}\n\n/**\n * @param {string} request\n * @param {string} match\n * @param {URL} packageJsonUrl\n * @param {boolean} internal\n * @param {URL} [base]\n * @returns {never}\n */\nfunction throwInvalidSubpath(request, match, packageJsonUrl, internal, base) {\n const reason = `request is not a valid match in pattern \"${match}\" for the \"${\n internal ? 'imports' : 'exports'\n }\" resolution of ${fileURLToPath(packageJsonUrl)}`;\n throw new ERR_INVALID_MODULE_SPECIFIER(\n request,\n reason,\n base && fileURLToPath(base)\n )\n}\n\n/**\n * @param {string} subpath\n * @param {unknown} target\n * @param {URL} packageJsonUrl\n * @param {boolean} internal\n * @param {URL} [base]\n * @returns {Error}\n */\nfunction invalidPackageTarget(subpath, target, packageJsonUrl, internal, base) {\n target =\n typeof target === 'object' && target !== null\n ? JSON.stringify(target, null, '')\n : `${target}`;\n\n return new ERR_INVALID_PACKAGE_TARGET(\n fileURLToPath(new URL('.', packageJsonUrl)),\n subpath,\n target,\n internal,\n base && fileURLToPath(base)\n )\n}\n\n/**\n * @param {string} target\n * @param {string} subpath\n * @param {string} match\n * @param {URL} packageJsonUrl\n * @param {URL} base\n * @param {boolean} pattern\n * @param {boolean} internal\n * @param {boolean} isPathMap\n * @param {Set<string> | undefined} conditions\n * @returns {URL}\n */\nfunction resolvePackageTargetString(\n target,\n subpath,\n match,\n packageJsonUrl,\n base,\n pattern,\n internal,\n isPathMap,\n conditions\n) {\n if (subpath !== '' && !pattern && target[target.length - 1] !== '/')\n throw invalidPackageTarget(match, target, packageJsonUrl, internal, base)\n\n if (!target.startsWith('./')) {\n if (internal && !target.startsWith('../') && !target.startsWith('/')) {\n let isURL = false;\n\n try {\n new URL(target);\n isURL = true;\n } catch {\n // Continue regardless of error.\n }\n\n if (!isURL) {\n const exportTarget = pattern\n ? RegExpPrototypeSymbolReplace.call(\n patternRegEx,\n target,\n () => subpath\n )\n : target + subpath;\n\n return packageResolve(exportTarget, packageJsonUrl, conditions)\n }\n }\n\n throw invalidPackageTarget(match, target, packageJsonUrl, internal, base)\n }\n\n if (invalidSegmentRegEx.exec(target.slice(2)) !== null) {\n if (deprecatedInvalidSegmentRegEx.exec(target.slice(2)) === null) {\n if (!isPathMap) {\n const request = pattern\n ? match.replace('*', () => subpath)\n : match + subpath;\n const resolvedTarget = pattern\n ? RegExpPrototypeSymbolReplace.call(\n patternRegEx,\n target,\n () => subpath\n )\n : target;\n emitInvalidSegmentDeprecation(\n resolvedTarget,\n request,\n match,\n packageJsonUrl,\n internal,\n base,\n true\n );\n }\n } else {\n throw invalidPackageTarget(match, target, packageJsonUrl, internal, base)\n }\n }\n\n const resolved = new URL(target, packageJsonUrl);\n const resolvedPath = resolved.pathname;\n const packagePath = new URL('.', packageJsonUrl).pathname;\n\n if (!resolvedPath.startsWith(packagePath))\n throw invalidPackageTarget(match, target, packageJsonUrl, internal, base)\n\n if (subpath === '') return resolved\n\n if (invalidSegmentRegEx.exec(subpath) !== null) {\n const request = pattern\n ? match.replace('*', () => subpath)\n : match + subpath;\n if (deprecatedInvalidSegmentRegEx.exec(subpath) === null) {\n if (!isPathMap) {\n const resolvedTarget = pattern\n ? RegExpPrototypeSymbolReplace.call(\n patternRegEx,\n target,\n () => subpath\n )\n : target;\n emitInvalidSegmentDeprecation(\n resolvedTarget,\n request,\n match,\n packageJsonUrl,\n internal,\n base,\n false\n );\n }\n } else {\n throwInvalidSubpath(request, match, packageJsonUrl, internal, base);\n }\n }\n\n if (pattern) {\n return new URL(\n RegExpPrototypeSymbolReplace.call(\n patternRegEx,\n resolved.href,\n () => subpath\n )\n )\n }\n\n return new URL(subpath, resolved)\n}\n\n/**\n * @param {string} key\n * @returns {boolean}\n */\nfunction isArrayIndex(key) {\n const keyNumber = Number(key);\n if (`${keyNumber}` !== key) return false\n return keyNumber >= 0 && keyNumber < 0xff_ff_ff_ff\n}\n\n/**\n * @param {URL} packageJsonUrl\n * @param {unknown} target\n * @param {string} subpath\n * @param {string} packageSubpath\n * @param {URL} base\n * @param {boolean} pattern\n * @param {boolean} internal\n * @param {boolean} isPathMap\n * @param {Set<string> | undefined} conditions\n * @returns {URL | null}\n */\nfunction resolvePackageTarget(\n packageJsonUrl,\n target,\n subpath,\n packageSubpath,\n base,\n pattern,\n internal,\n isPathMap,\n conditions\n) {\n if (typeof target === 'string') {\n return resolvePackageTargetString(\n target,\n subpath,\n packageSubpath,\n packageJsonUrl,\n base,\n pattern,\n internal,\n isPathMap,\n conditions\n )\n }\n\n if (Array.isArray(target)) {\n /** @type {Array<unknown>} */\n const targetList = target;\n if (targetList.length === 0) return null\n\n /** @type {ErrnoException | null | undefined} */\n let lastException;\n let i = -1;\n\n while (++i < targetList.length) {\n const targetItem = targetList[i];\n /** @type {URL | null} */\n let resolveResult;\n try {\n resolveResult = resolvePackageTarget(\n packageJsonUrl,\n targetItem,\n subpath,\n packageSubpath,\n base,\n pattern,\n internal,\n isPathMap,\n conditions\n );\n } catch (error) {\n const exception = /** @type {ErrnoException} */ (error);\n lastException = exception;\n if (exception.code === 'ERR_INVALID_PACKAGE_TARGET') continue\n throw error\n }\n\n if (resolveResult === undefined) continue\n\n if (resolveResult === null) {\n lastException = null;\n continue\n }\n\n return resolveResult\n }\n\n if (lastException === undefined || lastException === null) {\n return null\n }\n\n throw lastException\n }\n\n if (typeof target === 'object' && target !== null) {\n const keys = Object.getOwnPropertyNames(target);\n let i = -1;\n\n while (++i < keys.length) {\n const key = keys[i];\n if (isArrayIndex(key)) {\n throw new ERR_INVALID_PACKAGE_CONFIG(\n fileURLToPath(packageJsonUrl),\n base,\n '\"exports\" cannot contain numeric property keys.'\n )\n }\n }\n\n i = -1;\n\n while (++i < keys.length) {\n const key = keys[i];\n if (key === 'default' || (conditions && conditions.has(key))) {\n // @ts-expect-error: indexable.\n const conditionalTarget = /** @type {unknown} */ (target[key]);\n const resolveResult = resolvePackageTarget(\n packageJsonUrl,\n conditionalTarget,\n subpath,\n packageSubpath,\n base,\n pattern,\n internal,\n isPathMap,\n conditions\n );\n if (resolveResult === undefined) continue\n return resolveResult\n }\n }\n\n return null\n }\n\n if (target === null) {\n return null\n }\n\n throw invalidPackageTarget(\n packageSubpath,\n target,\n packageJsonUrl,\n internal,\n base\n )\n}\n\n/**\n * @param {unknown} exports\n * @param {URL} packageJsonUrl\n * @param {URL} base\n * @returns {boolean}\n */\nfunction isConditionalExportsMainSugar(exports, packageJsonUrl, base) {\n if (typeof exports === 'string' || Array.isArray(exports)) return true\n if (typeof exports !== 'object' || exports === null) return false\n\n const keys = Object.getOwnPropertyNames(exports);\n let isConditionalSugar = false;\n let i = 0;\n let j = -1;\n while (++j < keys.length) {\n const key = keys[j];\n const curIsConditionalSugar = key === '' || key[0] !== '.';\n if (i++ === 0) {\n isConditionalSugar = curIsConditionalSugar;\n } else if (isConditionalSugar !== curIsConditionalSugar) {\n throw new ERR_INVALID_PACKAGE_CONFIG(\n fileURLToPath(packageJsonUrl),\n base,\n '\"exports\" cannot contain some keys starting with \\'.\\' and some not.' +\n ' The exports object must either be an object of package subpath keys' +\n ' or an object of main entry condition name keys only.'\n )\n }\n }\n\n return isConditionalSugar\n}\n\n/**\n * @param {string} match\n * @param {URL} pjsonUrl\n * @param {URL} base\n */\nfunction emitTrailingSlashPatternDeprecation(match, pjsonUrl, base) {\n const pjsonPath = fileURLToPath(pjsonUrl);\n if (emittedPackageWarnings.has(pjsonPath + '|' + match)) return\n emittedPackageWarnings.add(pjsonPath + '|' + match);\n process.emitWarning(\n `Use of deprecated trailing slash pattern mapping \"${match}\" in the ` +\n `\"exports\" field module resolution of the package at ${pjsonPath}${\n base ? ` imported from ${fileURLToPath(base)}` : ''\n }. Mapping specifiers ending in \"/\" is no longer supported.`,\n 'DeprecationWarning',\n 'DEP0155'\n );\n}\n\n/**\n * @param {URL} packageJsonUrl\n * @param {string} packageSubpath\n * @param {Record<string, unknown>} packageConfig\n * @param {URL} base\n * @param {Set<string> | undefined} conditions\n * @returns {URL}\n */\nfunction packageExportsResolve(\n packageJsonUrl,\n packageSubpath,\n packageConfig,\n base,\n conditions\n) {\n let exports = packageConfig.exports;\n\n if (isConditionalExportsMainSugar(exports, packageJsonUrl, base)) {\n exports = {'.': exports};\n }\n\n if (\n own.call(exports, packageSubpath) &&\n !packageSubpath.includes('*') &&\n !packageSubpath.endsWith('/')\n ) {\n // @ts-expect-error: indexable.\n const target = exports[packageSubpath];\n const resolveResult = resolvePackageTarget(\n packageJsonUrl,\n target,\n '',\n packageSubpath,\n base,\n false,\n false,\n false,\n conditions\n );\n if (resolveResult === null || resolveResult === undefined) {\n throw exportsNotFound(packageSubpath, packageJsonUrl, base)\n }\n\n return resolveResult\n }\n\n let bestMatch = '';\n let bestMatchSubpath = '';\n const keys = Object.getOwnPropertyNames(exports);\n let i = -1;\n\n while (++i < keys.length) {\n const key = keys[i];\n const patternIndex = key.indexOf('*');\n\n if (\n patternIndex !== -1 &&\n packageSubpath.startsWith(key.slice(0, patternIndex))\n ) {\n // When this reaches EOL, this can throw at the top of the whole function:\n //\n // if (StringPrototypeEndsWith(packageSubpath, '/'))\n // throwInvalidSubpath(packageSubpath)\n //\n // To match \"imports\" and the spec.\n if (packageSubpath.endsWith('/')) {\n emitTrailingSlashPatternDeprecation(\n packageSubpath,\n packageJsonUrl,\n base\n );\n }\n\n const patternTrailer = key.slice(patternIndex + 1);\n\n if (\n packageSubpath.length >= key.length &&\n packageSubpath.endsWith(patternTrailer) &&\n patternKeyCompare(bestMatch, key) === 1 &&\n key.lastIndexOf('*') === patternIndex\n ) {\n bestMatch = key;\n bestMatchSubpath = packageSubpath.slice(\n patternIndex,\n packageSubpath.length - patternTrailer.length\n );\n }\n }\n }\n\n if (bestMatch) {\n // @ts-expect-error: indexable.\n const target = /** @type {unknown} */ (exports[bestMatch]);\n const resolveResult = resolvePackageTarget(\n packageJsonUrl,\n target,\n bestMatchSubpath,\n bestMatch,\n base,\n true,\n false,\n packageSubpath.endsWith('/'),\n conditions\n );\n\n if (resolveResult === null || resolveResult === undefined) {\n throw exportsNotFound(packageSubpath, packageJsonUrl, base)\n }\n\n return resolveResult\n }\n\n throw exportsNotFound(packageSubpath, packageJsonUrl, base)\n}\n\n/**\n * @param {string} a\n * @param {string} b\n */\nfunction patternKeyCompare(a, b) {\n const aPatternIndex = a.indexOf('*');\n const bPatternIndex = b.indexOf('*');\n const baseLengthA = aPatternIndex === -1 ? a.length : aPatternIndex + 1;\n const baseLengthB = bPatternIndex === -1 ? b.length : bPatternIndex + 1;\n if (baseLengthA > baseLengthB) return -1\n if (baseLengthB > baseLengthA) return 1\n if (aPatternIndex === -1) return 1\n if (bPatternIndex === -1) return -1\n if (a.length > b.length) return -1\n if (b.length > a.length) return 1\n return 0\n}\n\n/**\n * @param {string} name\n * @param {URL} base\n * @param {Set<string>} [conditions]\n * @returns {URL}\n */\nfunction packageImportsResolve(name, base, conditions) {\n if (name === '#' || name.startsWith('#/') || name.endsWith('/')) {\n const reason = 'is not a valid internal imports specifier name';\n throw new ERR_INVALID_MODULE_SPECIFIER(name, reason, fileURLToPath(base))\n }\n\n /** @type {URL | undefined} */\n let packageJsonUrl;\n\n const packageConfig = getPackageScopeConfig(base);\n\n if (packageConfig.exists) {\n packageJsonUrl = pathToFileURL(packageConfig.pjsonPath);\n const imports = packageConfig.imports;\n if (imports) {\n if (own.call(imports, name) && !name.includes('*')) {\n const resolveResult = resolvePackageTarget(\n packageJsonUrl,\n imports[name],\n '',\n name,\n base,\n false,\n true,\n false,\n conditions\n );\n if (resolveResult !== null && resolveResult !== undefined) {\n return resolveResult\n }\n } else {\n let bestMatch = '';\n let bestMatchSubpath = '';\n const keys = Object.getOwnPropertyNames(imports);\n let i = -1;\n\n while (++i < keys.length) {\n const key = keys[i];\n const patternIndex = key.indexOf('*');\n\n if (patternIndex !== -1 && name.startsWith(key.slice(0, -1))) {\n const patternTrailer = key.slice(patternIndex + 1);\n if (\n name.length >= key.length &&\n name.endsWith(patternTrailer) &&\n patternKeyCompare(bestMatch, key) === 1 &&\n key.lastIndexOf('*') === patternIndex\n ) {\n bestMatch = key;\n bestMatchSubpath = name.slice(\n patternIndex,\n name.length - patternTrailer.length\n );\n }\n }\n }\n\n if (bestMatch) {\n const target = imports[bestMatch];\n const resolveResult = resolvePackageTarget(\n packageJsonUrl,\n target,\n bestMatchSubpath,\n bestMatch,\n base,\n true,\n true,\n false,\n conditions\n );\n\n if (resolveResult !== null && resolveResult !== undefined) {\n return resolveResult\n }\n }\n }\n }\n }\n\n throw importNotDefined(name, packageJsonUrl, base)\n}\n\n// Note: In Node.js, `getPackageType` is here.\n// To prevent a circular dependency, we move it to\n// `resolve-get-package-type.js`.\n\n/**\n * @param {string} specifier\n * @param {URL} base\n */\nfunction parsePackageName(specifier, base) {\n let separatorIndex = specifier.indexOf('/');\n let validPackageName = true;\n let isScoped = false;\n if (specifier[0] === '@') {\n isScoped = true;\n if (separatorIndex === -1 || specifier.length === 0) {\n validPackageName = false;\n } else {\n separatorIndex = specifier.indexOf('/', separatorIndex + 1);\n }\n }\n\n const packageName =\n separatorIndex === -1 ? specifier : specifier.slice(0, separatorIndex);\n\n // Package name cannot have leading . and cannot have percent-encoding or\n // \\\\ separators.\n if (invalidPackageNameRegEx.exec(packageName) !== null) {\n validPackageName = false;\n }\n\n if (!validPackageName) {\n throw new ERR_INVALID_MODULE_SPECIFIER(\n specifier,\n 'is not a valid package name',\n fileURLToPath(base)\n )\n }\n\n const packageSubpath =\n '.' + (separatorIndex === -1 ? '' : specifier.slice(separatorIndex));\n\n return {packageName, packageSubpath, isScoped}\n}\n\n/**\n * @param {string} specifier\n * @param {URL} base\n * @param {Set<string> | undefined} conditions\n * @returns {URL}\n */\nfunction packageResolve(specifier, base, conditions) {\n if (builtinModules.includes(specifier)) {\n return new URL('node:' + specifier)\n }\n\n const {packageName, packageSubpath, isScoped} = parsePackageName(\n specifier,\n base\n );\n\n // ResolveSelf\n const packageConfig = getPackageScopeConfig(base);\n\n // Can’t test.\n /* c8 ignore next 16 */\n if (packageConfig.exists) {\n const packageJsonUrl = pathToFileURL(packageConfig.pjsonPath);\n if (\n packageConfig.name === packageName &&\n packageConfig.exports !== undefined &&\n packageConfig.exports !== null\n ) {\n return packageExportsResolve(\n packageJsonUrl,\n packageSubpath,\n packageConfig,\n base,\n conditions\n )\n }\n }\n\n let packageJsonUrl = new URL(\n './node_modules/' + packageName + '/package.json',\n base\n );\n let packageJsonPath = fileURLToPath(packageJsonUrl);\n /** @type {string} */\n let lastPath;\n do {\n const stat = tryStatSync(packageJsonPath.slice(0, -13));\n if (!stat.isDirectory()) {\n lastPath = packageJsonPath;\n packageJsonUrl = new URL(\n (isScoped ? '../../../../node_modules/' : '../../../node_modules/') +\n packageName +\n '/package.json',\n packageJsonUrl\n );\n packageJsonPath = fileURLToPath(packageJsonUrl);\n continue\n }\n\n // Package match.\n const packageConfig = getPackageConfig(packageJsonPath, specifier, base);\n if (packageConfig.exports !== undefined && packageConfig.exports !== null) {\n return packageExportsResolve(\n packageJsonUrl,\n packageSubpath,\n packageConfig,\n base,\n conditions\n )\n }\n\n if (packageSubpath === '.') {\n return legacyMainResolve(packageJsonUrl, packageConfig, base)\n }\n\n return new URL(packageSubpath, packageJsonUrl)\n // Cross-platform root check.\n } while (packageJsonPath.length !== lastPath.length)\n\n throw new ERR_MODULE_NOT_FOUND(packageName, fileURLToPath(base))\n}\n\n/**\n * @param {string} specifier\n * @returns {boolean}\n */\nfunction isRelativeSpecifier(specifier) {\n if (specifier[0] === '.') {\n if (specifier.length === 1 || specifier[1] === '/') return true\n if (\n specifier[1] === '.' &&\n (specifier.length === 2 || specifier[2] === '/')\n ) {\n return true\n }\n }\n\n return false\n}\n\n/**\n * @param {string} specifier\n * @returns {boolean}\n */\nfunction shouldBeTreatedAsRelativeOrAbsolutePath(specifier) {\n if (specifier === '') return false\n if (specifier[0] === '/') return true\n return isRelativeSpecifier(specifier)\n}\n\n/**\n * The “Resolver Algorithm Specification” as detailed in the Node docs (which is\n * sync and slightly lower-level than `resolve`).\n *\n * @param {string} specifier\n * `/example.js`, `./example.js`, `../example.js`, `some-package`, `fs`, etc.\n * @param {URL} base\n * Full URL (to a file) that `specifier` is resolved relative from.\n * @param {Set<string>} [conditions]\n * Conditions.\n * @param {boolean} [preserveSymlinks]\n * Keep symlinks instead of resolving them.\n * @returns {URL}\n * A URL object to the found thing.\n */\nfunction moduleResolve(specifier, base, conditions, preserveSymlinks) {\n const protocol = base.protocol;\n const isRemote = protocol === 'http:' || protocol === 'https:';\n // Order swapped from spec for minor perf gain.\n // Ok since relative URLs cannot parse as URLs.\n /** @type {URL | undefined} */\n let resolved;\n\n if (shouldBeTreatedAsRelativeOrAbsolutePath(specifier)) {\n resolved = new URL(specifier, base);\n } else if (!isRemote && specifier[0] === '#') {\n resolved = packageImportsResolve(specifier, base, conditions);\n } else {\n try {\n resolved = new URL(specifier);\n } catch {\n if (!isRemote) {\n resolved = packageResolve(specifier, base, conditions);\n }\n }\n }\n\n assert(resolved !== undefined, 'expected to be defined');\n\n if (resolved.protocol !== 'file:') {\n return resolved\n }\n\n return finalizeResolution(resolved, base, preserveSymlinks)\n}\n\n/**\n * @param {string} specifier\n * @param {URL | undefined} parsed\n * @param {URL | undefined} parsedParentURL\n */\nfunction checkIfDisallowedImport(specifier, parsed, parsedParentURL) {\n if (parsedParentURL) {\n // Avoid accessing the `protocol` property due to the lazy getters.\n const parentProtocol = parsedParentURL.protocol;\n\n if (parentProtocol === 'http:' || parentProtocol === 'https:') {\n if (shouldBeTreatedAsRelativeOrAbsolutePath(specifier)) {\n // Avoid accessing the `protocol` property due to the lazy getters.\n const parsedProtocol = parsed?.protocol;\n\n // `data:` and `blob:` disallowed due to allowing file: access via\n // indirection\n if (\n parsedProtocol &&\n parsedProtocol !== 'https:' &&\n parsedProtocol !== 'http:'\n ) {\n throw new ERR_NETWORK_IMPORT_DISALLOWED(\n specifier,\n parsedParentURL,\n 'remote imports cannot import from a local location.'\n )\n }\n\n return {url: parsed?.href || ''}\n }\n\n if (builtinModules.includes(specifier)) {\n throw new ERR_NETWORK_IMPORT_DISALLOWED(\n specifier,\n parsedParentURL,\n 'remote imports cannot import from a local location.'\n )\n }\n\n throw new ERR_NETWORK_IMPORT_DISALLOWED(\n specifier,\n parsedParentURL,\n 'only relative and absolute specifiers are supported.'\n )\n }\n }\n}\n\n// Note: this is from:\n// <https://github.com/nodejs/node/blob/3e74590/lib/internal/url.js#L687>\n/**\n * Checks if a value has the shape of a WHATWG URL object.\n *\n * Using a symbol or instanceof would not be able to recognize URL objects\n * coming from other implementations (e.g. in Electron), so instead we are\n * checking some well known properties for a lack of a better test.\n *\n * We use `href` and `protocol` as they are the only properties that are\n * easy to retrieve and calculate due to the lazy nature of the getters.\n *\n * @template {unknown} Value\n * @param {Value} self\n * @returns {Value is URL}\n */\nfunction isURL(self) {\n return Boolean(\n self &&\n typeof self === 'object' &&\n 'href' in self &&\n typeof self.href === 'string' &&\n 'protocol' in self &&\n typeof self.protocol === 'string' &&\n self.href &&\n self.protocol\n )\n}\n\n/**\n * Validate user-input in `context` supplied by a custom loader.\n *\n * @param {unknown} parentURL\n * @returns {asserts parentURL is URL | string | undefined}\n */\nfunction throwIfInvalidParentURL(parentURL) {\n if (parentURL === undefined) {\n return // Main entry point, so no parent\n }\n\n if (typeof parentURL !== 'string' && !isURL(parentURL)) {\n throw new codes.ERR_INVALID_ARG_TYPE(\n 'parentURL',\n ['string', 'URL'],\n parentURL\n )\n }\n}\n\n/**\n * @param {URL} url\n */\nfunction throwIfUnsupportedURLProtocol(url) {\n // Avoid accessing the `protocol` property due to the lazy getters.\n const protocol = url.protocol;\n\n if (protocol !== 'file:' && protocol !== 'data:' && protocol !== 'node:') {\n throw new ERR_UNSUPPORTED_ESM_URL_SCHEME(url)\n }\n}\n\n/**\n * @param {URL | undefined} parsed\n * @param {boolean} experimentalNetworkImports\n */\nfunction throwIfUnsupportedURLScheme(parsed, experimentalNetworkImports) {\n // Avoid accessing the `protocol` property due to the lazy getters.\n const protocol = parsed?.protocol;\n\n if (\n protocol &&\n protocol !== 'file:' &&\n protocol !== 'data:' &&\n (!experimentalNetworkImports ||\n (protocol !== 'https:' && protocol !== 'http:'))\n ) {\n throw new ERR_UNSUPPORTED_ESM_URL_SCHEME(\n parsed,\n ['file', 'data'].concat(\n experimentalNetworkImports ? ['https', 'http'] : []\n )\n )\n }\n}\n\n/**\n * @param {string} specifier\n * @param {{parentURL?: string, conditions?: Array<string>}} context\n * @returns {{url: string, format?: string | null}}\n */\nfunction defaultResolve(specifier, context = {}) {\n const {parentURL} = context;\n assert(parentURL !== undefined, 'expected `parentURL` to be defined');\n throwIfInvalidParentURL(parentURL);\n\n /** @type {URL | undefined} */\n let parsedParentURL;\n if (parentURL) {\n try {\n parsedParentURL = new URL(parentURL);\n } catch {\n // Ignore exception\n }\n }\n\n /** @type {URL | undefined} */\n let parsed;\n try {\n parsed = shouldBeTreatedAsRelativeOrAbsolutePath(specifier)\n ? new URL(specifier, parsedParentURL)\n : new URL(specifier);\n\n // Avoid accessing the `protocol` property due to the lazy getters.\n const protocol = parsed.protocol;\n\n if (\n protocol === 'data:' ||\n (experimentalNetworkImports &&\n (protocol === 'https:' || protocol === 'http:'))\n ) {\n return {url: parsed.href, format: null}\n }\n } catch {\n // Ignore exception\n }\n\n // There are multiple deep branches that can either throw or return; instead\n // of duplicating that deeply nested logic for the possible returns, DRY and\n // check for a return. This seems the least gnarly.\n const maybeReturn = checkIfDisallowedImport(\n specifier,\n parsed,\n parsedParentURL\n );\n\n if (maybeReturn) return maybeReturn\n\n // This must come after checkIfDisallowedImport\n if (parsed && parsed.protocol === 'node:') return {url: specifier}\n\n throwIfUnsupportedURLScheme(parsed, experimentalNetworkImports);\n\n const conditions = getConditionsSet(context.conditions);\n\n const url = moduleResolve(specifier, new URL(parentURL), conditions, false);\n\n throwIfUnsupportedURLProtocol(url);\n\n return {\n // Do NOT cast `url` to a string: that will work even when there are real\n // problems, silencing them\n url: url.href,\n format: defaultGetFormatWithoutErrors(url, {parentURL})\n }\n}\n\n/**\n * @typedef {import('./lib/errors.js').ErrnoException} ErrnoException\n */\n\n/**\n * Match `import.meta.resolve` except that `parent` is required (you can pass\n * `import.meta.url`).\n *\n * @param {string} specifier\n * The module specifier to resolve relative to parent\n * (`/example.js`, `./example.js`, `../example.js`, `some-package`, `fs`,\n * etc).\n * @param {string} parent\n * The absolute parent module URL to resolve from.\n * You must pass `import.meta.url` or something else.\n * @returns {string}\n * Returns a string to a full `file:`, `data:`, or `node:` URL\n * to the found thing.\n */\nfunction resolve(specifier, parent) {\n if (!parent) {\n throw new Error(\n 'Please pass `parent`: `import-meta-resolve` cannot ponyfill that'\n )\n }\n\n try {\n return defaultResolve(specifier, {parentURL: parent}).url\n } catch (error) {\n const exception = /** @type {ErrnoException} */ (error);\n\n if (\n exception.code === 'ERR_UNSUPPORTED_DIR_IMPORT' &&\n typeof exception.url === 'string'\n ) {\n return exception.url\n }\n\n throw error\n }\n}\n\nexport { moduleResolve, resolve };\n"],"mappings":"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"}
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "@babel/core",
3
+ "version": "7.22.9",
4
+ "description": "Babel compiler core.",
5
+ "main": "./lib/index.js",
6
+ "author": "The Babel Team (https://babel.dev/team)",
7
+ "license": "MIT",
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/babel/babel.git",
14
+ "directory": "packages/babel-core"
15
+ },
16
+ "homepage": "https://babel.dev/docs/en/next/babel-core",
17
+ "bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20core%22+is%3Aopen",
18
+ "keywords": [
19
+ "6to5",
20
+ "babel",
21
+ "classes",
22
+ "const",
23
+ "es6",
24
+ "harmony",
25
+ "let",
26
+ "modules",
27
+ "transpile",
28
+ "transpiler",
29
+ "var",
30
+ "babel-core",
31
+ "compiler"
32
+ ],
33
+ "engines": {
34
+ "node": ">=6.9.0"
35
+ },
36
+ "funding": {
37
+ "type": "opencollective",
38
+ "url": "https://opencollective.com/babel"
39
+ },
40
+ "browser": {
41
+ "./lib/config/files/index.js": "./lib/config/files/index-browser.js",
42
+ "./lib/config/resolve-targets.js": "./lib/config/resolve-targets-browser.js",
43
+ "./lib/transform-file.js": "./lib/transform-file-browser.js",
44
+ "./src/config/files/index.ts": "./src/config/files/index-browser.ts",
45
+ "./src/config/resolve-targets.ts": "./src/config/resolve-targets-browser.ts",
46
+ "./src/transform-file.ts": "./src/transform-file-browser.ts"
47
+ },
48
+ "dependencies": {
49
+ "@ampproject/remapping": "^2.2.0",
50
+ "@babel/code-frame": "^7.22.5",
51
+ "@babel/generator": "^7.22.9",
52
+ "@babel/helper-compilation-targets": "^7.22.9",
53
+ "@babel/helper-module-transforms": "^7.22.9",
54
+ "@babel/helpers": "^7.22.6",
55
+ "@babel/parser": "^7.22.7",
56
+ "@babel/template": "^7.22.5",
57
+ "@babel/traverse": "^7.22.8",
58
+ "@babel/types": "^7.22.5",
59
+ "convert-source-map": "^1.7.0",
60
+ "debug": "^4.1.0",
61
+ "gensync": "^1.0.0-beta.2",
62
+ "json5": "^2.2.2",
63
+ "semver": "^6.3.1"
64
+ },
65
+ "devDependencies": {
66
+ "@babel/helper-transform-fixture-test-runner": "^7.22.7",
67
+ "@babel/plugin-syntax-flow": "^7.22.5",
68
+ "@babel/plugin-transform-flow-strip-types": "^7.22.5",
69
+ "@babel/plugin-transform-modules-commonjs": "^7.22.5",
70
+ "@babel/preset-env": "^7.22.9",
71
+ "@babel/preset-typescript": "^7.22.5",
72
+ "@jridgewell/trace-mapping": "^0.3.17",
73
+ "@types/convert-source-map": "^1.5.1",
74
+ "@types/debug": "^4.1.0",
75
+ "@types/gensync": "^1.0.0",
76
+ "@types/resolve": "^1.3.2",
77
+ "@types/semver": "^5.4.0",
78
+ "rimraf": "^3.0.0",
79
+ "ts-node": "^10.9.1"
80
+ },
81
+ "type": "commonjs"
82
+ }
@@ -0,0 +1,109 @@
1
+ import type { Handler } from "gensync";
2
+
3
+ import type {
4
+ ConfigFile,
5
+ IgnoreFile,
6
+ RelativeConfig,
7
+ FilePackageData,
8
+ } from "./types";
9
+
10
+ import type { CallerMetadata } from "../validation/options";
11
+
12
+ export type { ConfigFile, IgnoreFile, RelativeConfig, FilePackageData };
13
+
14
+ export function findConfigUpwards(
15
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
16
+ rootDir: string,
17
+ ): string | null {
18
+ return null;
19
+ }
20
+
21
+ // eslint-disable-next-line require-yield
22
+ export function* findPackageData(filepath: string): Handler<FilePackageData> {
23
+ return {
24
+ filepath,
25
+ directories: [],
26
+ pkg: null,
27
+ isPackage: false,
28
+ };
29
+ }
30
+
31
+ // eslint-disable-next-line require-yield
32
+ export function* findRelativeConfig(
33
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
34
+ pkgData: FilePackageData,
35
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
36
+ envName: string,
37
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
38
+ caller: CallerMetadata | undefined,
39
+ ): Handler<RelativeConfig> {
40
+ return { config: null, ignore: null };
41
+ }
42
+
43
+ // eslint-disable-next-line require-yield
44
+ export function* findRootConfig(
45
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
46
+ dirname: string,
47
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
48
+ envName: string,
49
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
50
+ caller: CallerMetadata | undefined,
51
+ ): Handler<ConfigFile | null> {
52
+ return null;
53
+ }
54
+
55
+ // eslint-disable-next-line require-yield
56
+ export function* loadConfig(
57
+ name: string,
58
+ dirname: string,
59
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
60
+ envName: string,
61
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
62
+ caller: CallerMetadata | undefined,
63
+ ): Handler<ConfigFile> {
64
+ throw new Error(`Cannot load ${name} relative to ${dirname} in a browser`);
65
+ }
66
+
67
+ // eslint-disable-next-line require-yield
68
+ export function* resolveShowConfigPath(
69
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
70
+ dirname: string,
71
+ ): Handler<string | null> {
72
+ return null;
73
+ }
74
+
75
+ export const ROOT_CONFIG_FILENAMES: string[] = [];
76
+
77
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
78
+ export function resolvePlugin(name: string, dirname: string): string | null {
79
+ return null;
80
+ }
81
+
82
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
83
+ export function resolvePreset(name: string, dirname: string): string | null {
84
+ return null;
85
+ }
86
+
87
+ export function loadPlugin(
88
+ name: string,
89
+ dirname: string,
90
+ ): Handler<{
91
+ filepath: string;
92
+ value: unknown;
93
+ }> {
94
+ throw new Error(
95
+ `Cannot load plugin ${name} relative to ${dirname} in a browser`,
96
+ );
97
+ }
98
+
99
+ export function loadPreset(
100
+ name: string,
101
+ dirname: string,
102
+ ): Handler<{
103
+ filepath: string;
104
+ value: unknown;
105
+ }> {
106
+ throw new Error(
107
+ `Cannot load preset ${name} relative to ${dirname} in a browser`,
108
+ );
109
+ }
@@ -0,0 +1,29 @@
1
+ type indexBrowserType = typeof import("./index-browser");
2
+ type indexType = typeof import("./index");
3
+
4
+ // Kind of gross, but essentially asserting that the exports of this module are the same as the
5
+ // exports of index-browser, since this file may be replaced at bundle time with index-browser.
6
+ ({}) as any as indexBrowserType as indexType;
7
+
8
+ export { findPackageData } from "./package";
9
+
10
+ export {
11
+ findConfigUpwards,
12
+ findRelativeConfig,
13
+ findRootConfig,
14
+ loadConfig,
15
+ resolveShowConfigPath,
16
+ ROOT_CONFIG_FILENAMES,
17
+ } from "./configuration";
18
+ export type {
19
+ ConfigFile,
20
+ IgnoreFile,
21
+ RelativeConfig,
22
+ FilePackageData,
23
+ } from "./types";
24
+ export {
25
+ loadPlugin,
26
+ loadPreset,
27
+ resolvePlugin,
28
+ resolvePreset,
29
+ } from "./plugins";
@@ -0,0 +1,40 @@
1
+ import type { ValidatedOptions } from "./validation/options";
2
+ import getTargets, {
3
+ type InputTargets,
4
+ } from "@babel/helper-compilation-targets";
5
+
6
+ import type { Targets } from "@babel/helper-compilation-targets";
7
+
8
+ export function resolveBrowserslistConfigFile(
9
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
10
+ browserslistConfigFile: string,
11
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
12
+ configFilePath: string,
13
+ ): string | void {
14
+ return undefined;
15
+ }
16
+
17
+ export function resolveTargets(
18
+ options: ValidatedOptions,
19
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
20
+ root: string,
21
+ ): Targets {
22
+ const optTargets = options.targets;
23
+ let targets: InputTargets;
24
+
25
+ if (typeof optTargets === "string" || Array.isArray(optTargets)) {
26
+ targets = { browsers: optTargets };
27
+ } else if (optTargets) {
28
+ if ("esmodules" in optTargets) {
29
+ targets = { ...optTargets, esmodules: "intersect" };
30
+ } else {
31
+ // https://github.com/microsoft/TypeScript/issues/17002
32
+ targets = optTargets as InputTargets;
33
+ }
34
+ }
35
+
36
+ return getTargets(targets, {
37
+ ignoreBrowserslistConfig: true,
38
+ browserslistEnv: options.browserslistEnv,
39
+ });
40
+ }
@@ -0,0 +1,56 @@
1
+ type browserType = typeof import("./resolve-targets-browser");
2
+ type nodeType = typeof import("./resolve-targets");
3
+
4
+ // Kind of gross, but essentially asserting that the exports of this module are the same as the
5
+ // exports of index-browser, since this file may be replaced at bundle time with index-browser.
6
+ ({}) as any as browserType as nodeType;
7
+
8
+ import type { ValidatedOptions } from "./validation/options";
9
+ import path from "path";
10
+ import getTargets, {
11
+ type InputTargets,
12
+ } from "@babel/helper-compilation-targets";
13
+
14
+ import type { Targets } from "@babel/helper-compilation-targets";
15
+
16
+ export function resolveBrowserslistConfigFile(
17
+ browserslistConfigFile: string,
18
+ configFileDir: string,
19
+ ): string | undefined {
20
+ return path.resolve(configFileDir, browserslistConfigFile);
21
+ }
22
+
23
+ export function resolveTargets(
24
+ options: ValidatedOptions,
25
+ root: string,
26
+ ): Targets {
27
+ const optTargets = options.targets;
28
+ let targets: InputTargets;
29
+
30
+ if (typeof optTargets === "string" || Array.isArray(optTargets)) {
31
+ targets = { browsers: optTargets };
32
+ } else if (optTargets) {
33
+ if ("esmodules" in optTargets) {
34
+ targets = { ...optTargets, esmodules: "intersect" };
35
+ } else {
36
+ // https://github.com/microsoft/TypeScript/issues/17002
37
+ targets = optTargets as InputTargets;
38
+ }
39
+ }
40
+
41
+ const { browserslistConfigFile } = options;
42
+ let configFile;
43
+ let ignoreBrowserslistConfig = false;
44
+ if (typeof browserslistConfigFile === "string") {
45
+ configFile = browserslistConfigFile;
46
+ } else {
47
+ ignoreBrowserslistConfig = browserslistConfigFile === false;
48
+ }
49
+
50
+ return getTargets(targets, {
51
+ ignoreBrowserslistConfig,
52
+ configFile,
53
+ configPath: root,
54
+ browserslistEnv: options.browserslistEnv,
55
+ });
56
+ }
@@ -0,0 +1,31 @@
1
+ // duplicated from transform-file so we do not have to import anything here
2
+ type TransformFile = {
3
+ (filename: string, callback: (error: Error, file: null) => void): void;
4
+ (
5
+ filename: string,
6
+ opts: any,
7
+ callback: (error: Error, file: null) => void,
8
+ ): void;
9
+ };
10
+
11
+ export const transformFile: TransformFile = function transformFile(
12
+ filename,
13
+ opts,
14
+ callback?: (error: Error, file: null) => void,
15
+ ) {
16
+ if (typeof opts === "function") {
17
+ callback = opts;
18
+ }
19
+
20
+ callback(new Error("Transforming files is not supported in browsers"), null);
21
+ };
22
+
23
+ export function transformFileSync(): never {
24
+ throw new Error("Transforming files is not supported in browsers");
25
+ }
26
+
27
+ export function transformFileAsync() {
28
+ return Promise.reject(
29
+ new Error("Transforming files is not supported in browsers"),
30
+ );
31
+ }