mathjs 10.4.3 → 10.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3043) hide show
  1. package/CONTRIBUTING.md +14 -10
  2. package/HISTORY.md +38 -0
  3. package/README.md +13 -1
  4. package/docs/datatypes/matrices.md +17 -0
  5. package/docs/expressions/expression_trees.md +10 -0
  6. package/docs/expressions/syntax.md +4 -1
  7. package/docs/reference/functions/fft.md +35 -0
  8. package/docs/reference/functions/fix.md +1 -0
  9. package/docs/reference/functions/floor.md +4 -0
  10. package/docs/reference/functions/ifft.md +35 -0
  11. package/docs/reference/functions/lgamma.md +46 -0
  12. package/docs/reference/functions/pinv.md +44 -0
  13. package/docs/reference/functions/pow.md +8 -2
  14. package/docs/reference/functions/resolve.md +2 -2
  15. package/docs/reference/functions/simplifyConstant.md +52 -0
  16. package/docs/reference/functions.md +2 -0
  17. package/lib/browser/math.js +6 -6
  18. package/lib/browser/math.js.map +1 -1
  19. package/lib/cjs/entry/dependenciesAny/dependenciesCeil.generated.js +6 -0
  20. package/lib/cjs/entry/dependenciesAny/dependenciesDet.generated.js +5 -2
  21. package/lib/cjs/entry/dependenciesAny/dependenciesFix.generated.js +9 -0
  22. package/lib/cjs/entry/dependenciesAny/dependenciesFloor.generated.js +6 -0
  23. package/lib/cjs/entry/dependenciesAny/dependenciesIndexNode.generated.js +0 -3
  24. package/lib/cjs/entry/dependenciesAny/dependenciesLgamma.generated.js +23 -0
  25. package/lib/cjs/entry/dependenciesAny/dependenciesPinv.generated.js +53 -0
  26. package/lib/cjs/entry/dependenciesAny/dependenciesPow.generated.js +3 -0
  27. package/lib/cjs/entry/dependenciesAny.generated.js +16 -0
  28. package/lib/cjs/entry/dependenciesNumber/dependenciesCeil.generated.js +3 -0
  29. package/lib/cjs/entry/dependenciesNumber/dependenciesFix.generated.js +6 -0
  30. package/lib/cjs/entry/dependenciesNumber/dependenciesFloor.generated.js +3 -0
  31. package/lib/cjs/entry/dependenciesNumber/dependenciesIndexNode.generated.js +0 -3
  32. package/lib/cjs/entry/dependenciesNumber/dependenciesLgamma.generated.js +20 -0
  33. package/lib/cjs/entry/dependenciesNumber.generated.js +8 -0
  34. package/lib/cjs/entry/impureFunctionsAny.generated.js +96 -95
  35. package/lib/cjs/entry/impureFunctionsNumber.generated.js +11 -11
  36. package/lib/cjs/entry/pureFunctionsAny.generated.js +225 -196
  37. package/lib/cjs/entry/pureFunctionsNumber.generated.js +35 -25
  38. package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +6 -0
  39. package/lib/cjs/expression/embeddedDocs/function/arithmetic/pow.js +1 -1
  40. package/lib/cjs/expression/embeddedDocs/function/matrix/pinv.js +15 -0
  41. package/lib/cjs/expression/embeddedDocs/function/probability/lgamma.js +15 -0
  42. package/lib/cjs/expression/node/IndexNode.js +26 -61
  43. package/lib/cjs/factoriesAny.js +16 -0
  44. package/lib/cjs/factoriesNumber.js +32 -25
  45. package/lib/cjs/function/algebra/resolve.js +3 -3
  46. package/lib/cjs/function/arithmetic/ceil.js +75 -39
  47. package/lib/cjs/function/arithmetic/fix.js +54 -16
  48. package/lib/cjs/function/arithmetic/floor.js +79 -37
  49. package/lib/cjs/function/arithmetic/nthRoot.js +1 -3
  50. package/lib/cjs/function/arithmetic/pow.js +25 -6
  51. package/lib/cjs/function/arithmetic/round.js +27 -47
  52. package/lib/cjs/function/matrix/det.js +37 -31
  53. package/lib/cjs/function/matrix/pinv.js +223 -0
  54. package/lib/cjs/function/probability/lgamma.js +146 -0
  55. package/lib/cjs/header.js +2 -2
  56. package/lib/cjs/plain/number/arithmetic.js +9 -27
  57. package/lib/cjs/plain/number/probability.js +43 -3
  58. package/lib/cjs/type/matrix/function/sparse.js +6 -0
  59. package/lib/cjs/utils/latex.js +6 -0
  60. package/lib/cjs/utils/lruQueue.js +1 -3
  61. package/lib/cjs/utils/number.js +17 -2
  62. package/lib/cjs/utils/object.js +3 -1
  63. package/lib/cjs/version.js +1 -1
  64. package/lib/esm/entry/dependenciesAny/dependenciesCeil.generated.js +4 -0
  65. package/lib/esm/entry/dependenciesAny/dependenciesDet.generated.js +4 -2
  66. package/lib/esm/entry/dependenciesAny/dependenciesFix.generated.js +6 -0
  67. package/lib/esm/entry/dependenciesAny/dependenciesFloor.generated.js +4 -0
  68. package/lib/esm/entry/dependenciesAny/dependenciesIndexNode.generated.js +0 -2
  69. package/lib/esm/entry/dependenciesAny/dependenciesLgamma.generated.js +12 -0
  70. package/lib/esm/entry/dependenciesAny/dependenciesPinv.generated.js +32 -0
  71. package/lib/esm/entry/dependenciesAny/dependenciesPow.generated.js +2 -0
  72. package/lib/esm/entry/dependenciesAny.generated.js +2 -0
  73. package/lib/esm/entry/dependenciesNumber/dependenciesCeil.generated.js +2 -0
  74. package/lib/esm/entry/dependenciesNumber/dependenciesFix.generated.js +4 -0
  75. package/lib/esm/entry/dependenciesNumber/dependenciesFloor.generated.js +2 -0
  76. package/lib/esm/entry/dependenciesNumber/dependenciesIndexNode.generated.js +0 -2
  77. package/lib/esm/entry/dependenciesNumber/dependenciesLgamma.generated.js +10 -0
  78. package/lib/esm/entry/dependenciesNumber.generated.js +1 -0
  79. package/lib/esm/entry/impureFunctionsAny.generated.js +90 -89
  80. package/lib/esm/entry/impureFunctionsNumber.generated.js +12 -12
  81. package/lib/esm/entry/pureFunctionsAny.generated.js +189 -162
  82. package/lib/esm/entry/pureFunctionsNumber.generated.js +23 -14
  83. package/lib/esm/expression/embeddedDocs/embeddedDocs.js +4 -0
  84. package/lib/esm/expression/embeddedDocs/function/arithmetic/pow.js +1 -1
  85. package/lib/esm/expression/embeddedDocs/function/matrix/pinv.js +8 -0
  86. package/lib/esm/expression/embeddedDocs/function/probability/lgamma.js +8 -0
  87. package/lib/esm/expression/node/BlockNode.js +3 -3
  88. package/lib/esm/expression/node/IndexNode.js +22 -59
  89. package/lib/esm/expression/parse.js +5 -5
  90. package/lib/esm/factoriesAny.js +2 -0
  91. package/lib/esm/factoriesNumber.js +7 -6
  92. package/lib/esm/function/algebra/decomposition/qr.js +2 -2
  93. package/lib/esm/function/algebra/resolve.js +3 -3
  94. package/lib/esm/function/algebra/solver/utils/solveValidation.js +5 -5
  95. package/lib/esm/function/algebra/sparse/csChol.js +2 -2
  96. package/lib/esm/function/algebra/sparse/csLeaf.js +2 -2
  97. package/lib/esm/function/algebra/sparse/csLu.js +3 -3
  98. package/lib/esm/function/arithmetic/ceil.js +61 -24
  99. package/lib/esm/function/arithmetic/fix.js +51 -13
  100. package/lib/esm/function/arithmetic/floor.js +65 -23
  101. package/lib/esm/function/arithmetic/nthRoot.js +1 -3
  102. package/lib/esm/function/arithmetic/nthRoots.js +1 -1
  103. package/lib/esm/function/arithmetic/pow.js +25 -6
  104. package/lib/esm/function/arithmetic/round.js +25 -43
  105. package/lib/esm/function/matrix/det.js +35 -31
  106. package/lib/esm/function/matrix/expm.js +2 -2
  107. package/lib/esm/function/matrix/pinv.js +205 -0
  108. package/lib/esm/function/probability/gamma.js +1 -1
  109. package/lib/esm/function/probability/lgamma.js +137 -0
  110. package/lib/esm/function/string/bin.js +1 -1
  111. package/lib/esm/function/string/hex.js +1 -1
  112. package/lib/esm/function/string/oct.js +1 -1
  113. package/lib/esm/plain/number/arithmetic.js +9 -17
  114. package/lib/esm/plain/number/probability.js +33 -1
  115. package/lib/esm/type/complex/Complex.js +2 -2
  116. package/lib/esm/type/matrix/DenseMatrix.js +2 -2
  117. package/lib/esm/type/matrix/FibonacciHeap.js +2 -2
  118. package/lib/esm/type/matrix/SparseMatrix.js +13 -13
  119. package/lib/esm/type/matrix/function/sparse.js +6 -0
  120. package/lib/esm/type/unit/Unit.js +7 -7
  121. package/lib/esm/utils/latex.js +6 -0
  122. package/lib/esm/utils/lruQueue.js +1 -2
  123. package/lib/esm/utils/number.js +16 -4
  124. package/lib/esm/utils/object.js +3 -1
  125. package/lib/esm/version.js +1 -1
  126. package/package.json +26 -15
  127. package/types/index.d.ts +1806 -1363
  128. package/types/index.ts +705 -264
  129. package/examples/node_modules/.bin/acorn +0 -12
  130. package/examples/node_modules/.bin/acorn.cmd +0 -17
  131. package/examples/node_modules/.bin/acorn.ps1 +0 -28
  132. package/examples/node_modules/.bin/browserslist +0 -12
  133. package/examples/node_modules/.bin/browserslist.cmd +0 -17
  134. package/examples/node_modules/.bin/browserslist.ps1 +0 -28
  135. package/examples/node_modules/.bin/envinfo +0 -12
  136. package/examples/node_modules/.bin/envinfo.cmd +0 -17
  137. package/examples/node_modules/.bin/envinfo.ps1 +0 -28
  138. package/examples/node_modules/.bin/import-local-fixture +0 -12
  139. package/examples/node_modules/.bin/import-local-fixture.cmd +0 -17
  140. package/examples/node_modules/.bin/import-local-fixture.ps1 +0 -28
  141. package/examples/node_modules/.bin/node-which +0 -12
  142. package/examples/node_modules/.bin/node-which.cmd +0 -17
  143. package/examples/node_modules/.bin/node-which.ps1 +0 -28
  144. package/examples/node_modules/.bin/resolve +0 -12
  145. package/examples/node_modules/.bin/resolve.cmd +0 -17
  146. package/examples/node_modules/.bin/resolve.ps1 +0 -28
  147. package/examples/node_modules/.bin/terser +0 -12
  148. package/examples/node_modules/.bin/terser.cmd +0 -17
  149. package/examples/node_modules/.bin/terser.ps1 +0 -28
  150. package/examples/node_modules/.bin/webpack +0 -12
  151. package/examples/node_modules/.bin/webpack-cli +0 -12
  152. package/examples/node_modules/.bin/webpack-cli.cmd +0 -17
  153. package/examples/node_modules/.bin/webpack-cli.ps1 +0 -28
  154. package/examples/node_modules/.bin/webpack.cmd +0 -17
  155. package/examples/node_modules/.bin/webpack.ps1 +0 -28
  156. package/examples/node_modules/.package-lock.json +0 -1407
  157. package/examples/node_modules/@discoveryjs/json-ext/LICENSE +0 -21
  158. package/examples/node_modules/@discoveryjs/json-ext/README.md +0 -256
  159. package/examples/node_modules/@discoveryjs/json-ext/dist/json-ext.js +0 -791
  160. package/examples/node_modules/@discoveryjs/json-ext/dist/json-ext.min.js +0 -1
  161. package/examples/node_modules/@discoveryjs/json-ext/dist/version.js +0 -1
  162. package/examples/node_modules/@discoveryjs/json-ext/index.d.ts +0 -31
  163. package/examples/node_modules/@discoveryjs/json-ext/package.json +0 -56
  164. package/examples/node_modules/@discoveryjs/json-ext/src/index.js +0 -6
  165. package/examples/node_modules/@discoveryjs/json-ext/src/parse-chunked.js +0 -384
  166. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-info.js +0 -231
  167. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-stream-browser.js +0 -3
  168. package/examples/node_modules/@discoveryjs/json-ext/src/stringify-stream.js +0 -408
  169. package/examples/node_modules/@discoveryjs/json-ext/src/text-decoder-browser.js +0 -1
  170. package/examples/node_modules/@discoveryjs/json-ext/src/text-decoder.js +0 -1
  171. package/examples/node_modules/@discoveryjs/json-ext/src/utils.js +0 -149
  172. package/examples/node_modules/@discoveryjs/json-ext/src/version.js +0 -1
  173. package/examples/node_modules/@types/eslint/LICENSE +0 -21
  174. package/examples/node_modules/@types/eslint/README.md +0 -16
  175. package/examples/node_modules/@types/eslint/helpers.d.ts +0 -3
  176. package/examples/node_modules/@types/eslint/index.d.ts +0 -953
  177. package/examples/node_modules/@types/eslint/package.json +0 -65
  178. package/examples/node_modules/@types/eslint/rules/best-practices.d.ts +0 -931
  179. package/examples/node_modules/@types/eslint/rules/deprecated.d.ts +0 -267
  180. package/examples/node_modules/@types/eslint/rules/ecmascript-6.d.ts +0 -502
  181. package/examples/node_modules/@types/eslint/rules/index.d.ts +0 -21
  182. package/examples/node_modules/@types/eslint/rules/node-commonjs.d.ts +0 -133
  183. package/examples/node_modules/@types/eslint/rules/possible-errors.d.ts +0 -484
  184. package/examples/node_modules/@types/eslint/rules/strict-mode.d.ts +0 -11
  185. package/examples/node_modules/@types/eslint/rules/stylistic-issues.d.ts +0 -1893
  186. package/examples/node_modules/@types/eslint/rules/variables.d.ts +0 -187
  187. package/examples/node_modules/@types/eslint/use-at-your-own-risk.d.ts +0 -8
  188. package/examples/node_modules/@types/eslint-scope/LICENSE +0 -21
  189. package/examples/node_modules/@types/eslint-scope/README.md +0 -84
  190. package/examples/node_modules/@types/eslint-scope/index.d.ts +0 -64
  191. package/examples/node_modules/@types/eslint-scope/package.json +0 -28
  192. package/examples/node_modules/@types/estree/LICENSE +0 -21
  193. package/examples/node_modules/@types/estree/README.md +0 -16
  194. package/examples/node_modules/@types/estree/flow.d.ts +0 -174
  195. package/examples/node_modules/@types/estree/index.d.ts +0 -595
  196. package/examples/node_modules/@types/estree/package.json +0 -25
  197. package/examples/node_modules/@types/json-schema/LICENSE +0 -21
  198. package/examples/node_modules/@types/json-schema/README.md +0 -16
  199. package/examples/node_modules/@types/json-schema/index.d.ts +0 -758
  200. package/examples/node_modules/@types/json-schema/package.json +0 -40
  201. package/examples/node_modules/@types/node/LICENSE +0 -21
  202. package/examples/node_modules/@types/node/README.md +0 -16
  203. package/examples/node_modules/@types/node/assert/strict.d.ts +0 -8
  204. package/examples/node_modules/@types/node/assert.d.ts +0 -912
  205. package/examples/node_modules/@types/node/async_hooks.d.ts +0 -501
  206. package/examples/node_modules/@types/node/buffer.d.ts +0 -2232
  207. package/examples/node_modules/@types/node/child_process.d.ts +0 -1366
  208. package/examples/node_modules/@types/node/cluster.d.ts +0 -414
  209. package/examples/node_modules/@types/node/console.d.ts +0 -412
  210. package/examples/node_modules/@types/node/constants.d.ts +0 -18
  211. package/examples/node_modules/@types/node/crypto.d.ts +0 -3307
  212. package/examples/node_modules/@types/node/dgram.d.ts +0 -545
  213. package/examples/node_modules/@types/node/diagnostics_channel.d.ts +0 -134
  214. package/examples/node_modules/@types/node/dns/promises.d.ts +0 -370
  215. package/examples/node_modules/@types/node/dns.d.ts +0 -659
  216. package/examples/node_modules/@types/node/domain.d.ts +0 -169
  217. package/examples/node_modules/@types/node/events.d.ts +0 -651
  218. package/examples/node_modules/@types/node/fs/promises.d.ts +0 -1091
  219. package/examples/node_modules/@types/node/fs.d.ts +0 -3869
  220. package/examples/node_modules/@types/node/globals.d.ts +0 -284
  221. package/examples/node_modules/@types/node/globals.global.d.ts +0 -1
  222. package/examples/node_modules/@types/node/http.d.ts +0 -1396
  223. package/examples/node_modules/@types/node/http2.d.ts +0 -2100
  224. package/examples/node_modules/@types/node/https.d.ts +0 -391
  225. package/examples/node_modules/@types/node/index.d.ts +0 -129
  226. package/examples/node_modules/@types/node/inspector.d.ts +0 -2744
  227. package/examples/node_modules/@types/node/module.d.ts +0 -114
  228. package/examples/node_modules/@types/node/net.d.ts +0 -784
  229. package/examples/node_modules/@types/node/os.d.ts +0 -455
  230. package/examples/node_modules/@types/node/package.json +0 -220
  231. package/examples/node_modules/@types/node/path.d.ts +0 -180
  232. package/examples/node_modules/@types/node/perf_hooks.d.ts +0 -557
  233. package/examples/node_modules/@types/node/process.d.ts +0 -1481
  234. package/examples/node_modules/@types/node/punycode.d.ts +0 -117
  235. package/examples/node_modules/@types/node/querystring.d.ts +0 -131
  236. package/examples/node_modules/@types/node/readline.d.ts +0 -650
  237. package/examples/node_modules/@types/node/repl.d.ts +0 -424
  238. package/examples/node_modules/@types/node/stream/consumers.d.ts +0 -24
  239. package/examples/node_modules/@types/node/stream/promises.d.ts +0 -42
  240. package/examples/node_modules/@types/node/stream/web.d.ts +0 -330
  241. package/examples/node_modules/@types/node/stream.d.ts +0 -1249
  242. package/examples/node_modules/@types/node/string_decoder.d.ts +0 -67
  243. package/examples/node_modules/@types/node/timers/promises.d.ts +0 -68
  244. package/examples/node_modules/@types/node/timers.d.ts +0 -94
  245. package/examples/node_modules/@types/node/tls.d.ts +0 -1020
  246. package/examples/node_modules/@types/node/trace_events.d.ts +0 -161
  247. package/examples/node_modules/@types/node/tty.d.ts +0 -204
  248. package/examples/node_modules/@types/node/url.d.ts +0 -891
  249. package/examples/node_modules/@types/node/util.d.ts +0 -1594
  250. package/examples/node_modules/@types/node/v8.d.ts +0 -378
  251. package/examples/node_modules/@types/node/vm.d.ts +0 -507
  252. package/examples/node_modules/@types/node/wasi.d.ts +0 -158
  253. package/examples/node_modules/@types/node/worker_threads.d.ts +0 -649
  254. package/examples/node_modules/@types/node/zlib.d.ts +0 -517
  255. package/examples/node_modules/@webassemblyjs/ast/LICENSE +0 -21
  256. package/examples/node_modules/@webassemblyjs/ast/README.md +0 -167
  257. package/examples/node_modules/@webassemblyjs/ast/esm/clone.js +0 -3
  258. package/examples/node_modules/@webassemblyjs/ast/esm/definitions.js +0 -668
  259. package/examples/node_modules/@webassemblyjs/ast/esm/index.js +0 -7
  260. package/examples/node_modules/@webassemblyjs/ast/esm/node-helpers.js +0 -84
  261. package/examples/node_modules/@webassemblyjs/ast/esm/node-path.js +0 -137
  262. package/examples/node_modules/@webassemblyjs/ast/esm/nodes.js +0 -925
  263. package/examples/node_modules/@webassemblyjs/ast/esm/signatures.js +0 -199
  264. package/examples/node_modules/@webassemblyjs/ast/esm/transform/ast-module-to-module-context/index.js +0 -378
  265. package/examples/node_modules/@webassemblyjs/ast/esm/transform/denormalize-type-references/index.js +0 -76
  266. package/examples/node_modules/@webassemblyjs/ast/esm/transform/wast-identifier-to-index/index.js +0 -216
  267. package/examples/node_modules/@webassemblyjs/ast/esm/traverse.js +0 -96
  268. package/examples/node_modules/@webassemblyjs/ast/esm/types/basic.js +0 -0
  269. package/examples/node_modules/@webassemblyjs/ast/esm/types/nodes.js +0 -0
  270. package/examples/node_modules/@webassemblyjs/ast/esm/types/traverse.js +0 -0
  271. package/examples/node_modules/@webassemblyjs/ast/esm/utils.js +0 -265
  272. package/examples/node_modules/@webassemblyjs/ast/lib/clone.js +0 -10
  273. package/examples/node_modules/@webassemblyjs/ast/lib/definitions.js +0 -668
  274. package/examples/node_modules/@webassemblyjs/ast/lib/index.js +0 -127
  275. package/examples/node_modules/@webassemblyjs/ast/lib/node-helpers.js +0 -107
  276. package/examples/node_modules/@webassemblyjs/ast/lib/node-path.js +0 -144
  277. package/examples/node_modules/@webassemblyjs/ast/lib/nodes.js +0 -1144
  278. package/examples/node_modules/@webassemblyjs/ast/lib/signatures.js +0 -207
  279. package/examples/node_modules/@webassemblyjs/ast/lib/transform/ast-module-to-module-context/index.js +0 -389
  280. package/examples/node_modules/@webassemblyjs/ast/lib/transform/denormalize-type-references/index.js +0 -83
  281. package/examples/node_modules/@webassemblyjs/ast/lib/transform/wast-identifier-to-index/index.js +0 -225
  282. package/examples/node_modules/@webassemblyjs/ast/lib/traverse.js +0 -105
  283. package/examples/node_modules/@webassemblyjs/ast/lib/types/basic.js +0 -0
  284. package/examples/node_modules/@webassemblyjs/ast/lib/types/nodes.js +0 -0
  285. package/examples/node_modules/@webassemblyjs/ast/lib/types/traverse.js +0 -0
  286. package/examples/node_modules/@webassemblyjs/ast/lib/utils.js +0 -306
  287. package/examples/node_modules/@webassemblyjs/ast/package.json +0 -32
  288. package/examples/node_modules/@webassemblyjs/ast/scripts/generateNodeUtils.js +0 -219
  289. package/examples/node_modules/@webassemblyjs/ast/scripts/generateTypeDefinitions.js +0 -47
  290. package/examples/node_modules/@webassemblyjs/ast/scripts/util.js +0 -38
  291. package/examples/node_modules/@webassemblyjs/floating-point-hex-parser/LICENSE +0 -21
  292. package/examples/node_modules/@webassemblyjs/floating-point-hex-parser/README.md +0 -34
  293. package/examples/node_modules/@webassemblyjs/floating-point-hex-parser/esm/index.js +0 -42
  294. package/examples/node_modules/@webassemblyjs/floating-point-hex-parser/lib/index.js +0 -49
  295. package/examples/node_modules/@webassemblyjs/floating-point-hex-parser/package.json +0 -24
  296. package/examples/node_modules/@webassemblyjs/helper-api-error/LICENSE +0 -21
  297. package/examples/node_modules/@webassemblyjs/helper-api-error/esm/index.js +0 -47
  298. package/examples/node_modules/@webassemblyjs/helper-api-error/lib/index.js +0 -62
  299. package/examples/node_modules/@webassemblyjs/helper-api-error/package.json +0 -18
  300. package/examples/node_modules/@webassemblyjs/helper-buffer/LICENSE +0 -21
  301. package/examples/node_modules/@webassemblyjs/helper-buffer/esm/compare.js +0 -65
  302. package/examples/node_modules/@webassemblyjs/helper-buffer/esm/index.js +0 -67
  303. package/examples/node_modules/@webassemblyjs/helper-buffer/lib/compare.js +0 -73
  304. package/examples/node_modules/@webassemblyjs/helper-buffer/lib/index.js +0 -78
  305. package/examples/node_modules/@webassemblyjs/helper-buffer/package.json +0 -24
  306. package/examples/node_modules/@webassemblyjs/helper-numbers/LICENSE +0 -21
  307. package/examples/node_modules/@webassemblyjs/helper-numbers/esm/index.js +0 -91
  308. package/examples/node_modules/@webassemblyjs/helper-numbers/lib/index.js +0 -116
  309. package/examples/node_modules/@webassemblyjs/helper-numbers/package.json +0 -25
  310. package/examples/node_modules/@webassemblyjs/helper-numbers/src/index.js +0 -105
  311. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/LICENSE +0 -21
  312. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/esm/index.js +0 -391
  313. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/esm/section.js +0 -31
  314. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/lib/index.js +0 -406
  315. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/lib/section.js +0 -38
  316. package/examples/node_modules/@webassemblyjs/helper-wasm-bytecode/package.json +0 -20
  317. package/examples/node_modules/@webassemblyjs/helper-wasm-section/LICENSE +0 -21
  318. package/examples/node_modules/@webassemblyjs/helper-wasm-section/esm/create.js +0 -107
  319. package/examples/node_modules/@webassemblyjs/helper-wasm-section/esm/index.js +0 -3
  320. package/examples/node_modules/@webassemblyjs/helper-wasm-section/esm/remove.js +0 -36
  321. package/examples/node_modules/@webassemblyjs/helper-wasm-section/esm/resize.js +0 -78
  322. package/examples/node_modules/@webassemblyjs/helper-wasm-section/lib/create.js +0 -121
  323. package/examples/node_modules/@webassemblyjs/helper-wasm-section/lib/index.js +0 -35
  324. package/examples/node_modules/@webassemblyjs/helper-wasm-section/lib/remove.js +0 -45
  325. package/examples/node_modules/@webassemblyjs/helper-wasm-section/lib/resize.js +0 -90
  326. package/examples/node_modules/@webassemblyjs/helper-wasm-section/package.json +0 -29
  327. package/examples/node_modules/@webassemblyjs/ieee754/LICENSE +0 -21
  328. package/examples/node_modules/@webassemblyjs/ieee754/esm/index.js +0 -33
  329. package/examples/node_modules/@webassemblyjs/ieee754/lib/index.js +0 -52
  330. package/examples/node_modules/@webassemblyjs/ieee754/package.json +0 -23
  331. package/examples/node_modules/@webassemblyjs/ieee754/src/index.js +0 -47
  332. package/examples/node_modules/@webassemblyjs/leb128/LICENSE.txt +0 -194
  333. package/examples/node_modules/@webassemblyjs/leb128/esm/bits.js +0 -145
  334. package/examples/node_modules/@webassemblyjs/leb128/esm/bufs.js +0 -218
  335. package/examples/node_modules/@webassemblyjs/leb128/esm/index.js +0 -34
  336. package/examples/node_modules/@webassemblyjs/leb128/esm/leb.js +0 -316
  337. package/examples/node_modules/@webassemblyjs/leb128/lib/bits.js +0 -156
  338. package/examples/node_modules/@webassemblyjs/leb128/lib/bufs.js +0 -236
  339. package/examples/node_modules/@webassemblyjs/leb128/lib/index.js +0 -59
  340. package/examples/node_modules/@webassemblyjs/leb128/lib/leb.js +0 -332
  341. package/examples/node_modules/@webassemblyjs/leb128/package.json +0 -23
  342. package/examples/node_modules/@webassemblyjs/utf8/LICENSE +0 -21
  343. package/examples/node_modules/@webassemblyjs/utf8/esm/decoder.js +0 -95
  344. package/examples/node_modules/@webassemblyjs/utf8/esm/encoder.js +0 -46
  345. package/examples/node_modules/@webassemblyjs/utf8/esm/index.js +0 -2
  346. package/examples/node_modules/@webassemblyjs/utf8/lib/decoder.js +0 -102
  347. package/examples/node_modules/@webassemblyjs/utf8/lib/encoder.js +0 -53
  348. package/examples/node_modules/@webassemblyjs/utf8/lib/index.js +0 -21
  349. package/examples/node_modules/@webassemblyjs/utf8/package.json +0 -20
  350. package/examples/node_modules/@webassemblyjs/utf8/src/decoder.js +0 -86
  351. package/examples/node_modules/@webassemblyjs/utf8/src/encoder.js +0 -44
  352. package/examples/node_modules/@webassemblyjs/utf8/src/index.js +0 -4
  353. package/examples/node_modules/@webassemblyjs/utf8/test/index.js +0 -13
  354. package/examples/node_modules/@webassemblyjs/wasm-edit/LICENSE +0 -21
  355. package/examples/node_modules/@webassemblyjs/wasm-edit/README.md +0 -86
  356. package/examples/node_modules/@webassemblyjs/wasm-edit/esm/apply.js +0 -299
  357. package/examples/node_modules/@webassemblyjs/wasm-edit/esm/index.js +0 -114
  358. package/examples/node_modules/@webassemblyjs/wasm-edit/lib/apply.js +0 -311
  359. package/examples/node_modules/@webassemblyjs/wasm-edit/lib/index.js +0 -133
  360. package/examples/node_modules/@webassemblyjs/wasm-edit/package.json +0 -33
  361. package/examples/node_modules/@webassemblyjs/wasm-gen/LICENSE +0 -21
  362. package/examples/node_modules/@webassemblyjs/wasm-gen/esm/encoder/index.js +0 -301
  363. package/examples/node_modules/@webassemblyjs/wasm-gen/esm/index.js +0 -51
  364. package/examples/node_modules/@webassemblyjs/wasm-gen/lib/encoder/index.js +0 -357
  365. package/examples/node_modules/@webassemblyjs/wasm-gen/lib/index.js +0 -64
  366. package/examples/node_modules/@webassemblyjs/wasm-gen/package.json +0 -27
  367. package/examples/node_modules/@webassemblyjs/wasm-opt/LICENSE +0 -21
  368. package/examples/node_modules/@webassemblyjs/wasm-opt/esm/index.js +0 -41
  369. package/examples/node_modules/@webassemblyjs/wasm-opt/esm/leb128.js +0 -47
  370. package/examples/node_modules/@webassemblyjs/wasm-opt/lib/index.js +0 -50
  371. package/examples/node_modules/@webassemblyjs/wasm-opt/lib/leb128.js +0 -56
  372. package/examples/node_modules/@webassemblyjs/wasm-opt/package.json +0 -26
  373. package/examples/node_modules/@webassemblyjs/wasm-parser/LICENSE +0 -21
  374. package/examples/node_modules/@webassemblyjs/wasm-parser/README.md +0 -28
  375. package/examples/node_modules/@webassemblyjs/wasm-parser/esm/decoder.js +0 -1776
  376. package/examples/node_modules/@webassemblyjs/wasm-parser/esm/index.js +0 -247
  377. package/examples/node_modules/@webassemblyjs/wasm-parser/esm/types/decoder.js +0 -0
  378. package/examples/node_modules/@webassemblyjs/wasm-parser/lib/decoder.js +0 -1792
  379. package/examples/node_modules/@webassemblyjs/wasm-parser/lib/index.js +0 -257
  380. package/examples/node_modules/@webassemblyjs/wasm-parser/lib/types/decoder.js +0 -0
  381. package/examples/node_modules/@webassemblyjs/wasm-parser/package.json +0 -44
  382. package/examples/node_modules/@webassemblyjs/wast-printer/LICENSE +0 -21
  383. package/examples/node_modules/@webassemblyjs/wast-printer/README.md +0 -17
  384. package/examples/node_modules/@webassemblyjs/wast-printer/esm/index.js +0 -904
  385. package/examples/node_modules/@webassemblyjs/wast-printer/lib/index.js +0 -915
  386. package/examples/node_modules/@webassemblyjs/wast-printer/package.json +0 -36
  387. package/examples/node_modules/@webpack-cli/configtest/README.md +0 -27
  388. package/examples/node_modules/@webpack-cli/configtest/lib/index.d.ts +0 -4
  389. package/examples/node_modules/@webpack-cli/configtest/lib/index.js +0 -55
  390. package/examples/node_modules/@webpack-cli/configtest/package.json +0 -23
  391. package/examples/node_modules/@webpack-cli/info/README.md +0 -50
  392. package/examples/node_modules/@webpack-cli/info/lib/index.d.ts +0 -4
  393. package/examples/node_modules/@webpack-cli/info/lib/index.js +0 -85
  394. package/examples/node_modules/@webpack-cli/info/package.json +0 -29
  395. package/examples/node_modules/@webpack-cli/serve/README.md +0 -30
  396. package/examples/node_modules/@webpack-cli/serve/lib/index.d.ts +0 -4
  397. package/examples/node_modules/@webpack-cli/serve/lib/index.js +0 -280
  398. package/examples/node_modules/@webpack-cli/serve/lib/types.d.ts +0 -91
  399. package/examples/node_modules/@webpack-cli/serve/lib/types.js +0 -31
  400. package/examples/node_modules/@webpack-cli/serve/package.json +0 -29
  401. package/examples/node_modules/@xtuc/ieee754/LICENSE +0 -28
  402. package/examples/node_modules/@xtuc/ieee754/README.md +0 -51
  403. package/examples/node_modules/@xtuc/ieee754/dist/.gitkeep +0 -0
  404. package/examples/node_modules/@xtuc/ieee754/dist/index.cjs.js +0 -96
  405. package/examples/node_modules/@xtuc/ieee754/index.js +0 -84
  406. package/examples/node_modules/@xtuc/ieee754/package.json +0 -42
  407. package/examples/node_modules/@xtuc/long/LICENSE +0 -202
  408. package/examples/node_modules/@xtuc/long/README.md +0 -257
  409. package/examples/node_modules/@xtuc/long/dist/long.js +0 -2
  410. package/examples/node_modules/@xtuc/long/dist/long.js.map +0 -1
  411. package/examples/node_modules/@xtuc/long/index.d.ts +0 -429
  412. package/examples/node_modules/@xtuc/long/index.js +0 -1
  413. package/examples/node_modules/@xtuc/long/package.json +0 -36
  414. package/examples/node_modules/@xtuc/long/src/long.js +0 -1405
  415. package/examples/node_modules/acorn/CHANGELOG.md +0 -788
  416. package/examples/node_modules/acorn/LICENSE +0 -21
  417. package/examples/node_modules/acorn/README.md +0 -280
  418. package/examples/node_modules/acorn/bin/acorn +0 -4
  419. package/examples/node_modules/acorn/dist/acorn.d.ts +0 -214
  420. package/examples/node_modules/acorn/dist/acorn.js +0 -5619
  421. package/examples/node_modules/acorn/dist/acorn.mjs +0 -5588
  422. package/examples/node_modules/acorn/dist/acorn.mjs.d.ts +0 -2
  423. package/examples/node_modules/acorn/dist/bin.js +0 -91
  424. package/examples/node_modules/acorn/package.json +0 -46
  425. package/examples/node_modules/acorn-import-assertions/README.md +0 -15
  426. package/examples/node_modules/acorn-import-assertions/lib/index.js +0 -287
  427. package/examples/node_modules/acorn-import-assertions/lib/index.mjs +0 -242
  428. package/examples/node_modules/acorn-import-assertions/package.json +0 -49
  429. package/examples/node_modules/acorn-import-assertions/src/index.js +0 -242
  430. package/examples/node_modules/ajv/.tonic_example.js +0 -20
  431. package/examples/node_modules/ajv/LICENSE +0 -22
  432. package/examples/node_modules/ajv/README.md +0 -1497
  433. package/examples/node_modules/ajv/dist/ajv.bundle.js +0 -7189
  434. package/examples/node_modules/ajv/dist/ajv.min.js +0 -3
  435. package/examples/node_modules/ajv/dist/ajv.min.js.map +0 -1
  436. package/examples/node_modules/ajv/lib/ajv.d.ts +0 -397
  437. package/examples/node_modules/ajv/lib/ajv.js +0 -506
  438. package/examples/node_modules/ajv/lib/cache.js +0 -26
  439. package/examples/node_modules/ajv/lib/compile/async.js +0 -90
  440. package/examples/node_modules/ajv/lib/compile/equal.js +0 -5
  441. package/examples/node_modules/ajv/lib/compile/error_classes.js +0 -34
  442. package/examples/node_modules/ajv/lib/compile/formats.js +0 -142
  443. package/examples/node_modules/ajv/lib/compile/index.js +0 -387
  444. package/examples/node_modules/ajv/lib/compile/resolve.js +0 -270
  445. package/examples/node_modules/ajv/lib/compile/rules.js +0 -66
  446. package/examples/node_modules/ajv/lib/compile/schema_obj.js +0 -9
  447. package/examples/node_modules/ajv/lib/compile/ucs2length.js +0 -20
  448. package/examples/node_modules/ajv/lib/compile/util.js +0 -239
  449. package/examples/node_modules/ajv/lib/data.js +0 -49
  450. package/examples/node_modules/ajv/lib/definition_schema.js +0 -37
  451. package/examples/node_modules/ajv/lib/dot/_limit.jst +0 -113
  452. package/examples/node_modules/ajv/lib/dot/_limitItems.jst +0 -12
  453. package/examples/node_modules/ajv/lib/dot/_limitLength.jst +0 -12
  454. package/examples/node_modules/ajv/lib/dot/_limitProperties.jst +0 -12
  455. package/examples/node_modules/ajv/lib/dot/allOf.jst +0 -32
  456. package/examples/node_modules/ajv/lib/dot/anyOf.jst +0 -46
  457. package/examples/node_modules/ajv/lib/dot/coerce.def +0 -51
  458. package/examples/node_modules/ajv/lib/dot/comment.jst +0 -9
  459. package/examples/node_modules/ajv/lib/dot/const.jst +0 -11
  460. package/examples/node_modules/ajv/lib/dot/contains.jst +0 -55
  461. package/examples/node_modules/ajv/lib/dot/custom.jst +0 -191
  462. package/examples/node_modules/ajv/lib/dot/defaults.def +0 -47
  463. package/examples/node_modules/ajv/lib/dot/definitions.def +0 -203
  464. package/examples/node_modules/ajv/lib/dot/dependencies.jst +0 -79
  465. package/examples/node_modules/ajv/lib/dot/enum.jst +0 -30
  466. package/examples/node_modules/ajv/lib/dot/errors.def +0 -194
  467. package/examples/node_modules/ajv/lib/dot/format.jst +0 -106
  468. package/examples/node_modules/ajv/lib/dot/if.jst +0 -73
  469. package/examples/node_modules/ajv/lib/dot/items.jst +0 -98
  470. package/examples/node_modules/ajv/lib/dot/missing.def +0 -39
  471. package/examples/node_modules/ajv/lib/dot/multipleOf.jst +0 -22
  472. package/examples/node_modules/ajv/lib/dot/not.jst +0 -43
  473. package/examples/node_modules/ajv/lib/dot/oneOf.jst +0 -54
  474. package/examples/node_modules/ajv/lib/dot/pattern.jst +0 -14
  475. package/examples/node_modules/ajv/lib/dot/properties.jst +0 -245
  476. package/examples/node_modules/ajv/lib/dot/propertyNames.jst +0 -52
  477. package/examples/node_modules/ajv/lib/dot/ref.jst +0 -85
  478. package/examples/node_modules/ajv/lib/dot/required.jst +0 -108
  479. package/examples/node_modules/ajv/lib/dot/uniqueItems.jst +0 -62
  480. package/examples/node_modules/ajv/lib/dot/validate.jst +0 -276
  481. package/examples/node_modules/ajv/lib/dotjs/README.md +0 -3
  482. package/examples/node_modules/ajv/lib/dotjs/_limit.js +0 -163
  483. package/examples/node_modules/ajv/lib/dotjs/_limitItems.js +0 -80
  484. package/examples/node_modules/ajv/lib/dotjs/_limitLength.js +0 -85
  485. package/examples/node_modules/ajv/lib/dotjs/_limitProperties.js +0 -80
  486. package/examples/node_modules/ajv/lib/dotjs/allOf.js +0 -42
  487. package/examples/node_modules/ajv/lib/dotjs/anyOf.js +0 -73
  488. package/examples/node_modules/ajv/lib/dotjs/comment.js +0 -14
  489. package/examples/node_modules/ajv/lib/dotjs/const.js +0 -56
  490. package/examples/node_modules/ajv/lib/dotjs/contains.js +0 -81
  491. package/examples/node_modules/ajv/lib/dotjs/custom.js +0 -228
  492. package/examples/node_modules/ajv/lib/dotjs/dependencies.js +0 -168
  493. package/examples/node_modules/ajv/lib/dotjs/enum.js +0 -66
  494. package/examples/node_modules/ajv/lib/dotjs/format.js +0 -150
  495. package/examples/node_modules/ajv/lib/dotjs/if.js +0 -103
  496. package/examples/node_modules/ajv/lib/dotjs/index.js +0 -33
  497. package/examples/node_modules/ajv/lib/dotjs/items.js +0 -140
  498. package/examples/node_modules/ajv/lib/dotjs/multipleOf.js +0 -80
  499. package/examples/node_modules/ajv/lib/dotjs/not.js +0 -84
  500. package/examples/node_modules/ajv/lib/dotjs/oneOf.js +0 -73
  501. package/examples/node_modules/ajv/lib/dotjs/pattern.js +0 -75
  502. package/examples/node_modules/ajv/lib/dotjs/properties.js +0 -335
  503. package/examples/node_modules/ajv/lib/dotjs/propertyNames.js +0 -81
  504. package/examples/node_modules/ajv/lib/dotjs/ref.js +0 -124
  505. package/examples/node_modules/ajv/lib/dotjs/required.js +0 -270
  506. package/examples/node_modules/ajv/lib/dotjs/uniqueItems.js +0 -86
  507. package/examples/node_modules/ajv/lib/dotjs/validate.js +0 -482
  508. package/examples/node_modules/ajv/lib/keyword.js +0 -146
  509. package/examples/node_modules/ajv/lib/refs/data.json +0 -17
  510. package/examples/node_modules/ajv/lib/refs/json-schema-draft-04.json +0 -149
  511. package/examples/node_modules/ajv/lib/refs/json-schema-draft-06.json +0 -154
  512. package/examples/node_modules/ajv/lib/refs/json-schema-draft-07.json +0 -168
  513. package/examples/node_modules/ajv/lib/refs/json-schema-secure.json +0 -94
  514. package/examples/node_modules/ajv/package.json +0 -106
  515. package/examples/node_modules/ajv/scripts/.eslintrc.yml +0 -3
  516. package/examples/node_modules/ajv/scripts/bundle.js +0 -61
  517. package/examples/node_modules/ajv/scripts/compile-dots.js +0 -73
  518. package/examples/node_modules/ajv/scripts/info +0 -10
  519. package/examples/node_modules/ajv/scripts/prepare-tests +0 -12
  520. package/examples/node_modules/ajv/scripts/publish-built-version +0 -32
  521. package/examples/node_modules/ajv/scripts/travis-gh-pages +0 -23
  522. package/examples/node_modules/ajv-keywords/LICENSE +0 -21
  523. package/examples/node_modules/ajv-keywords/README.md +0 -836
  524. package/examples/node_modules/ajv-keywords/ajv-keywords.d.ts +0 -7
  525. package/examples/node_modules/ajv-keywords/index.js +0 -35
  526. package/examples/node_modules/ajv-keywords/keywords/_formatLimit.js +0 -101
  527. package/examples/node_modules/ajv-keywords/keywords/_util.js +0 -15
  528. package/examples/node_modules/ajv-keywords/keywords/allRequired.js +0 -18
  529. package/examples/node_modules/ajv-keywords/keywords/anyRequired.js +0 -24
  530. package/examples/node_modules/ajv-keywords/keywords/deepProperties.js +0 -54
  531. package/examples/node_modules/ajv-keywords/keywords/deepRequired.js +0 -57
  532. package/examples/node_modules/ajv-keywords/keywords/dot/_formatLimit.jst +0 -116
  533. package/examples/node_modules/ajv-keywords/keywords/dot/patternRequired.jst +0 -33
  534. package/examples/node_modules/ajv-keywords/keywords/dot/switch.jst +0 -71
  535. package/examples/node_modules/ajv-keywords/keywords/dotjs/README.md +0 -3
  536. package/examples/node_modules/ajv-keywords/keywords/dotjs/_formatLimit.js +0 -178
  537. package/examples/node_modules/ajv-keywords/keywords/dotjs/patternRequired.js +0 -58
  538. package/examples/node_modules/ajv-keywords/keywords/dotjs/switch.js +0 -129
  539. package/examples/node_modules/ajv-keywords/keywords/dynamicDefaults.js +0 -72
  540. package/examples/node_modules/ajv-keywords/keywords/formatMaximum.js +0 -3
  541. package/examples/node_modules/ajv-keywords/keywords/formatMinimum.js +0 -3
  542. package/examples/node_modules/ajv-keywords/keywords/index.js +0 -22
  543. package/examples/node_modules/ajv-keywords/keywords/instanceof.js +0 -58
  544. package/examples/node_modules/ajv-keywords/keywords/oneRequired.js +0 -24
  545. package/examples/node_modules/ajv-keywords/keywords/patternRequired.js +0 -21
  546. package/examples/node_modules/ajv-keywords/keywords/prohibited.js +0 -24
  547. package/examples/node_modules/ajv-keywords/keywords/range.js +0 -36
  548. package/examples/node_modules/ajv-keywords/keywords/regexp.js +0 -36
  549. package/examples/node_modules/ajv-keywords/keywords/select.js +0 -79
  550. package/examples/node_modules/ajv-keywords/keywords/switch.js +0 -38
  551. package/examples/node_modules/ajv-keywords/keywords/transform.js +0 -80
  552. package/examples/node_modules/ajv-keywords/keywords/typeof.js +0 -32
  553. package/examples/node_modules/ajv-keywords/keywords/uniqueItemProperties.js +0 -59
  554. package/examples/node_modules/ajv-keywords/package.json +0 -53
  555. package/examples/node_modules/browserslist/LICENSE +0 -20
  556. package/examples/node_modules/browserslist/README.md +0 -66
  557. package/examples/node_modules/browserslist/browser.js +0 -50
  558. package/examples/node_modules/browserslist/cli.js +0 -152
  559. package/examples/node_modules/browserslist/error.d.ts +0 -7
  560. package/examples/node_modules/browserslist/error.js +0 -12
  561. package/examples/node_modules/browserslist/index.d.ts +0 -178
  562. package/examples/node_modules/browserslist/index.js +0 -1235
  563. package/examples/node_modules/browserslist/node.js +0 -393
  564. package/examples/node_modules/browserslist/package.json +0 -41
  565. package/examples/node_modules/browserslist/update-db.js +0 -317
  566. package/examples/node_modules/buffer-from/LICENSE +0 -21
  567. package/examples/node_modules/buffer-from/index.js +0 -72
  568. package/examples/node_modules/buffer-from/package.json +0 -19
  569. package/examples/node_modules/buffer-from/readme.md +0 -69
  570. package/examples/node_modules/caniuse-lite/LICENSE +0 -395
  571. package/examples/node_modules/caniuse-lite/README.md +0 -92
  572. package/examples/node_modules/caniuse-lite/data/agents.js +0 -1
  573. package/examples/node_modules/caniuse-lite/data/browserVersions.js +0 -1
  574. package/examples/node_modules/caniuse-lite/data/browsers.js +0 -1
  575. package/examples/node_modules/caniuse-lite/data/features/aac.js +0 -1
  576. package/examples/node_modules/caniuse-lite/data/features/abortcontroller.js +0 -1
  577. package/examples/node_modules/caniuse-lite/data/features/ac3-ec3.js +0 -1
  578. package/examples/node_modules/caniuse-lite/data/features/accelerometer.js +0 -1
  579. package/examples/node_modules/caniuse-lite/data/features/addeventlistener.js +0 -1
  580. package/examples/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +0 -1
  581. package/examples/node_modules/caniuse-lite/data/features/ambient-light.js +0 -1
  582. package/examples/node_modules/caniuse-lite/data/features/apng.js +0 -1
  583. package/examples/node_modules/caniuse-lite/data/features/array-find-index.js +0 -1
  584. package/examples/node_modules/caniuse-lite/data/features/array-find.js +0 -1
  585. package/examples/node_modules/caniuse-lite/data/features/array-flat.js +0 -1
  586. package/examples/node_modules/caniuse-lite/data/features/array-includes.js +0 -1
  587. package/examples/node_modules/caniuse-lite/data/features/arrow-functions.js +0 -1
  588. package/examples/node_modules/caniuse-lite/data/features/asmjs.js +0 -1
  589. package/examples/node_modules/caniuse-lite/data/features/async-clipboard.js +0 -1
  590. package/examples/node_modules/caniuse-lite/data/features/async-functions.js +0 -1
  591. package/examples/node_modules/caniuse-lite/data/features/atob-btoa.js +0 -1
  592. package/examples/node_modules/caniuse-lite/data/features/audio-api.js +0 -1
  593. package/examples/node_modules/caniuse-lite/data/features/audio.js +0 -1
  594. package/examples/node_modules/caniuse-lite/data/features/audiotracks.js +0 -1
  595. package/examples/node_modules/caniuse-lite/data/features/autofocus.js +0 -1
  596. package/examples/node_modules/caniuse-lite/data/features/auxclick.js +0 -1
  597. package/examples/node_modules/caniuse-lite/data/features/av1.js +0 -1
  598. package/examples/node_modules/caniuse-lite/data/features/avif.js +0 -1
  599. package/examples/node_modules/caniuse-lite/data/features/background-attachment.js +0 -1
  600. package/examples/node_modules/caniuse-lite/data/features/background-clip-text.js +0 -1
  601. package/examples/node_modules/caniuse-lite/data/features/background-img-opts.js +0 -1
  602. package/examples/node_modules/caniuse-lite/data/features/background-position-x-y.js +0 -1
  603. package/examples/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +0 -1
  604. package/examples/node_modules/caniuse-lite/data/features/background-sync.js +0 -1
  605. package/examples/node_modules/caniuse-lite/data/features/battery-status.js +0 -1
  606. package/examples/node_modules/caniuse-lite/data/features/beacon.js +0 -1
  607. package/examples/node_modules/caniuse-lite/data/features/beforeafterprint.js +0 -1
  608. package/examples/node_modules/caniuse-lite/data/features/bigint.js +0 -1
  609. package/examples/node_modules/caniuse-lite/data/features/blobbuilder.js +0 -1
  610. package/examples/node_modules/caniuse-lite/data/features/bloburls.js +0 -1
  611. package/examples/node_modules/caniuse-lite/data/features/border-image.js +0 -1
  612. package/examples/node_modules/caniuse-lite/data/features/border-radius.js +0 -1
  613. package/examples/node_modules/caniuse-lite/data/features/broadcastchannel.js +0 -1
  614. package/examples/node_modules/caniuse-lite/data/features/brotli.js +0 -1
  615. package/examples/node_modules/caniuse-lite/data/features/calc.js +0 -1
  616. package/examples/node_modules/caniuse-lite/data/features/canvas-blending.js +0 -1
  617. package/examples/node_modules/caniuse-lite/data/features/canvas-text.js +0 -1
  618. package/examples/node_modules/caniuse-lite/data/features/canvas.js +0 -1
  619. package/examples/node_modules/caniuse-lite/data/features/ch-unit.js +0 -1
  620. package/examples/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +0 -1
  621. package/examples/node_modules/caniuse-lite/data/features/channel-messaging.js +0 -1
  622. package/examples/node_modules/caniuse-lite/data/features/childnode-remove.js +0 -1
  623. package/examples/node_modules/caniuse-lite/data/features/classlist.js +0 -1
  624. package/examples/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +0 -1
  625. package/examples/node_modules/caniuse-lite/data/features/clipboard.js +0 -1
  626. package/examples/node_modules/caniuse-lite/data/features/colr-v1.js +0 -1
  627. package/examples/node_modules/caniuse-lite/data/features/colr.js +0 -1
  628. package/examples/node_modules/caniuse-lite/data/features/comparedocumentposition.js +0 -1
  629. package/examples/node_modules/caniuse-lite/data/features/console-basic.js +0 -1
  630. package/examples/node_modules/caniuse-lite/data/features/console-time.js +0 -1
  631. package/examples/node_modules/caniuse-lite/data/features/const.js +0 -1
  632. package/examples/node_modules/caniuse-lite/data/features/constraint-validation.js +0 -1
  633. package/examples/node_modules/caniuse-lite/data/features/contenteditable.js +0 -1
  634. package/examples/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +0 -1
  635. package/examples/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +0 -1
  636. package/examples/node_modules/caniuse-lite/data/features/cookie-store-api.js +0 -1
  637. package/examples/node_modules/caniuse-lite/data/features/cors.js +0 -1
  638. package/examples/node_modules/caniuse-lite/data/features/createimagebitmap.js +0 -1
  639. package/examples/node_modules/caniuse-lite/data/features/credential-management.js +0 -1
  640. package/examples/node_modules/caniuse-lite/data/features/cryptography.js +0 -1
  641. package/examples/node_modules/caniuse-lite/data/features/css-all.js +0 -1
  642. package/examples/node_modules/caniuse-lite/data/features/css-animation.js +0 -1
  643. package/examples/node_modules/caniuse-lite/data/features/css-any-link.js +0 -1
  644. package/examples/node_modules/caniuse-lite/data/features/css-appearance.js +0 -1
  645. package/examples/node_modules/caniuse-lite/data/features/css-at-counter-style.js +0 -1
  646. package/examples/node_modules/caniuse-lite/data/features/css-autofill.js +0 -1
  647. package/examples/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +0 -1
  648. package/examples/node_modules/caniuse-lite/data/features/css-background-offsets.js +0 -1
  649. package/examples/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +0 -1
  650. package/examples/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +0 -1
  651. package/examples/node_modules/caniuse-lite/data/features/css-boxshadow.js +0 -1
  652. package/examples/node_modules/caniuse-lite/data/features/css-canvas.js +0 -1
  653. package/examples/node_modules/caniuse-lite/data/features/css-caret-color.js +0 -1
  654. package/examples/node_modules/caniuse-lite/data/features/css-cascade-layers.js +0 -1
  655. package/examples/node_modules/caniuse-lite/data/features/css-case-insensitive.js +0 -1
  656. package/examples/node_modules/caniuse-lite/data/features/css-clip-path.js +0 -1
  657. package/examples/node_modules/caniuse-lite/data/features/css-color-adjust.js +0 -1
  658. package/examples/node_modules/caniuse-lite/data/features/css-color-function.js +0 -1
  659. package/examples/node_modules/caniuse-lite/data/features/css-conic-gradients.js +0 -1
  660. package/examples/node_modules/caniuse-lite/data/features/css-container-queries.js +0 -1
  661. package/examples/node_modules/caniuse-lite/data/features/css-containment.js +0 -1
  662. package/examples/node_modules/caniuse-lite/data/features/css-content-visibility.js +0 -1
  663. package/examples/node_modules/caniuse-lite/data/features/css-counters.js +0 -1
  664. package/examples/node_modules/caniuse-lite/data/features/css-crisp-edges.js +0 -1
  665. package/examples/node_modules/caniuse-lite/data/features/css-cross-fade.js +0 -1
  666. package/examples/node_modules/caniuse-lite/data/features/css-default-pseudo.js +0 -1
  667. package/examples/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +0 -1
  668. package/examples/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +0 -1
  669. package/examples/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +0 -1
  670. package/examples/node_modules/caniuse-lite/data/features/css-display-contents.js +0 -1
  671. package/examples/node_modules/caniuse-lite/data/features/css-element-function.js +0 -1
  672. package/examples/node_modules/caniuse-lite/data/features/css-env-function.js +0 -1
  673. package/examples/node_modules/caniuse-lite/data/features/css-exclusions.js +0 -1
  674. package/examples/node_modules/caniuse-lite/data/features/css-featurequeries.js +0 -1
  675. package/examples/node_modules/caniuse-lite/data/features/css-file-selector-button.js +0 -1
  676. package/examples/node_modules/caniuse-lite/data/features/css-filter-function.js +0 -1
  677. package/examples/node_modules/caniuse-lite/data/features/css-filters.js +0 -1
  678. package/examples/node_modules/caniuse-lite/data/features/css-first-letter.js +0 -1
  679. package/examples/node_modules/caniuse-lite/data/features/css-first-line.js +0 -1
  680. package/examples/node_modules/caniuse-lite/data/features/css-fixed.js +0 -1
  681. package/examples/node_modules/caniuse-lite/data/features/css-focus-visible.js +0 -1
  682. package/examples/node_modules/caniuse-lite/data/features/css-focus-within.js +0 -1
  683. package/examples/node_modules/caniuse-lite/data/features/css-font-palette.js +0 -1
  684. package/examples/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +0 -1
  685. package/examples/node_modules/caniuse-lite/data/features/css-font-stretch.js +0 -1
  686. package/examples/node_modules/caniuse-lite/data/features/css-gencontent.js +0 -1
  687. package/examples/node_modules/caniuse-lite/data/features/css-gradients.js +0 -1
  688. package/examples/node_modules/caniuse-lite/data/features/css-grid.js +0 -1
  689. package/examples/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +0 -1
  690. package/examples/node_modules/caniuse-lite/data/features/css-has.js +0 -1
  691. package/examples/node_modules/caniuse-lite/data/features/css-hyphenate.js +0 -1
  692. package/examples/node_modules/caniuse-lite/data/features/css-hyphens.js +0 -1
  693. package/examples/node_modules/caniuse-lite/data/features/css-image-orientation.js +0 -1
  694. package/examples/node_modules/caniuse-lite/data/features/css-image-set.js +0 -1
  695. package/examples/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +0 -1
  696. package/examples/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +0 -1
  697. package/examples/node_modules/caniuse-lite/data/features/css-initial-letter.js +0 -1
  698. package/examples/node_modules/caniuse-lite/data/features/css-initial-value.js +0 -1
  699. package/examples/node_modules/caniuse-lite/data/features/css-lch-lab.js +0 -1
  700. package/examples/node_modules/caniuse-lite/data/features/css-letter-spacing.js +0 -1
  701. package/examples/node_modules/caniuse-lite/data/features/css-line-clamp.js +0 -1
  702. package/examples/node_modules/caniuse-lite/data/features/css-logical-props.js +0 -1
  703. package/examples/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +0 -1
  704. package/examples/node_modules/caniuse-lite/data/features/css-masks.js +0 -1
  705. package/examples/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +0 -1
  706. package/examples/node_modules/caniuse-lite/data/features/css-math-functions.js +0 -1
  707. package/examples/node_modules/caniuse-lite/data/features/css-media-interaction.js +0 -1
  708. package/examples/node_modules/caniuse-lite/data/features/css-media-resolution.js +0 -1
  709. package/examples/node_modules/caniuse-lite/data/features/css-media-scripting.js +0 -1
  710. package/examples/node_modules/caniuse-lite/data/features/css-mediaqueries.js +0 -1
  711. package/examples/node_modules/caniuse-lite/data/features/css-mixblendmode.js +0 -1
  712. package/examples/node_modules/caniuse-lite/data/features/css-motion-paths.js +0 -1
  713. package/examples/node_modules/caniuse-lite/data/features/css-namespaces.js +0 -1
  714. package/examples/node_modules/caniuse-lite/data/features/css-nesting.js +0 -1
  715. package/examples/node_modules/caniuse-lite/data/features/css-not-sel-list.js +0 -1
  716. package/examples/node_modules/caniuse-lite/data/features/css-nth-child-of.js +0 -1
  717. package/examples/node_modules/caniuse-lite/data/features/css-opacity.js +0 -1
  718. package/examples/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +0 -1
  719. package/examples/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +0 -1
  720. package/examples/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +0 -1
  721. package/examples/node_modules/caniuse-lite/data/features/css-overflow.js +0 -1
  722. package/examples/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +0 -1
  723. package/examples/node_modules/caniuse-lite/data/features/css-page-break.js +0 -1
  724. package/examples/node_modules/caniuse-lite/data/features/css-paged-media.js +0 -1
  725. package/examples/node_modules/caniuse-lite/data/features/css-paint-api.js +0 -1
  726. package/examples/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +0 -1
  727. package/examples/node_modules/caniuse-lite/data/features/css-placeholder.js +0 -1
  728. package/examples/node_modules/caniuse-lite/data/features/css-read-only-write.js +0 -1
  729. package/examples/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +0 -1
  730. package/examples/node_modules/caniuse-lite/data/features/css-reflections.js +0 -1
  731. package/examples/node_modules/caniuse-lite/data/features/css-regions.js +0 -1
  732. package/examples/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +0 -1
  733. package/examples/node_modules/caniuse-lite/data/features/css-resize.js +0 -1
  734. package/examples/node_modules/caniuse-lite/data/features/css-revert-value.js +0 -1
  735. package/examples/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +0 -1
  736. package/examples/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +0 -1
  737. package/examples/node_modules/caniuse-lite/data/features/css-scroll-timeline.js +0 -1
  738. package/examples/node_modules/caniuse-lite/data/features/css-scrollbar.js +0 -1
  739. package/examples/node_modules/caniuse-lite/data/features/css-sel2.js +0 -1
  740. package/examples/node_modules/caniuse-lite/data/features/css-sel3.js +0 -1
  741. package/examples/node_modules/caniuse-lite/data/features/css-selection.js +0 -1
  742. package/examples/node_modules/caniuse-lite/data/features/css-shapes.js +0 -1
  743. package/examples/node_modules/caniuse-lite/data/features/css-snappoints.js +0 -1
  744. package/examples/node_modules/caniuse-lite/data/features/css-sticky.js +0 -1
  745. package/examples/node_modules/caniuse-lite/data/features/css-subgrid.js +0 -1
  746. package/examples/node_modules/caniuse-lite/data/features/css-supports-api.js +0 -1
  747. package/examples/node_modules/caniuse-lite/data/features/css-table.js +0 -1
  748. package/examples/node_modules/caniuse-lite/data/features/css-text-align-last.js +0 -1
  749. package/examples/node_modules/caniuse-lite/data/features/css-text-indent.js +0 -1
  750. package/examples/node_modules/caniuse-lite/data/features/css-text-justify.js +0 -1
  751. package/examples/node_modules/caniuse-lite/data/features/css-text-orientation.js +0 -1
  752. package/examples/node_modules/caniuse-lite/data/features/css-text-spacing.js +0 -1
  753. package/examples/node_modules/caniuse-lite/data/features/css-textshadow.js +0 -1
  754. package/examples/node_modules/caniuse-lite/data/features/css-touch-action-2.js +0 -1
  755. package/examples/node_modules/caniuse-lite/data/features/css-touch-action.js +0 -1
  756. package/examples/node_modules/caniuse-lite/data/features/css-transitions.js +0 -1
  757. package/examples/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +0 -1
  758. package/examples/node_modules/caniuse-lite/data/features/css-unset-value.js +0 -1
  759. package/examples/node_modules/caniuse-lite/data/features/css-variables.js +0 -1
  760. package/examples/node_modules/caniuse-lite/data/features/css-when-else.js +0 -1
  761. package/examples/node_modules/caniuse-lite/data/features/css-widows-orphans.js +0 -1
  762. package/examples/node_modules/caniuse-lite/data/features/css-width-stretch.js +0 -1
  763. package/examples/node_modules/caniuse-lite/data/features/css-writing-mode.js +0 -1
  764. package/examples/node_modules/caniuse-lite/data/features/css-zoom.js +0 -1
  765. package/examples/node_modules/caniuse-lite/data/features/css3-attr.js +0 -1
  766. package/examples/node_modules/caniuse-lite/data/features/css3-boxsizing.js +0 -1
  767. package/examples/node_modules/caniuse-lite/data/features/css3-colors.js +0 -1
  768. package/examples/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +0 -1
  769. package/examples/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +0 -1
  770. package/examples/node_modules/caniuse-lite/data/features/css3-cursors.js +0 -1
  771. package/examples/node_modules/caniuse-lite/data/features/css3-tabsize.js +0 -1
  772. package/examples/node_modules/caniuse-lite/data/features/currentcolor.js +0 -1
  773. package/examples/node_modules/caniuse-lite/data/features/custom-elements.js +0 -1
  774. package/examples/node_modules/caniuse-lite/data/features/custom-elementsv1.js +0 -1
  775. package/examples/node_modules/caniuse-lite/data/features/customevent.js +0 -1
  776. package/examples/node_modules/caniuse-lite/data/features/datalist.js +0 -1
  777. package/examples/node_modules/caniuse-lite/data/features/dataset.js +0 -1
  778. package/examples/node_modules/caniuse-lite/data/features/datauri.js +0 -1
  779. package/examples/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +0 -1
  780. package/examples/node_modules/caniuse-lite/data/features/decorators.js +0 -1
  781. package/examples/node_modules/caniuse-lite/data/features/details.js +0 -1
  782. package/examples/node_modules/caniuse-lite/data/features/deviceorientation.js +0 -1
  783. package/examples/node_modules/caniuse-lite/data/features/devicepixelratio.js +0 -1
  784. package/examples/node_modules/caniuse-lite/data/features/dialog.js +0 -1
  785. package/examples/node_modules/caniuse-lite/data/features/dispatchevent.js +0 -1
  786. package/examples/node_modules/caniuse-lite/data/features/dnssec.js +0 -1
  787. package/examples/node_modules/caniuse-lite/data/features/do-not-track.js +0 -1
  788. package/examples/node_modules/caniuse-lite/data/features/document-currentscript.js +0 -1
  789. package/examples/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +0 -1
  790. package/examples/node_modules/caniuse-lite/data/features/document-execcommand.js +0 -1
  791. package/examples/node_modules/caniuse-lite/data/features/document-policy.js +0 -1
  792. package/examples/node_modules/caniuse-lite/data/features/document-scrollingelement.js +0 -1
  793. package/examples/node_modules/caniuse-lite/data/features/documenthead.js +0 -1
  794. package/examples/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +0 -1
  795. package/examples/node_modules/caniuse-lite/data/features/dom-range.js +0 -1
  796. package/examples/node_modules/caniuse-lite/data/features/domcontentloaded.js +0 -1
  797. package/examples/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js +0 -1
  798. package/examples/node_modules/caniuse-lite/data/features/dommatrix.js +0 -1
  799. package/examples/node_modules/caniuse-lite/data/features/download.js +0 -1
  800. package/examples/node_modules/caniuse-lite/data/features/dragndrop.js +0 -1
  801. package/examples/node_modules/caniuse-lite/data/features/element-closest.js +0 -1
  802. package/examples/node_modules/caniuse-lite/data/features/element-from-point.js +0 -1
  803. package/examples/node_modules/caniuse-lite/data/features/element-scroll-methods.js +0 -1
  804. package/examples/node_modules/caniuse-lite/data/features/eme.js +0 -1
  805. package/examples/node_modules/caniuse-lite/data/features/eot.js +0 -1
  806. package/examples/node_modules/caniuse-lite/data/features/es5.js +0 -1
  807. package/examples/node_modules/caniuse-lite/data/features/es6-class.js +0 -1
  808. package/examples/node_modules/caniuse-lite/data/features/es6-generators.js +0 -1
  809. package/examples/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +0 -1
  810. package/examples/node_modules/caniuse-lite/data/features/es6-module.js +0 -1
  811. package/examples/node_modules/caniuse-lite/data/features/es6-number.js +0 -1
  812. package/examples/node_modules/caniuse-lite/data/features/es6-string-includes.js +0 -1
  813. package/examples/node_modules/caniuse-lite/data/features/es6.js +0 -1
  814. package/examples/node_modules/caniuse-lite/data/features/eventsource.js +0 -1
  815. package/examples/node_modules/caniuse-lite/data/features/extended-system-fonts.js +0 -1
  816. package/examples/node_modules/caniuse-lite/data/features/feature-policy.js +0 -1
  817. package/examples/node_modules/caniuse-lite/data/features/fetch.js +0 -1
  818. package/examples/node_modules/caniuse-lite/data/features/fieldset-disabled.js +0 -1
  819. package/examples/node_modules/caniuse-lite/data/features/fileapi.js +0 -1
  820. package/examples/node_modules/caniuse-lite/data/features/filereader.js +0 -1
  821. package/examples/node_modules/caniuse-lite/data/features/filereadersync.js +0 -1
  822. package/examples/node_modules/caniuse-lite/data/features/filesystem.js +0 -1
  823. package/examples/node_modules/caniuse-lite/data/features/flac.js +0 -1
  824. package/examples/node_modules/caniuse-lite/data/features/flexbox-gap.js +0 -1
  825. package/examples/node_modules/caniuse-lite/data/features/flexbox.js +0 -1
  826. package/examples/node_modules/caniuse-lite/data/features/flow-root.js +0 -1
  827. package/examples/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +0 -1
  828. package/examples/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js +0 -1
  829. package/examples/node_modules/caniuse-lite/data/features/font-family-system-ui.js +0 -1
  830. package/examples/node_modules/caniuse-lite/data/features/font-feature.js +0 -1
  831. package/examples/node_modules/caniuse-lite/data/features/font-kerning.js +0 -1
  832. package/examples/node_modules/caniuse-lite/data/features/font-loading.js +0 -1
  833. package/examples/node_modules/caniuse-lite/data/features/font-metrics-overrides.js +0 -1
  834. package/examples/node_modules/caniuse-lite/data/features/font-size-adjust.js +0 -1
  835. package/examples/node_modules/caniuse-lite/data/features/font-smooth.js +0 -1
  836. package/examples/node_modules/caniuse-lite/data/features/font-unicode-range.js +0 -1
  837. package/examples/node_modules/caniuse-lite/data/features/font-variant-alternates.js +0 -1
  838. package/examples/node_modules/caniuse-lite/data/features/font-variant-east-asian.js +0 -1
  839. package/examples/node_modules/caniuse-lite/data/features/font-variant-numeric.js +0 -1
  840. package/examples/node_modules/caniuse-lite/data/features/fontface.js +0 -1
  841. package/examples/node_modules/caniuse-lite/data/features/form-attribute.js +0 -1
  842. package/examples/node_modules/caniuse-lite/data/features/form-submit-attributes.js +0 -1
  843. package/examples/node_modules/caniuse-lite/data/features/form-validation.js +0 -1
  844. package/examples/node_modules/caniuse-lite/data/features/forms.js +0 -1
  845. package/examples/node_modules/caniuse-lite/data/features/fullscreen.js +0 -1
  846. package/examples/node_modules/caniuse-lite/data/features/gamepad.js +0 -1
  847. package/examples/node_modules/caniuse-lite/data/features/geolocation.js +0 -1
  848. package/examples/node_modules/caniuse-lite/data/features/getboundingclientrect.js +0 -1
  849. package/examples/node_modules/caniuse-lite/data/features/getcomputedstyle.js +0 -1
  850. package/examples/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +0 -1
  851. package/examples/node_modules/caniuse-lite/data/features/getrandomvalues.js +0 -1
  852. package/examples/node_modules/caniuse-lite/data/features/gyroscope.js +0 -1
  853. package/examples/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +0 -1
  854. package/examples/node_modules/caniuse-lite/data/features/hashchange.js +0 -1
  855. package/examples/node_modules/caniuse-lite/data/features/heif.js +0 -1
  856. package/examples/node_modules/caniuse-lite/data/features/hevc.js +0 -1
  857. package/examples/node_modules/caniuse-lite/data/features/hidden.js +0 -1
  858. package/examples/node_modules/caniuse-lite/data/features/high-resolution-time.js +0 -1
  859. package/examples/node_modules/caniuse-lite/data/features/history.js +0 -1
  860. package/examples/node_modules/caniuse-lite/data/features/html-media-capture.js +0 -1
  861. package/examples/node_modules/caniuse-lite/data/features/html5semantic.js +0 -1
  862. package/examples/node_modules/caniuse-lite/data/features/http-live-streaming.js +0 -1
  863. package/examples/node_modules/caniuse-lite/data/features/http2.js +0 -1
  864. package/examples/node_modules/caniuse-lite/data/features/http3.js +0 -1
  865. package/examples/node_modules/caniuse-lite/data/features/iframe-sandbox.js +0 -1
  866. package/examples/node_modules/caniuse-lite/data/features/iframe-seamless.js +0 -1
  867. package/examples/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +0 -1
  868. package/examples/node_modules/caniuse-lite/data/features/imagecapture.js +0 -1
  869. package/examples/node_modules/caniuse-lite/data/features/ime.js +0 -1
  870. package/examples/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +0 -1
  871. package/examples/node_modules/caniuse-lite/data/features/import-maps.js +0 -1
  872. package/examples/node_modules/caniuse-lite/data/features/imports.js +0 -1
  873. package/examples/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +0 -1
  874. package/examples/node_modules/caniuse-lite/data/features/indexeddb.js +0 -1
  875. package/examples/node_modules/caniuse-lite/data/features/indexeddb2.js +0 -1
  876. package/examples/node_modules/caniuse-lite/data/features/inline-block.js +0 -1
  877. package/examples/node_modules/caniuse-lite/data/features/innertext.js +0 -1
  878. package/examples/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +0 -1
  879. package/examples/node_modules/caniuse-lite/data/features/input-color.js +0 -1
  880. package/examples/node_modules/caniuse-lite/data/features/input-datetime.js +0 -1
  881. package/examples/node_modules/caniuse-lite/data/features/input-email-tel-url.js +0 -1
  882. package/examples/node_modules/caniuse-lite/data/features/input-event.js +0 -1
  883. package/examples/node_modules/caniuse-lite/data/features/input-file-accept.js +0 -1
  884. package/examples/node_modules/caniuse-lite/data/features/input-file-directory.js +0 -1
  885. package/examples/node_modules/caniuse-lite/data/features/input-file-multiple.js +0 -1
  886. package/examples/node_modules/caniuse-lite/data/features/input-inputmode.js +0 -1
  887. package/examples/node_modules/caniuse-lite/data/features/input-minlength.js +0 -1
  888. package/examples/node_modules/caniuse-lite/data/features/input-number.js +0 -1
  889. package/examples/node_modules/caniuse-lite/data/features/input-pattern.js +0 -1
  890. package/examples/node_modules/caniuse-lite/data/features/input-placeholder.js +0 -1
  891. package/examples/node_modules/caniuse-lite/data/features/input-range.js +0 -1
  892. package/examples/node_modules/caniuse-lite/data/features/input-search.js +0 -1
  893. package/examples/node_modules/caniuse-lite/data/features/input-selection.js +0 -1
  894. package/examples/node_modules/caniuse-lite/data/features/insert-adjacent.js +0 -1
  895. package/examples/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +0 -1
  896. package/examples/node_modules/caniuse-lite/data/features/internationalization.js +0 -1
  897. package/examples/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +0 -1
  898. package/examples/node_modules/caniuse-lite/data/features/intersectionobserver.js +0 -1
  899. package/examples/node_modules/caniuse-lite/data/features/intl-pluralrules.js +0 -1
  900. package/examples/node_modules/caniuse-lite/data/features/intrinsic-width.js +0 -1
  901. package/examples/node_modules/caniuse-lite/data/features/jpeg2000.js +0 -1
  902. package/examples/node_modules/caniuse-lite/data/features/jpegxl.js +0 -1
  903. package/examples/node_modules/caniuse-lite/data/features/jpegxr.js +0 -1
  904. package/examples/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +0 -1
  905. package/examples/node_modules/caniuse-lite/data/features/json.js +0 -1
  906. package/examples/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +0 -1
  907. package/examples/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +0 -1
  908. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +0 -1
  909. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-code.js +0 -1
  910. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +0 -1
  911. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-key.js +0 -1
  912. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-location.js +0 -1
  913. package/examples/node_modules/caniuse-lite/data/features/keyboardevent-which.js +0 -1
  914. package/examples/node_modules/caniuse-lite/data/features/lazyload.js +0 -1
  915. package/examples/node_modules/caniuse-lite/data/features/let.js +0 -1
  916. package/examples/node_modules/caniuse-lite/data/features/link-icon-png.js +0 -1
  917. package/examples/node_modules/caniuse-lite/data/features/link-icon-svg.js +0 -1
  918. package/examples/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +0 -1
  919. package/examples/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +0 -1
  920. package/examples/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +0 -1
  921. package/examples/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +0 -1
  922. package/examples/node_modules/caniuse-lite/data/features/link-rel-preload.js +0 -1
  923. package/examples/node_modules/caniuse-lite/data/features/link-rel-prerender.js +0 -1
  924. package/examples/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +0 -1
  925. package/examples/node_modules/caniuse-lite/data/features/localecompare.js +0 -1
  926. package/examples/node_modules/caniuse-lite/data/features/magnetometer.js +0 -1
  927. package/examples/node_modules/caniuse-lite/data/features/matchesselector.js +0 -1
  928. package/examples/node_modules/caniuse-lite/data/features/matchmedia.js +0 -1
  929. package/examples/node_modules/caniuse-lite/data/features/mathml.js +0 -1
  930. package/examples/node_modules/caniuse-lite/data/features/maxlength.js +0 -1
  931. package/examples/node_modules/caniuse-lite/data/features/media-attribute.js +0 -1
  932. package/examples/node_modules/caniuse-lite/data/features/media-fragments.js +0 -1
  933. package/examples/node_modules/caniuse-lite/data/features/media-session-api.js +0 -1
  934. package/examples/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +0 -1
  935. package/examples/node_modules/caniuse-lite/data/features/mediarecorder.js +0 -1
  936. package/examples/node_modules/caniuse-lite/data/features/mediasource.js +0 -1
  937. package/examples/node_modules/caniuse-lite/data/features/menu.js +0 -1
  938. package/examples/node_modules/caniuse-lite/data/features/meta-theme-color.js +0 -1
  939. package/examples/node_modules/caniuse-lite/data/features/meter.js +0 -1
  940. package/examples/node_modules/caniuse-lite/data/features/midi.js +0 -1
  941. package/examples/node_modules/caniuse-lite/data/features/minmaxwh.js +0 -1
  942. package/examples/node_modules/caniuse-lite/data/features/mp3.js +0 -1
  943. package/examples/node_modules/caniuse-lite/data/features/mpeg-dash.js +0 -1
  944. package/examples/node_modules/caniuse-lite/data/features/mpeg4.js +0 -1
  945. package/examples/node_modules/caniuse-lite/data/features/multibackgrounds.js +0 -1
  946. package/examples/node_modules/caniuse-lite/data/features/multicolumn.js +0 -1
  947. package/examples/node_modules/caniuse-lite/data/features/mutation-events.js +0 -1
  948. package/examples/node_modules/caniuse-lite/data/features/mutationobserver.js +0 -1
  949. package/examples/node_modules/caniuse-lite/data/features/namevalue-storage.js +0 -1
  950. package/examples/node_modules/caniuse-lite/data/features/native-filesystem-api.js +0 -1
  951. package/examples/node_modules/caniuse-lite/data/features/nav-timing.js +0 -1
  952. package/examples/node_modules/caniuse-lite/data/features/navigator-language.js +0 -1
  953. package/examples/node_modules/caniuse-lite/data/features/netinfo.js +0 -1
  954. package/examples/node_modules/caniuse-lite/data/features/notifications.js +0 -1
  955. package/examples/node_modules/caniuse-lite/data/features/object-entries.js +0 -1
  956. package/examples/node_modules/caniuse-lite/data/features/object-fit.js +0 -1
  957. package/examples/node_modules/caniuse-lite/data/features/object-observe.js +0 -1
  958. package/examples/node_modules/caniuse-lite/data/features/object-values.js +0 -1
  959. package/examples/node_modules/caniuse-lite/data/features/objectrtc.js +0 -1
  960. package/examples/node_modules/caniuse-lite/data/features/offline-apps.js +0 -1
  961. package/examples/node_modules/caniuse-lite/data/features/offscreencanvas.js +0 -1
  962. package/examples/node_modules/caniuse-lite/data/features/ogg-vorbis.js +0 -1
  963. package/examples/node_modules/caniuse-lite/data/features/ogv.js +0 -1
  964. package/examples/node_modules/caniuse-lite/data/features/ol-reversed.js +0 -1
  965. package/examples/node_modules/caniuse-lite/data/features/once-event-listener.js +0 -1
  966. package/examples/node_modules/caniuse-lite/data/features/online-status.js +0 -1
  967. package/examples/node_modules/caniuse-lite/data/features/opus.js +0 -1
  968. package/examples/node_modules/caniuse-lite/data/features/orientation-sensor.js +0 -1
  969. package/examples/node_modules/caniuse-lite/data/features/outline.js +0 -1
  970. package/examples/node_modules/caniuse-lite/data/features/pad-start-end.js +0 -1
  971. package/examples/node_modules/caniuse-lite/data/features/page-transition-events.js +0 -1
  972. package/examples/node_modules/caniuse-lite/data/features/pagevisibility.js +0 -1
  973. package/examples/node_modules/caniuse-lite/data/features/passive-event-listener.js +0 -1
  974. package/examples/node_modules/caniuse-lite/data/features/passwordrules.js +0 -1
  975. package/examples/node_modules/caniuse-lite/data/features/path2d.js +0 -1
  976. package/examples/node_modules/caniuse-lite/data/features/payment-request.js +0 -1
  977. package/examples/node_modules/caniuse-lite/data/features/pdf-viewer.js +0 -1
  978. package/examples/node_modules/caniuse-lite/data/features/permissions-api.js +0 -1
  979. package/examples/node_modules/caniuse-lite/data/features/permissions-policy.js +0 -1
  980. package/examples/node_modules/caniuse-lite/data/features/picture-in-picture.js +0 -1
  981. package/examples/node_modules/caniuse-lite/data/features/picture.js +0 -1
  982. package/examples/node_modules/caniuse-lite/data/features/ping.js +0 -1
  983. package/examples/node_modules/caniuse-lite/data/features/png-alpha.js +0 -1
  984. package/examples/node_modules/caniuse-lite/data/features/pointer-events.js +0 -1
  985. package/examples/node_modules/caniuse-lite/data/features/pointer.js +0 -1
  986. package/examples/node_modules/caniuse-lite/data/features/pointerlock.js +0 -1
  987. package/examples/node_modules/caniuse-lite/data/features/portals.js +0 -1
  988. package/examples/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +0 -1
  989. package/examples/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +0 -1
  990. package/examples/node_modules/caniuse-lite/data/features/private-class-fields.js +0 -1
  991. package/examples/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js +0 -1
  992. package/examples/node_modules/caniuse-lite/data/features/progress.js +0 -1
  993. package/examples/node_modules/caniuse-lite/data/features/promise-finally.js +0 -1
  994. package/examples/node_modules/caniuse-lite/data/features/promises.js +0 -1
  995. package/examples/node_modules/caniuse-lite/data/features/proximity.js +0 -1
  996. package/examples/node_modules/caniuse-lite/data/features/proxy.js +0 -1
  997. package/examples/node_modules/caniuse-lite/data/features/public-class-fields.js +0 -1
  998. package/examples/node_modules/caniuse-lite/data/features/publickeypinning.js +0 -1
  999. package/examples/node_modules/caniuse-lite/data/features/push-api.js +0 -1
  1000. package/examples/node_modules/caniuse-lite/data/features/queryselector.js +0 -1
  1001. package/examples/node_modules/caniuse-lite/data/features/readonly-attr.js +0 -1
  1002. package/examples/node_modules/caniuse-lite/data/features/referrer-policy.js +0 -1
  1003. package/examples/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +0 -1
  1004. package/examples/node_modules/caniuse-lite/data/features/rel-noopener.js +0 -1
  1005. package/examples/node_modules/caniuse-lite/data/features/rel-noreferrer.js +0 -1
  1006. package/examples/node_modules/caniuse-lite/data/features/rellist.js +0 -1
  1007. package/examples/node_modules/caniuse-lite/data/features/rem.js +0 -1
  1008. package/examples/node_modules/caniuse-lite/data/features/requestanimationframe.js +0 -1
  1009. package/examples/node_modules/caniuse-lite/data/features/requestidlecallback.js +0 -1
  1010. package/examples/node_modules/caniuse-lite/data/features/resizeobserver.js +0 -1
  1011. package/examples/node_modules/caniuse-lite/data/features/resource-timing.js +0 -1
  1012. package/examples/node_modules/caniuse-lite/data/features/rest-parameters.js +0 -1
  1013. package/examples/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +0 -1
  1014. package/examples/node_modules/caniuse-lite/data/features/ruby.js +0 -1
  1015. package/examples/node_modules/caniuse-lite/data/features/run-in.js +0 -1
  1016. package/examples/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +0 -1
  1017. package/examples/node_modules/caniuse-lite/data/features/screen-orientation.js +0 -1
  1018. package/examples/node_modules/caniuse-lite/data/features/script-async.js +0 -1
  1019. package/examples/node_modules/caniuse-lite/data/features/script-defer.js +0 -1
  1020. package/examples/node_modules/caniuse-lite/data/features/scrollintoview.js +0 -1
  1021. package/examples/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +0 -1
  1022. package/examples/node_modules/caniuse-lite/data/features/sdch.js +0 -1
  1023. package/examples/node_modules/caniuse-lite/data/features/selection-api.js +0 -1
  1024. package/examples/node_modules/caniuse-lite/data/features/server-timing.js +0 -1
  1025. package/examples/node_modules/caniuse-lite/data/features/serviceworkers.js +0 -1
  1026. package/examples/node_modules/caniuse-lite/data/features/setimmediate.js +0 -1
  1027. package/examples/node_modules/caniuse-lite/data/features/sha-2.js +0 -1
  1028. package/examples/node_modules/caniuse-lite/data/features/shadowdom.js +0 -1
  1029. package/examples/node_modules/caniuse-lite/data/features/shadowdomv1.js +0 -1
  1030. package/examples/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +0 -1
  1031. package/examples/node_modules/caniuse-lite/data/features/sharedworkers.js +0 -1
  1032. package/examples/node_modules/caniuse-lite/data/features/sni.js +0 -1
  1033. package/examples/node_modules/caniuse-lite/data/features/spdy.js +0 -1
  1034. package/examples/node_modules/caniuse-lite/data/features/speech-recognition.js +0 -1
  1035. package/examples/node_modules/caniuse-lite/data/features/speech-synthesis.js +0 -1
  1036. package/examples/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +0 -1
  1037. package/examples/node_modules/caniuse-lite/data/features/sql-storage.js +0 -1
  1038. package/examples/node_modules/caniuse-lite/data/features/srcset.js +0 -1
  1039. package/examples/node_modules/caniuse-lite/data/features/stream.js +0 -1
  1040. package/examples/node_modules/caniuse-lite/data/features/streams.js +0 -1
  1041. package/examples/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +0 -1
  1042. package/examples/node_modules/caniuse-lite/data/features/style-scoped.js +0 -1
  1043. package/examples/node_modules/caniuse-lite/data/features/subresource-integrity.js +0 -1
  1044. package/examples/node_modules/caniuse-lite/data/features/svg-css.js +0 -1
  1045. package/examples/node_modules/caniuse-lite/data/features/svg-filters.js +0 -1
  1046. package/examples/node_modules/caniuse-lite/data/features/svg-fonts.js +0 -1
  1047. package/examples/node_modules/caniuse-lite/data/features/svg-fragment.js +0 -1
  1048. package/examples/node_modules/caniuse-lite/data/features/svg-html.js +0 -1
  1049. package/examples/node_modules/caniuse-lite/data/features/svg-html5.js +0 -1
  1050. package/examples/node_modules/caniuse-lite/data/features/svg-img.js +0 -1
  1051. package/examples/node_modules/caniuse-lite/data/features/svg-smil.js +0 -1
  1052. package/examples/node_modules/caniuse-lite/data/features/svg.js +0 -1
  1053. package/examples/node_modules/caniuse-lite/data/features/sxg.js +0 -1
  1054. package/examples/node_modules/caniuse-lite/data/features/tabindex-attr.js +0 -1
  1055. package/examples/node_modules/caniuse-lite/data/features/template-literals.js +0 -1
  1056. package/examples/node_modules/caniuse-lite/data/features/template.js +0 -1
  1057. package/examples/node_modules/caniuse-lite/data/features/temporal.js +0 -1
  1058. package/examples/node_modules/caniuse-lite/data/features/testfeat.js +0 -1
  1059. package/examples/node_modules/caniuse-lite/data/features/text-decoration.js +0 -1
  1060. package/examples/node_modules/caniuse-lite/data/features/text-emphasis.js +0 -1
  1061. package/examples/node_modules/caniuse-lite/data/features/text-overflow.js +0 -1
  1062. package/examples/node_modules/caniuse-lite/data/features/text-size-adjust.js +0 -1
  1063. package/examples/node_modules/caniuse-lite/data/features/text-stroke.js +0 -1
  1064. package/examples/node_modules/caniuse-lite/data/features/text-underline-offset.js +0 -1
  1065. package/examples/node_modules/caniuse-lite/data/features/textcontent.js +0 -1
  1066. package/examples/node_modules/caniuse-lite/data/features/textencoder.js +0 -1
  1067. package/examples/node_modules/caniuse-lite/data/features/tls1-1.js +0 -1
  1068. package/examples/node_modules/caniuse-lite/data/features/tls1-2.js +0 -1
  1069. package/examples/node_modules/caniuse-lite/data/features/tls1-3.js +0 -1
  1070. package/examples/node_modules/caniuse-lite/data/features/token-binding.js +0 -1
  1071. package/examples/node_modules/caniuse-lite/data/features/touch.js +0 -1
  1072. package/examples/node_modules/caniuse-lite/data/features/transforms2d.js +0 -1
  1073. package/examples/node_modules/caniuse-lite/data/features/transforms3d.js +0 -1
  1074. package/examples/node_modules/caniuse-lite/data/features/trusted-types.js +0 -1
  1075. package/examples/node_modules/caniuse-lite/data/features/ttf.js +0 -1
  1076. package/examples/node_modules/caniuse-lite/data/features/typedarrays.js +0 -1
  1077. package/examples/node_modules/caniuse-lite/data/features/u2f.js +0 -1
  1078. package/examples/node_modules/caniuse-lite/data/features/unhandledrejection.js +0 -1
  1079. package/examples/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +0 -1
  1080. package/examples/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +0 -1
  1081. package/examples/node_modules/caniuse-lite/data/features/url.js +0 -1
  1082. package/examples/node_modules/caniuse-lite/data/features/urlsearchparams.js +0 -1
  1083. package/examples/node_modules/caniuse-lite/data/features/use-strict.js +0 -1
  1084. package/examples/node_modules/caniuse-lite/data/features/user-select-none.js +0 -1
  1085. package/examples/node_modules/caniuse-lite/data/features/user-timing.js +0 -1
  1086. package/examples/node_modules/caniuse-lite/data/features/variable-fonts.js +0 -1
  1087. package/examples/node_modules/caniuse-lite/data/features/vector-effect.js +0 -1
  1088. package/examples/node_modules/caniuse-lite/data/features/vibration.js +0 -1
  1089. package/examples/node_modules/caniuse-lite/data/features/video.js +0 -1
  1090. package/examples/node_modules/caniuse-lite/data/features/videotracks.js +0 -1
  1091. package/examples/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +0 -1
  1092. package/examples/node_modules/caniuse-lite/data/features/viewport-units.js +0 -1
  1093. package/examples/node_modules/caniuse-lite/data/features/wai-aria.js +0 -1
  1094. package/examples/node_modules/caniuse-lite/data/features/wake-lock.js +0 -1
  1095. package/examples/node_modules/caniuse-lite/data/features/wasm.js +0 -1
  1096. package/examples/node_modules/caniuse-lite/data/features/wav.js +0 -1
  1097. package/examples/node_modules/caniuse-lite/data/features/wbr-element.js +0 -1
  1098. package/examples/node_modules/caniuse-lite/data/features/web-animation.js +0 -1
  1099. package/examples/node_modules/caniuse-lite/data/features/web-app-manifest.js +0 -1
  1100. package/examples/node_modules/caniuse-lite/data/features/web-bluetooth.js +0 -1
  1101. package/examples/node_modules/caniuse-lite/data/features/web-serial.js +0 -1
  1102. package/examples/node_modules/caniuse-lite/data/features/web-share.js +0 -1
  1103. package/examples/node_modules/caniuse-lite/data/features/webauthn.js +0 -1
  1104. package/examples/node_modules/caniuse-lite/data/features/webgl.js +0 -1
  1105. package/examples/node_modules/caniuse-lite/data/features/webgl2.js +0 -1
  1106. package/examples/node_modules/caniuse-lite/data/features/webgpu.js +0 -1
  1107. package/examples/node_modules/caniuse-lite/data/features/webhid.js +0 -1
  1108. package/examples/node_modules/caniuse-lite/data/features/webkit-user-drag.js +0 -1
  1109. package/examples/node_modules/caniuse-lite/data/features/webm.js +0 -1
  1110. package/examples/node_modules/caniuse-lite/data/features/webnfc.js +0 -1
  1111. package/examples/node_modules/caniuse-lite/data/features/webp.js +0 -1
  1112. package/examples/node_modules/caniuse-lite/data/features/websockets.js +0 -1
  1113. package/examples/node_modules/caniuse-lite/data/features/webusb.js +0 -1
  1114. package/examples/node_modules/caniuse-lite/data/features/webvr.js +0 -1
  1115. package/examples/node_modules/caniuse-lite/data/features/webvtt.js +0 -1
  1116. package/examples/node_modules/caniuse-lite/data/features/webworkers.js +0 -1
  1117. package/examples/node_modules/caniuse-lite/data/features/webxr.js +0 -1
  1118. package/examples/node_modules/caniuse-lite/data/features/will-change.js +0 -1
  1119. package/examples/node_modules/caniuse-lite/data/features/woff.js +0 -1
  1120. package/examples/node_modules/caniuse-lite/data/features/woff2.js +0 -1
  1121. package/examples/node_modules/caniuse-lite/data/features/word-break.js +0 -1
  1122. package/examples/node_modules/caniuse-lite/data/features/wordwrap.js +0 -1
  1123. package/examples/node_modules/caniuse-lite/data/features/x-doc-messaging.js +0 -1
  1124. package/examples/node_modules/caniuse-lite/data/features/x-frame-options.js +0 -1
  1125. package/examples/node_modules/caniuse-lite/data/features/xhr2.js +0 -1
  1126. package/examples/node_modules/caniuse-lite/data/features/xhtml.js +0 -1
  1127. package/examples/node_modules/caniuse-lite/data/features/xhtmlsmil.js +0 -1
  1128. package/examples/node_modules/caniuse-lite/data/features/xml-serializer.js +0 -1
  1129. package/examples/node_modules/caniuse-lite/data/features.js +0 -1
  1130. package/examples/node_modules/caniuse-lite/data/regions/AD.js +0 -1
  1131. package/examples/node_modules/caniuse-lite/data/regions/AE.js +0 -1
  1132. package/examples/node_modules/caniuse-lite/data/regions/AF.js +0 -1
  1133. package/examples/node_modules/caniuse-lite/data/regions/AG.js +0 -1
  1134. package/examples/node_modules/caniuse-lite/data/regions/AI.js +0 -1
  1135. package/examples/node_modules/caniuse-lite/data/regions/AL.js +0 -1
  1136. package/examples/node_modules/caniuse-lite/data/regions/AM.js +0 -1
  1137. package/examples/node_modules/caniuse-lite/data/regions/AO.js +0 -1
  1138. package/examples/node_modules/caniuse-lite/data/regions/AR.js +0 -1
  1139. package/examples/node_modules/caniuse-lite/data/regions/AS.js +0 -1
  1140. package/examples/node_modules/caniuse-lite/data/regions/AT.js +0 -1
  1141. package/examples/node_modules/caniuse-lite/data/regions/AU.js +0 -1
  1142. package/examples/node_modules/caniuse-lite/data/regions/AW.js +0 -1
  1143. package/examples/node_modules/caniuse-lite/data/regions/AX.js +0 -1
  1144. package/examples/node_modules/caniuse-lite/data/regions/AZ.js +0 -1
  1145. package/examples/node_modules/caniuse-lite/data/regions/BA.js +0 -1
  1146. package/examples/node_modules/caniuse-lite/data/regions/BB.js +0 -1
  1147. package/examples/node_modules/caniuse-lite/data/regions/BD.js +0 -1
  1148. package/examples/node_modules/caniuse-lite/data/regions/BE.js +0 -1
  1149. package/examples/node_modules/caniuse-lite/data/regions/BF.js +0 -1
  1150. package/examples/node_modules/caniuse-lite/data/regions/BG.js +0 -1
  1151. package/examples/node_modules/caniuse-lite/data/regions/BH.js +0 -1
  1152. package/examples/node_modules/caniuse-lite/data/regions/BI.js +0 -1
  1153. package/examples/node_modules/caniuse-lite/data/regions/BJ.js +0 -1
  1154. package/examples/node_modules/caniuse-lite/data/regions/BM.js +0 -1
  1155. package/examples/node_modules/caniuse-lite/data/regions/BN.js +0 -1
  1156. package/examples/node_modules/caniuse-lite/data/regions/BO.js +0 -1
  1157. package/examples/node_modules/caniuse-lite/data/regions/BR.js +0 -1
  1158. package/examples/node_modules/caniuse-lite/data/regions/BS.js +0 -1
  1159. package/examples/node_modules/caniuse-lite/data/regions/BT.js +0 -1
  1160. package/examples/node_modules/caniuse-lite/data/regions/BW.js +0 -1
  1161. package/examples/node_modules/caniuse-lite/data/regions/BY.js +0 -1
  1162. package/examples/node_modules/caniuse-lite/data/regions/BZ.js +0 -1
  1163. package/examples/node_modules/caniuse-lite/data/regions/CA.js +0 -1
  1164. package/examples/node_modules/caniuse-lite/data/regions/CD.js +0 -1
  1165. package/examples/node_modules/caniuse-lite/data/regions/CF.js +0 -1
  1166. package/examples/node_modules/caniuse-lite/data/regions/CG.js +0 -1
  1167. package/examples/node_modules/caniuse-lite/data/regions/CH.js +0 -1
  1168. package/examples/node_modules/caniuse-lite/data/regions/CI.js +0 -1
  1169. package/examples/node_modules/caniuse-lite/data/regions/CK.js +0 -1
  1170. package/examples/node_modules/caniuse-lite/data/regions/CL.js +0 -1
  1171. package/examples/node_modules/caniuse-lite/data/regions/CM.js +0 -1
  1172. package/examples/node_modules/caniuse-lite/data/regions/CN.js +0 -1
  1173. package/examples/node_modules/caniuse-lite/data/regions/CO.js +0 -1
  1174. package/examples/node_modules/caniuse-lite/data/regions/CR.js +0 -1
  1175. package/examples/node_modules/caniuse-lite/data/regions/CU.js +0 -1
  1176. package/examples/node_modules/caniuse-lite/data/regions/CV.js +0 -1
  1177. package/examples/node_modules/caniuse-lite/data/regions/CX.js +0 -1
  1178. package/examples/node_modules/caniuse-lite/data/regions/CY.js +0 -1
  1179. package/examples/node_modules/caniuse-lite/data/regions/CZ.js +0 -1
  1180. package/examples/node_modules/caniuse-lite/data/regions/DE.js +0 -1
  1181. package/examples/node_modules/caniuse-lite/data/regions/DJ.js +0 -1
  1182. package/examples/node_modules/caniuse-lite/data/regions/DK.js +0 -1
  1183. package/examples/node_modules/caniuse-lite/data/regions/DM.js +0 -1
  1184. package/examples/node_modules/caniuse-lite/data/regions/DO.js +0 -1
  1185. package/examples/node_modules/caniuse-lite/data/regions/DZ.js +0 -1
  1186. package/examples/node_modules/caniuse-lite/data/regions/EC.js +0 -1
  1187. package/examples/node_modules/caniuse-lite/data/regions/EE.js +0 -1
  1188. package/examples/node_modules/caniuse-lite/data/regions/EG.js +0 -1
  1189. package/examples/node_modules/caniuse-lite/data/regions/ER.js +0 -1
  1190. package/examples/node_modules/caniuse-lite/data/regions/ES.js +0 -1
  1191. package/examples/node_modules/caniuse-lite/data/regions/ET.js +0 -1
  1192. package/examples/node_modules/caniuse-lite/data/regions/FI.js +0 -1
  1193. package/examples/node_modules/caniuse-lite/data/regions/FJ.js +0 -1
  1194. package/examples/node_modules/caniuse-lite/data/regions/FK.js +0 -1
  1195. package/examples/node_modules/caniuse-lite/data/regions/FM.js +0 -1
  1196. package/examples/node_modules/caniuse-lite/data/regions/FO.js +0 -1
  1197. package/examples/node_modules/caniuse-lite/data/regions/FR.js +0 -1
  1198. package/examples/node_modules/caniuse-lite/data/regions/GA.js +0 -1
  1199. package/examples/node_modules/caniuse-lite/data/regions/GB.js +0 -1
  1200. package/examples/node_modules/caniuse-lite/data/regions/GD.js +0 -1
  1201. package/examples/node_modules/caniuse-lite/data/regions/GE.js +0 -1
  1202. package/examples/node_modules/caniuse-lite/data/regions/GF.js +0 -1
  1203. package/examples/node_modules/caniuse-lite/data/regions/GG.js +0 -1
  1204. package/examples/node_modules/caniuse-lite/data/regions/GH.js +0 -1
  1205. package/examples/node_modules/caniuse-lite/data/regions/GI.js +0 -1
  1206. package/examples/node_modules/caniuse-lite/data/regions/GL.js +0 -1
  1207. package/examples/node_modules/caniuse-lite/data/regions/GM.js +0 -1
  1208. package/examples/node_modules/caniuse-lite/data/regions/GN.js +0 -1
  1209. package/examples/node_modules/caniuse-lite/data/regions/GP.js +0 -1
  1210. package/examples/node_modules/caniuse-lite/data/regions/GQ.js +0 -1
  1211. package/examples/node_modules/caniuse-lite/data/regions/GR.js +0 -1
  1212. package/examples/node_modules/caniuse-lite/data/regions/GT.js +0 -1
  1213. package/examples/node_modules/caniuse-lite/data/regions/GU.js +0 -1
  1214. package/examples/node_modules/caniuse-lite/data/regions/GW.js +0 -1
  1215. package/examples/node_modules/caniuse-lite/data/regions/GY.js +0 -1
  1216. package/examples/node_modules/caniuse-lite/data/regions/HK.js +0 -1
  1217. package/examples/node_modules/caniuse-lite/data/regions/HN.js +0 -1
  1218. package/examples/node_modules/caniuse-lite/data/regions/HR.js +0 -1
  1219. package/examples/node_modules/caniuse-lite/data/regions/HT.js +0 -1
  1220. package/examples/node_modules/caniuse-lite/data/regions/HU.js +0 -1
  1221. package/examples/node_modules/caniuse-lite/data/regions/ID.js +0 -1
  1222. package/examples/node_modules/caniuse-lite/data/regions/IE.js +0 -1
  1223. package/examples/node_modules/caniuse-lite/data/regions/IL.js +0 -1
  1224. package/examples/node_modules/caniuse-lite/data/regions/IM.js +0 -1
  1225. package/examples/node_modules/caniuse-lite/data/regions/IN.js +0 -1
  1226. package/examples/node_modules/caniuse-lite/data/regions/IQ.js +0 -1
  1227. package/examples/node_modules/caniuse-lite/data/regions/IR.js +0 -1
  1228. package/examples/node_modules/caniuse-lite/data/regions/IS.js +0 -1
  1229. package/examples/node_modules/caniuse-lite/data/regions/IT.js +0 -1
  1230. package/examples/node_modules/caniuse-lite/data/regions/JE.js +0 -1
  1231. package/examples/node_modules/caniuse-lite/data/regions/JM.js +0 -1
  1232. package/examples/node_modules/caniuse-lite/data/regions/JO.js +0 -1
  1233. package/examples/node_modules/caniuse-lite/data/regions/JP.js +0 -1
  1234. package/examples/node_modules/caniuse-lite/data/regions/KE.js +0 -1
  1235. package/examples/node_modules/caniuse-lite/data/regions/KG.js +0 -1
  1236. package/examples/node_modules/caniuse-lite/data/regions/KH.js +0 -1
  1237. package/examples/node_modules/caniuse-lite/data/regions/KI.js +0 -1
  1238. package/examples/node_modules/caniuse-lite/data/regions/KM.js +0 -1
  1239. package/examples/node_modules/caniuse-lite/data/regions/KN.js +0 -1
  1240. package/examples/node_modules/caniuse-lite/data/regions/KP.js +0 -1
  1241. package/examples/node_modules/caniuse-lite/data/regions/KR.js +0 -1
  1242. package/examples/node_modules/caniuse-lite/data/regions/KW.js +0 -1
  1243. package/examples/node_modules/caniuse-lite/data/regions/KY.js +0 -1
  1244. package/examples/node_modules/caniuse-lite/data/regions/KZ.js +0 -1
  1245. package/examples/node_modules/caniuse-lite/data/regions/LA.js +0 -1
  1246. package/examples/node_modules/caniuse-lite/data/regions/LB.js +0 -1
  1247. package/examples/node_modules/caniuse-lite/data/regions/LC.js +0 -1
  1248. package/examples/node_modules/caniuse-lite/data/regions/LI.js +0 -1
  1249. package/examples/node_modules/caniuse-lite/data/regions/LK.js +0 -1
  1250. package/examples/node_modules/caniuse-lite/data/regions/LR.js +0 -1
  1251. package/examples/node_modules/caniuse-lite/data/regions/LS.js +0 -1
  1252. package/examples/node_modules/caniuse-lite/data/regions/LT.js +0 -1
  1253. package/examples/node_modules/caniuse-lite/data/regions/LU.js +0 -1
  1254. package/examples/node_modules/caniuse-lite/data/regions/LV.js +0 -1
  1255. package/examples/node_modules/caniuse-lite/data/regions/LY.js +0 -1
  1256. package/examples/node_modules/caniuse-lite/data/regions/MA.js +0 -1
  1257. package/examples/node_modules/caniuse-lite/data/regions/MC.js +0 -1
  1258. package/examples/node_modules/caniuse-lite/data/regions/MD.js +0 -1
  1259. package/examples/node_modules/caniuse-lite/data/regions/ME.js +0 -1
  1260. package/examples/node_modules/caniuse-lite/data/regions/MG.js +0 -1
  1261. package/examples/node_modules/caniuse-lite/data/regions/MH.js +0 -1
  1262. package/examples/node_modules/caniuse-lite/data/regions/MK.js +0 -1
  1263. package/examples/node_modules/caniuse-lite/data/regions/ML.js +0 -1
  1264. package/examples/node_modules/caniuse-lite/data/regions/MM.js +0 -1
  1265. package/examples/node_modules/caniuse-lite/data/regions/MN.js +0 -1
  1266. package/examples/node_modules/caniuse-lite/data/regions/MO.js +0 -1
  1267. package/examples/node_modules/caniuse-lite/data/regions/MP.js +0 -1
  1268. package/examples/node_modules/caniuse-lite/data/regions/MQ.js +0 -1
  1269. package/examples/node_modules/caniuse-lite/data/regions/MR.js +0 -1
  1270. package/examples/node_modules/caniuse-lite/data/regions/MS.js +0 -1
  1271. package/examples/node_modules/caniuse-lite/data/regions/MT.js +0 -1
  1272. package/examples/node_modules/caniuse-lite/data/regions/MU.js +0 -1
  1273. package/examples/node_modules/caniuse-lite/data/regions/MV.js +0 -1
  1274. package/examples/node_modules/caniuse-lite/data/regions/MW.js +0 -1
  1275. package/examples/node_modules/caniuse-lite/data/regions/MX.js +0 -1
  1276. package/examples/node_modules/caniuse-lite/data/regions/MY.js +0 -1
  1277. package/examples/node_modules/caniuse-lite/data/regions/MZ.js +0 -1
  1278. package/examples/node_modules/caniuse-lite/data/regions/NA.js +0 -1
  1279. package/examples/node_modules/caniuse-lite/data/regions/NC.js +0 -1
  1280. package/examples/node_modules/caniuse-lite/data/regions/NE.js +0 -1
  1281. package/examples/node_modules/caniuse-lite/data/regions/NF.js +0 -1
  1282. package/examples/node_modules/caniuse-lite/data/regions/NG.js +0 -1
  1283. package/examples/node_modules/caniuse-lite/data/regions/NI.js +0 -1
  1284. package/examples/node_modules/caniuse-lite/data/regions/NL.js +0 -1
  1285. package/examples/node_modules/caniuse-lite/data/regions/NO.js +0 -1
  1286. package/examples/node_modules/caniuse-lite/data/regions/NP.js +0 -1
  1287. package/examples/node_modules/caniuse-lite/data/regions/NR.js +0 -1
  1288. package/examples/node_modules/caniuse-lite/data/regions/NU.js +0 -1
  1289. package/examples/node_modules/caniuse-lite/data/regions/NZ.js +0 -1
  1290. package/examples/node_modules/caniuse-lite/data/regions/OM.js +0 -1
  1291. package/examples/node_modules/caniuse-lite/data/regions/PA.js +0 -1
  1292. package/examples/node_modules/caniuse-lite/data/regions/PE.js +0 -1
  1293. package/examples/node_modules/caniuse-lite/data/regions/PF.js +0 -1
  1294. package/examples/node_modules/caniuse-lite/data/regions/PG.js +0 -1
  1295. package/examples/node_modules/caniuse-lite/data/regions/PH.js +0 -1
  1296. package/examples/node_modules/caniuse-lite/data/regions/PK.js +0 -1
  1297. package/examples/node_modules/caniuse-lite/data/regions/PL.js +0 -1
  1298. package/examples/node_modules/caniuse-lite/data/regions/PM.js +0 -1
  1299. package/examples/node_modules/caniuse-lite/data/regions/PN.js +0 -1
  1300. package/examples/node_modules/caniuse-lite/data/regions/PR.js +0 -1
  1301. package/examples/node_modules/caniuse-lite/data/regions/PS.js +0 -1
  1302. package/examples/node_modules/caniuse-lite/data/regions/PT.js +0 -1
  1303. package/examples/node_modules/caniuse-lite/data/regions/PW.js +0 -1
  1304. package/examples/node_modules/caniuse-lite/data/regions/PY.js +0 -1
  1305. package/examples/node_modules/caniuse-lite/data/regions/QA.js +0 -1
  1306. package/examples/node_modules/caniuse-lite/data/regions/RE.js +0 -1
  1307. package/examples/node_modules/caniuse-lite/data/regions/RO.js +0 -1
  1308. package/examples/node_modules/caniuse-lite/data/regions/RS.js +0 -1
  1309. package/examples/node_modules/caniuse-lite/data/regions/RU.js +0 -1
  1310. package/examples/node_modules/caniuse-lite/data/regions/RW.js +0 -1
  1311. package/examples/node_modules/caniuse-lite/data/regions/SA.js +0 -1
  1312. package/examples/node_modules/caniuse-lite/data/regions/SB.js +0 -1
  1313. package/examples/node_modules/caniuse-lite/data/regions/SC.js +0 -1
  1314. package/examples/node_modules/caniuse-lite/data/regions/SD.js +0 -1
  1315. package/examples/node_modules/caniuse-lite/data/regions/SE.js +0 -1
  1316. package/examples/node_modules/caniuse-lite/data/regions/SG.js +0 -1
  1317. package/examples/node_modules/caniuse-lite/data/regions/SH.js +0 -1
  1318. package/examples/node_modules/caniuse-lite/data/regions/SI.js +0 -1
  1319. package/examples/node_modules/caniuse-lite/data/regions/SK.js +0 -1
  1320. package/examples/node_modules/caniuse-lite/data/regions/SL.js +0 -1
  1321. package/examples/node_modules/caniuse-lite/data/regions/SM.js +0 -1
  1322. package/examples/node_modules/caniuse-lite/data/regions/SN.js +0 -1
  1323. package/examples/node_modules/caniuse-lite/data/regions/SO.js +0 -1
  1324. package/examples/node_modules/caniuse-lite/data/regions/SR.js +0 -1
  1325. package/examples/node_modules/caniuse-lite/data/regions/ST.js +0 -1
  1326. package/examples/node_modules/caniuse-lite/data/regions/SV.js +0 -1
  1327. package/examples/node_modules/caniuse-lite/data/regions/SY.js +0 -1
  1328. package/examples/node_modules/caniuse-lite/data/regions/SZ.js +0 -1
  1329. package/examples/node_modules/caniuse-lite/data/regions/TC.js +0 -1
  1330. package/examples/node_modules/caniuse-lite/data/regions/TD.js +0 -1
  1331. package/examples/node_modules/caniuse-lite/data/regions/TG.js +0 -1
  1332. package/examples/node_modules/caniuse-lite/data/regions/TH.js +0 -1
  1333. package/examples/node_modules/caniuse-lite/data/regions/TJ.js +0 -1
  1334. package/examples/node_modules/caniuse-lite/data/regions/TK.js +0 -1
  1335. package/examples/node_modules/caniuse-lite/data/regions/TL.js +0 -1
  1336. package/examples/node_modules/caniuse-lite/data/regions/TM.js +0 -1
  1337. package/examples/node_modules/caniuse-lite/data/regions/TN.js +0 -1
  1338. package/examples/node_modules/caniuse-lite/data/regions/TO.js +0 -1
  1339. package/examples/node_modules/caniuse-lite/data/regions/TR.js +0 -1
  1340. package/examples/node_modules/caniuse-lite/data/regions/TT.js +0 -1
  1341. package/examples/node_modules/caniuse-lite/data/regions/TV.js +0 -1
  1342. package/examples/node_modules/caniuse-lite/data/regions/TW.js +0 -1
  1343. package/examples/node_modules/caniuse-lite/data/regions/TZ.js +0 -1
  1344. package/examples/node_modules/caniuse-lite/data/regions/UA.js +0 -1
  1345. package/examples/node_modules/caniuse-lite/data/regions/UG.js +0 -1
  1346. package/examples/node_modules/caniuse-lite/data/regions/US.js +0 -1
  1347. package/examples/node_modules/caniuse-lite/data/regions/UY.js +0 -1
  1348. package/examples/node_modules/caniuse-lite/data/regions/UZ.js +0 -1
  1349. package/examples/node_modules/caniuse-lite/data/regions/VA.js +0 -1
  1350. package/examples/node_modules/caniuse-lite/data/regions/VC.js +0 -1
  1351. package/examples/node_modules/caniuse-lite/data/regions/VE.js +0 -1
  1352. package/examples/node_modules/caniuse-lite/data/regions/VG.js +0 -1
  1353. package/examples/node_modules/caniuse-lite/data/regions/VI.js +0 -1
  1354. package/examples/node_modules/caniuse-lite/data/regions/VN.js +0 -1
  1355. package/examples/node_modules/caniuse-lite/data/regions/VU.js +0 -1
  1356. package/examples/node_modules/caniuse-lite/data/regions/WF.js +0 -1
  1357. package/examples/node_modules/caniuse-lite/data/regions/WS.js +0 -1
  1358. package/examples/node_modules/caniuse-lite/data/regions/YE.js +0 -1
  1359. package/examples/node_modules/caniuse-lite/data/regions/YT.js +0 -1
  1360. package/examples/node_modules/caniuse-lite/data/regions/ZA.js +0 -1
  1361. package/examples/node_modules/caniuse-lite/data/regions/ZM.js +0 -1
  1362. package/examples/node_modules/caniuse-lite/data/regions/ZW.js +0 -1
  1363. package/examples/node_modules/caniuse-lite/data/regions/alt-af.js +0 -1
  1364. package/examples/node_modules/caniuse-lite/data/regions/alt-an.js +0 -1
  1365. package/examples/node_modules/caniuse-lite/data/regions/alt-as.js +0 -1
  1366. package/examples/node_modules/caniuse-lite/data/regions/alt-eu.js +0 -1
  1367. package/examples/node_modules/caniuse-lite/data/regions/alt-na.js +0 -1
  1368. package/examples/node_modules/caniuse-lite/data/regions/alt-oc.js +0 -1
  1369. package/examples/node_modules/caniuse-lite/data/regions/alt-sa.js +0 -1
  1370. package/examples/node_modules/caniuse-lite/data/regions/alt-ww.js +0 -1
  1371. package/examples/node_modules/caniuse-lite/dist/lib/statuses.js +0 -9
  1372. package/examples/node_modules/caniuse-lite/dist/lib/supported.js +0 -9
  1373. package/examples/node_modules/caniuse-lite/dist/unpacker/agents.js +0 -47
  1374. package/examples/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +0 -1
  1375. package/examples/node_modules/caniuse-lite/dist/unpacker/browsers.js +0 -1
  1376. package/examples/node_modules/caniuse-lite/dist/unpacker/feature.js +0 -48
  1377. package/examples/node_modules/caniuse-lite/dist/unpacker/features.js +0 -6
  1378. package/examples/node_modules/caniuse-lite/dist/unpacker/index.js +0 -4
  1379. package/examples/node_modules/caniuse-lite/dist/unpacker/region.js +0 -22
  1380. package/examples/node_modules/caniuse-lite/package.json +0 -34
  1381. package/examples/node_modules/chrome-trace-event/CHANGES.md +0 -26
  1382. package/examples/node_modules/chrome-trace-event/LICENSE.txt +0 -23
  1383. package/examples/node_modules/chrome-trace-event/README.md +0 -31
  1384. package/examples/node_modules/chrome-trace-event/dist/trace-event.d.ts +0 -52
  1385. package/examples/node_modules/chrome-trace-event/dist/trace-event.js +0 -170
  1386. package/examples/node_modules/chrome-trace-event/dist/trace-event.js.map +0 -1
  1387. package/examples/node_modules/chrome-trace-event/package.json +0 -38
  1388. package/examples/node_modules/clone-deep/LICENSE +0 -21
  1389. package/examples/node_modules/clone-deep/README.md +0 -106
  1390. package/examples/node_modules/clone-deep/index.js +0 -49
  1391. package/examples/node_modules/clone-deep/package.json +0 -81
  1392. package/examples/node_modules/colorette/LICENSE.md +0 -7
  1393. package/examples/node_modules/colorette/README.md +0 -134
  1394. package/examples/node_modules/colorette/index.cjs +0 -215
  1395. package/examples/node_modules/colorette/index.d.ts +0 -93
  1396. package/examples/node_modules/colorette/index.js +0 -147
  1397. package/examples/node_modules/colorette/package.json +0 -39
  1398. package/examples/node_modules/commander/CHANGELOG.md +0 -419
  1399. package/examples/node_modules/commander/LICENSE +0 -22
  1400. package/examples/node_modules/commander/Readme.md +0 -428
  1401. package/examples/node_modules/commander/index.js +0 -1224
  1402. package/examples/node_modules/commander/package.json +0 -38
  1403. package/examples/node_modules/commander/typings/index.d.ts +0 -310
  1404. package/examples/node_modules/cross-spawn/CHANGELOG.md +0 -130
  1405. package/examples/node_modules/cross-spawn/LICENSE +0 -21
  1406. package/examples/node_modules/cross-spawn/README.md +0 -96
  1407. package/examples/node_modules/cross-spawn/index.js +0 -39
  1408. package/examples/node_modules/cross-spawn/lib/enoent.js +0 -59
  1409. package/examples/node_modules/cross-spawn/lib/parse.js +0 -91
  1410. package/examples/node_modules/cross-spawn/lib/util/escape.js +0 -45
  1411. package/examples/node_modules/cross-spawn/lib/util/readShebang.js +0 -23
  1412. package/examples/node_modules/cross-spawn/lib/util/resolveCommand.js +0 -52
  1413. package/examples/node_modules/cross-spawn/package.json +0 -73
  1414. package/examples/node_modules/electron-to-chromium/CHANGELOG.md +0 -14
  1415. package/examples/node_modules/electron-to-chromium/LICENSE +0 -5
  1416. package/examples/node_modules/electron-to-chromium/README.md +0 -186
  1417. package/examples/node_modules/electron-to-chromium/chromium-versions.js +0 -45
  1418. package/examples/node_modules/electron-to-chromium/chromium-versions.json +0 -1
  1419. package/examples/node_modules/electron-to-chromium/full-chromium-versions.js +0 -1833
  1420. package/examples/node_modules/electron-to-chromium/full-chromium-versions.json +0 -1
  1421. package/examples/node_modules/electron-to-chromium/full-versions.js +0 -1335
  1422. package/examples/node_modules/electron-to-chromium/full-versions.json +0 -1
  1423. package/examples/node_modules/electron-to-chromium/index.js +0 -36
  1424. package/examples/node_modules/electron-to-chromium/package.json +0 -42
  1425. package/examples/node_modules/electron-to-chromium/versions.js +0 -89
  1426. package/examples/node_modules/electron-to-chromium/versions.json +0 -1
  1427. package/examples/node_modules/enhanced-resolve/LICENSE +0 -20
  1428. package/examples/node_modules/enhanced-resolve/README.md +0 -167
  1429. package/examples/node_modules/enhanced-resolve/lib/AliasFieldPlugin.js +0 -96
  1430. package/examples/node_modules/enhanced-resolve/lib/AliasPlugin.js +0 -120
  1431. package/examples/node_modules/enhanced-resolve/lib/AppendPlugin.js +0 -47
  1432. package/examples/node_modules/enhanced-resolve/lib/CachedInputFileSystem.js +0 -477
  1433. package/examples/node_modules/enhanced-resolve/lib/CloneBasenamePlugin.js +0 -45
  1434. package/examples/node_modules/enhanced-resolve/lib/ConditionalPlugin.js +0 -59
  1435. package/examples/node_modules/enhanced-resolve/lib/DescriptionFilePlugin.js +0 -96
  1436. package/examples/node_modules/enhanced-resolve/lib/DescriptionFileUtils.js +0 -170
  1437. package/examples/node_modules/enhanced-resolve/lib/DirectoryExistsPlugin.js +0 -63
  1438. package/examples/node_modules/enhanced-resolve/lib/ExportsFieldPlugin.js +0 -149
  1439. package/examples/node_modules/enhanced-resolve/lib/FileExistsPlugin.js +0 -58
  1440. package/examples/node_modules/enhanced-resolve/lib/ImportsFieldPlugin.js +0 -171
  1441. package/examples/node_modules/enhanced-resolve/lib/JoinRequestPartPlugin.js +0 -64
  1442. package/examples/node_modules/enhanced-resolve/lib/JoinRequestPlugin.js +0 -41
  1443. package/examples/node_modules/enhanced-resolve/lib/LogInfoPlugin.js +0 -50
  1444. package/examples/node_modules/enhanced-resolve/lib/MainFieldPlugin.js +0 -81
  1445. package/examples/node_modules/enhanced-resolve/lib/ModulesInHierachicDirectoriesPlugin.js +0 -9
  1446. package/examples/node_modules/enhanced-resolve/lib/ModulesInHierarchicalDirectoriesPlugin.js +0 -80
  1447. package/examples/node_modules/enhanced-resolve/lib/ModulesInRootPlugin.js +0 -47
  1448. package/examples/node_modules/enhanced-resolve/lib/NextPlugin.js +0 -33
  1449. package/examples/node_modules/enhanced-resolve/lib/ParsePlugin.js +0 -74
  1450. package/examples/node_modules/enhanced-resolve/lib/PnpPlugin.js +0 -103
  1451. package/examples/node_modules/enhanced-resolve/lib/Resolver.js +0 -500
  1452. package/examples/node_modules/enhanced-resolve/lib/ResolverFactory.js +0 -661
  1453. package/examples/node_modules/enhanced-resolve/lib/RestrictionsPlugin.js +0 -65
  1454. package/examples/node_modules/enhanced-resolve/lib/ResultPlugin.js +0 -42
  1455. package/examples/node_modules/enhanced-resolve/lib/RootsPlugin.js +0 -62
  1456. package/examples/node_modules/enhanced-resolve/lib/SelfReferencePlugin.js +0 -80
  1457. package/examples/node_modules/enhanced-resolve/lib/SymlinkPlugin.js +0 -88
  1458. package/examples/node_modules/enhanced-resolve/lib/SyncAsyncFileSystemDecorator.js +0 -95
  1459. package/examples/node_modules/enhanced-resolve/lib/TryNextPlugin.js +0 -41
  1460. package/examples/node_modules/enhanced-resolve/lib/UnsafeCachePlugin.js +0 -99
  1461. package/examples/node_modules/enhanced-resolve/lib/UseFilePlugin.js +0 -49
  1462. package/examples/node_modules/enhanced-resolve/lib/createInnerContext.js +0 -37
  1463. package/examples/node_modules/enhanced-resolve/lib/forEachBail.js +0 -25
  1464. package/examples/node_modules/enhanced-resolve/lib/getInnerRequest.js +0 -27
  1465. package/examples/node_modules/enhanced-resolve/lib/getPaths.js +0 -37
  1466. package/examples/node_modules/enhanced-resolve/lib/index.js +0 -131
  1467. package/examples/node_modules/enhanced-resolve/lib/util/entrypoints.js +0 -667
  1468. package/examples/node_modules/enhanced-resolve/lib/util/identifier.js +0 -26
  1469. package/examples/node_modules/enhanced-resolve/lib/util/path.js +0 -221
  1470. package/examples/node_modules/enhanced-resolve/lib/util/process-browser.js +0 -16
  1471. package/examples/node_modules/enhanced-resolve/package.json +0 -70
  1472. package/examples/node_modules/enhanced-resolve/types.d.ts +0 -506
  1473. package/examples/node_modules/envinfo/LICENSE +0 -21
  1474. package/examples/node_modules/envinfo/README.md +0 -285
  1475. package/examples/node_modules/envinfo/dist/cli.js +0 -2
  1476. package/examples/node_modules/envinfo/dist/envinfo.js +0 -1
  1477. package/examples/node_modules/envinfo/package.json +0 -96
  1478. package/examples/node_modules/es-module-lexer/LICENSE +0 -10
  1479. package/examples/node_modules/es-module-lexer/README.md +0 -251
  1480. package/examples/node_modules/es-module-lexer/dist/lexer.asm.js +0 -1
  1481. package/examples/node_modules/es-module-lexer/dist/lexer.cjs +0 -1
  1482. package/examples/node_modules/es-module-lexer/dist/lexer.js +0 -2
  1483. package/examples/node_modules/es-module-lexer/lexer.js +0 -899
  1484. package/examples/node_modules/es-module-lexer/package.json +0 -53
  1485. package/examples/node_modules/es-module-lexer/types/lexer.d.ts +0 -86
  1486. package/examples/node_modules/escalade/dist/index.js +0 -22
  1487. package/examples/node_modules/escalade/dist/index.mjs +0 -22
  1488. package/examples/node_modules/escalade/index.d.ts +0 -3
  1489. package/examples/node_modules/escalade/license +0 -9
  1490. package/examples/node_modules/escalade/package.json +0 -61
  1491. package/examples/node_modules/escalade/readme.md +0 -211
  1492. package/examples/node_modules/escalade/sync/index.d.ts +0 -2
  1493. package/examples/node_modules/escalade/sync/index.js +0 -18
  1494. package/examples/node_modules/escalade/sync/index.mjs +0 -18
  1495. package/examples/node_modules/eslint-scope/CHANGELOG.md +0 -70
  1496. package/examples/node_modules/eslint-scope/LICENSE +0 -22
  1497. package/examples/node_modules/eslint-scope/README.md +0 -54
  1498. package/examples/node_modules/eslint-scope/lib/definition.js +0 -86
  1499. package/examples/node_modules/eslint-scope/lib/index.js +0 -165
  1500. package/examples/node_modules/eslint-scope/lib/pattern-visitor.js +0 -152
  1501. package/examples/node_modules/eslint-scope/lib/reference.js +0 -167
  1502. package/examples/node_modules/eslint-scope/lib/referencer.js +0 -629
  1503. package/examples/node_modules/eslint-scope/lib/scope-manager.js +0 -247
  1504. package/examples/node_modules/eslint-scope/lib/scope.js +0 -748
  1505. package/examples/node_modules/eslint-scope/lib/variable.js +0 -88
  1506. package/examples/node_modules/eslint-scope/package.json +0 -48
  1507. package/examples/node_modules/esrecurse/.babelrc +0 -3
  1508. package/examples/node_modules/esrecurse/README.md +0 -171
  1509. package/examples/node_modules/esrecurse/esrecurse.js +0 -117
  1510. package/examples/node_modules/esrecurse/gulpfile.babel.js +0 -92
  1511. package/examples/node_modules/esrecurse/node_modules/estraverse/.jshintrc +0 -16
  1512. package/examples/node_modules/esrecurse/node_modules/estraverse/LICENSE.BSD +0 -19
  1513. package/examples/node_modules/esrecurse/node_modules/estraverse/README.md +0 -153
  1514. package/examples/node_modules/esrecurse/node_modules/estraverse/estraverse.js +0 -805
  1515. package/examples/node_modules/esrecurse/node_modules/estraverse/gulpfile.js +0 -70
  1516. package/examples/node_modules/esrecurse/node_modules/estraverse/package.json +0 -40
  1517. package/examples/node_modules/esrecurse/package.json +0 -52
  1518. package/examples/node_modules/estraverse/.jshintrc +0 -16
  1519. package/examples/node_modules/estraverse/LICENSE.BSD +0 -19
  1520. package/examples/node_modules/estraverse/README.md +0 -153
  1521. package/examples/node_modules/estraverse/estraverse.js +0 -782
  1522. package/examples/node_modules/estraverse/gulpfile.js +0 -70
  1523. package/examples/node_modules/estraverse/package.json +0 -40
  1524. package/examples/node_modules/events/.airtap.yml +0 -15
  1525. package/examples/node_modules/events/.github/FUNDING.yml +0 -12
  1526. package/examples/node_modules/events/.travis.yml +0 -18
  1527. package/examples/node_modules/events/History.md +0 -118
  1528. package/examples/node_modules/events/LICENSE +0 -22
  1529. package/examples/node_modules/events/Readme.md +0 -50
  1530. package/examples/node_modules/events/events.js +0 -497
  1531. package/examples/node_modules/events/package.json +0 -37
  1532. package/examples/node_modules/events/security.md +0 -10
  1533. package/examples/node_modules/events/tests/add-listeners.js +0 -111
  1534. package/examples/node_modules/events/tests/check-listener-leaks.js +0 -101
  1535. package/examples/node_modules/events/tests/common.js +0 -104
  1536. package/examples/node_modules/events/tests/errors.js +0 -13
  1537. package/examples/node_modules/events/tests/events-list.js +0 -28
  1538. package/examples/node_modules/events/tests/events-once.js +0 -234
  1539. package/examples/node_modules/events/tests/index.js +0 -64
  1540. package/examples/node_modules/events/tests/legacy-compat.js +0 -16
  1541. package/examples/node_modules/events/tests/listener-count.js +0 -37
  1542. package/examples/node_modules/events/tests/listeners-side-effects.js +0 -56
  1543. package/examples/node_modules/events/tests/listeners.js +0 -168
  1544. package/examples/node_modules/events/tests/max-listeners.js +0 -47
  1545. package/examples/node_modules/events/tests/method-names.js +0 -35
  1546. package/examples/node_modules/events/tests/modify-in-emit.js +0 -90
  1547. package/examples/node_modules/events/tests/num-args.js +0 -60
  1548. package/examples/node_modules/events/tests/once.js +0 -83
  1549. package/examples/node_modules/events/tests/prepend.js +0 -31
  1550. package/examples/node_modules/events/tests/remove-all-listeners.js +0 -133
  1551. package/examples/node_modules/events/tests/remove-listeners.js +0 -212
  1552. package/examples/node_modules/events/tests/set-max-listeners-side-effects.js +0 -31
  1553. package/examples/node_modules/events/tests/special-event-names.js +0 -45
  1554. package/examples/node_modules/events/tests/subclass.js +0 -66
  1555. package/examples/node_modules/events/tests/symbols.js +0 -25
  1556. package/examples/node_modules/execa/index.d.ts +0 -564
  1557. package/examples/node_modules/execa/index.js +0 -268
  1558. package/examples/node_modules/execa/lib/command.js +0 -52
  1559. package/examples/node_modules/execa/lib/error.js +0 -88
  1560. package/examples/node_modules/execa/lib/kill.js +0 -115
  1561. package/examples/node_modules/execa/lib/promise.js +0 -46
  1562. package/examples/node_modules/execa/lib/stdio.js +0 -52
  1563. package/examples/node_modules/execa/lib/stream.js +0 -97
  1564. package/examples/node_modules/execa/license +0 -9
  1565. package/examples/node_modules/execa/package.json +0 -74
  1566. package/examples/node_modules/execa/readme.md +0 -663
  1567. package/examples/node_modules/fast-deep-equal/LICENSE +0 -21
  1568. package/examples/node_modules/fast-deep-equal/README.md +0 -96
  1569. package/examples/node_modules/fast-deep-equal/es6/index.d.ts +0 -2
  1570. package/examples/node_modules/fast-deep-equal/es6/index.js +0 -72
  1571. package/examples/node_modules/fast-deep-equal/es6/react.d.ts +0 -2
  1572. package/examples/node_modules/fast-deep-equal/es6/react.js +0 -79
  1573. package/examples/node_modules/fast-deep-equal/index.d.ts +0 -4
  1574. package/examples/node_modules/fast-deep-equal/index.js +0 -46
  1575. package/examples/node_modules/fast-deep-equal/package.json +0 -61
  1576. package/examples/node_modules/fast-deep-equal/react.d.ts +0 -2
  1577. package/examples/node_modules/fast-deep-equal/react.js +0 -53
  1578. package/examples/node_modules/fast-json-stable-stringify/.eslintrc.yml +0 -26
  1579. package/examples/node_modules/fast-json-stable-stringify/.github/FUNDING.yml +0 -1
  1580. package/examples/node_modules/fast-json-stable-stringify/.travis.yml +0 -8
  1581. package/examples/node_modules/fast-json-stable-stringify/LICENSE +0 -21
  1582. package/examples/node_modules/fast-json-stable-stringify/README.md +0 -131
  1583. package/examples/node_modules/fast-json-stable-stringify/benchmark/index.js +0 -31
  1584. package/examples/node_modules/fast-json-stable-stringify/benchmark/test.json +0 -137
  1585. package/examples/node_modules/fast-json-stable-stringify/example/key_cmp.js +0 -7
  1586. package/examples/node_modules/fast-json-stable-stringify/example/nested.js +0 -3
  1587. package/examples/node_modules/fast-json-stable-stringify/example/str.js +0 -3
  1588. package/examples/node_modules/fast-json-stable-stringify/example/value_cmp.js +0 -7
  1589. package/examples/node_modules/fast-json-stable-stringify/index.d.ts +0 -4
  1590. package/examples/node_modules/fast-json-stable-stringify/index.js +0 -59
  1591. package/examples/node_modules/fast-json-stable-stringify/package.json +0 -52
  1592. package/examples/node_modules/fast-json-stable-stringify/test/cmp.js +0 -13
  1593. package/examples/node_modules/fast-json-stable-stringify/test/nested.js +0 -44
  1594. package/examples/node_modules/fast-json-stable-stringify/test/str.js +0 -46
  1595. package/examples/node_modules/fast-json-stable-stringify/test/to-json.js +0 -22
  1596. package/examples/node_modules/fastest-levenshtein/.eslintrc.js +0 -27
  1597. package/examples/node_modules/fastest-levenshtein/.prettierrc +0 -4
  1598. package/examples/node_modules/fastest-levenshtein/.travis.yml +0 -17
  1599. package/examples/node_modules/fastest-levenshtein/LICENSE.md +0 -21
  1600. package/examples/node_modules/fastest-levenshtein/README.md +0 -55
  1601. package/examples/node_modules/fastest-levenshtein/index.d.ts +0 -2
  1602. package/examples/node_modules/fastest-levenshtein/index.js +0 -147
  1603. package/examples/node_modules/fastest-levenshtein/package.json +0 -63
  1604. package/examples/node_modules/fastest-levenshtein/test.js +0 -64
  1605. package/examples/node_modules/find-up/index.d.ts +0 -137
  1606. package/examples/node_modules/find-up/index.js +0 -89
  1607. package/examples/node_modules/find-up/license +0 -9
  1608. package/examples/node_modules/find-up/package.json +0 -53
  1609. package/examples/node_modules/find-up/readme.md +0 -156
  1610. package/examples/node_modules/function-bind/.editorconfig +0 -20
  1611. package/examples/node_modules/function-bind/.eslintrc +0 -15
  1612. package/examples/node_modules/function-bind/.jscs.json +0 -176
  1613. package/examples/node_modules/function-bind/.travis.yml +0 -168
  1614. package/examples/node_modules/function-bind/LICENSE +0 -20
  1615. package/examples/node_modules/function-bind/README.md +0 -48
  1616. package/examples/node_modules/function-bind/implementation.js +0 -52
  1617. package/examples/node_modules/function-bind/index.js +0 -5
  1618. package/examples/node_modules/function-bind/package.json +0 -63
  1619. package/examples/node_modules/function-bind/test/.eslintrc +0 -9
  1620. package/examples/node_modules/function-bind/test/index.js +0 -252
  1621. package/examples/node_modules/get-stream/buffer-stream.js +0 -52
  1622. package/examples/node_modules/get-stream/index.d.ts +0 -105
  1623. package/examples/node_modules/get-stream/index.js +0 -61
  1624. package/examples/node_modules/get-stream/license +0 -9
  1625. package/examples/node_modules/get-stream/package.json +0 -47
  1626. package/examples/node_modules/get-stream/readme.md +0 -124
  1627. package/examples/node_modules/glob-to-regexp/.travis.yml +0 -4
  1628. package/examples/node_modules/glob-to-regexp/README.md +0 -75
  1629. package/examples/node_modules/glob-to-regexp/index.js +0 -130
  1630. package/examples/node_modules/glob-to-regexp/package.json +0 -23
  1631. package/examples/node_modules/glob-to-regexp/test.js +0 -235
  1632. package/examples/node_modules/graceful-fs/LICENSE +0 -15
  1633. package/examples/node_modules/graceful-fs/README.md +0 -143
  1634. package/examples/node_modules/graceful-fs/clone.js +0 -23
  1635. package/examples/node_modules/graceful-fs/graceful-fs.js +0 -429
  1636. package/examples/node_modules/graceful-fs/legacy-streams.js +0 -118
  1637. package/examples/node_modules/graceful-fs/package.json +0 -50
  1638. package/examples/node_modules/graceful-fs/polyfills.js +0 -348
  1639. package/examples/node_modules/has/LICENSE-MIT +0 -22
  1640. package/examples/node_modules/has/README.md +0 -18
  1641. package/examples/node_modules/has/package.json +0 -48
  1642. package/examples/node_modules/has/src/index.js +0 -5
  1643. package/examples/node_modules/has/test/index.js +0 -10
  1644. package/examples/node_modules/has-flag/index.d.ts +0 -39
  1645. package/examples/node_modules/has-flag/index.js +0 -8
  1646. package/examples/node_modules/has-flag/license +0 -9
  1647. package/examples/node_modules/has-flag/package.json +0 -46
  1648. package/examples/node_modules/has-flag/readme.md +0 -89
  1649. package/examples/node_modules/human-signals/CHANGELOG.md +0 -11
  1650. package/examples/node_modules/human-signals/LICENSE +0 -201
  1651. package/examples/node_modules/human-signals/README.md +0 -165
  1652. package/examples/node_modules/human-signals/build/src/core.js +0 -273
  1653. package/examples/node_modules/human-signals/build/src/core.js.map +0 -1
  1654. package/examples/node_modules/human-signals/build/src/main.d.ts +0 -52
  1655. package/examples/node_modules/human-signals/build/src/main.js +0 -71
  1656. package/examples/node_modules/human-signals/build/src/main.js.map +0 -1
  1657. package/examples/node_modules/human-signals/build/src/realtime.js +0 -19
  1658. package/examples/node_modules/human-signals/build/src/realtime.js.map +0 -1
  1659. package/examples/node_modules/human-signals/build/src/signals.js +0 -35
  1660. package/examples/node_modules/human-signals/build/src/signals.js.map +0 -1
  1661. package/examples/node_modules/human-signals/package.json +0 -64
  1662. package/examples/node_modules/import-local/fixtures/cli.js +0 -7
  1663. package/examples/node_modules/import-local/index.js +0 -24
  1664. package/examples/node_modules/import-local/license +0 -9
  1665. package/examples/node_modules/import-local/package.json +0 -52
  1666. package/examples/node_modules/import-local/readme.md +0 -37
  1667. package/examples/node_modules/interpret/CHANGELOG +0 -115
  1668. package/examples/node_modules/interpret/LICENSE +0 -22
  1669. package/examples/node_modules/interpret/README.md +0 -229
  1670. package/examples/node_modules/interpret/index.js +0 -211
  1671. package/examples/node_modules/interpret/mjs-stub.js +0 -1
  1672. package/examples/node_modules/interpret/package.json +0 -75
  1673. package/examples/node_modules/is-core-module/.eslintrc +0 -17
  1674. package/examples/node_modules/is-core-module/.nycrc +0 -9
  1675. package/examples/node_modules/is-core-module/CHANGELOG.md +0 -127
  1676. package/examples/node_modules/is-core-module/LICENSE +0 -20
  1677. package/examples/node_modules/is-core-module/README.md +0 -40
  1678. package/examples/node_modules/is-core-module/core.json +0 -152
  1679. package/examples/node_modules/is-core-module/index.js +0 -69
  1680. package/examples/node_modules/is-core-module/package.json +0 -69
  1681. package/examples/node_modules/is-core-module/test/index.js +0 -130
  1682. package/examples/node_modules/is-plain-object/LICENSE +0 -21
  1683. package/examples/node_modules/is-plain-object/README.md +0 -104
  1684. package/examples/node_modules/is-plain-object/index.d.ts +0 -5
  1685. package/examples/node_modules/is-plain-object/index.js +0 -37
  1686. package/examples/node_modules/is-plain-object/package.json +0 -79
  1687. package/examples/node_modules/is-stream/index.d.ts +0 -79
  1688. package/examples/node_modules/is-stream/index.js +0 -28
  1689. package/examples/node_modules/is-stream/license +0 -9
  1690. package/examples/node_modules/is-stream/package.json +0 -42
  1691. package/examples/node_modules/is-stream/readme.md +0 -60
  1692. package/examples/node_modules/isexe/LICENSE +0 -15
  1693. package/examples/node_modules/isexe/README.md +0 -51
  1694. package/examples/node_modules/isexe/index.js +0 -57
  1695. package/examples/node_modules/isexe/mode.js +0 -41
  1696. package/examples/node_modules/isexe/package.json +0 -31
  1697. package/examples/node_modules/isexe/test/basic.js +0 -221
  1698. package/examples/node_modules/isexe/windows.js +0 -42
  1699. package/examples/node_modules/isobject/LICENSE +0 -21
  1700. package/examples/node_modules/isobject/README.md +0 -122
  1701. package/examples/node_modules/isobject/index.d.ts +0 -5
  1702. package/examples/node_modules/isobject/index.js +0 -12
  1703. package/examples/node_modules/isobject/package.json +0 -74
  1704. package/examples/node_modules/jest-worker/LICENSE +0 -21
  1705. package/examples/node_modules/jest-worker/README.md +0 -247
  1706. package/examples/node_modules/jest-worker/build/Farm.d.ts +0 -29
  1707. package/examples/node_modules/jest-worker/build/Farm.js +0 -206
  1708. package/examples/node_modules/jest-worker/build/FifoQueue.d.ts +0 -18
  1709. package/examples/node_modules/jest-worker/build/FifoQueue.js +0 -171
  1710. package/examples/node_modules/jest-worker/build/PriorityQueue.d.ts +0 -41
  1711. package/examples/node_modules/jest-worker/build/PriorityQueue.js +0 -188
  1712. package/examples/node_modules/jest-worker/build/WorkerPool.d.ts +0 -13
  1713. package/examples/node_modules/jest-worker/build/WorkerPool.js +0 -49
  1714. package/examples/node_modules/jest-worker/build/base/BaseWorkerPool.d.ts +0 -21
  1715. package/examples/node_modules/jest-worker/build/base/BaseWorkerPool.js +0 -201
  1716. package/examples/node_modules/jest-worker/build/index.d.ts +0 -49
  1717. package/examples/node_modules/jest-worker/build/index.js +0 -223
  1718. package/examples/node_modules/jest-worker/build/types.d.ts +0 -143
  1719. package/examples/node_modules/jest-worker/build/types.js +0 -39
  1720. package/examples/node_modules/jest-worker/build/workers/ChildProcessWorker.d.ts +0 -51
  1721. package/examples/node_modules/jest-worker/build/workers/ChildProcessWorker.js +0 -333
  1722. package/examples/node_modules/jest-worker/build/workers/NodeThreadsWorker.d.ts +0 -34
  1723. package/examples/node_modules/jest-worker/build/workers/NodeThreadsWorker.js +0 -344
  1724. package/examples/node_modules/jest-worker/build/workers/messageParent.d.ts +0 -8
  1725. package/examples/node_modules/jest-worker/build/workers/messageParent.js +0 -38
  1726. package/examples/node_modules/jest-worker/build/workers/processChild.d.ts +0 -7
  1727. package/examples/node_modules/jest-worker/build/workers/processChild.js +0 -148
  1728. package/examples/node_modules/jest-worker/build/workers/threadChild.d.ts +0 -7
  1729. package/examples/node_modules/jest-worker/build/workers/threadChild.js +0 -159
  1730. package/examples/node_modules/jest-worker/package.json +0 -38
  1731. package/examples/node_modules/json-parse-better-errors/CHANGELOG.md +0 -46
  1732. package/examples/node_modules/json-parse-better-errors/LICENSE.md +0 -7
  1733. package/examples/node_modules/json-parse-better-errors/README.md +0 -46
  1734. package/examples/node_modules/json-parse-better-errors/index.js +0 -38
  1735. package/examples/node_modules/json-parse-better-errors/package.json +0 -45
  1736. package/examples/node_modules/json-schema-traverse/.eslintrc.yml +0 -27
  1737. package/examples/node_modules/json-schema-traverse/.travis.yml +0 -8
  1738. package/examples/node_modules/json-schema-traverse/LICENSE +0 -21
  1739. package/examples/node_modules/json-schema-traverse/README.md +0 -83
  1740. package/examples/node_modules/json-schema-traverse/index.js +0 -89
  1741. package/examples/node_modules/json-schema-traverse/package.json +0 -43
  1742. package/examples/node_modules/json-schema-traverse/spec/.eslintrc.yml +0 -6
  1743. package/examples/node_modules/json-schema-traverse/spec/fixtures/schema.js +0 -125
  1744. package/examples/node_modules/json-schema-traverse/spec/index.spec.js +0 -171
  1745. package/examples/node_modules/kind-of/CHANGELOG.md +0 -160
  1746. package/examples/node_modules/kind-of/LICENSE +0 -21
  1747. package/examples/node_modules/kind-of/README.md +0 -367
  1748. package/examples/node_modules/kind-of/index.js +0 -129
  1749. package/examples/node_modules/kind-of/package.json +0 -88
  1750. package/examples/node_modules/loader-runner/LICENSE +0 -21
  1751. package/examples/node_modules/loader-runner/README.md +0 -53
  1752. package/examples/node_modules/loader-runner/lib/LoaderLoadingError.js +0 -11
  1753. package/examples/node_modules/loader-runner/lib/LoaderRunner.js +0 -415
  1754. package/examples/node_modules/loader-runner/lib/loadLoader.js +0 -54
  1755. package/examples/node_modules/loader-runner/package.json +0 -45
  1756. package/examples/node_modules/locate-path/index.d.ts +0 -83
  1757. package/examples/node_modules/locate-path/index.js +0 -65
  1758. package/examples/node_modules/locate-path/license +0 -9
  1759. package/examples/node_modules/locate-path/package.json +0 -45
  1760. package/examples/node_modules/locate-path/readme.md +0 -122
  1761. package/examples/node_modules/merge-stream/LICENSE +0 -21
  1762. package/examples/node_modules/merge-stream/README.md +0 -78
  1763. package/examples/node_modules/merge-stream/index.js +0 -41
  1764. package/examples/node_modules/merge-stream/package.json +0 -19
  1765. package/examples/node_modules/mime-db/HISTORY.md +0 -507
  1766. package/examples/node_modules/mime-db/LICENSE +0 -23
  1767. package/examples/node_modules/mime-db/README.md +0 -100
  1768. package/examples/node_modules/mime-db/db.json +0 -8519
  1769. package/examples/node_modules/mime-db/index.js +0 -12
  1770. package/examples/node_modules/mime-db/package.json +0 -60
  1771. package/examples/node_modules/mime-types/HISTORY.md +0 -397
  1772. package/examples/node_modules/mime-types/LICENSE +0 -23
  1773. package/examples/node_modules/mime-types/README.md +0 -113
  1774. package/examples/node_modules/mime-types/index.js +0 -188
  1775. package/examples/node_modules/mime-types/package.json +0 -44
  1776. package/examples/node_modules/mimic-fn/index.d.ts +0 -54
  1777. package/examples/node_modules/mimic-fn/index.js +0 -13
  1778. package/examples/node_modules/mimic-fn/license +0 -9
  1779. package/examples/node_modules/mimic-fn/package.json +0 -42
  1780. package/examples/node_modules/mimic-fn/readme.md +0 -69
  1781. package/examples/node_modules/neo-async/LICENSE +0 -22
  1782. package/examples/node_modules/neo-async/README.md +0 -273
  1783. package/examples/node_modules/neo-async/all.js +0 -3
  1784. package/examples/node_modules/neo-async/allLimit.js +0 -3
  1785. package/examples/node_modules/neo-async/allSeries.js +0 -3
  1786. package/examples/node_modules/neo-async/angelFall.js +0 -3
  1787. package/examples/node_modules/neo-async/any.js +0 -3
  1788. package/examples/node_modules/neo-async/anyLimit.js +0 -3
  1789. package/examples/node_modules/neo-async/anySeries.js +0 -3
  1790. package/examples/node_modules/neo-async/apply.js +0 -3
  1791. package/examples/node_modules/neo-async/applyEach.js +0 -3
  1792. package/examples/node_modules/neo-async/applyEachSeries.js +0 -3
  1793. package/examples/node_modules/neo-async/async.js +0 -9184
  1794. package/examples/node_modules/neo-async/async.min.js +0 -80
  1795. package/examples/node_modules/neo-async/asyncify.js +0 -3
  1796. package/examples/node_modules/neo-async/auto.js +0 -3
  1797. package/examples/node_modules/neo-async/autoInject.js +0 -3
  1798. package/examples/node_modules/neo-async/cargo.js +0 -3
  1799. package/examples/node_modules/neo-async/compose.js +0 -3
  1800. package/examples/node_modules/neo-async/concat.js +0 -3
  1801. package/examples/node_modules/neo-async/concatLimit.js +0 -3
  1802. package/examples/node_modules/neo-async/concatSeries.js +0 -3
  1803. package/examples/node_modules/neo-async/constant.js +0 -3
  1804. package/examples/node_modules/neo-async/createLogger.js +0 -3
  1805. package/examples/node_modules/neo-async/detect.js +0 -3
  1806. package/examples/node_modules/neo-async/detectLimit.js +0 -3
  1807. package/examples/node_modules/neo-async/detectSeries.js +0 -3
  1808. package/examples/node_modules/neo-async/dir.js +0 -3
  1809. package/examples/node_modules/neo-async/doDuring.js +0 -3
  1810. package/examples/node_modules/neo-async/doUntil.js +0 -3
  1811. package/examples/node_modules/neo-async/doWhilst.js +0 -3
  1812. package/examples/node_modules/neo-async/during.js +0 -3
  1813. package/examples/node_modules/neo-async/each.js +0 -3
  1814. package/examples/node_modules/neo-async/eachLimit.js +0 -3
  1815. package/examples/node_modules/neo-async/eachOf.js +0 -3
  1816. package/examples/node_modules/neo-async/eachOfLimit.js +0 -3
  1817. package/examples/node_modules/neo-async/eachOfSeries.js +0 -3
  1818. package/examples/node_modules/neo-async/eachSeries.js +0 -3
  1819. package/examples/node_modules/neo-async/ensureAsync.js +0 -3
  1820. package/examples/node_modules/neo-async/every.js +0 -3
  1821. package/examples/node_modules/neo-async/everyLimit.js +0 -3
  1822. package/examples/node_modules/neo-async/everySeries.js +0 -3
  1823. package/examples/node_modules/neo-async/fast.js +0 -3
  1824. package/examples/node_modules/neo-async/filter.js +0 -3
  1825. package/examples/node_modules/neo-async/filterLimit.js +0 -3
  1826. package/examples/node_modules/neo-async/filterSeries.js +0 -3
  1827. package/examples/node_modules/neo-async/find.js +0 -3
  1828. package/examples/node_modules/neo-async/findLimit.js +0 -3
  1829. package/examples/node_modules/neo-async/findSeries.js +0 -3
  1830. package/examples/node_modules/neo-async/foldl.js +0 -3
  1831. package/examples/node_modules/neo-async/foldr.js +0 -3
  1832. package/examples/node_modules/neo-async/forEach.js +0 -3
  1833. package/examples/node_modules/neo-async/forEachLimit.js +0 -3
  1834. package/examples/node_modules/neo-async/forEachOf.js +0 -3
  1835. package/examples/node_modules/neo-async/forEachOfLimit.js +0 -3
  1836. package/examples/node_modules/neo-async/forEachOfSeries.js +0 -3
  1837. package/examples/node_modules/neo-async/forEachSeries.js +0 -3
  1838. package/examples/node_modules/neo-async/forever.js +0 -3
  1839. package/examples/node_modules/neo-async/groupBy.js +0 -3
  1840. package/examples/node_modules/neo-async/groupByLimit.js +0 -3
  1841. package/examples/node_modules/neo-async/groupBySeries.js +0 -3
  1842. package/examples/node_modules/neo-async/inject.js +0 -3
  1843. package/examples/node_modules/neo-async/iterator.js +0 -3
  1844. package/examples/node_modules/neo-async/log.js +0 -3
  1845. package/examples/node_modules/neo-async/map.js +0 -3
  1846. package/examples/node_modules/neo-async/mapLimit.js +0 -3
  1847. package/examples/node_modules/neo-async/mapSeries.js +0 -3
  1848. package/examples/node_modules/neo-async/mapValues.js +0 -3
  1849. package/examples/node_modules/neo-async/mapValuesLimit.js +0 -3
  1850. package/examples/node_modules/neo-async/mapValuesSeries.js +0 -3
  1851. package/examples/node_modules/neo-async/memoize.js +0 -3
  1852. package/examples/node_modules/neo-async/nextTick.js +0 -3
  1853. package/examples/node_modules/neo-async/omit.js +0 -3
  1854. package/examples/node_modules/neo-async/omitLimit.js +0 -3
  1855. package/examples/node_modules/neo-async/omitSeries.js +0 -3
  1856. package/examples/node_modules/neo-async/package.json +0 -57
  1857. package/examples/node_modules/neo-async/parallel.js +0 -3
  1858. package/examples/node_modules/neo-async/parallelLimit.js +0 -3
  1859. package/examples/node_modules/neo-async/pick.js +0 -3
  1860. package/examples/node_modules/neo-async/pickLimit.js +0 -3
  1861. package/examples/node_modules/neo-async/pickSeries.js +0 -3
  1862. package/examples/node_modules/neo-async/priorityQueue.js +0 -3
  1863. package/examples/node_modules/neo-async/queue.js +0 -3
  1864. package/examples/node_modules/neo-async/race.js +0 -3
  1865. package/examples/node_modules/neo-async/reduce.js +0 -3
  1866. package/examples/node_modules/neo-async/reduceRight.js +0 -3
  1867. package/examples/node_modules/neo-async/reflect.js +0 -3
  1868. package/examples/node_modules/neo-async/reflectAll.js +0 -3
  1869. package/examples/node_modules/neo-async/reject.js +0 -3
  1870. package/examples/node_modules/neo-async/rejectLimit.js +0 -3
  1871. package/examples/node_modules/neo-async/rejectSeries.js +0 -3
  1872. package/examples/node_modules/neo-async/retry.js +0 -3
  1873. package/examples/node_modules/neo-async/retryable.js +0 -3
  1874. package/examples/node_modules/neo-async/safe.js +0 -3
  1875. package/examples/node_modules/neo-async/select.js +0 -3
  1876. package/examples/node_modules/neo-async/selectLimit.js +0 -3
  1877. package/examples/node_modules/neo-async/selectSeries.js +0 -3
  1878. package/examples/node_modules/neo-async/seq.js +0 -3
  1879. package/examples/node_modules/neo-async/series.js +0 -3
  1880. package/examples/node_modules/neo-async/setImmediate.js +0 -3
  1881. package/examples/node_modules/neo-async/some.js +0 -3
  1882. package/examples/node_modules/neo-async/someLimit.js +0 -3
  1883. package/examples/node_modules/neo-async/someSeries.js +0 -3
  1884. package/examples/node_modules/neo-async/sortBy.js +0 -3
  1885. package/examples/node_modules/neo-async/sortByLimit.js +0 -3
  1886. package/examples/node_modules/neo-async/sortBySeries.js +0 -3
  1887. package/examples/node_modules/neo-async/timeout.js +0 -3
  1888. package/examples/node_modules/neo-async/times.js +0 -3
  1889. package/examples/node_modules/neo-async/timesLimit.js +0 -3
  1890. package/examples/node_modules/neo-async/timesSeries.js +0 -3
  1891. package/examples/node_modules/neo-async/transform.js +0 -3
  1892. package/examples/node_modules/neo-async/transformLimit.js +0 -3
  1893. package/examples/node_modules/neo-async/transformSeries.js +0 -3
  1894. package/examples/node_modules/neo-async/tryEach.js +0 -3
  1895. package/examples/node_modules/neo-async/unmemoize.js +0 -3
  1896. package/examples/node_modules/neo-async/until.js +0 -3
  1897. package/examples/node_modules/neo-async/waterfall.js +0 -3
  1898. package/examples/node_modules/neo-async/whilst.js +0 -3
  1899. package/examples/node_modules/neo-async/wrapSync.js +0 -3
  1900. package/examples/node_modules/node-releases/LICENSE +0 -21
  1901. package/examples/node_modules/node-releases/README.md +0 -31
  1902. package/examples/node_modules/node-releases/data/processed/envs.json +0 -1
  1903. package/examples/node_modules/node-releases/data/release-schedule/release-schedule.json +0 -1
  1904. package/examples/node_modules/node-releases/package.json +0 -18
  1905. package/examples/node_modules/npm-run-path/index.d.ts +0 -89
  1906. package/examples/node_modules/npm-run-path/index.js +0 -47
  1907. package/examples/node_modules/npm-run-path/license +0 -9
  1908. package/examples/node_modules/npm-run-path/package.json +0 -44
  1909. package/examples/node_modules/npm-run-path/readme.md +0 -115
  1910. package/examples/node_modules/onetime/index.d.ts +0 -64
  1911. package/examples/node_modules/onetime/index.js +0 -44
  1912. package/examples/node_modules/onetime/license +0 -9
  1913. package/examples/node_modules/onetime/package.json +0 -43
  1914. package/examples/node_modules/onetime/readme.md +0 -94
  1915. package/examples/node_modules/p-limit/index.d.ts +0 -38
  1916. package/examples/node_modules/p-limit/index.js +0 -57
  1917. package/examples/node_modules/p-limit/license +0 -9
  1918. package/examples/node_modules/p-limit/package.json +0 -52
  1919. package/examples/node_modules/p-limit/readme.md +0 -101
  1920. package/examples/node_modules/p-locate/index.d.ts +0 -64
  1921. package/examples/node_modules/p-locate/index.js +0 -52
  1922. package/examples/node_modules/p-locate/license +0 -9
  1923. package/examples/node_modules/p-locate/package.json +0 -53
  1924. package/examples/node_modules/p-locate/readme.md +0 -90
  1925. package/examples/node_modules/p-try/index.d.ts +0 -39
  1926. package/examples/node_modules/p-try/index.js +0 -9
  1927. package/examples/node_modules/p-try/license +0 -9
  1928. package/examples/node_modules/p-try/package.json +0 -42
  1929. package/examples/node_modules/p-try/readme.md +0 -58
  1930. package/examples/node_modules/path-exists/index.d.ts +0 -28
  1931. package/examples/node_modules/path-exists/index.js +0 -23
  1932. package/examples/node_modules/path-exists/license +0 -9
  1933. package/examples/node_modules/path-exists/package.json +0 -39
  1934. package/examples/node_modules/path-exists/readme.md +0 -52
  1935. package/examples/node_modules/path-key/index.d.ts +0 -40
  1936. package/examples/node_modules/path-key/index.js +0 -16
  1937. package/examples/node_modules/path-key/license +0 -9
  1938. package/examples/node_modules/path-key/package.json +0 -39
  1939. package/examples/node_modules/path-key/readme.md +0 -61
  1940. package/examples/node_modules/path-parse/LICENSE +0 -21
  1941. package/examples/node_modules/path-parse/README.md +0 -42
  1942. package/examples/node_modules/path-parse/index.js +0 -75
  1943. package/examples/node_modules/path-parse/package.json +0 -33
  1944. package/examples/node_modules/picocolors/LICENSE +0 -15
  1945. package/examples/node_modules/picocolors/README.md +0 -21
  1946. package/examples/node_modules/picocolors/package.json +0 -25
  1947. package/examples/node_modules/picocolors/picocolors.browser.js +0 -4
  1948. package/examples/node_modules/picocolors/picocolors.d.ts +0 -5
  1949. package/examples/node_modules/picocolors/picocolors.js +0 -58
  1950. package/examples/node_modules/picocolors/types.ts +0 -30
  1951. package/examples/node_modules/pkg-dir/index.d.ts +0 -44
  1952. package/examples/node_modules/pkg-dir/index.js +0 -17
  1953. package/examples/node_modules/pkg-dir/license +0 -9
  1954. package/examples/node_modules/pkg-dir/package.json +0 -56
  1955. package/examples/node_modules/pkg-dir/readme.md +0 -66
  1956. package/examples/node_modules/punycode/LICENSE-MIT.txt +0 -20
  1957. package/examples/node_modules/punycode/README.md +0 -122
  1958. package/examples/node_modules/punycode/package.json +0 -58
  1959. package/examples/node_modules/punycode/punycode.es6.js +0 -441
  1960. package/examples/node_modules/punycode/punycode.js +0 -440
  1961. package/examples/node_modules/randombytes/.travis.yml +0 -15
  1962. package/examples/node_modules/randombytes/.zuul.yml +0 -1
  1963. package/examples/node_modules/randombytes/LICENSE +0 -21
  1964. package/examples/node_modules/randombytes/README.md +0 -14
  1965. package/examples/node_modules/randombytes/browser.js +0 -50
  1966. package/examples/node_modules/randombytes/index.js +0 -1
  1967. package/examples/node_modules/randombytes/package.json +0 -36
  1968. package/examples/node_modules/randombytes/test.js +0 -81
  1969. package/examples/node_modules/rechoir/LICENSE +0 -24
  1970. package/examples/node_modules/rechoir/README.md +0 -83
  1971. package/examples/node_modules/rechoir/index.js +0 -67
  1972. package/examples/node_modules/rechoir/lib/extension.js +0 -44
  1973. package/examples/node_modules/rechoir/lib/normalize.js +0 -13
  1974. package/examples/node_modules/rechoir/lib/register.js +0 -15
  1975. package/examples/node_modules/rechoir/package.json +0 -46
  1976. package/examples/node_modules/resolve/.editorconfig +0 -37
  1977. package/examples/node_modules/resolve/.eslintrc +0 -65
  1978. package/examples/node_modules/resolve/.github/FUNDING.yml +0 -12
  1979. package/examples/node_modules/resolve/LICENSE +0 -21
  1980. package/examples/node_modules/resolve/SECURITY.md +0 -3
  1981. package/examples/node_modules/resolve/appveyor.yml +0 -76
  1982. package/examples/node_modules/resolve/async.js +0 -3
  1983. package/examples/node_modules/resolve/bin/resolve +0 -50
  1984. package/examples/node_modules/resolve/example/async.js +0 -5
  1985. package/examples/node_modules/resolve/example/sync.js +0 -3
  1986. package/examples/node_modules/resolve/index.js +0 -6
  1987. package/examples/node_modules/resolve/lib/async.js +0 -329
  1988. package/examples/node_modules/resolve/lib/caller.js +0 -8
  1989. package/examples/node_modules/resolve/lib/core.js +0 -52
  1990. package/examples/node_modules/resolve/lib/core.json +0 -152
  1991. package/examples/node_modules/resolve/lib/homedir.js +0 -24
  1992. package/examples/node_modules/resolve/lib/is-core.js +0 -5
  1993. package/examples/node_modules/resolve/lib/node-modules-paths.js +0 -42
  1994. package/examples/node_modules/resolve/lib/normalize-options.js +0 -10
  1995. package/examples/node_modules/resolve/lib/sync.js +0 -208
  1996. package/examples/node_modules/resolve/package.json +0 -62
  1997. package/examples/node_modules/resolve/readme.markdown +0 -301
  1998. package/examples/node_modules/resolve/sync.js +0 -3
  1999. package/examples/node_modules/resolve/test/core.js +0 -81
  2000. package/examples/node_modules/resolve/test/dotdot/abc/index.js +0 -2
  2001. package/examples/node_modules/resolve/test/dotdot/index.js +0 -1
  2002. package/examples/node_modules/resolve/test/dotdot.js +0 -29
  2003. package/examples/node_modules/resolve/test/faulty_basedir.js +0 -29
  2004. package/examples/node_modules/resolve/test/filter.js +0 -34
  2005. package/examples/node_modules/resolve/test/filter_sync.js +0 -33
  2006. package/examples/node_modules/resolve/test/home_paths.js +0 -127
  2007. package/examples/node_modules/resolve/test/home_paths_sync.js +0 -114
  2008. package/examples/node_modules/resolve/test/mock.js +0 -315
  2009. package/examples/node_modules/resolve/test/mock_sync.js +0 -214
  2010. package/examples/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +0 -1
  2011. package/examples/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +0 -1
  2012. package/examples/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +0 -1
  2013. package/examples/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +0 -3
  2014. package/examples/node_modules/resolve/test/module_dir.js +0 -56
  2015. package/examples/node_modules/resolve/test/node-modules-paths.js +0 -143
  2016. package/examples/node_modules/resolve/test/node_path/x/aaa/index.js +0 -1
  2017. package/examples/node_modules/resolve/test/node_path/x/ccc/index.js +0 -1
  2018. package/examples/node_modules/resolve/test/node_path/y/bbb/index.js +0 -1
  2019. package/examples/node_modules/resolve/test/node_path/y/ccc/index.js +0 -1
  2020. package/examples/node_modules/resolve/test/node_path.js +0 -70
  2021. package/examples/node_modules/resolve/test/nonstring.js +0 -9
  2022. package/examples/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  2023. package/examples/node_modules/resolve/test/pathfilter.js +0 -75
  2024. package/examples/node_modules/resolve/test/precedence/aaa/index.js +0 -1
  2025. package/examples/node_modules/resolve/test/precedence/aaa/main.js +0 -1
  2026. package/examples/node_modules/resolve/test/precedence/aaa.js +0 -1
  2027. package/examples/node_modules/resolve/test/precedence/bbb/main.js +0 -1
  2028. package/examples/node_modules/resolve/test/precedence/bbb.js +0 -1
  2029. package/examples/node_modules/resolve/test/precedence.js +0 -23
  2030. package/examples/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  2031. package/examples/node_modules/resolve/test/resolver/baz/package.json +0 -4
  2032. package/examples/node_modules/resolve/test/resolver/baz/quux.js +0 -1
  2033. package/examples/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
  2034. package/examples/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
  2035. package/examples/node_modules/resolve/test/resolver/browser_field/package.json +0 -5
  2036. package/examples/node_modules/resolve/test/resolver/cup.coffee +0 -1
  2037. package/examples/node_modules/resolve/test/resolver/dot_main/index.js +0 -1
  2038. package/examples/node_modules/resolve/test/resolver/dot_main/package.json +0 -3
  2039. package/examples/node_modules/resolve/test/resolver/dot_slash_main/index.js +0 -1
  2040. package/examples/node_modules/resolve/test/resolver/dot_slash_main/package.json +0 -3
  2041. package/examples/node_modules/resolve/test/resolver/foo.js +0 -1
  2042. package/examples/node_modules/resolve/test/resolver/incorrect_main/index.js +0 -2
  2043. package/examples/node_modules/resolve/test/resolver/incorrect_main/package.json +0 -3
  2044. package/examples/node_modules/resolve/test/resolver/invalid_main/package.json +0 -7
  2045. package/examples/node_modules/resolve/test/resolver/malformed_package_json/index.js +0 -0
  2046. package/examples/node_modules/resolve/test/resolver/malformed_package_json/package.json +0 -1
  2047. package/examples/node_modules/resolve/test/resolver/mug.coffee +0 -0
  2048. package/examples/node_modules/resolve/test/resolver/mug.js +0 -0
  2049. package/examples/node_modules/resolve/test/resolver/multirepo/lerna.json +0 -6
  2050. package/examples/node_modules/resolve/test/resolver/multirepo/package.json +0 -20
  2051. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +0 -35
  2052. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +0 -14
  2053. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
  2054. package/examples/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +0 -14
  2055. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +0 -26
  2056. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +0 -15
  2057. package/examples/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +0 -12
  2058. package/examples/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  2059. package/examples/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  2060. package/examples/node_modules/resolve/test/resolver/quux/foo/index.js +0 -1
  2061. package/examples/node_modules/resolve/test/resolver/same_names/foo/index.js +0 -1
  2062. package/examples/node_modules/resolve/test/resolver/same_names/foo.js +0 -1
  2063. package/examples/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
  2064. package/examples/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
  2065. package/examples/node_modules/resolve/test/resolver/symlinked/package/bar.js +0 -1
  2066. package/examples/node_modules/resolve/test/resolver/symlinked/package/package.json +0 -3
  2067. package/examples/node_modules/resolve/test/resolver/without_basedir/main.js +0 -5
  2068. package/examples/node_modules/resolve/test/resolver.js +0 -546
  2069. package/examples/node_modules/resolve/test/resolver_sync.js +0 -645
  2070. package/examples/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
  2071. package/examples/node_modules/resolve/test/shadowed_core.js +0 -54
  2072. package/examples/node_modules/resolve/test/subdirs.js +0 -13
  2073. package/examples/node_modules/resolve/test/symlinks.js +0 -176
  2074. package/examples/node_modules/resolve-cwd/index.d.ts +0 -48
  2075. package/examples/node_modules/resolve-cwd/index.js +0 -5
  2076. package/examples/node_modules/resolve-cwd/license +0 -9
  2077. package/examples/node_modules/resolve-cwd/package.json +0 -43
  2078. package/examples/node_modules/resolve-cwd/readme.md +0 -58
  2079. package/examples/node_modules/resolve-from/index.d.ts +0 -31
  2080. package/examples/node_modules/resolve-from/index.js +0 -47
  2081. package/examples/node_modules/resolve-from/license +0 -9
  2082. package/examples/node_modules/resolve-from/package.json +0 -36
  2083. package/examples/node_modules/resolve-from/readme.md +0 -72
  2084. package/examples/node_modules/safe-buffer/LICENSE +0 -21
  2085. package/examples/node_modules/safe-buffer/README.md +0 -584
  2086. package/examples/node_modules/safe-buffer/index.d.ts +0 -187
  2087. package/examples/node_modules/safe-buffer/index.js +0 -65
  2088. package/examples/node_modules/safe-buffer/package.json +0 -51
  2089. package/examples/node_modules/schema-utils/LICENSE +0 -20
  2090. package/examples/node_modules/schema-utils/README.md +0 -290
  2091. package/examples/node_modules/schema-utils/declarations/ValidationError.d.ts +0 -74
  2092. package/examples/node_modules/schema-utils/declarations/index.d.ts +0 -3
  2093. package/examples/node_modules/schema-utils/declarations/keywords/absolutePath.d.ts +0 -10
  2094. package/examples/node_modules/schema-utils/declarations/util/Range.d.ts +0 -79
  2095. package/examples/node_modules/schema-utils/declarations/util/hints.d.ts +0 -3
  2096. package/examples/node_modules/schema-utils/declarations/validate.d.ts +0 -37
  2097. package/examples/node_modules/schema-utils/dist/ValidationError.js +0 -1271
  2098. package/examples/node_modules/schema-utils/dist/index.js +0 -11
  2099. package/examples/node_modules/schema-utils/dist/keywords/absolutePath.js +0 -93
  2100. package/examples/node_modules/schema-utils/dist/util/Range.js +0 -163
  2101. package/examples/node_modules/schema-utils/dist/util/hints.js +0 -105
  2102. package/examples/node_modules/schema-utils/dist/validate.js +0 -163
  2103. package/examples/node_modules/schema-utils/package.json +0 -78
  2104. package/examples/node_modules/serialize-javascript/LICENSE +0 -27
  2105. package/examples/node_modules/serialize-javascript/README.md +0 -142
  2106. package/examples/node_modules/serialize-javascript/index.js +0 -268
  2107. package/examples/node_modules/serialize-javascript/package.json +0 -36
  2108. package/examples/node_modules/shallow-clone/LICENSE +0 -21
  2109. package/examples/node_modules/shallow-clone/README.md +0 -153
  2110. package/examples/node_modules/shallow-clone/index.js +0 -83
  2111. package/examples/node_modules/shallow-clone/package.json +0 -64
  2112. package/examples/node_modules/shebang-command/index.js +0 -19
  2113. package/examples/node_modules/shebang-command/license +0 -9
  2114. package/examples/node_modules/shebang-command/package.json +0 -34
  2115. package/examples/node_modules/shebang-command/readme.md +0 -34
  2116. package/examples/node_modules/shebang-regex/index.d.ts +0 -22
  2117. package/examples/node_modules/shebang-regex/index.js +0 -2
  2118. package/examples/node_modules/shebang-regex/license +0 -9
  2119. package/examples/node_modules/shebang-regex/package.json +0 -35
  2120. package/examples/node_modules/shebang-regex/readme.md +0 -33
  2121. package/examples/node_modules/signal-exit/LICENSE.txt +0 -16
  2122. package/examples/node_modules/signal-exit/README.md +0 -39
  2123. package/examples/node_modules/signal-exit/index.js +0 -202
  2124. package/examples/node_modules/signal-exit/package.json +0 -38
  2125. package/examples/node_modules/signal-exit/signals.js +0 -53
  2126. package/examples/node_modules/source-map/CHANGELOG.md +0 -301
  2127. package/examples/node_modules/source-map/LICENSE +0 -28
  2128. package/examples/node_modules/source-map/README.md +0 -742
  2129. package/examples/node_modules/source-map/dist/source-map.debug.js +0 -3234
  2130. package/examples/node_modules/source-map/dist/source-map.js +0 -3233
  2131. package/examples/node_modules/source-map/dist/source-map.min.js +0 -2
  2132. package/examples/node_modules/source-map/dist/source-map.min.js.map +0 -1
  2133. package/examples/node_modules/source-map/lib/array-set.js +0 -121
  2134. package/examples/node_modules/source-map/lib/base64-vlq.js +0 -140
  2135. package/examples/node_modules/source-map/lib/base64.js +0 -67
  2136. package/examples/node_modules/source-map/lib/binary-search.js +0 -111
  2137. package/examples/node_modules/source-map/lib/mapping-list.js +0 -79
  2138. package/examples/node_modules/source-map/lib/quick-sort.js +0 -114
  2139. package/examples/node_modules/source-map/lib/source-map-consumer.js +0 -1145
  2140. package/examples/node_modules/source-map/lib/source-map-generator.js +0 -425
  2141. package/examples/node_modules/source-map/lib/source-node.js +0 -413
  2142. package/examples/node_modules/source-map/lib/util.js +0 -488
  2143. package/examples/node_modules/source-map/package.json +0 -73
  2144. package/examples/node_modules/source-map/source-map.d.ts +0 -98
  2145. package/examples/node_modules/source-map/source-map.js +0 -8
  2146. package/examples/node_modules/source-map-support/LICENSE.md +0 -21
  2147. package/examples/node_modules/source-map-support/README.md +0 -284
  2148. package/examples/node_modules/source-map-support/browser-source-map-support.js +0 -114
  2149. package/examples/node_modules/source-map-support/package.json +0 -31
  2150. package/examples/node_modules/source-map-support/register-hook-require.js +0 -1
  2151. package/examples/node_modules/source-map-support/register.js +0 -1
  2152. package/examples/node_modules/source-map-support/source-map-support.js +0 -625
  2153. package/examples/node_modules/strip-final-newline/index.js +0 -16
  2154. package/examples/node_modules/strip-final-newline/license +0 -9
  2155. package/examples/node_modules/strip-final-newline/package.json +0 -40
  2156. package/examples/node_modules/strip-final-newline/readme.md +0 -30
  2157. package/examples/node_modules/supports-color/browser.js +0 -24
  2158. package/examples/node_modules/supports-color/index.js +0 -152
  2159. package/examples/node_modules/supports-color/license +0 -9
  2160. package/examples/node_modules/supports-color/package.json +0 -58
  2161. package/examples/node_modules/supports-color/readme.md +0 -77
  2162. package/examples/node_modules/supports-preserve-symlinks-flag/.eslintrc +0 -14
  2163. package/examples/node_modules/supports-preserve-symlinks-flag/.github/FUNDING.yml +0 -12
  2164. package/examples/node_modules/supports-preserve-symlinks-flag/.nycrc +0 -9
  2165. package/examples/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +0 -22
  2166. package/examples/node_modules/supports-preserve-symlinks-flag/LICENSE +0 -21
  2167. package/examples/node_modules/supports-preserve-symlinks-flag/README.md +0 -42
  2168. package/examples/node_modules/supports-preserve-symlinks-flag/browser.js +0 -3
  2169. package/examples/node_modules/supports-preserve-symlinks-flag/index.js +0 -9
  2170. package/examples/node_modules/supports-preserve-symlinks-flag/package.json +0 -70
  2171. package/examples/node_modules/supports-preserve-symlinks-flag/test/index.js +0 -29
  2172. package/examples/node_modules/tapable/LICENSE +0 -21
  2173. package/examples/node_modules/tapable/README.md +0 -296
  2174. package/examples/node_modules/tapable/lib/AsyncParallelBailHook.js +0 -85
  2175. package/examples/node_modules/tapable/lib/AsyncParallelHook.js +0 -37
  2176. package/examples/node_modules/tapable/lib/AsyncSeriesBailHook.js +0 -42
  2177. package/examples/node_modules/tapable/lib/AsyncSeriesHook.js +0 -37
  2178. package/examples/node_modules/tapable/lib/AsyncSeriesLoopHook.js +0 -37
  2179. package/examples/node_modules/tapable/lib/AsyncSeriesWaterfallHook.js +0 -47
  2180. package/examples/node_modules/tapable/lib/Hook.js +0 -175
  2181. package/examples/node_modules/tapable/lib/HookCodeFactory.js +0 -468
  2182. package/examples/node_modules/tapable/lib/HookMap.js +0 -61
  2183. package/examples/node_modules/tapable/lib/MultiHook.js +0 -54
  2184. package/examples/node_modules/tapable/lib/SyncBailHook.js +0 -51
  2185. package/examples/node_modules/tapable/lib/SyncHook.js +0 -46
  2186. package/examples/node_modules/tapable/lib/SyncLoopHook.js +0 -46
  2187. package/examples/node_modules/tapable/lib/SyncWaterfallHook.js +0 -57
  2188. package/examples/node_modules/tapable/lib/index.js +0 -19
  2189. package/examples/node_modules/tapable/lib/util-browser.js +0 -16
  2190. package/examples/node_modules/tapable/package.json +0 -44
  2191. package/examples/node_modules/tapable/tapable.d.ts +0 -116
  2192. package/examples/node_modules/terser/CHANGELOG.md +0 -480
  2193. package/examples/node_modules/terser/LICENSE +0 -29
  2194. package/examples/node_modules/terser/PATRONS.md +0 -15
  2195. package/examples/node_modules/terser/README.md +0 -1374
  2196. package/examples/node_modules/terser/bin/package.json +0 -10
  2197. package/examples/node_modules/terser/bin/terser +0 -21
  2198. package/examples/node_modules/terser/bin/uglifyjs +0 -10
  2199. package/examples/node_modules/terser/dist/.gitkeep +0 -0
  2200. package/examples/node_modules/terser/dist/bundle.min.js +0 -28332
  2201. package/examples/node_modules/terser/dist/package.json +0 -10
  2202. package/examples/node_modules/terser/lib/ast.js +0 -1858
  2203. package/examples/node_modules/terser/lib/cli.js +0 -479
  2204. package/examples/node_modules/terser/lib/compress/common.js +0 -296
  2205. package/examples/node_modules/terser/lib/compress/compressor-flags.js +0 -63
  2206. package/examples/node_modules/terser/lib/compress/drop-side-effect-free.js +0 -350
  2207. package/examples/node_modules/terser/lib/compress/evaluate.js +0 -461
  2208. package/examples/node_modules/terser/lib/compress/index.js +0 -4667
  2209. package/examples/node_modules/terser/lib/compress/inference.js +0 -948
  2210. package/examples/node_modules/terser/lib/compress/native-objects.js +0 -184
  2211. package/examples/node_modules/terser/lib/compress/reduce-vars.js +0 -675
  2212. package/examples/node_modules/terser/lib/compress/tighten-body.js +0 -1461
  2213. package/examples/node_modules/terser/lib/equivalent-to.js +0 -313
  2214. package/examples/node_modules/terser/lib/minify.js +0 -335
  2215. package/examples/node_modules/terser/lib/mozilla-ast.js +0 -1376
  2216. package/examples/node_modules/terser/lib/output.js +0 -2347
  2217. package/examples/node_modules/terser/lib/parse.js +0 -3362
  2218. package/examples/node_modules/terser/lib/propmangle.js +0 -376
  2219. package/examples/node_modules/terser/lib/scope.js +0 -1042
  2220. package/examples/node_modules/terser/lib/size.js +0 -490
  2221. package/examples/node_modules/terser/lib/sourcemap.js +0 -114
  2222. package/examples/node_modules/terser/lib/transform.js +0 -318
  2223. package/examples/node_modules/terser/lib/utils/first_in_statement.js +0 -50
  2224. package/examples/node_modules/terser/lib/utils/index.js +0 -302
  2225. package/examples/node_modules/terser/main.js +0 -27
  2226. package/examples/node_modules/terser/node_modules/source-map/CHANGELOG.md +0 -344
  2227. package/examples/node_modules/terser/node_modules/source-map/LICENSE +0 -28
  2228. package/examples/node_modules/terser/node_modules/source-map/README.md +0 -822
  2229. package/examples/node_modules/terser/node_modules/source-map/dist/source-map.js +0 -3351
  2230. package/examples/node_modules/terser/node_modules/source-map/lib/array-set.js +0 -100
  2231. package/examples/node_modules/terser/node_modules/source-map/lib/base64-vlq.js +0 -111
  2232. package/examples/node_modules/terser/node_modules/source-map/lib/base64.js +0 -18
  2233. package/examples/node_modules/terser/node_modules/source-map/lib/binary-search.js +0 -107
  2234. package/examples/node_modules/terser/node_modules/source-map/lib/mapping-list.js +0 -80
  2235. package/examples/node_modules/terser/node_modules/source-map/lib/mappings.wasm +0 -0
  2236. package/examples/node_modules/terser/node_modules/source-map/lib/read-wasm.js +0 -40
  2237. package/examples/node_modules/terser/node_modules/source-map/lib/source-map-consumer.js +0 -1254
  2238. package/examples/node_modules/terser/node_modules/source-map/lib/source-map-generator.js +0 -413
  2239. package/examples/node_modules/terser/node_modules/source-map/lib/source-node.js +0 -404
  2240. package/examples/node_modules/terser/node_modules/source-map/lib/util.js +0 -546
  2241. package/examples/node_modules/terser/node_modules/source-map/lib/wasm.js +0 -107
  2242. package/examples/node_modules/terser/node_modules/source-map/package.json +0 -90
  2243. package/examples/node_modules/terser/node_modules/source-map/source-map.d.ts +0 -369
  2244. package/examples/node_modules/terser/node_modules/source-map/source-map.js +0 -8
  2245. package/examples/node_modules/terser/package.json +0 -152
  2246. package/examples/node_modules/terser/tools/domprops.js +0 -7771
  2247. package/examples/node_modules/terser/tools/exit.cjs +0 -7
  2248. package/examples/node_modules/terser/tools/props.html +0 -55
  2249. package/examples/node_modules/terser/tools/terser.d.ts +0 -207
  2250. package/examples/node_modules/terser-webpack-plugin/LICENSE +0 -20
  2251. package/examples/node_modules/terser-webpack-plugin/README.md +0 -742
  2252. package/examples/node_modules/terser-webpack-plugin/dist/index.js +0 -798
  2253. package/examples/node_modules/terser-webpack-plugin/dist/minify.js +0 -50
  2254. package/examples/node_modules/terser-webpack-plugin/dist/options.json +0 -164
  2255. package/examples/node_modules/terser-webpack-plugin/dist/utils.js +0 -687
  2256. package/examples/node_modules/terser-webpack-plugin/package.json +0 -114
  2257. package/examples/node_modules/terser-webpack-plugin/types/index.d.ts +0 -329
  2258. package/examples/node_modules/terser-webpack-plugin/types/minify.d.ts +0 -17
  2259. package/examples/node_modules/terser-webpack-plugin/types/utils.d.ts +0 -100
  2260. package/examples/node_modules/uri-js/LICENSE +0 -11
  2261. package/examples/node_modules/uri-js/README.md +0 -203
  2262. package/examples/node_modules/uri-js/dist/es5/uri.all.d.ts +0 -59
  2263. package/examples/node_modules/uri-js/dist/es5/uri.all.js +0 -1443
  2264. package/examples/node_modules/uri-js/dist/es5/uri.all.js.map +0 -1
  2265. package/examples/node_modules/uri-js/dist/es5/uri.all.min.d.ts +0 -59
  2266. package/examples/node_modules/uri-js/dist/es5/uri.all.min.js +0 -3
  2267. package/examples/node_modules/uri-js/dist/es5/uri.all.min.js.map +0 -1
  2268. package/examples/node_modules/uri-js/dist/esnext/index.d.ts +0 -1
  2269. package/examples/node_modules/uri-js/dist/esnext/index.js +0 -17
  2270. package/examples/node_modules/uri-js/dist/esnext/index.js.map +0 -1
  2271. package/examples/node_modules/uri-js/dist/esnext/regexps-iri.d.ts +0 -3
  2272. package/examples/node_modules/uri-js/dist/esnext/regexps-iri.js +0 -3
  2273. package/examples/node_modules/uri-js/dist/esnext/regexps-iri.js.map +0 -1
  2274. package/examples/node_modules/uri-js/dist/esnext/regexps-uri.d.ts +0 -4
  2275. package/examples/node_modules/uri-js/dist/esnext/regexps-uri.js +0 -42
  2276. package/examples/node_modules/uri-js/dist/esnext/regexps-uri.js.map +0 -1
  2277. package/examples/node_modules/uri-js/dist/esnext/schemes/http.d.ts +0 -3
  2278. package/examples/node_modules/uri-js/dist/esnext/schemes/http.js +0 -28
  2279. package/examples/node_modules/uri-js/dist/esnext/schemes/http.js.map +0 -1
  2280. package/examples/node_modules/uri-js/dist/esnext/schemes/https.d.ts +0 -3
  2281. package/examples/node_modules/uri-js/dist/esnext/schemes/https.js +0 -9
  2282. package/examples/node_modules/uri-js/dist/esnext/schemes/https.js.map +0 -1
  2283. package/examples/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts +0 -12
  2284. package/examples/node_modules/uri-js/dist/esnext/schemes/mailto.js +0 -148
  2285. package/examples/node_modules/uri-js/dist/esnext/schemes/mailto.js.map +0 -1
  2286. package/examples/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts +0 -7
  2287. package/examples/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js +0 -23
  2288. package/examples/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map +0 -1
  2289. package/examples/node_modules/uri-js/dist/esnext/schemes/urn.d.ts +0 -10
  2290. package/examples/node_modules/uri-js/dist/esnext/schemes/urn.js +0 -49
  2291. package/examples/node_modules/uri-js/dist/esnext/schemes/urn.js.map +0 -1
  2292. package/examples/node_modules/uri-js/dist/esnext/schemes/ws.d.ts +0 -7
  2293. package/examples/node_modules/uri-js/dist/esnext/schemes/ws.js +0 -41
  2294. package/examples/node_modules/uri-js/dist/esnext/schemes/ws.js.map +0 -1
  2295. package/examples/node_modules/uri-js/dist/esnext/schemes/wss.d.ts +0 -3
  2296. package/examples/node_modules/uri-js/dist/esnext/schemes/wss.js +0 -9
  2297. package/examples/node_modules/uri-js/dist/esnext/schemes/wss.js.map +0 -1
  2298. package/examples/node_modules/uri-js/dist/esnext/uri.d.ts +0 -59
  2299. package/examples/node_modules/uri-js/dist/esnext/uri.js +0 -480
  2300. package/examples/node_modules/uri-js/dist/esnext/uri.js.map +0 -1
  2301. package/examples/node_modules/uri-js/dist/esnext/util.d.ts +0 -6
  2302. package/examples/node_modules/uri-js/dist/esnext/util.js +0 -36
  2303. package/examples/node_modules/uri-js/dist/esnext/util.js.map +0 -1
  2304. package/examples/node_modules/uri-js/package.json +0 -77
  2305. package/examples/node_modules/uri-js/yarn.lock +0 -2558
  2306. package/examples/node_modules/watchpack/LICENSE +0 -20
  2307. package/examples/node_modules/watchpack/README.md +0 -149
  2308. package/examples/node_modules/watchpack/lib/DirectoryWatcher.js +0 -785
  2309. package/examples/node_modules/watchpack/lib/LinkResolver.js +0 -107
  2310. package/examples/node_modules/watchpack/lib/getWatcherManager.js +0 -52
  2311. package/examples/node_modules/watchpack/lib/reducePlan.js +0 -138
  2312. package/examples/node_modules/watchpack/lib/watchEventSource.js +0 -335
  2313. package/examples/node_modules/watchpack/lib/watchpack.js +0 -383
  2314. package/examples/node_modules/watchpack/package.json +0 -49
  2315. package/examples/node_modules/webpack/LICENSE +0 -20
  2316. package/examples/node_modules/webpack/README.md +0 -711
  2317. package/examples/node_modules/webpack/SECURITY.md +0 -9
  2318. package/examples/node_modules/webpack/bin/webpack.js +0 -163
  2319. package/examples/node_modules/webpack/hot/dev-server.js +0 -61
  2320. package/examples/node_modules/webpack/hot/emitter.js +0 -2
  2321. package/examples/node_modules/webpack/hot/lazy-compilation-node.js +0 -40
  2322. package/examples/node_modules/webpack/hot/lazy-compilation-web.js +0 -74
  2323. package/examples/node_modules/webpack/hot/log-apply-result.js +0 -44
  2324. package/examples/node_modules/webpack/hot/log.js +0 -59
  2325. package/examples/node_modules/webpack/hot/only-dev-server.js +0 -102
  2326. package/examples/node_modules/webpack/hot/poll.js +0 -37
  2327. package/examples/node_modules/webpack/hot/signal.js +0 -62
  2328. package/examples/node_modules/webpack/lib/APIPlugin.js +0 -253
  2329. package/examples/node_modules/webpack/lib/AbstractMethodError.js +0 -49
  2330. package/examples/node_modules/webpack/lib/AsyncDependenciesBlock.js +0 -106
  2331. package/examples/node_modules/webpack/lib/AsyncDependencyToInitialChunkError.js +0 -31
  2332. package/examples/node_modules/webpack/lib/AutomaticPrefetchPlugin.js +0 -65
  2333. package/examples/node_modules/webpack/lib/BannerPlugin.js +0 -123
  2334. package/examples/node_modules/webpack/lib/Cache.js +0 -161
  2335. package/examples/node_modules/webpack/lib/CacheFacade.js +0 -345
  2336. package/examples/node_modules/webpack/lib/CaseSensitiveModulesWarning.js +0 -71
  2337. package/examples/node_modules/webpack/lib/Chunk.js +0 -820
  2338. package/examples/node_modules/webpack/lib/ChunkGraph.js +0 -1727
  2339. package/examples/node_modules/webpack/lib/ChunkGroup.js +0 -584
  2340. package/examples/node_modules/webpack/lib/ChunkRenderError.js +0 -31
  2341. package/examples/node_modules/webpack/lib/ChunkTemplate.js +0 -138
  2342. package/examples/node_modules/webpack/lib/CleanPlugin.js +0 -420
  2343. package/examples/node_modules/webpack/lib/CodeGenerationError.js +0 -29
  2344. package/examples/node_modules/webpack/lib/CodeGenerationResults.js +0 -155
  2345. package/examples/node_modules/webpack/lib/CommentCompilationWarning.js +0 -33
  2346. package/examples/node_modules/webpack/lib/CompatibilityPlugin.js +0 -152
  2347. package/examples/node_modules/webpack/lib/Compilation.js +0 -5292
  2348. package/examples/node_modules/webpack/lib/Compiler.js +0 -1217
  2349. package/examples/node_modules/webpack/lib/ConcatenationScope.js +0 -159
  2350. package/examples/node_modules/webpack/lib/ConcurrentCompilationError.js +0 -18
  2351. package/examples/node_modules/webpack/lib/ConditionalInitFragment.js +0 -112
  2352. package/examples/node_modules/webpack/lib/ConstPlugin.js +0 -497
  2353. package/examples/node_modules/webpack/lib/ContextExclusionPlugin.js +0 -32
  2354. package/examples/node_modules/webpack/lib/ContextModule.js +0 -1147
  2355. package/examples/node_modules/webpack/lib/ContextModuleFactory.js +0 -437
  2356. package/examples/node_modules/webpack/lib/ContextReplacementPlugin.js +0 -157
  2357. package/examples/node_modules/webpack/lib/DefinePlugin.js +0 -601
  2358. package/examples/node_modules/webpack/lib/DelegatedModule.js +0 -239
  2359. package/examples/node_modules/webpack/lib/DelegatedModuleFactoryPlugin.js +0 -91
  2360. package/examples/node_modules/webpack/lib/DelegatedPlugin.js +0 -43
  2361. package/examples/node_modules/webpack/lib/DependenciesBlock.js +0 -107
  2362. package/examples/node_modules/webpack/lib/Dependency.js +0 -348
  2363. package/examples/node_modules/webpack/lib/DependencyTemplate.js +0 -57
  2364. package/examples/node_modules/webpack/lib/DependencyTemplates.js +0 -67
  2365. package/examples/node_modules/webpack/lib/DllEntryPlugin.js +0 -55
  2366. package/examples/node_modules/webpack/lib/DllModule.js +0 -157
  2367. package/examples/node_modules/webpack/lib/DllModuleFactory.js +0 -37
  2368. package/examples/node_modules/webpack/lib/DllPlugin.js +0 -68
  2369. package/examples/node_modules/webpack/lib/DllReferencePlugin.js +0 -162
  2370. package/examples/node_modules/webpack/lib/DynamicEntryPlugin.js +0 -79
  2371. package/examples/node_modules/webpack/lib/EntryOptionPlugin.js +0 -93
  2372. package/examples/node_modules/webpack/lib/EntryPlugin.js +0 -67
  2373. package/examples/node_modules/webpack/lib/Entrypoint.js +0 -101
  2374. package/examples/node_modules/webpack/lib/EnvironmentPlugin.js +0 -63
  2375. package/examples/node_modules/webpack/lib/ErrorHelpers.js +0 -61
  2376. package/examples/node_modules/webpack/lib/EvalDevToolModulePlugin.js +0 -117
  2377. package/examples/node_modules/webpack/lib/EvalSourceMapDevToolPlugin.js +0 -206
  2378. package/examples/node_modules/webpack/lib/ExportsInfo.js +0 -1523
  2379. package/examples/node_modules/webpack/lib/ExportsInfoApiPlugin.js +0 -71
  2380. package/examples/node_modules/webpack/lib/ExternalModule.js +0 -758
  2381. package/examples/node_modules/webpack/lib/ExternalModuleFactoryPlugin.js +0 -254
  2382. package/examples/node_modules/webpack/lib/ExternalsPlugin.js +0 -37
  2383. package/examples/node_modules/webpack/lib/FileSystemInfo.js +0 -3559
  2384. package/examples/node_modules/webpack/lib/FlagAllModulesAsUsedPlugin.js +0 -55
  2385. package/examples/node_modules/webpack/lib/FlagDependencyExportsPlugin.js +0 -417
  2386. package/examples/node_modules/webpack/lib/FlagDependencyUsagePlugin.js +0 -347
  2387. package/examples/node_modules/webpack/lib/FlagEntryExportAsUsedPlugin.js +0 -53
  2388. package/examples/node_modules/webpack/lib/Generator.js +0 -149
  2389. package/examples/node_modules/webpack/lib/GraphHelpers.js +0 -37
  2390. package/examples/node_modules/webpack/lib/HarmonyLinkingError.js +0 -16
  2391. package/examples/node_modules/webpack/lib/HookWebpackError.js +0 -93
  2392. package/examples/node_modules/webpack/lib/HotModuleReplacementPlugin.js +0 -778
  2393. package/examples/node_modules/webpack/lib/HotUpdateChunk.js +0 -19
  2394. package/examples/node_modules/webpack/lib/IgnoreErrorModuleFactory.js +0 -39
  2395. package/examples/node_modules/webpack/lib/IgnorePlugin.js +0 -83
  2396. package/examples/node_modules/webpack/lib/IgnoreWarningsPlugin.js +0 -39
  2397. package/examples/node_modules/webpack/lib/InitFragment.js +0 -161
  2398. package/examples/node_modules/webpack/lib/InvalidDependenciesModuleWarning.js +0 -44
  2399. package/examples/node_modules/webpack/lib/JavascriptMetaInfoPlugin.js +0 -68
  2400. package/examples/node_modules/webpack/lib/LibManifestPlugin.js +0 -115
  2401. package/examples/node_modules/webpack/lib/LibraryTemplatePlugin.js +0 -48
  2402. package/examples/node_modules/webpack/lib/LoaderOptionsPlugin.js +0 -71
  2403. package/examples/node_modules/webpack/lib/LoaderTargetPlugin.js +0 -37
  2404. package/examples/node_modules/webpack/lib/MainTemplate.js +0 -329
  2405. package/examples/node_modules/webpack/lib/Module.js +0 -1091
  2406. package/examples/node_modules/webpack/lib/ModuleBuildError.js +0 -77
  2407. package/examples/node_modules/webpack/lib/ModuleDependencyError.js +0 -40
  2408. package/examples/node_modules/webpack/lib/ModuleDependencyWarning.js +0 -45
  2409. package/examples/node_modules/webpack/lib/ModuleError.js +0 -61
  2410. package/examples/node_modules/webpack/lib/ModuleFactory.js +0 -50
  2411. package/examples/node_modules/webpack/lib/ModuleFilenameHelpers.js +0 -277
  2412. package/examples/node_modules/webpack/lib/ModuleGraph.js +0 -856
  2413. package/examples/node_modules/webpack/lib/ModuleGraphConnection.js +0 -191
  2414. package/examples/node_modules/webpack/lib/ModuleHashingError.js +0 -29
  2415. package/examples/node_modules/webpack/lib/ModuleInfoHeaderPlugin.js +0 -255
  2416. package/examples/node_modules/webpack/lib/ModuleNotFoundError.js +0 -86
  2417. package/examples/node_modules/webpack/lib/ModuleParseError.js +0 -109
  2418. package/examples/node_modules/webpack/lib/ModuleProfile.js +0 -107
  2419. package/examples/node_modules/webpack/lib/ModuleRestoreError.js +0 -42
  2420. package/examples/node_modules/webpack/lib/ModuleStoreError.js +0 -42
  2421. package/examples/node_modules/webpack/lib/ModuleTemplate.js +0 -142
  2422. package/examples/node_modules/webpack/lib/ModuleWarning.js +0 -61
  2423. package/examples/node_modules/webpack/lib/MultiCompiler.js +0 -582
  2424. package/examples/node_modules/webpack/lib/MultiStats.js +0 -166
  2425. package/examples/node_modules/webpack/lib/MultiWatching.js +0 -77
  2426. package/examples/node_modules/webpack/lib/NoEmitOnErrorsPlugin.js +0 -28
  2427. package/examples/node_modules/webpack/lib/NoModeWarning.js +0 -22
  2428. package/examples/node_modules/webpack/lib/NodeStuffInWebError.js +0 -34
  2429. package/examples/node_modules/webpack/lib/NodeStuffPlugin.js +0 -186
  2430. package/examples/node_modules/webpack/lib/NormalModule.js +0 -1411
  2431. package/examples/node_modules/webpack/lib/NormalModuleFactory.js +0 -1118
  2432. package/examples/node_modules/webpack/lib/NormalModuleReplacementPlugin.js +0 -71
  2433. package/examples/node_modules/webpack/lib/NullFactory.js +0 -23
  2434. package/examples/node_modules/webpack/lib/OptimizationStages.js +0 -10
  2435. package/examples/node_modules/webpack/lib/OptionsApply.js +0 -11
  2436. package/examples/node_modules/webpack/lib/Parser.js +0 -38
  2437. package/examples/node_modules/webpack/lib/PrefetchPlugin.js +0 -50
  2438. package/examples/node_modules/webpack/lib/ProgressPlugin.js +0 -613
  2439. package/examples/node_modules/webpack/lib/ProvidePlugin.js +0 -101
  2440. package/examples/node_modules/webpack/lib/RawModule.js +0 -152
  2441. package/examples/node_modules/webpack/lib/RecordIdsPlugin.js +0 -238
  2442. package/examples/node_modules/webpack/lib/RequestShortener.js +0 -34
  2443. package/examples/node_modules/webpack/lib/RequireJsStuffPlugin.js +0 -77
  2444. package/examples/node_modules/webpack/lib/ResolverFactory.js +0 -151
  2445. package/examples/node_modules/webpack/lib/RuntimeGlobals.js +0 -381
  2446. package/examples/node_modules/webpack/lib/RuntimeModule.js +0 -213
  2447. package/examples/node_modules/webpack/lib/RuntimePlugin.js +0 -444
  2448. package/examples/node_modules/webpack/lib/RuntimeTemplate.js +0 -1041
  2449. package/examples/node_modules/webpack/lib/SelfModuleFactory.js +0 -21
  2450. package/examples/node_modules/webpack/lib/SingleEntryPlugin.js +0 -8
  2451. package/examples/node_modules/webpack/lib/SizeFormatHelpers.js +0 -27
  2452. package/examples/node_modules/webpack/lib/SourceMapDevToolModuleOptionsPlugin.js +0 -57
  2453. package/examples/node_modules/webpack/lib/SourceMapDevToolPlugin.js +0 -560
  2454. package/examples/node_modules/webpack/lib/Stats.js +0 -84
  2455. package/examples/node_modules/webpack/lib/Template.js +0 -419
  2456. package/examples/node_modules/webpack/lib/TemplatedPathPlugin.js +0 -346
  2457. package/examples/node_modules/webpack/lib/UnhandledSchemeError.js +0 -33
  2458. package/examples/node_modules/webpack/lib/UnsupportedFeatureWarning.js +0 -32
  2459. package/examples/node_modules/webpack/lib/UseStrictPlugin.js +0 -56
  2460. package/examples/node_modules/webpack/lib/WarnCaseSensitiveModulesPlugin.js +0 -53
  2461. package/examples/node_modules/webpack/lib/WarnDeprecatedOptionPlugin.js +0 -54
  2462. package/examples/node_modules/webpack/lib/WarnNoModeSetPlugin.js +0 -25
  2463. package/examples/node_modules/webpack/lib/WatchIgnorePlugin.js +0 -132
  2464. package/examples/node_modules/webpack/lib/Watching.js +0 -479
  2465. package/examples/node_modules/webpack/lib/WebpackError.js +0 -61
  2466. package/examples/node_modules/webpack/lib/WebpackIsIncludedPlugin.js +0 -85
  2467. package/examples/node_modules/webpack/lib/WebpackOptionsApply.js +0 -700
  2468. package/examples/node_modules/webpack/lib/WebpackOptionsDefaulter.js +0 -19
  2469. package/examples/node_modules/webpack/lib/asset/AssetGenerator.js +0 -464
  2470. package/examples/node_modules/webpack/lib/asset/AssetModulesPlugin.js +0 -223
  2471. package/examples/node_modules/webpack/lib/asset/AssetParser.js +0 -56
  2472. package/examples/node_modules/webpack/lib/asset/AssetSourceGenerator.js +0 -71
  2473. package/examples/node_modules/webpack/lib/asset/AssetSourceParser.js +0 -31
  2474. package/examples/node_modules/webpack/lib/asset/RawDataUrlModule.js +0 -148
  2475. package/examples/node_modules/webpack/lib/async-modules/AwaitDependenciesInitFragment.js +0 -69
  2476. package/examples/node_modules/webpack/lib/async-modules/InferAsyncModulesPlugin.js +0 -55
  2477. package/examples/node_modules/webpack/lib/buildChunkGraph.js +0 -1401
  2478. package/examples/node_modules/webpack/lib/cache/AddBuildDependenciesPlugin.js +0 -33
  2479. package/examples/node_modules/webpack/lib/cache/AddManagedPathsPlugin.js +0 -35
  2480. package/examples/node_modules/webpack/lib/cache/IdleFileCachePlugin.js +0 -227
  2481. package/examples/node_modules/webpack/lib/cache/MemoryCachePlugin.js +0 -57
  2482. package/examples/node_modules/webpack/lib/cache/MemoryWithGcCachePlugin.js +0 -129
  2483. package/examples/node_modules/webpack/lib/cache/PackFileCacheStrategy.js +0 -1426
  2484. package/examples/node_modules/webpack/lib/cache/ResolverCachePlugin.js +0 -354
  2485. package/examples/node_modules/webpack/lib/cache/getLazyHashedEtag.js +0 -81
  2486. package/examples/node_modules/webpack/lib/cache/mergeEtags.js +0 -74
  2487. package/examples/node_modules/webpack/lib/cli.js +0 -655
  2488. package/examples/node_modules/webpack/lib/config/browserslistTargetHandler.js +0 -333
  2489. package/examples/node_modules/webpack/lib/config/defaults.js +0 -1309
  2490. package/examples/node_modules/webpack/lib/config/normalization.js +0 -529
  2491. package/examples/node_modules/webpack/lib/config/target.js +0 -348
  2492. package/examples/node_modules/webpack/lib/container/ContainerEntryDependency.js +0 -47
  2493. package/examples/node_modules/webpack/lib/container/ContainerEntryModule.js +0 -283
  2494. package/examples/node_modules/webpack/lib/container/ContainerEntryModuleFactory.js +0 -27
  2495. package/examples/node_modules/webpack/lib/container/ContainerExposedDependency.js +0 -52
  2496. package/examples/node_modules/webpack/lib/container/ContainerPlugin.js +0 -105
  2497. package/examples/node_modules/webpack/lib/container/ContainerReferencePlugin.js +0 -142
  2498. package/examples/node_modules/webpack/lib/container/FallbackDependency.js +0 -51
  2499. package/examples/node_modules/webpack/lib/container/FallbackItemDependency.js +0 -30
  2500. package/examples/node_modules/webpack/lib/container/FallbackModule.js +0 -173
  2501. package/examples/node_modules/webpack/lib/container/FallbackModuleFactory.js +0 -27
  2502. package/examples/node_modules/webpack/lib/container/ModuleFederationPlugin.js +0 -92
  2503. package/examples/node_modules/webpack/lib/container/RemoteModule.js +0 -171
  2504. package/examples/node_modules/webpack/lib/container/RemoteRuntimeModule.js +0 -128
  2505. package/examples/node_modules/webpack/lib/container/RemoteToExternalDependency.js +0 -30
  2506. package/examples/node_modules/webpack/lib/container/options.js +0 -91
  2507. package/examples/node_modules/webpack/lib/css/CssExportsGenerator.js +0 -139
  2508. package/examples/node_modules/webpack/lib/css/CssGenerator.js +0 -109
  2509. package/examples/node_modules/webpack/lib/css/CssLoadingRuntimeModule.js +0 -440
  2510. package/examples/node_modules/webpack/lib/css/CssModulesPlugin.js +0 -462
  2511. package/examples/node_modules/webpack/lib/css/CssParser.js +0 -618
  2512. package/examples/node_modules/webpack/lib/css/walkCssTokens.js +0 -659
  2513. package/examples/node_modules/webpack/lib/debug/ProfilingPlugin.js +0 -454
  2514. package/examples/node_modules/webpack/lib/dependencies/AMDDefineDependency.js +0 -221
  2515. package/examples/node_modules/webpack/lib/dependencies/AMDDefineDependencyParserPlugin.js +0 -354
  2516. package/examples/node_modules/webpack/lib/dependencies/AMDPlugin.js +0 -216
  2517. package/examples/node_modules/webpack/lib/dependencies/AMDRequireArrayDependency.js +0 -99
  2518. package/examples/node_modules/webpack/lib/dependencies/AMDRequireContextDependency.js +0 -53
  2519. package/examples/node_modules/webpack/lib/dependencies/AMDRequireDependenciesBlock.js +0 -22
  2520. package/examples/node_modules/webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin.js +0 -279
  2521. package/examples/node_modules/webpack/lib/dependencies/AMDRequireDependency.js +0 -174
  2522. package/examples/node_modules/webpack/lib/dependencies/AMDRequireItemDependency.js +0 -35
  2523. package/examples/node_modules/webpack/lib/dependencies/AMDRuntimeModules.js +0 -48
  2524. package/examples/node_modules/webpack/lib/dependencies/CachedConstDependency.js +0 -106
  2525. package/examples/node_modules/webpack/lib/dependencies/CommonJsDependencyHelpers.js +0 -49
  2526. package/examples/node_modules/webpack/lib/dependencies/CommonJsExportRequireDependency.js +0 -374
  2527. package/examples/node_modules/webpack/lib/dependencies/CommonJsExportsDependency.js +0 -160
  2528. package/examples/node_modules/webpack/lib/dependencies/CommonJsExportsParserPlugin.js +0 -336
  2529. package/examples/node_modules/webpack/lib/dependencies/CommonJsFullRequireDependency.js +0 -136
  2530. package/examples/node_modules/webpack/lib/dependencies/CommonJsImportsParserPlugin.js +0 -388
  2531. package/examples/node_modules/webpack/lib/dependencies/CommonJsPlugin.js +0 -280
  2532. package/examples/node_modules/webpack/lib/dependencies/CommonJsRequireContextDependency.js +0 -55
  2533. package/examples/node_modules/webpack/lib/dependencies/CommonJsRequireDependency.js +0 -34
  2534. package/examples/node_modules/webpack/lib/dependencies/CommonJsSelfReferenceDependency.js +0 -141
  2535. package/examples/node_modules/webpack/lib/dependencies/ConstDependency.js +0 -108
  2536. package/examples/node_modules/webpack/lib/dependencies/ContextDependency.js +0 -147
  2537. package/examples/node_modules/webpack/lib/dependencies/ContextDependencyHelpers.js +0 -232
  2538. package/examples/node_modules/webpack/lib/dependencies/ContextDependencyTemplateAsId.js +0 -61
  2539. package/examples/node_modules/webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall.js +0 -59
  2540. package/examples/node_modules/webpack/lib/dependencies/ContextElementDependency.js +0 -77
  2541. package/examples/node_modules/webpack/lib/dependencies/CreateScriptUrlDependency.js +0 -66
  2542. package/examples/node_modules/webpack/lib/dependencies/CriticalDependencyWarning.js +0 -25
  2543. package/examples/node_modules/webpack/lib/dependencies/CssExportDependency.js +0 -85
  2544. package/examples/node_modules/webpack/lib/dependencies/CssImportDependency.js +0 -75
  2545. package/examples/node_modules/webpack/lib/dependencies/CssLocalIdentifierDependency.js +0 -119
  2546. package/examples/node_modules/webpack/lib/dependencies/CssSelfLocalIdentifierDependency.js +0 -101
  2547. package/examples/node_modules/webpack/lib/dependencies/CssUrlDependency.js +0 -132
  2548. package/examples/node_modules/webpack/lib/dependencies/DelegatedSourceDependency.js +0 -30
  2549. package/examples/node_modules/webpack/lib/dependencies/DllEntryDependency.js +0 -47
  2550. package/examples/node_modules/webpack/lib/dependencies/DynamicExports.js +0 -69
  2551. package/examples/node_modules/webpack/lib/dependencies/EntryDependency.js +0 -30
  2552. package/examples/node_modules/webpack/lib/dependencies/ExportsInfoDependency.js +0 -143
  2553. package/examples/node_modules/webpack/lib/dependencies/HarmonyAcceptDependency.js +0 -134
  2554. package/examples/node_modules/webpack/lib/dependencies/HarmonyAcceptImportDependency.js +0 -37
  2555. package/examples/node_modules/webpack/lib/dependencies/HarmonyCompatibilityDependency.js +0 -91
  2556. package/examples/node_modules/webpack/lib/dependencies/HarmonyDetectionParserPlugin.js +0 -97
  2557. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportDependencyParserPlugin.js +0 -185
  2558. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportExpressionDependency.js +0 -190
  2559. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportHeaderDependency.js +0 -65
  2560. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency.js +0 -1271
  2561. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportInitFragment.js +0 -168
  2562. package/examples/node_modules/webpack/lib/dependencies/HarmonyExportSpecifierDependency.js +0 -111
  2563. package/examples/node_modules/webpack/lib/dependencies/HarmonyExports.js +0 -40
  2564. package/examples/node_modules/webpack/lib/dependencies/HarmonyImportDependency.js +0 -359
  2565. package/examples/node_modules/webpack/lib/dependencies/HarmonyImportDependencyParserPlugin.js +0 -256
  2566. package/examples/node_modules/webpack/lib/dependencies/HarmonyImportSideEffectDependency.js +0 -80
  2567. package/examples/node_modules/webpack/lib/dependencies/HarmonyImportSpecifierDependency.js +0 -331
  2568. package/examples/node_modules/webpack/lib/dependencies/HarmonyModulesPlugin.js +0 -121
  2569. package/examples/node_modules/webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js +0 -27
  2570. package/examples/node_modules/webpack/lib/dependencies/ImportContextDependency.js +0 -52
  2571. package/examples/node_modules/webpack/lib/dependencies/ImportDependency.js +0 -101
  2572. package/examples/node_modules/webpack/lib/dependencies/ImportEagerDependency.js +0 -69
  2573. package/examples/node_modules/webpack/lib/dependencies/ImportMetaContextDependency.js +0 -35
  2574. package/examples/node_modules/webpack/lib/dependencies/ImportMetaContextDependencyParserPlugin.js +0 -252
  2575. package/examples/node_modules/webpack/lib/dependencies/ImportMetaContextPlugin.js +0 -59
  2576. package/examples/node_modules/webpack/lib/dependencies/ImportMetaHotAcceptDependency.js +0 -35
  2577. package/examples/node_modules/webpack/lib/dependencies/ImportMetaHotDeclineDependency.js +0 -36
  2578. package/examples/node_modules/webpack/lib/dependencies/ImportMetaPlugin.js +0 -203
  2579. package/examples/node_modules/webpack/lib/dependencies/ImportParserPlugin.js +0 -267
  2580. package/examples/node_modules/webpack/lib/dependencies/ImportPlugin.js +0 -82
  2581. package/examples/node_modules/webpack/lib/dependencies/ImportWeakDependency.js +0 -67
  2582. package/examples/node_modules/webpack/lib/dependencies/JsonExportsDependency.js +0 -103
  2583. package/examples/node_modules/webpack/lib/dependencies/LoaderDependency.js +0 -27
  2584. package/examples/node_modules/webpack/lib/dependencies/LoaderImportDependency.js +0 -28
  2585. package/examples/node_modules/webpack/lib/dependencies/LoaderPlugin.js +0 -261
  2586. package/examples/node_modules/webpack/lib/dependencies/LocalModule.js +0 -44
  2587. package/examples/node_modules/webpack/lib/dependencies/LocalModuleDependency.js +0 -69
  2588. package/examples/node_modules/webpack/lib/dependencies/LocalModulesHelpers.js +0 -50
  2589. package/examples/node_modules/webpack/lib/dependencies/ModuleDecoratorDependency.js +0 -129
  2590. package/examples/node_modules/webpack/lib/dependencies/ModuleDependency.js +0 -81
  2591. package/examples/node_modules/webpack/lib/dependencies/ModuleDependencyTemplateAsId.js +0 -34
  2592. package/examples/node_modules/webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId.js +0 -38
  2593. package/examples/node_modules/webpack/lib/dependencies/ModuleHotAcceptDependency.js +0 -35
  2594. package/examples/node_modules/webpack/lib/dependencies/ModuleHotDeclineDependency.js +0 -36
  2595. package/examples/node_modules/webpack/lib/dependencies/NullDependency.js +0 -40
  2596. package/examples/node_modules/webpack/lib/dependencies/PrefetchDependency.js +0 -24
  2597. package/examples/node_modules/webpack/lib/dependencies/ProvidedDependency.js +0 -122
  2598. package/examples/node_modules/webpack/lib/dependencies/PureExpressionDependency.js +0 -128
  2599. package/examples/node_modules/webpack/lib/dependencies/RequireContextDependency.js +0 -31
  2600. package/examples/node_modules/webpack/lib/dependencies/RequireContextDependencyParserPlugin.js +0 -58
  2601. package/examples/node_modules/webpack/lib/dependencies/RequireContextPlugin.js +0 -150
  2602. package/examples/node_modules/webpack/lib/dependencies/RequireEnsureDependenciesBlock.js +0 -22
  2603. package/examples/node_modules/webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin.js +0 -121
  2604. package/examples/node_modules/webpack/lib/dependencies/RequireEnsureDependency.js +0 -101
  2605. package/examples/node_modules/webpack/lib/dependencies/RequireEnsureItemDependency.js +0 -33
  2606. package/examples/node_modules/webpack/lib/dependencies/RequireEnsurePlugin.js +0 -66
  2607. package/examples/node_modules/webpack/lib/dependencies/RequireHeaderDependency.js +0 -57
  2608. package/examples/node_modules/webpack/lib/dependencies/RequireIncludeDependency.js +0 -74
  2609. package/examples/node_modules/webpack/lib/dependencies/RequireIncludeDependencyParserPlugin.js +0 -77
  2610. package/examples/node_modules/webpack/lib/dependencies/RequireIncludePlugin.js +0 -42
  2611. package/examples/node_modules/webpack/lib/dependencies/RequireResolveContextDependency.js +0 -50
  2612. package/examples/node_modules/webpack/lib/dependencies/RequireResolveDependency.js +0 -51
  2613. package/examples/node_modules/webpack/lib/dependencies/RequireResolveHeaderDependency.js +0 -63
  2614. package/examples/node_modules/webpack/lib/dependencies/RuntimeRequirementsDependency.js +0 -77
  2615. package/examples/node_modules/webpack/lib/dependencies/StaticExportsDependency.js +0 -66
  2616. package/examples/node_modules/webpack/lib/dependencies/SystemPlugin.js +0 -140
  2617. package/examples/node_modules/webpack/lib/dependencies/SystemRuntimeModule.js +0 -35
  2618. package/examples/node_modules/webpack/lib/dependencies/URLDependency.js +0 -158
  2619. package/examples/node_modules/webpack/lib/dependencies/URLPlugin.js +0 -114
  2620. package/examples/node_modules/webpack/lib/dependencies/UnsupportedDependency.js +0 -69
  2621. package/examples/node_modules/webpack/lib/dependencies/WebAssemblyExportImportedDependency.js +0 -79
  2622. package/examples/node_modules/webpack/lib/dependencies/WebAssemblyImportDependency.js +0 -100
  2623. package/examples/node_modules/webpack/lib/dependencies/WebpackIsIncludedDependency.js +0 -80
  2624. package/examples/node_modules/webpack/lib/dependencies/WorkerDependency.js +0 -89
  2625. package/examples/node_modules/webpack/lib/dependencies/WorkerPlugin.js +0 -416
  2626. package/examples/node_modules/webpack/lib/dependencies/getFunctionExpression.js +0 -55
  2627. package/examples/node_modules/webpack/lib/dependencies/processExportInfo.js +0 -65
  2628. package/examples/node_modules/webpack/lib/electron/ElectronTargetPlugin.js +0 -68
  2629. package/examples/node_modules/webpack/lib/errors/BuildCycleError.js +0 -27
  2630. package/examples/node_modules/webpack/lib/esm/ExportWebpackRequireRuntimeModule.js +0 -29
  2631. package/examples/node_modules/webpack/lib/esm/ModuleChunkFormatPlugin.js +0 -202
  2632. package/examples/node_modules/webpack/lib/esm/ModuleChunkLoadingPlugin.js +0 -76
  2633. package/examples/node_modules/webpack/lib/esm/ModuleChunkLoadingRuntimeModule.js +0 -242
  2634. package/examples/node_modules/webpack/lib/formatLocation.js +0 -68
  2635. package/examples/node_modules/webpack/lib/hmr/HotModuleReplacement.runtime.js +0 -394
  2636. package/examples/node_modules/webpack/lib/hmr/HotModuleReplacementRuntimeModule.js +0 -42
  2637. package/examples/node_modules/webpack/lib/hmr/JavascriptHotModuleReplacement.runtime.js +0 -462
  2638. package/examples/node_modules/webpack/lib/hmr/LazyCompilationPlugin.js +0 -418
  2639. package/examples/node_modules/webpack/lib/hmr/lazyCompilationBackend.js +0 -143
  2640. package/examples/node_modules/webpack/lib/ids/ChunkModuleIdRangePlugin.js +0 -80
  2641. package/examples/node_modules/webpack/lib/ids/DeterministicChunkIdsPlugin.js +0 -70
  2642. package/examples/node_modules/webpack/lib/ids/DeterministicModuleIdsPlugin.js +0 -93
  2643. package/examples/node_modules/webpack/lib/ids/HashedModuleIdsPlugin.js +0 -77
  2644. package/examples/node_modules/webpack/lib/ids/IdHelpers.js +0 -477
  2645. package/examples/node_modules/webpack/lib/ids/NamedChunkIdsPlugin.js +0 -81
  2646. package/examples/node_modules/webpack/lib/ids/NamedModuleIdsPlugin.js +0 -58
  2647. package/examples/node_modules/webpack/lib/ids/NaturalChunkIdsPlugin.js +0 -33
  2648. package/examples/node_modules/webpack/lib/ids/NaturalModuleIdsPlugin.js +0 -39
  2649. package/examples/node_modules/webpack/lib/ids/OccurrenceChunkIdsPlugin.js +0 -80
  2650. package/examples/node_modules/webpack/lib/ids/OccurrenceModuleIdsPlugin.js +0 -159
  2651. package/examples/node_modules/webpack/lib/ids/SyncModuleIdsPlugin.js +0 -140
  2652. package/examples/node_modules/webpack/lib/index.js +0 -579
  2653. package/examples/node_modules/webpack/lib/javascript/ArrayPushCallbackChunkFormatPlugin.js +0 -154
  2654. package/examples/node_modules/webpack/lib/javascript/BasicEvaluatedExpression.js +0 -480
  2655. package/examples/node_modules/webpack/lib/javascript/ChunkHelpers.js +0 -33
  2656. package/examples/node_modules/webpack/lib/javascript/CommonJsChunkFormatPlugin.js +0 -172
  2657. package/examples/node_modules/webpack/lib/javascript/EnableChunkLoadingPlugin.js +0 -118
  2658. package/examples/node_modules/webpack/lib/javascript/JavascriptGenerator.js +0 -225
  2659. package/examples/node_modules/webpack/lib/javascript/JavascriptModulesPlugin.js +0 -1370
  2660. package/examples/node_modules/webpack/lib/javascript/JavascriptParser.js +0 -3776
  2661. package/examples/node_modules/webpack/lib/javascript/JavascriptParserHelpers.js +0 -107
  2662. package/examples/node_modules/webpack/lib/javascript/StartupHelpers.js +0 -132
  2663. package/examples/node_modules/webpack/lib/json/JsonData.js +0 -41
  2664. package/examples/node_modules/webpack/lib/json/JsonGenerator.js +0 -191
  2665. package/examples/node_modules/webpack/lib/json/JsonModulesPlugin.js +0 -50
  2666. package/examples/node_modules/webpack/lib/json/JsonParser.js +0 -57
  2667. package/examples/node_modules/webpack/lib/library/AbstractLibraryPlugin.js +0 -297
  2668. package/examples/node_modules/webpack/lib/library/AmdLibraryPlugin.js +0 -162
  2669. package/examples/node_modules/webpack/lib/library/AssignLibraryPlugin.js +0 -375
  2670. package/examples/node_modules/webpack/lib/library/EnableLibraryPlugin.js +0 -248
  2671. package/examples/node_modules/webpack/lib/library/ExportPropertyLibraryPlugin.js +0 -113
  2672. package/examples/node_modules/webpack/lib/library/JsonpLibraryPlugin.js +0 -88
  2673. package/examples/node_modules/webpack/lib/library/ModuleLibraryPlugin.js +0 -104
  2674. package/examples/node_modules/webpack/lib/library/SystemLibraryPlugin.js +0 -233
  2675. package/examples/node_modules/webpack/lib/library/UmdLibraryPlugin.js +0 -324
  2676. package/examples/node_modules/webpack/lib/logging/Logger.js +0 -163
  2677. package/examples/node_modules/webpack/lib/logging/createConsoleLogger.js +0 -228
  2678. package/examples/node_modules/webpack/lib/logging/runtime.js +0 -46
  2679. package/examples/node_modules/webpack/lib/logging/truncateArgs.js +0 -82
  2680. package/examples/node_modules/webpack/lib/node/CommonJsChunkLoadingPlugin.js +0 -105
  2681. package/examples/node_modules/webpack/lib/node/NodeEnvironmentPlugin.js +0 -60
  2682. package/examples/node_modules/webpack/lib/node/NodeSourcePlugin.js +0 -19
  2683. package/examples/node_modules/webpack/lib/node/NodeTargetPlugin.js +0 -81
  2684. package/examples/node_modules/webpack/lib/node/NodeTemplatePlugin.js +0 -33
  2685. package/examples/node_modules/webpack/lib/node/NodeWatchFileSystem.js +0 -194
  2686. package/examples/node_modules/webpack/lib/node/ReadFileChunkLoadingRuntimeModule.js +0 -291
  2687. package/examples/node_modules/webpack/lib/node/ReadFileCompileAsyncWasmPlugin.js +0 -107
  2688. package/examples/node_modules/webpack/lib/node/ReadFileCompileWasmPlugin.js +0 -93
  2689. package/examples/node_modules/webpack/lib/node/RequireChunkLoadingRuntimeModule.js +0 -238
  2690. package/examples/node_modules/webpack/lib/node/nodeConsole.js +0 -143
  2691. package/examples/node_modules/webpack/lib/optimize/AggressiveMergingPlugin.js +0 -92
  2692. package/examples/node_modules/webpack/lib/optimize/AggressiveSplittingPlugin.js +0 -329
  2693. package/examples/node_modules/webpack/lib/optimize/ConcatenatedModule.js +0 -1879
  2694. package/examples/node_modules/webpack/lib/optimize/EnsureChunkConditionsPlugin.js +0 -85
  2695. package/examples/node_modules/webpack/lib/optimize/FlagIncludedChunksPlugin.js +0 -118
  2696. package/examples/node_modules/webpack/lib/optimize/InnerGraph.js +0 -346
  2697. package/examples/node_modules/webpack/lib/optimize/InnerGraphPlugin.js +0 -368
  2698. package/examples/node_modules/webpack/lib/optimize/LimitChunkCountPlugin.js +0 -256
  2699. package/examples/node_modules/webpack/lib/optimize/MangleExportsPlugin.js +0 -177
  2700. package/examples/node_modules/webpack/lib/optimize/MergeDuplicateChunksPlugin.js +0 -115
  2701. package/examples/node_modules/webpack/lib/optimize/MinChunkSizePlugin.js +0 -113
  2702. package/examples/node_modules/webpack/lib/optimize/MinMaxSizeWarning.js +0 -30
  2703. package/examples/node_modules/webpack/lib/optimize/ModuleConcatenationPlugin.js +0 -866
  2704. package/examples/node_modules/webpack/lib/optimize/RealContentHashPlugin.js +0 -408
  2705. package/examples/node_modules/webpack/lib/optimize/RemoveEmptyChunksPlugin.js +0 -57
  2706. package/examples/node_modules/webpack/lib/optimize/RemoveParentModulesPlugin.js +0 -121
  2707. package/examples/node_modules/webpack/lib/optimize/RuntimeChunkPlugin.js +0 -44
  2708. package/examples/node_modules/webpack/lib/optimize/SideEffectsFlagPlugin.js +0 -337
  2709. package/examples/node_modules/webpack/lib/optimize/SplitChunksPlugin.js +0 -1723
  2710. package/examples/node_modules/webpack/lib/performance/AssetsOverSizeLimitWarning.js +0 -32
  2711. package/examples/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js +0 -35
  2712. package/examples/node_modules/webpack/lib/performance/NoAsyncChunksWarning.js +0 -20
  2713. package/examples/node_modules/webpack/lib/performance/SizeLimitsPlugin.js +0 -165
  2714. package/examples/node_modules/webpack/lib/prefetch/ChunkPrefetchFunctionRuntimeModule.js +0 -44
  2715. package/examples/node_modules/webpack/lib/prefetch/ChunkPrefetchPreloadPlugin.js +0 -95
  2716. package/examples/node_modules/webpack/lib/prefetch/ChunkPrefetchStartupRuntimeModule.js +0 -52
  2717. package/examples/node_modules/webpack/lib/prefetch/ChunkPrefetchTriggerRuntimeModule.js +0 -49
  2718. package/examples/node_modules/webpack/lib/prefetch/ChunkPreloadTriggerRuntimeModule.js +0 -43
  2719. package/examples/node_modules/webpack/lib/rules/BasicEffectRulePlugin.js +0 -39
  2720. package/examples/node_modules/webpack/lib/rules/BasicMatcherRulePlugin.js +0 -47
  2721. package/examples/node_modules/webpack/lib/rules/ObjectMatcherRulePlugin.js +0 -47
  2722. package/examples/node_modules/webpack/lib/rules/RuleSetCompiler.js +0 -379
  2723. package/examples/node_modules/webpack/lib/rules/UseEffectRulePlugin.js +0 -194
  2724. package/examples/node_modules/webpack/lib/runtime/AsyncModuleRuntimeModule.js +0 -156
  2725. package/examples/node_modules/webpack/lib/runtime/AutoPublicPathRuntimeModule.js +0 -69
  2726. package/examples/node_modules/webpack/lib/runtime/ChunkNameRuntimeModule.js +0 -27
  2727. package/examples/node_modules/webpack/lib/runtime/CompatGetDefaultExportRuntimeModule.js +0 -37
  2728. package/examples/node_modules/webpack/lib/runtime/CompatRuntimeModule.js +0 -78
  2729. package/examples/node_modules/webpack/lib/runtime/CreateFakeNamespaceObjectRuntimeModule.js +0 -66
  2730. package/examples/node_modules/webpack/lib/runtime/CreateScriptRuntimeModule.js +0 -36
  2731. package/examples/node_modules/webpack/lib/runtime/CreateScriptUrlRuntimeModule.js +0 -36
  2732. package/examples/node_modules/webpack/lib/runtime/DefinePropertyGettersRuntimeModule.js +0 -39
  2733. package/examples/node_modules/webpack/lib/runtime/EnsureChunkRuntimeModule.js +0 -54
  2734. package/examples/node_modules/webpack/lib/runtime/GetChunkFilenameRuntimeModule.js +0 -282
  2735. package/examples/node_modules/webpack/lib/runtime/GetFullHashRuntimeModule.js +0 -29
  2736. package/examples/node_modules/webpack/lib/runtime/GetMainFilenameRuntimeModule.js +0 -44
  2737. package/examples/node_modules/webpack/lib/runtime/GetTrustedTypesPolicyRuntimeModule.js +0 -76
  2738. package/examples/node_modules/webpack/lib/runtime/GlobalRuntimeModule.js +0 -47
  2739. package/examples/node_modules/webpack/lib/runtime/HasOwnPropertyRuntimeModule.js +0 -32
  2740. package/examples/node_modules/webpack/lib/runtime/HelperRuntimeModule.js +0 -18
  2741. package/examples/node_modules/webpack/lib/runtime/LoadScriptRuntimeModule.js +0 -158
  2742. package/examples/node_modules/webpack/lib/runtime/MakeNamespaceObjectRuntimeModule.js +0 -36
  2743. package/examples/node_modules/webpack/lib/runtime/OnChunksLoadedRuntimeModule.js +0 -76
  2744. package/examples/node_modules/webpack/lib/runtime/PublicPathRuntimeModule.js +0 -30
  2745. package/examples/node_modules/webpack/lib/runtime/RelativeUrlRuntimeModule.js +0 -41
  2746. package/examples/node_modules/webpack/lib/runtime/RuntimeIdRuntimeModule.js +0 -28
  2747. package/examples/node_modules/webpack/lib/runtime/StartupChunkDependenciesPlugin.js +0 -74
  2748. package/examples/node_modules/webpack/lib/runtime/StartupChunkDependenciesRuntimeModule.js +0 -67
  2749. package/examples/node_modules/webpack/lib/runtime/StartupEntrypointRuntimeModule.js +0 -50
  2750. package/examples/node_modules/webpack/lib/runtime/SystemContextRuntimeModule.js +0 -25
  2751. package/examples/node_modules/webpack/lib/schemes/DataUriPlugin.js +0 -56
  2752. package/examples/node_modules/webpack/lib/schemes/FileUriPlugin.js +0 -49
  2753. package/examples/node_modules/webpack/lib/schemes/HttpUriPlugin.js +0 -1118
  2754. package/examples/node_modules/webpack/lib/serialization/ArraySerializer.js +0 -22
  2755. package/examples/node_modules/webpack/lib/serialization/BinaryMiddleware.js +0 -950
  2756. package/examples/node_modules/webpack/lib/serialization/DateObjectSerializer.js +0 -16
  2757. package/examples/node_modules/webpack/lib/serialization/ErrorObjectSerializer.js +0 -27
  2758. package/examples/node_modules/webpack/lib/serialization/FileMiddleware.js +0 -665
  2759. package/examples/node_modules/webpack/lib/serialization/MapObjectSerializer.js +0 -31
  2760. package/examples/node_modules/webpack/lib/serialization/NullPrototypeObjectSerializer.js +0 -33
  2761. package/examples/node_modules/webpack/lib/serialization/ObjectMiddleware.js +0 -734
  2762. package/examples/node_modules/webpack/lib/serialization/PlainObjectSerializer.js +0 -80
  2763. package/examples/node_modules/webpack/lib/serialization/RegExpObjectSerializer.js +0 -17
  2764. package/examples/node_modules/webpack/lib/serialization/Serializer.js +0 -46
  2765. package/examples/node_modules/webpack/lib/serialization/SerializerMiddleware.js +0 -153
  2766. package/examples/node_modules/webpack/lib/serialization/SetObjectSerializer.js +0 -24
  2767. package/examples/node_modules/webpack/lib/serialization/SingleItemMiddleware.js +0 -34
  2768. package/examples/node_modules/webpack/lib/serialization/types.js +0 -13
  2769. package/examples/node_modules/webpack/lib/sharing/ConsumeSharedFallbackDependency.js +0 -30
  2770. package/examples/node_modules/webpack/lib/sharing/ConsumeSharedModule.js +0 -251
  2771. package/examples/node_modules/webpack/lib/sharing/ConsumeSharedPlugin.js +0 -319
  2772. package/examples/node_modules/webpack/lib/sharing/ConsumeSharedRuntimeModule.js +0 -360
  2773. package/examples/node_modules/webpack/lib/sharing/ProvideForSharedDependency.js +0 -34
  2774. package/examples/node_modules/webpack/lib/sharing/ProvideSharedDependency.js +0 -63
  2775. package/examples/node_modules/webpack/lib/sharing/ProvideSharedModule.js +0 -184
  2776. package/examples/node_modules/webpack/lib/sharing/ProvideSharedModuleFactory.js +0 -35
  2777. package/examples/node_modules/webpack/lib/sharing/ProvideSharedPlugin.js +0 -237
  2778. package/examples/node_modules/webpack/lib/sharing/SharePlugin.js +0 -92
  2779. package/examples/node_modules/webpack/lib/sharing/ShareRuntimeModule.js +0 -141
  2780. package/examples/node_modules/webpack/lib/sharing/resolveMatchedConfigs.js +0 -91
  2781. package/examples/node_modules/webpack/lib/sharing/utils.js +0 -90
  2782. package/examples/node_modules/webpack/lib/stats/DefaultStatsFactoryPlugin.js +0 -2398
  2783. package/examples/node_modules/webpack/lib/stats/DefaultStatsPresetPlugin.js +0 -326
  2784. package/examples/node_modules/webpack/lib/stats/DefaultStatsPrinterPlugin.js +0 -1380
  2785. package/examples/node_modules/webpack/lib/stats/StatsFactory.js +0 -292
  2786. package/examples/node_modules/webpack/lib/stats/StatsPrinter.js +0 -249
  2787. package/examples/node_modules/webpack/lib/util/ArrayHelpers.js +0 -44
  2788. package/examples/node_modules/webpack/lib/util/ArrayQueue.js +0 -111
  2789. package/examples/node_modules/webpack/lib/util/AsyncQueue.js +0 -373
  2790. package/examples/node_modules/webpack/lib/util/Hash.js +0 -35
  2791. package/examples/node_modules/webpack/lib/util/IterableHelpers.js +0 -46
  2792. package/examples/node_modules/webpack/lib/util/LazyBucketSortedSet.js +0 -236
  2793. package/examples/node_modules/webpack/lib/util/LazySet.js +0 -208
  2794. package/examples/node_modules/webpack/lib/util/MapHelpers.js +0 -22
  2795. package/examples/node_modules/webpack/lib/util/ParallelismFactorCalculator.js +0 -59
  2796. package/examples/node_modules/webpack/lib/util/Queue.js +0 -51
  2797. package/examples/node_modules/webpack/lib/util/Semaphore.js +0 -54
  2798. package/examples/node_modules/webpack/lib/util/SetHelpers.js +0 -94
  2799. package/examples/node_modules/webpack/lib/util/SortableSet.js +0 -160
  2800. package/examples/node_modules/webpack/lib/util/StackedCacheMap.js +0 -110
  2801. package/examples/node_modules/webpack/lib/util/StackedMap.js +0 -166
  2802. package/examples/node_modules/webpack/lib/util/StringXor.js +0 -55
  2803. package/examples/node_modules/webpack/lib/util/TupleQueue.js +0 -61
  2804. package/examples/node_modules/webpack/lib/util/TupleSet.js +0 -150
  2805. package/examples/node_modules/webpack/lib/util/URLAbsoluteSpecifier.js +0 -87
  2806. package/examples/node_modules/webpack/lib/util/WeakTupleMap.js +0 -171
  2807. package/examples/node_modules/webpack/lib/util/binarySearchBounds.js +0 -86
  2808. package/examples/node_modules/webpack/lib/util/cleverMerge.js +0 -568
  2809. package/examples/node_modules/webpack/lib/util/comparators.js +0 -459
  2810. package/examples/node_modules/webpack/lib/util/compileBooleanMatcher.js +0 -206
  2811. package/examples/node_modules/webpack/lib/util/create-schema-validation.js +0 -28
  2812. package/examples/node_modules/webpack/lib/util/createHash.js +0 -171
  2813. package/examples/node_modules/webpack/lib/util/deprecation.js +0 -264
  2814. package/examples/node_modules/webpack/lib/util/deterministicGrouping.js +0 -508
  2815. package/examples/node_modules/webpack/lib/util/extractUrlAndGlobal.js +0 -18
  2816. package/examples/node_modules/webpack/lib/util/findGraphRoots.js +0 -229
  2817. package/examples/node_modules/webpack/lib/util/fs.js +0 -337
  2818. package/examples/node_modules/webpack/lib/util/hash/BatchedHash.js +0 -68
  2819. package/examples/node_modules/webpack/lib/util/hash/md4.js +0 -20
  2820. package/examples/node_modules/webpack/lib/util/hash/wasm-hash.js +0 -163
  2821. package/examples/node_modules/webpack/lib/util/hash/xxhash64.js +0 -20
  2822. package/examples/node_modules/webpack/lib/util/identifier.js +0 -377
  2823. package/examples/node_modules/webpack/lib/util/internalSerializables.js +0 -211
  2824. package/examples/node_modules/webpack/lib/util/makeSerializable.js +0 -30
  2825. package/examples/node_modules/webpack/lib/util/memoize.js +0 -32
  2826. package/examples/node_modules/webpack/lib/util/nonNumericOnlyHash.js +0 -22
  2827. package/examples/node_modules/webpack/lib/util/numberHash.js +0 -45
  2828. package/examples/node_modules/webpack/lib/util/objectToMap.js +0 -15
  2829. package/examples/node_modules/webpack/lib/util/processAsyncTree.js +0 -62
  2830. package/examples/node_modules/webpack/lib/util/propertyAccess.js +0 -78
  2831. package/examples/node_modules/webpack/lib/util/registerExternalSerializer.js +0 -337
  2832. package/examples/node_modules/webpack/lib/util/runtime.js +0 -623
  2833. package/examples/node_modules/webpack/lib/util/semver.js +0 -484
  2834. package/examples/node_modules/webpack/lib/util/serialization.js +0 -128
  2835. package/examples/node_modules/webpack/lib/util/smartGrouping.js +0 -206
  2836. package/examples/node_modules/webpack/lib/util/source.js +0 -61
  2837. package/examples/node_modules/webpack/lib/validateSchema.js +0 -175
  2838. package/examples/node_modules/webpack/lib/wasm/EnableWasmLoadingPlugin.js +0 -118
  2839. package/examples/node_modules/webpack/lib/wasm-async/AsyncWasmLoadingRuntimeModule.js +0 -78
  2840. package/examples/node_modules/webpack/lib/wasm-async/AsyncWebAssemblyGenerator.js +0 -53
  2841. package/examples/node_modules/webpack/lib/wasm-async/AsyncWebAssemblyJavascriptGenerator.js +0 -194
  2842. package/examples/node_modules/webpack/lib/wasm-async/AsyncWebAssemblyModulesPlugin.js +0 -198
  2843. package/examples/node_modules/webpack/lib/wasm-async/AsyncWebAssemblyParser.js +0 -75
  2844. package/examples/node_modules/webpack/lib/wasm-sync/UnsupportedWebAssemblyFeatureError.js +0 -16
  2845. package/examples/node_modules/webpack/lib/wasm-sync/WasmChunkLoadingRuntimeModule.js +0 -372
  2846. package/examples/node_modules/webpack/lib/wasm-sync/WasmFinalizeExportsPlugin.js +0 -82
  2847. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyGenerator.js +0 -501
  2848. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyInInitialChunkError.js +0 -106
  2849. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyJavascriptGenerator.js +0 -216
  2850. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyModulesPlugin.js +0 -142
  2851. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyParser.js +0 -192
  2852. package/examples/node_modules/webpack/lib/wasm-sync/WebAssemblyUtils.js +0 -65
  2853. package/examples/node_modules/webpack/lib/web/FetchCompileAsyncWasmPlugin.js +0 -62
  2854. package/examples/node_modules/webpack/lib/web/FetchCompileWasmPlugin.js +0 -71
  2855. package/examples/node_modules/webpack/lib/web/JsonpChunkLoadingPlugin.js +0 -91
  2856. package/examples/node_modules/webpack/lib/web/JsonpChunkLoadingRuntimeModule.js +0 -450
  2857. package/examples/node_modules/webpack/lib/web/JsonpTemplatePlugin.js +0 -38
  2858. package/examples/node_modules/webpack/lib/webpack.js +0 -171
  2859. package/examples/node_modules/webpack/lib/webworker/ImportScriptsChunkLoadingPlugin.js +0 -94
  2860. package/examples/node_modules/webpack/lib/webworker/ImportScriptsChunkLoadingRuntimeModule.js +0 -238
  2861. package/examples/node_modules/webpack/lib/webworker/WebWorkerTemplatePlugin.js +0 -25
  2862. package/examples/node_modules/webpack/module.d.ts +0 -215
  2863. package/examples/node_modules/webpack/package.json +0 -242
  2864. package/examples/node_modules/webpack/schemas/WebpackOptions.check.d.ts +0 -7
  2865. package/examples/node_modules/webpack/schemas/WebpackOptions.check.js +0 -6
  2866. package/examples/node_modules/webpack/schemas/WebpackOptions.json +0 -5321
  2867. package/examples/node_modules/webpack/schemas/_container.json +0 -155
  2868. package/examples/node_modules/webpack/schemas/_sharing.json +0 -118
  2869. package/examples/node_modules/webpack/schemas/plugins/BannerPlugin.check.d.ts +0 -7
  2870. package/examples/node_modules/webpack/schemas/plugins/BannerPlugin.check.js +0 -6
  2871. package/examples/node_modules/webpack/schemas/plugins/BannerPlugin.json +0 -103
  2872. package/examples/node_modules/webpack/schemas/plugins/DllPlugin.check.d.ts +0 -7
  2873. package/examples/node_modules/webpack/schemas/plugins/DllPlugin.check.js +0 -6
  2874. package/examples/node_modules/webpack/schemas/plugins/DllPlugin.json +0 -36
  2875. package/examples/node_modules/webpack/schemas/plugins/DllReferencePlugin.check.d.ts +0 -7
  2876. package/examples/node_modules/webpack/schemas/plugins/DllReferencePlugin.check.js +0 -6
  2877. package/examples/node_modules/webpack/schemas/plugins/DllReferencePlugin.json +0 -206
  2878. package/examples/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.check.d.ts +0 -7
  2879. package/examples/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.check.js +0 -6
  2880. package/examples/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.json +0 -44
  2881. package/examples/node_modules/webpack/schemas/plugins/IgnorePlugin.check.d.ts +0 -7
  2882. package/examples/node_modules/webpack/schemas/plugins/IgnorePlugin.check.js +0 -6
  2883. package/examples/node_modules/webpack/schemas/plugins/IgnorePlugin.json +0 -34
  2884. package/examples/node_modules/webpack/schemas/plugins/JsonModulesPluginParser.check.d.ts +0 -7
  2885. package/examples/node_modules/webpack/schemas/plugins/JsonModulesPluginParser.check.js +0 -6
  2886. package/examples/node_modules/webpack/schemas/plugins/JsonModulesPluginParser.json +0 -12
  2887. package/examples/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.check.d.ts +0 -7
  2888. package/examples/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.check.js +0 -6
  2889. package/examples/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.json +0 -27
  2890. package/examples/node_modules/webpack/schemas/plugins/ProgressPlugin.check.d.ts +0 -7
  2891. package/examples/node_modules/webpack/schemas/plugins/ProgressPlugin.check.js +0 -6
  2892. package/examples/node_modules/webpack/schemas/plugins/ProgressPlugin.json +0 -65
  2893. package/examples/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.check.d.ts +0 -7
  2894. package/examples/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.check.js +0 -6
  2895. package/examples/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.json +0 -143
  2896. package/examples/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.check.d.ts +0 -7
  2897. package/examples/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.check.js +0 -6
  2898. package/examples/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.json +0 -25
  2899. package/examples/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.check.d.ts +0 -7
  2900. package/examples/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.check.js +0 -6
  2901. package/examples/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.json +0 -3
  2902. package/examples/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.check.d.ts +0 -7
  2903. package/examples/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.check.js +0 -6
  2904. package/examples/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.json +0 -3
  2905. package/examples/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.check.d.ts +0 -7
  2906. package/examples/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.check.js +0 -6
  2907. package/examples/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.json +0 -3
  2908. package/examples/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.check.d.ts +0 -7
  2909. package/examples/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.check.js +0 -6
  2910. package/examples/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.json +0 -3
  2911. package/examples/node_modules/webpack/schemas/plugins/container/ContainerPlugin.check.d.ts +0 -7
  2912. package/examples/node_modules/webpack/schemas/plugins/container/ContainerPlugin.check.js +0 -6
  2913. package/examples/node_modules/webpack/schemas/plugins/container/ContainerPlugin.json +0 -286
  2914. package/examples/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.check.d.ts +0 -7
  2915. package/examples/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.check.js +0 -6
  2916. package/examples/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.json +0 -128
  2917. package/examples/node_modules/webpack/schemas/plugins/container/ExternalsType.check.d.ts +0 -7
  2918. package/examples/node_modules/webpack/schemas/plugins/container/ExternalsType.check.js +0 -6
  2919. package/examples/node_modules/webpack/schemas/plugins/container/ExternalsType.json +0 -3
  2920. package/examples/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.check.d.ts +0 -7
  2921. package/examples/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.check.js +0 -6
  2922. package/examples/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.json +0 -513
  2923. package/examples/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.check.d.ts +0 -7
  2924. package/examples/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.check.js +0 -6
  2925. package/examples/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.json +0 -3
  2926. package/examples/node_modules/webpack/schemas/plugins/css/CssParserOptions.check.d.ts +0 -7
  2927. package/examples/node_modules/webpack/schemas/plugins/css/CssParserOptions.check.js +0 -6
  2928. package/examples/node_modules/webpack/schemas/plugins/css/CssParserOptions.json +0 -3
  2929. package/examples/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.check.d.ts +0 -7
  2930. package/examples/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.check.js +0 -6
  2931. package/examples/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.json +0 -12
  2932. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.check.d.ts +0 -7
  2933. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.check.js +0 -6
  2934. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.json +0 -11
  2935. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.check.d.ts +0 -7
  2936. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.check.js +0 -6
  2937. package/examples/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.json +0 -11
  2938. package/examples/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.check.d.ts +0 -7
  2939. package/examples/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.check.js +0 -6
  2940. package/examples/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.json +0 -23
  2941. package/examples/node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.check.d.ts +0 -7
  2942. package/examples/node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.check.js +0 -6
  2943. package/examples/node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.json +0 -21
  2944. package/examples/node_modules/webpack/schemas/plugins/optimize/MinChunkSizePlugin.check.d.ts +0 -7
  2945. package/examples/node_modules/webpack/schemas/plugins/optimize/MinChunkSizePlugin.check.js +0 -6
  2946. package/examples/node_modules/webpack/schemas/plugins/optimize/MinChunkSizePlugin.json +0 -20
  2947. package/examples/node_modules/webpack/schemas/plugins/schemes/HttpUriPlugin.check.d.ts +0 -7
  2948. package/examples/node_modules/webpack/schemas/plugins/schemes/HttpUriPlugin.check.js +0 -6
  2949. package/examples/node_modules/webpack/schemas/plugins/schemes/HttpUriPlugin.json +0 -74
  2950. package/examples/node_modules/webpack/schemas/plugins/sharing/ConsumeSharedPlugin.check.d.ts +0 -7
  2951. package/examples/node_modules/webpack/schemas/plugins/sharing/ConsumeSharedPlugin.check.js +0 -6
  2952. package/examples/node_modules/webpack/schemas/plugins/sharing/ConsumeSharedPlugin.json +0 -120
  2953. package/examples/node_modules/webpack/schemas/plugins/sharing/ProvideSharedPlugin.check.d.ts +0 -7
  2954. package/examples/node_modules/webpack/schemas/plugins/sharing/ProvideSharedPlugin.check.js +0 -6
  2955. package/examples/node_modules/webpack/schemas/plugins/sharing/ProvideSharedPlugin.json +0 -94
  2956. package/examples/node_modules/webpack/schemas/plugins/sharing/SharePlugin.check.d.ts +0 -7
  2957. package/examples/node_modules/webpack/schemas/plugins/sharing/SharePlugin.check.js +0 -6
  2958. package/examples/node_modules/webpack/schemas/plugins/sharing/SharePlugin.json +0 -133
  2959. package/examples/node_modules/webpack/types.d.ts +0 -13072
  2960. package/examples/node_modules/webpack-cli/README.md +0 -147
  2961. package/examples/node_modules/webpack-cli/bin/cli.js +0 -17
  2962. package/examples/node_modules/webpack-cli/lib/bootstrap.js +0 -15
  2963. package/examples/node_modules/webpack-cli/lib/index.js +0 -5
  2964. package/examples/node_modules/webpack-cli/lib/plugins/CLIPlugin.js +0 -132
  2965. package/examples/node_modules/webpack-cli/lib/utils/dynamic-import-loader.js +0 -13
  2966. package/examples/node_modules/webpack-cli/lib/webpack-cli.js +0 -2343
  2967. package/examples/node_modules/webpack-cli/node_modules/commander/CHANGELOG.md +0 -440
  2968. package/examples/node_modules/webpack-cli/node_modules/commander/LICENSE +0 -22
  2969. package/examples/node_modules/webpack-cli/node_modules/commander/Readme.md +0 -917
  2970. package/examples/node_modules/webpack-cli/node_modules/commander/esm.mjs +0 -4
  2971. package/examples/node_modules/webpack-cli/node_modules/commander/index.js +0 -2217
  2972. package/examples/node_modules/webpack-cli/node_modules/commander/package-support.json +0 -16
  2973. package/examples/node_modules/webpack-cli/node_modules/commander/package.json +0 -68
  2974. package/examples/node_modules/webpack-cli/node_modules/commander/typings/index.d.ts +0 -627
  2975. package/examples/node_modules/webpack-cli/package.json +0 -63
  2976. package/examples/node_modules/webpack-merge/CHANGELOG.md +0 -426
  2977. package/examples/node_modules/webpack-merge/LICENSE +0 -20
  2978. package/examples/node_modules/webpack-merge/README.md +0 -314
  2979. package/examples/node_modules/webpack-merge/dist/index.d.ts +0 -15
  2980. package/examples/node_modules/webpack-merge/dist/index.js +0 -263
  2981. package/examples/node_modules/webpack-merge/dist/index.js.map +0 -1
  2982. package/examples/node_modules/webpack-merge/dist/join-arrays.d.ts +0 -6
  2983. package/examples/node_modules/webpack-merge/dist/join-arrays.js +0 -70
  2984. package/examples/node_modules/webpack-merge/dist/join-arrays.js.map +0 -1
  2985. package/examples/node_modules/webpack-merge/dist/merge-with.d.ts +0 -2
  2986. package/examples/node_modules/webpack-merge/dist/merge-with.js +0 -38
  2987. package/examples/node_modules/webpack-merge/dist/merge-with.js.map +0 -1
  2988. package/examples/node_modules/webpack-merge/dist/types.d.ts +0 -14
  2989. package/examples/node_modules/webpack-merge/dist/types.js +0 -12
  2990. package/examples/node_modules/webpack-merge/dist/types.js.map +0 -1
  2991. package/examples/node_modules/webpack-merge/dist/unique.d.ts +0 -2
  2992. package/examples/node_modules/webpack-merge/dist/unique.js +0 -41
  2993. package/examples/node_modules/webpack-merge/dist/unique.js.map +0 -1
  2994. package/examples/node_modules/webpack-merge/dist/utils.d.ts +0 -5
  2995. package/examples/node_modules/webpack-merge/dist/utils.js +0 -24
  2996. package/examples/node_modules/webpack-merge/dist/utils.js.map +0 -1
  2997. package/examples/node_modules/webpack-merge/package.json +0 -58
  2998. package/examples/node_modules/webpack-sources/LICENSE +0 -21
  2999. package/examples/node_modules/webpack-sources/README.md +0 -228
  3000. package/examples/node_modules/webpack-sources/lib/CachedSource.js +0 -274
  3001. package/examples/node_modules/webpack-sources/lib/CompatSource.js +0 -66
  3002. package/examples/node_modules/webpack-sources/lib/ConcatSource.js +0 -319
  3003. package/examples/node_modules/webpack-sources/lib/OriginalSource.js +0 -135
  3004. package/examples/node_modules/webpack-sources/lib/PrefixSource.js +0 -114
  3005. package/examples/node_modules/webpack-sources/lib/RawSource.js +0 -81
  3006. package/examples/node_modules/webpack-sources/lib/ReplaceSource.js +0 -467
  3007. package/examples/node_modules/webpack-sources/lib/SizeOnlySource.js +0 -42
  3008. package/examples/node_modules/webpack-sources/lib/Source.js +0 -38
  3009. package/examples/node_modules/webpack-sources/lib/SourceMapSource.js +0 -247
  3010. package/examples/node_modules/webpack-sources/lib/helpers/createMappingsSerializer.js +0 -206
  3011. package/examples/node_modules/webpack-sources/lib/helpers/getFromStreamChunks.js +0 -129
  3012. package/examples/node_modules/webpack-sources/lib/helpers/getGeneratedSourceInfo.js +0 -33
  3013. package/examples/node_modules/webpack-sources/lib/helpers/getName.js +0 -14
  3014. package/examples/node_modules/webpack-sources/lib/helpers/getSource.js +0 -17
  3015. package/examples/node_modules/webpack-sources/lib/helpers/readMappings.js +0 -116
  3016. package/examples/node_modules/webpack-sources/lib/helpers/splitIntoLines.js +0 -21
  3017. package/examples/node_modules/webpack-sources/lib/helpers/splitIntoPotentialTokens.js +0 -41
  3018. package/examples/node_modules/webpack-sources/lib/helpers/streamAndGetSourceAndMap.js +0 -102
  3019. package/examples/node_modules/webpack-sources/lib/helpers/streamChunks.js +0 -36
  3020. package/examples/node_modules/webpack-sources/lib/helpers/streamChunksOfCombinedSourceMap.js +0 -329
  3021. package/examples/node_modules/webpack-sources/lib/helpers/streamChunksOfRawSource.js +0 -34
  3022. package/examples/node_modules/webpack-sources/lib/helpers/streamChunksOfSourceMap.js +0 -412
  3023. package/examples/node_modules/webpack-sources/lib/index.js +0 -30
  3024. package/examples/node_modules/webpack-sources/package.json +0 -58
  3025. package/examples/node_modules/which/CHANGELOG.md +0 -166
  3026. package/examples/node_modules/which/LICENSE +0 -15
  3027. package/examples/node_modules/which/README.md +0 -54
  3028. package/examples/node_modules/which/bin/node-which +0 -52
  3029. package/examples/node_modules/which/package.json +0 -43
  3030. package/examples/node_modules/which/which.js +0 -125
  3031. package/examples/node_modules/wildcard/.travis.yml +0 -9
  3032. package/examples/node_modules/wildcard/README.md +0 -99
  3033. package/examples/node_modules/wildcard/docs.json +0 -9
  3034. package/examples/node_modules/wildcard/examples/arrays.js +0 -10
  3035. package/examples/node_modules/wildcard/examples/objects.js +0 -10
  3036. package/examples/node_modules/wildcard/examples/strings.js +0 -7
  3037. package/examples/node_modules/wildcard/index.js +0 -114
  3038. package/examples/node_modules/wildcard/package.json +0 -53
  3039. package/examples/node_modules/wildcard/test/all.js +0 -3
  3040. package/examples/node_modules/wildcard/test/arrays.js +0 -33
  3041. package/examples/node_modules/wildcard/test/objects.js +0 -106
  3042. package/examples/node_modules/wildcard/test/strings.js +0 -46
  3043. package/examples/node_modules/wildcard/yarn.lock +0 -228
@@ -1,3307 +0,0 @@
1
- /**
2
- * The `crypto` module provides cryptographic functionality that includes a set of
3
- * wrappers for OpenSSL's hash, HMAC, cipher, decipher, sign, and verify functions.
4
- *
5
- * ```js
6
- * const { createHmac } = await import('crypto');
7
- *
8
- * const secret = 'abcdefg';
9
- * const hash = createHmac('sha256', secret)
10
- * .update('I love cupcakes')
11
- * .digest('hex');
12
- * console.log(hash);
13
- * // Prints:
14
- * // c0fa1bc00531bd78ef38c628449c5102aeabd49b5dc3a2a516ea6ea959d6658e
15
- * ```
16
- * @see [source](https://github.com/nodejs/node/blob/v17.0.0/lib/crypto.js)
17
- */
18
- declare module 'crypto' {
19
- import * as stream from 'node:stream';
20
- import { PeerCertificate } from 'node:tls';
21
- interface Certificate {
22
- /**
23
- * @deprecated
24
- * @param spkac
25
- * @returns The challenge component of the `spkac` data structure,
26
- * which includes a public key and a challenge.
27
- */
28
- exportChallenge(spkac: BinaryLike): Buffer;
29
- /**
30
- * @deprecated
31
- * @param spkac
32
- * @param encoding The encoding of the spkac string.
33
- * @returns The public key component of the `spkac` data structure,
34
- * which includes a public key and a challenge.
35
- */
36
- exportPublicKey(spkac: BinaryLike, encoding?: string): Buffer;
37
- /**
38
- * @deprecated
39
- * @param spkac
40
- * @returns `true` if the given `spkac` data structure is valid,
41
- * `false` otherwise.
42
- */
43
- verifySpkac(spkac: NodeJS.ArrayBufferView): boolean;
44
- }
45
- const Certificate: Certificate & {
46
- /** @deprecated since v14.9.0 - Use static methods of `crypto.Certificate` instead. */
47
- new (): Certificate;
48
- /** @deprecated since v14.9.0 - Use static methods of `crypto.Certificate` instead. */
49
- (): Certificate;
50
- /**
51
- * @param spkac
52
- * @returns The challenge component of the `spkac` data structure,
53
- * which includes a public key and a challenge.
54
- */
55
- exportChallenge(spkac: BinaryLike): Buffer;
56
- /**
57
- * @param spkac
58
- * @param encoding The encoding of the spkac string.
59
- * @returns The public key component of the `spkac` data structure,
60
- * which includes a public key and a challenge.
61
- */
62
- exportPublicKey(spkac: BinaryLike, encoding?: string): Buffer;
63
- /**
64
- * @param spkac
65
- * @returns `true` if the given `spkac` data structure is valid,
66
- * `false` otherwise.
67
- */
68
- verifySpkac(spkac: NodeJS.ArrayBufferView): boolean;
69
- };
70
- namespace constants {
71
- // https://nodejs.org/dist/latest-v10.x/docs/api/crypto.html#crypto_crypto_constants
72
- const OPENSSL_VERSION_NUMBER: number;
73
- /** Applies multiple bug workarounds within OpenSSL. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html for detail. */
74
- const SSL_OP_ALL: number;
75
- /** Allows legacy insecure renegotiation between OpenSSL and unpatched clients or servers. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */
76
- const SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION: number;
77
- /** Attempts to use the server's preferences instead of the client's when selecting a cipher. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */
78
- const SSL_OP_CIPHER_SERVER_PREFERENCE: number;
79
- /** Instructs OpenSSL to use Cisco's "speshul" version of DTLS_BAD_VER. */
80
- const SSL_OP_CISCO_ANYCONNECT: number;
81
- /** Instructs OpenSSL to turn on cookie exchange. */
82
- const SSL_OP_COOKIE_EXCHANGE: number;
83
- /** Instructs OpenSSL to add server-hello extension from an early version of the cryptopro draft. */
84
- const SSL_OP_CRYPTOPRO_TLSEXT_BUG: number;
85
- /** Instructs OpenSSL to disable a SSL 3.0/TLS 1.0 vulnerability workaround added in OpenSSL 0.9.6d. */
86
- const SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS: number;
87
- /** Instructs OpenSSL to always use the tmp_rsa key when performing RSA operations. */
88
- const SSL_OP_EPHEMERAL_RSA: number;
89
- /** Allows initial connection to servers that do not support RI. */
90
- const SSL_OP_LEGACY_SERVER_CONNECT: number;
91
- const SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER: number;
92
- const SSL_OP_MICROSOFT_SESS_ID_BUG: number;
93
- /** Instructs OpenSSL to disable the workaround for a man-in-the-middle protocol-version vulnerability in the SSL 2.0 server implementation. */
94
- const SSL_OP_MSIE_SSLV2_RSA_PADDING: number;
95
- const SSL_OP_NETSCAPE_CA_DN_BUG: number;
96
- const SSL_OP_NETSCAPE_CHALLENGE_BUG: number;
97
- const SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG: number;
98
- const SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG: number;
99
- /** Instructs OpenSSL to disable support for SSL/TLS compression. */
100
- const SSL_OP_NO_COMPRESSION: number;
101
- const SSL_OP_NO_QUERY_MTU: number;
102
- /** Instructs OpenSSL to always start a new session when performing renegotiation. */
103
- const SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION: number;
104
- const SSL_OP_NO_SSLv2: number;
105
- const SSL_OP_NO_SSLv3: number;
106
- const SSL_OP_NO_TICKET: number;
107
- const SSL_OP_NO_TLSv1: number;
108
- const SSL_OP_NO_TLSv1_1: number;
109
- const SSL_OP_NO_TLSv1_2: number;
110
- const SSL_OP_PKCS1_CHECK_1: number;
111
- const SSL_OP_PKCS1_CHECK_2: number;
112
- /** Instructs OpenSSL to always create a new key when using temporary/ephemeral DH parameters. */
113
- const SSL_OP_SINGLE_DH_USE: number;
114
- /** Instructs OpenSSL to always create a new key when using temporary/ephemeral ECDH parameters. */
115
- const SSL_OP_SINGLE_ECDH_USE: number;
116
- const SSL_OP_SSLEAY_080_CLIENT_DH_BUG: number;
117
- const SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG: number;
118
- const SSL_OP_TLS_BLOCK_PADDING_BUG: number;
119
- const SSL_OP_TLS_D5_BUG: number;
120
- /** Instructs OpenSSL to disable version rollback attack detection. */
121
- const SSL_OP_TLS_ROLLBACK_BUG: number;
122
- const ENGINE_METHOD_RSA: number;
123
- const ENGINE_METHOD_DSA: number;
124
- const ENGINE_METHOD_DH: number;
125
- const ENGINE_METHOD_RAND: number;
126
- const ENGINE_METHOD_EC: number;
127
- const ENGINE_METHOD_CIPHERS: number;
128
- const ENGINE_METHOD_DIGESTS: number;
129
- const ENGINE_METHOD_PKEY_METHS: number;
130
- const ENGINE_METHOD_PKEY_ASN1_METHS: number;
131
- const ENGINE_METHOD_ALL: number;
132
- const ENGINE_METHOD_NONE: number;
133
- const DH_CHECK_P_NOT_SAFE_PRIME: number;
134
- const DH_CHECK_P_NOT_PRIME: number;
135
- const DH_UNABLE_TO_CHECK_GENERATOR: number;
136
- const DH_NOT_SUITABLE_GENERATOR: number;
137
- const ALPN_ENABLED: number;
138
- const RSA_PKCS1_PADDING: number;
139
- const RSA_SSLV23_PADDING: number;
140
- const RSA_NO_PADDING: number;
141
- const RSA_PKCS1_OAEP_PADDING: number;
142
- const RSA_X931_PADDING: number;
143
- const RSA_PKCS1_PSS_PADDING: number;
144
- /** Sets the salt length for RSA_PKCS1_PSS_PADDING to the digest size when signing or verifying. */
145
- const RSA_PSS_SALTLEN_DIGEST: number;
146
- /** Sets the salt length for RSA_PKCS1_PSS_PADDING to the maximum permissible value when signing data. */
147
- const RSA_PSS_SALTLEN_MAX_SIGN: number;
148
- /** Causes the salt length for RSA_PKCS1_PSS_PADDING to be determined automatically when verifying a signature. */
149
- const RSA_PSS_SALTLEN_AUTO: number;
150
- const POINT_CONVERSION_COMPRESSED: number;
151
- const POINT_CONVERSION_UNCOMPRESSED: number;
152
- const POINT_CONVERSION_HYBRID: number;
153
- /** Specifies the built-in default cipher list used by Node.js (colon-separated values). */
154
- const defaultCoreCipherList: string;
155
- /** Specifies the active default cipher list used by the current Node.js process (colon-separated values). */
156
- const defaultCipherList: string;
157
- }
158
- interface HashOptions extends stream.TransformOptions {
159
- /**
160
- * For XOF hash functions such as `shake256`, the
161
- * outputLength option can be used to specify the desired output length in bytes.
162
- */
163
- outputLength?: number | undefined;
164
- }
165
- /** @deprecated since v10.0.0 */
166
- const fips: boolean;
167
- /**
168
- * Creates and returns a `Hash` object that can be used to generate hash digests
169
- * using the given `algorithm`. Optional `options` argument controls stream
170
- * behavior. For XOF hash functions such as `'shake256'`, the `outputLength` option
171
- * can be used to specify the desired output length in bytes.
172
- *
173
- * The `algorithm` is dependent on the available algorithms supported by the
174
- * version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc.
175
- * On recent releases of OpenSSL, `openssl list -digest-algorithms`(`openssl list-message-digest-algorithms` for older versions of OpenSSL) will
176
- * display the available digest algorithms.
177
- *
178
- * Example: generating the sha256 sum of a file
179
- *
180
- * ```js
181
- * import {
182
- * createReadStream
183
- * } from 'fs';
184
- * import { argv } from 'process';
185
- * const {
186
- * createHash
187
- * } = await import('crypto');
188
- *
189
- * const filename = argv[2];
190
- *
191
- * const hash = createHash('sha256');
192
- *
193
- * const input = createReadStream(filename);
194
- * input.on('readable', () => {
195
- * // Only one element is going to be produced by the
196
- * // hash stream.
197
- * const data = input.read();
198
- * if (data)
199
- * hash.update(data);
200
- * else {
201
- * console.log(`${hash.digest('hex')} ${filename}`);
202
- * }
203
- * });
204
- * ```
205
- * @since v0.1.92
206
- * @param options `stream.transform` options
207
- */
208
- function createHash(algorithm: string, options?: HashOptions): Hash;
209
- /**
210
- * Creates and returns an `Hmac` object that uses the given `algorithm` and `key`.
211
- * Optional `options` argument controls stream behavior.
212
- *
213
- * The `algorithm` is dependent on the available algorithms supported by the
214
- * version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc.
215
- * On recent releases of OpenSSL, `openssl list -digest-algorithms`(`openssl list-message-digest-algorithms` for older versions of OpenSSL) will
216
- * display the available digest algorithms.
217
- *
218
- * The `key` is the HMAC key used to generate the cryptographic HMAC hash. If it is
219
- * a `KeyObject`, its type must be `secret`.
220
- *
221
- * Example: generating the sha256 HMAC of a file
222
- *
223
- * ```js
224
- * import {
225
- * createReadStream
226
- * } from 'fs';
227
- * import { argv } from 'process';
228
- * const {
229
- * createHmac
230
- * } = await import('crypto');
231
- *
232
- * const filename = argv[2];
233
- *
234
- * const hmac = createHmac('sha256', 'a secret');
235
- *
236
- * const input = createReadStream(filename);
237
- * input.on('readable', () => {
238
- * // Only one element is going to be produced by the
239
- * // hash stream.
240
- * const data = input.read();
241
- * if (data)
242
- * hmac.update(data);
243
- * else {
244
- * console.log(`${hmac.digest('hex')} ${filename}`);
245
- * }
246
- * });
247
- * ```
248
- * @since v0.1.94
249
- * @param options `stream.transform` options
250
- */
251
- function createHmac(algorithm: string, key: BinaryLike | KeyObject, options?: stream.TransformOptions): Hmac;
252
- // https://nodejs.org/api/buffer.html#buffer_buffers_and_character_encodings
253
- type BinaryToTextEncoding = 'base64' | 'base64url' | 'hex' | 'binary';
254
- type CharacterEncoding = 'utf8' | 'utf-8' | 'utf16le' | 'latin1';
255
- type LegacyCharacterEncoding = 'ascii' | 'binary' | 'ucs2' | 'ucs-2';
256
- type Encoding = BinaryToTextEncoding | CharacterEncoding | LegacyCharacterEncoding;
257
- type ECDHKeyFormat = 'compressed' | 'uncompressed' | 'hybrid';
258
- /**
259
- * The `Hash` class is a utility for creating hash digests of data. It can be
260
- * used in one of two ways:
261
- *
262
- * * As a `stream` that is both readable and writable, where data is written
263
- * to produce a computed hash digest on the readable side, or
264
- * * Using the `hash.update()` and `hash.digest()` methods to produce the
265
- * computed hash.
266
- *
267
- * The {@link createHash} method is used to create `Hash` instances. `Hash`objects are not to be created directly using the `new` keyword.
268
- *
269
- * Example: Using `Hash` objects as streams:
270
- *
271
- * ```js
272
- * const {
273
- * createHash
274
- * } = await import('crypto');
275
- *
276
- * const hash = createHash('sha256');
277
- *
278
- * hash.on('readable', () => {
279
- * // Only one element is going to be produced by the
280
- * // hash stream.
281
- * const data = hash.read();
282
- * if (data) {
283
- * console.log(data.toString('hex'));
284
- * // Prints:
285
- * // 6a2da20943931e9834fc12cfe5bb47bbd9ae43489a30726962b576f4e3993e50
286
- * }
287
- * });
288
- *
289
- * hash.write('some data to hash');
290
- * hash.end();
291
- * ```
292
- *
293
- * Example: Using `Hash` and piped streams:
294
- *
295
- * ```js
296
- * import { createReadStream } from 'fs';
297
- * import { stdout } from 'process';
298
- * const { createHash } = await import('crypto');
299
- *
300
- * const hash = createHash('sha256');
301
- *
302
- * const input = createReadStream('test.js');
303
- * input.pipe(hash).setEncoding('hex').pipe(stdout);
304
- * ```
305
- *
306
- * Example: Using the `hash.update()` and `hash.digest()` methods:
307
- *
308
- * ```js
309
- * const {
310
- * createHash
311
- * } = await import('crypto');
312
- *
313
- * const hash = createHash('sha256');
314
- *
315
- * hash.update('some data to hash');
316
- * console.log(hash.digest('hex'));
317
- * // Prints:
318
- * // 6a2da20943931e9834fc12cfe5bb47bbd9ae43489a30726962b576f4e3993e50
319
- * ```
320
- * @since v0.1.92
321
- */
322
- class Hash extends stream.Transform {
323
- private constructor();
324
- /**
325
- * Creates a new `Hash` object that contains a deep copy of the internal state
326
- * of the current `Hash` object.
327
- *
328
- * The optional `options` argument controls stream behavior. For XOF hash
329
- * functions such as `'shake256'`, the `outputLength` option can be used to
330
- * specify the desired output length in bytes.
331
- *
332
- * An error is thrown when an attempt is made to copy the `Hash` object after
333
- * its `hash.digest()` method has been called.
334
- *
335
- * ```js
336
- * // Calculate a rolling hash.
337
- * const {
338
- * createHash
339
- * } = await import('crypto');
340
- *
341
- * const hash = createHash('sha256');
342
- *
343
- * hash.update('one');
344
- * console.log(hash.copy().digest('hex'));
345
- *
346
- * hash.update('two');
347
- * console.log(hash.copy().digest('hex'));
348
- *
349
- * hash.update('three');
350
- * console.log(hash.copy().digest('hex'));
351
- *
352
- * // Etc.
353
- * ```
354
- * @since v13.1.0
355
- * @param options `stream.transform` options
356
- */
357
- copy(options?: stream.TransformOptions): Hash;
358
- /**
359
- * Updates the hash content with the given `data`, the encoding of which
360
- * is given in `inputEncoding`.
361
- * If `encoding` is not provided, and the `data` is a string, an
362
- * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored.
363
- *
364
- * This can be called many times with new data as it is streamed.
365
- * @since v0.1.92
366
- * @param inputEncoding The `encoding` of the `data` string.
367
- */
368
- update(data: BinaryLike): Hash;
369
- update(data: string, inputEncoding: Encoding): Hash;
370
- /**
371
- * Calculates the digest of all of the data passed to be hashed (using the `hash.update()` method).
372
- * If `encoding` is provided a string will be returned; otherwise
373
- * a `Buffer` is returned.
374
- *
375
- * The `Hash` object can not be used again after `hash.digest()` method has been
376
- * called. Multiple calls will cause an error to be thrown.
377
- * @since v0.1.92
378
- * @param encoding The `encoding` of the return value.
379
- */
380
- digest(): Buffer;
381
- digest(encoding: BinaryToTextEncoding): string;
382
- }
383
- /**
384
- * The `Hmac` class is a utility for creating cryptographic HMAC digests. It can
385
- * be used in one of two ways:
386
- *
387
- * * As a `stream` that is both readable and writable, where data is written
388
- * to produce a computed HMAC digest on the readable side, or
389
- * * Using the `hmac.update()` and `hmac.digest()` methods to produce the
390
- * computed HMAC digest.
391
- *
392
- * The {@link createHmac} method is used to create `Hmac` instances. `Hmac`objects are not to be created directly using the `new` keyword.
393
- *
394
- * Example: Using `Hmac` objects as streams:
395
- *
396
- * ```js
397
- * const {
398
- * createHmac
399
- * } = await import('crypto');
400
- *
401
- * const hmac = createHmac('sha256', 'a secret');
402
- *
403
- * hmac.on('readable', () => {
404
- * // Only one element is going to be produced by the
405
- * // hash stream.
406
- * const data = hmac.read();
407
- * if (data) {
408
- * console.log(data.toString('hex'));
409
- * // Prints:
410
- * // 7fd04df92f636fd450bc841c9418e5825c17f33ad9c87c518115a45971f7f77e
411
- * }
412
- * });
413
- *
414
- * hmac.write('some data to hash');
415
- * hmac.end();
416
- * ```
417
- *
418
- * Example: Using `Hmac` and piped streams:
419
- *
420
- * ```js
421
- * import { createReadStream } from 'fs';
422
- * import { stdout } from 'process';
423
- * const {
424
- * createHmac
425
- * } = await import('crypto');
426
- *
427
- * const hmac = createHmac('sha256', 'a secret');
428
- *
429
- * const input = createReadStream('test.js');
430
- * input.pipe(hmac).pipe(stdout);
431
- * ```
432
- *
433
- * Example: Using the `hmac.update()` and `hmac.digest()` methods:
434
- *
435
- * ```js
436
- * const {
437
- * createHmac
438
- * } = await import('crypto');
439
- *
440
- * const hmac = createHmac('sha256', 'a secret');
441
- *
442
- * hmac.update('some data to hash');
443
- * console.log(hmac.digest('hex'));
444
- * // Prints:
445
- * // 7fd04df92f636fd450bc841c9418e5825c17f33ad9c87c518115a45971f7f77e
446
- * ```
447
- * @since v0.1.94
448
- */
449
- class Hmac extends stream.Transform {
450
- private constructor();
451
- /**
452
- * Updates the `Hmac` content with the given `data`, the encoding of which
453
- * is given in `inputEncoding`.
454
- * If `encoding` is not provided, and the `data` is a string, an
455
- * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored.
456
- *
457
- * This can be called many times with new data as it is streamed.
458
- * @since v0.1.94
459
- * @param inputEncoding The `encoding` of the `data` string.
460
- */
461
- update(data: BinaryLike): Hmac;
462
- update(data: string, inputEncoding: Encoding): Hmac;
463
- /**
464
- * Calculates the HMAC digest of all of the data passed using `hmac.update()`.
465
- * If `encoding` is
466
- * provided a string is returned; otherwise a `Buffer` is returned;
467
- *
468
- * The `Hmac` object can not be used again after `hmac.digest()` has been
469
- * called. Multiple calls to `hmac.digest()` will result in an error being thrown.
470
- * @since v0.1.94
471
- * @param encoding The `encoding` of the return value.
472
- */
473
- digest(): Buffer;
474
- digest(encoding: BinaryToTextEncoding): string;
475
- }
476
- type KeyObjectType = 'secret' | 'public' | 'private';
477
- interface KeyExportOptions<T extends KeyFormat> {
478
- type: 'pkcs1' | 'spki' | 'pkcs8' | 'sec1';
479
- format: T;
480
- cipher?: string | undefined;
481
- passphrase?: string | Buffer | undefined;
482
- }
483
- interface JwkKeyExportOptions {
484
- format: 'jwk';
485
- }
486
- interface JsonWebKey {
487
- crv?: string | undefined;
488
- d?: string | undefined;
489
- dp?: string | undefined;
490
- dq?: string | undefined;
491
- e?: string | undefined;
492
- k?: string | undefined;
493
- kty?: string | undefined;
494
- n?: string | undefined;
495
- p?: string | undefined;
496
- q?: string | undefined;
497
- qi?: string | undefined;
498
- x?: string | undefined;
499
- y?: string | undefined;
500
- [key: string]: unknown;
501
- }
502
- interface AsymmetricKeyDetails {
503
- /**
504
- * Key size in bits (RSA, DSA).
505
- */
506
- modulusLength?: number | undefined;
507
- /**
508
- * Public exponent (RSA).
509
- */
510
- publicExponent?: bigint | undefined;
511
- /**
512
- * Name of the message digest (RSA-PSS).
513
- */
514
- hashAlgorithm?: string | undefined;
515
- /**
516
- * Name of the message digest used by MGF1 (RSA-PSS).
517
- */
518
- mgf1HashAlgorithm?: string | undefined;
519
- /**
520
- * Minimal salt length in bytes (RSA-PSS).
521
- */
522
- saltLength?: number | undefined;
523
- /**
524
- * Size of q in bits (DSA).
525
- */
526
- divisorLength?: number | undefined;
527
- /**
528
- * Name of the curve (EC).
529
- */
530
- namedCurve?: string | undefined;
531
- }
532
- interface JwkKeyExportOptions {
533
- format: 'jwk';
534
- }
535
- /**
536
- * Node.js uses a `KeyObject` class to represent a symmetric or asymmetric key,
537
- * and each kind of key exposes different functions. The {@link createSecretKey}, {@link createPublicKey} and {@link createPrivateKey} methods are used to create `KeyObject`instances. `KeyObject`
538
- * objects are not to be created directly using the `new`keyword.
539
- *
540
- * Most applications should consider using the new `KeyObject` API instead of
541
- * passing keys as strings or `Buffer`s due to improved security features.
542
- *
543
- * `KeyObject` instances can be passed to other threads via `postMessage()`.
544
- * The receiver obtains a cloned `KeyObject`, and the `KeyObject` does not need to
545
- * be listed in the `transferList` argument.
546
- * @since v11.6.0
547
- */
548
- class KeyObject {
549
- private constructor();
550
- /**
551
- * Example: Converting a `CryptoKey` instance to a `KeyObject`:
552
- *
553
- * ```js
554
- * const { webcrypto, KeyObject } = await import('crypto');
555
- * const { subtle } = webcrypto;
556
- *
557
- * const key = await subtle.generateKey({
558
- * name: 'HMAC',
559
- * hash: 'SHA-256',
560
- * length: 256
561
- * }, true, ['sign', 'verify']);
562
- *
563
- * const keyObject = KeyObject.from(key);
564
- * console.log(keyObject.symmetricKeySize);
565
- * // Prints: 32 (symmetric key size in bytes)
566
- * ```
567
- * @since v15.0.0
568
- */
569
- static from(key: webcrypto.CryptoKey): KeyObject;
570
- /**
571
- * For asymmetric keys, this property represents the type of the key. Supported key
572
- * types are:
573
- *
574
- * * `'rsa'` (OID 1.2.840.113549.1.1.1)
575
- * * `'rsa-pss'` (OID 1.2.840.113549.1.1.10)
576
- * * `'dsa'` (OID 1.2.840.10040.4.1)
577
- * * `'ec'` (OID 1.2.840.10045.2.1)
578
- * * `'x25519'` (OID 1.3.101.110)
579
- * * `'x448'` (OID 1.3.101.111)
580
- * * `'ed25519'` (OID 1.3.101.112)
581
- * * `'ed448'` (OID 1.3.101.113)
582
- * * `'dh'` (OID 1.2.840.113549.1.3.1)
583
- *
584
- * This property is `undefined` for unrecognized `KeyObject` types and symmetric
585
- * keys.
586
- * @since v11.6.0
587
- */
588
- asymmetricKeyType?: KeyType | undefined;
589
- /**
590
- * For asymmetric keys, this property represents the size of the embedded key in
591
- * bytes. This property is `undefined` for symmetric keys.
592
- */
593
- asymmetricKeySize?: number | undefined;
594
- /**
595
- * This property exists only on asymmetric keys. Depending on the type of the key,
596
- * this object contains information about the key. None of the information obtained
597
- * through this property can be used to uniquely identify a key or to compromise
598
- * the security of the key.
599
- *
600
- * For RSA-PSS keys, if the key material contains a `RSASSA-PSS-params` sequence,
601
- * the `hashAlgorithm`, `mgf1HashAlgorithm`, and `saltLength` properties will be
602
- * set.
603
- *
604
- * Other key details might be exposed via this API using additional attributes.
605
- * @since v15.7.0
606
- */
607
- asymmetricKeyDetails?: AsymmetricKeyDetails | undefined;
608
- /**
609
- * For symmetric keys, the following encoding options can be used:
610
- *
611
- * For public keys, the following encoding options can be used:
612
- *
613
- * For private keys, the following encoding options can be used:
614
- *
615
- * The result type depends on the selected encoding format, when PEM the
616
- * result is a string, when DER it will be a buffer containing the data
617
- * encoded as DER, when [JWK](https://tools.ietf.org/html/rfc7517) it will be an object.
618
- *
619
- * When [JWK](https://tools.ietf.org/html/rfc7517) encoding format was selected, all other encoding options are
620
- * ignored.
621
- *
622
- * PKCS#1, SEC1, and PKCS#8 type keys can be encrypted by using a combination of
623
- * the `cipher` and `format` options. The PKCS#8 `type` can be used with any`format` to encrypt any key algorithm (RSA, EC, or DH) by specifying a`cipher`. PKCS#1 and SEC1 can only be
624
- * encrypted by specifying a `cipher`when the PEM `format` is used. For maximum compatibility, use PKCS#8 for
625
- * encrypted private keys. Since PKCS#8 defines its own
626
- * encryption mechanism, PEM-level encryption is not supported when encrypting
627
- * a PKCS#8 key. See [RFC 5208](https://www.rfc-editor.org/rfc/rfc5208.txt) for PKCS#8 encryption and [RFC 1421](https://www.rfc-editor.org/rfc/rfc1421.txt) for
628
- * PKCS#1 and SEC1 encryption.
629
- * @since v11.6.0
630
- */
631
- export(options: KeyExportOptions<'pem'>): string | Buffer;
632
- export(options?: KeyExportOptions<'der'>): Buffer;
633
- export(options?: JwkKeyExportOptions): JsonWebKey;
634
- /**
635
- * For secret keys, this property represents the size of the key in bytes. This
636
- * property is `undefined` for asymmetric keys.
637
- * @since v11.6.0
638
- */
639
- symmetricKeySize?: number | undefined;
640
- /**
641
- * Depending on the type of this `KeyObject`, this property is either`'secret'` for secret (symmetric) keys, `'public'` for public (asymmetric) keys
642
- * or `'private'` for private (asymmetric) keys.
643
- * @since v11.6.0
644
- */
645
- type: KeyObjectType;
646
- }
647
- type CipherCCMTypes = 'aes-128-ccm' | 'aes-192-ccm' | 'aes-256-ccm' | 'chacha20-poly1305';
648
- type CipherGCMTypes = 'aes-128-gcm' | 'aes-192-gcm' | 'aes-256-gcm';
649
- type BinaryLike = string | NodeJS.ArrayBufferView;
650
- type CipherKey = BinaryLike | KeyObject;
651
- interface CipherCCMOptions extends stream.TransformOptions {
652
- authTagLength: number;
653
- }
654
- interface CipherGCMOptions extends stream.TransformOptions {
655
- authTagLength?: number | undefined;
656
- }
657
- /**
658
- * Creates and returns a `Cipher` object that uses the given `algorithm` and`password`.
659
- *
660
- * The `options` argument controls stream behavior and is optional except when a
661
- * cipher in CCM or OCB mode is used (e.g. `'aes-128-ccm'`). In that case, the`authTagLength` option is required and specifies the length of the
662
- * authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength`option is not required but can be used to set the length of the authentication
663
- * tag that will be returned by `getAuthTag()` and defaults to 16 bytes.
664
- *
665
- * The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On
666
- * recent OpenSSL releases, `openssl list -cipher-algorithms`(`openssl list-cipher-algorithms` for older versions of OpenSSL) will
667
- * display the available cipher algorithms.
668
- *
669
- * The `password` is used to derive the cipher key and initialization vector (IV).
670
- * The value must be either a `'latin1'` encoded string, a `Buffer`, a`TypedArray`, or a `DataView`.
671
- *
672
- * The implementation of `crypto.createCipher()` derives keys using the OpenSSL
673
- * function [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) with the digest algorithm set to MD5, one
674
- * iteration, and no salt. The lack of salt allows dictionary attacks as the same
675
- * password always creates the same key. The low iteration count and
676
- * non-cryptographically secure hash algorithm allow passwords to be tested very
677
- * rapidly.
678
- *
679
- * In line with OpenSSL's recommendation to use a more modern algorithm instead of [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) it is recommended that
680
- * developers derive a key and IV on
681
- * their own using {@link scrypt} and to use {@link createCipheriv} to create the `Cipher` object. Users should not use ciphers with counter mode
682
- * (e.g. CTR, GCM, or CCM) in `crypto.createCipher()`. A warning is emitted when
683
- * they are used in order to avoid the risk of IV reuse that causes
684
- * vulnerabilities. For the case when IV is reused in GCM, see [Nonce-Disrespecting Adversaries](https://github.com/nonce-disrespect/nonce-disrespect) for details.
685
- * @since v0.1.94
686
- * @deprecated Since v10.0.0 - Use {@link createCipheriv} instead.
687
- * @param options `stream.transform` options
688
- */
689
- function createCipher(algorithm: CipherCCMTypes, password: BinaryLike, options: CipherCCMOptions): CipherCCM;
690
- /** @deprecated since v10.0.0 use `createCipheriv()` */
691
- function createCipher(algorithm: CipherGCMTypes, password: BinaryLike, options?: CipherGCMOptions): CipherGCM;
692
- /** @deprecated since v10.0.0 use `createCipheriv()` */
693
- function createCipher(algorithm: string, password: BinaryLike, options?: stream.TransformOptions): Cipher;
694
- /**
695
- * Creates and returns a `Cipher` object, with the given `algorithm`, `key` and
696
- * initialization vector (`iv`).
697
- *
698
- * The `options` argument controls stream behavior and is optional except when a
699
- * cipher in CCM or OCB mode is used (e.g. `'aes-128-ccm'`). In that case, the`authTagLength` option is required and specifies the length of the
700
- * authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength`option is not required but can be used to set the length of the authentication
701
- * tag that will be returned by `getAuthTag()` and defaults to 16 bytes.
702
- *
703
- * The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On
704
- * recent OpenSSL releases, `openssl list -cipher-algorithms`(`openssl list-cipher-algorithms` for older versions of OpenSSL) will
705
- * display the available cipher algorithms.
706
- *
707
- * The `key` is the raw key used by the `algorithm` and `iv` is an [initialization vector](https://en.wikipedia.org/wiki/Initialization_vector). Both arguments must be `'utf8'` encoded
708
- * strings,`Buffers`, `TypedArray`, or `DataView`s. The `key` may optionally be
709
- * a `KeyObject` of type `secret`. If the cipher does not need
710
- * an initialization vector, `iv` may be `null`.
711
- *
712
- * When passing strings for `key` or `iv`, please consider `caveats when using strings as inputs to cryptographic APIs`.
713
- *
714
- * Initialization vectors should be unpredictable and unique; ideally, they will be
715
- * cryptographically random. They do not have to be secret: IVs are typically just
716
- * added to ciphertext messages unencrypted. It may sound contradictory that
717
- * something has to be unpredictable and unique, but does not have to be secret;
718
- * remember that an attacker must not be able to predict ahead of time what a
719
- * given IV will be.
720
- * @since v0.1.94
721
- * @param options `stream.transform` options
722
- */
723
- function createCipheriv(algorithm: CipherCCMTypes, key: CipherKey, iv: BinaryLike | null, options: CipherCCMOptions): CipherCCM;
724
- function createCipheriv(algorithm: CipherGCMTypes, key: CipherKey, iv: BinaryLike | null, options?: CipherGCMOptions): CipherGCM;
725
- function createCipheriv(algorithm: string, key: CipherKey, iv: BinaryLike | null, options?: stream.TransformOptions): Cipher;
726
- /**
727
- * Instances of the `Cipher` class are used to encrypt data. The class can be
728
- * used in one of two ways:
729
- *
730
- * * As a `stream` that is both readable and writable, where plain unencrypted
731
- * data is written to produce encrypted data on the readable side, or
732
- * * Using the `cipher.update()` and `cipher.final()` methods to produce
733
- * the encrypted data.
734
- *
735
- * The {@link createCipher} or {@link createCipheriv} methods are
736
- * used to create `Cipher` instances. `Cipher` objects are not to be created
737
- * directly using the `new` keyword.
738
- *
739
- * Example: Using `Cipher` objects as streams:
740
- *
741
- * ```js
742
- * const {
743
- * scrypt,
744
- * randomFill,
745
- * createCipheriv
746
- * } = await import('crypto');
747
- *
748
- * const algorithm = 'aes-192-cbc';
749
- * const password = 'Password used to generate key';
750
- *
751
- * // First, we'll generate the key. The key length is dependent on the algorithm.
752
- * // In this case for aes192, it is 24 bytes (192 bits).
753
- * scrypt(password, 'salt', 24, (err, key) => {
754
- * if (err) throw err;
755
- * // Then, we'll generate a random initialization vector
756
- * randomFill(new Uint8Array(16), (err, iv) => {
757
- * if (err) throw err;
758
- *
759
- * // Once we have the key and iv, we can create and use the cipher...
760
- * const cipher = createCipheriv(algorithm, key, iv);
761
- *
762
- * let encrypted = '';
763
- * cipher.setEncoding('hex');
764
- *
765
- * cipher.on('data', (chunk) => encrypted += chunk);
766
- * cipher.on('end', () => console.log(encrypted));
767
- *
768
- * cipher.write('some clear text data');
769
- * cipher.end();
770
- * });
771
- * });
772
- * ```
773
- *
774
- * Example: Using `Cipher` and piped streams:
775
- *
776
- * ```js
777
- * import {
778
- * createReadStream,
779
- * createWriteStream,
780
- * } from 'fs';
781
- *
782
- * import {
783
- * pipeline
784
- * } from 'stream';
785
- *
786
- * const {
787
- * scrypt,
788
- * randomFill,
789
- * createCipheriv
790
- * } = await import('crypto');
791
- *
792
- * const algorithm = 'aes-192-cbc';
793
- * const password = 'Password used to generate key';
794
- *
795
- * // First, we'll generate the key. The key length is dependent on the algorithm.
796
- * // In this case for aes192, it is 24 bytes (192 bits).
797
- * scrypt(password, 'salt', 24, (err, key) => {
798
- * if (err) throw err;
799
- * // Then, we'll generate a random initialization vector
800
- * randomFill(new Uint8Array(16), (err, iv) => {
801
- * if (err) throw err;
802
- *
803
- * const cipher = createCipheriv(algorithm, key, iv);
804
- *
805
- * const input = createReadStream('test.js');
806
- * const output = createWriteStream('test.enc');
807
- *
808
- * pipeline(input, cipher, output, (err) => {
809
- * if (err) throw err;
810
- * });
811
- * });
812
- * });
813
- * ```
814
- *
815
- * Example: Using the `cipher.update()` and `cipher.final()` methods:
816
- *
817
- * ```js
818
- * const {
819
- * scrypt,
820
- * randomFill,
821
- * createCipheriv
822
- * } = await import('crypto');
823
- *
824
- * const algorithm = 'aes-192-cbc';
825
- * const password = 'Password used to generate key';
826
- *
827
- * // First, we'll generate the key. The key length is dependent on the algorithm.
828
- * // In this case for aes192, it is 24 bytes (192 bits).
829
- * scrypt(password, 'salt', 24, (err, key) => {
830
- * if (err) throw err;
831
- * // Then, we'll generate a random initialization vector
832
- * randomFill(new Uint8Array(16), (err, iv) => {
833
- * if (err) throw err;
834
- *
835
- * const cipher = createCipheriv(algorithm, key, iv);
836
- *
837
- * let encrypted = cipher.update('some clear text data', 'utf8', 'hex');
838
- * encrypted += cipher.final('hex');
839
- * console.log(encrypted);
840
- * });
841
- * });
842
- * ```
843
- * @since v0.1.94
844
- */
845
- class Cipher extends stream.Transform {
846
- private constructor();
847
- /**
848
- * Updates the cipher with `data`. If the `inputEncoding` argument is given,
849
- * the `data`argument is a string using the specified encoding. If the `inputEncoding`argument is not given, `data` must be a `Buffer`, `TypedArray`, or`DataView`. If `data` is a `Buffer`,
850
- * `TypedArray`, or `DataView`, then`inputEncoding` is ignored.
851
- *
852
- * The `outputEncoding` specifies the output format of the enciphered
853
- * data. If the `outputEncoding`is specified, a string using the specified encoding is returned. If no`outputEncoding` is provided, a `Buffer` is returned.
854
- *
855
- * The `cipher.update()` method can be called multiple times with new data until `cipher.final()` is called. Calling `cipher.update()` after `cipher.final()` will result in an error being
856
- * thrown.
857
- * @since v0.1.94
858
- * @param inputEncoding The `encoding` of the data.
859
- * @param outputEncoding The `encoding` of the return value.
860
- */
861
- update(data: BinaryLike): Buffer;
862
- update(data: string, inputEncoding: Encoding): Buffer;
863
- update(data: NodeJS.ArrayBufferView, inputEncoding: undefined, outputEncoding: Encoding): string;
864
- update(data: string, inputEncoding: Encoding | undefined, outputEncoding: Encoding): string;
865
- /**
866
- * Once the `cipher.final()` method has been called, the `Cipher` object can no
867
- * longer be used to encrypt data. Attempts to call `cipher.final()` more than
868
- * once will result in an error being thrown.
869
- * @since v0.1.94
870
- * @param outputEncoding The `encoding` of the return value.
871
- * @return Any remaining enciphered contents. If `outputEncoding` is specified, a string is returned. If an `outputEncoding` is not provided, a {@link Buffer} is returned.
872
- */
873
- final(): Buffer;
874
- final(outputEncoding: BufferEncoding): string;
875
- /**
876
- * When using block encryption algorithms, the `Cipher` class will automatically
877
- * add padding to the input data to the appropriate block size. To disable the
878
- * default padding call `cipher.setAutoPadding(false)`.
879
- *
880
- * When `autoPadding` is `false`, the length of the entire input data must be a
881
- * multiple of the cipher's block size or `cipher.final()` will throw an error.
882
- * Disabling automatic padding is useful for non-standard padding, for instance
883
- * using `0x0` instead of PKCS padding.
884
- *
885
- * The `cipher.setAutoPadding()` method must be called before `cipher.final()`.
886
- * @since v0.7.1
887
- * @param [autoPadding=true]
888
- * @return for method chaining.
889
- */
890
- setAutoPadding(autoPadding?: boolean): this;
891
- }
892
- interface CipherCCM extends Cipher {
893
- setAAD(
894
- buffer: NodeJS.ArrayBufferView,
895
- options: {
896
- plaintextLength: number;
897
- }
898
- ): this;
899
- getAuthTag(): Buffer;
900
- }
901
- interface CipherGCM extends Cipher {
902
- setAAD(
903
- buffer: NodeJS.ArrayBufferView,
904
- options?: {
905
- plaintextLength: number;
906
- }
907
- ): this;
908
- getAuthTag(): Buffer;
909
- }
910
- /**
911
- * Creates and returns a `Decipher` object that uses the given `algorithm` and`password` (key).
912
- *
913
- * The `options` argument controls stream behavior and is optional except when a
914
- * cipher in CCM or OCB mode is used (e.g. `'aes-128-ccm'`). In that case, the`authTagLength` option is required and specifies the length of the
915
- * authentication tag in bytes, see `CCM mode`.
916
- *
917
- * The implementation of `crypto.createDecipher()` derives keys using the OpenSSL
918
- * function [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) with the digest algorithm set to MD5, one
919
- * iteration, and no salt. The lack of salt allows dictionary attacks as the same
920
- * password always creates the same key. The low iteration count and
921
- * non-cryptographically secure hash algorithm allow passwords to be tested very
922
- * rapidly.
923
- *
924
- * In line with OpenSSL's recommendation to use a more modern algorithm instead of [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) it is recommended that
925
- * developers derive a key and IV on
926
- * their own using {@link scrypt} and to use {@link createDecipheriv} to create the `Decipher` object.
927
- * @since v0.1.94
928
- * @deprecated Since v10.0.0 - Use {@link createDecipheriv} instead.
929
- * @param options `stream.transform` options
930
- */
931
- function createDecipher(algorithm: CipherCCMTypes, password: BinaryLike, options: CipherCCMOptions): DecipherCCM;
932
- /** @deprecated since v10.0.0 use `createDecipheriv()` */
933
- function createDecipher(algorithm: CipherGCMTypes, password: BinaryLike, options?: CipherGCMOptions): DecipherGCM;
934
- /** @deprecated since v10.0.0 use `createDecipheriv()` */
935
- function createDecipher(algorithm: string, password: BinaryLike, options?: stream.TransformOptions): Decipher;
936
- /**
937
- * Creates and returns a `Decipher` object that uses the given `algorithm`, `key`and initialization vector (`iv`).
938
- *
939
- * The `options` argument controls stream behavior and is optional except when a
940
- * cipher in CCM or OCB mode is used (e.g. `'aes-128-ccm'`). In that case, the`authTagLength` option is required and specifies the length of the
941
- * authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength`option is not required but can be used to restrict accepted authentication tags
942
- * to those with the specified length.
943
- *
944
- * The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On
945
- * recent OpenSSL releases, `openssl list -cipher-algorithms`(`openssl list-cipher-algorithms` for older versions of OpenSSL) will
946
- * display the available cipher algorithms.
947
- *
948
- * The `key` is the raw key used by the `algorithm` and `iv` is an [initialization vector](https://en.wikipedia.org/wiki/Initialization_vector). Both arguments must be `'utf8'` encoded
949
- * strings,`Buffers`, `TypedArray`, or `DataView`s. The `key` may optionally be
950
- * a `KeyObject` of type `secret`. If the cipher does not need
951
- * an initialization vector, `iv` may be `null`.
952
- *
953
- * When passing strings for `key` or `iv`, please consider `caveats when using strings as inputs to cryptographic APIs`.
954
- *
955
- * Initialization vectors should be unpredictable and unique; ideally, they will be
956
- * cryptographically random. They do not have to be secret: IVs are typically just
957
- * added to ciphertext messages unencrypted. It may sound contradictory that
958
- * something has to be unpredictable and unique, but does not have to be secret;
959
- * remember that an attacker must not be able to predict ahead of time what a given
960
- * IV will be.
961
- * @since v0.1.94
962
- * @param options `stream.transform` options
963
- */
964
- function createDecipheriv(algorithm: CipherCCMTypes, key: CipherKey, iv: BinaryLike | null, options: CipherCCMOptions): DecipherCCM;
965
- function createDecipheriv(algorithm: CipherGCMTypes, key: CipherKey, iv: BinaryLike | null, options?: CipherGCMOptions): DecipherGCM;
966
- function createDecipheriv(algorithm: string, key: CipherKey, iv: BinaryLike | null, options?: stream.TransformOptions): Decipher;
967
- /**
968
- * Instances of the `Decipher` class are used to decrypt data. The class can be
969
- * used in one of two ways:
970
- *
971
- * * As a `stream` that is both readable and writable, where plain encrypted
972
- * data is written to produce unencrypted data on the readable side, or
973
- * * Using the `decipher.update()` and `decipher.final()` methods to
974
- * produce the unencrypted data.
975
- *
976
- * The {@link createDecipher} or {@link createDecipheriv} methods are
977
- * used to create `Decipher` instances. `Decipher` objects are not to be created
978
- * directly using the `new` keyword.
979
- *
980
- * Example: Using `Decipher` objects as streams:
981
- *
982
- * ```js
983
- * import { Buffer } from 'buffer';
984
- * const {
985
- * scryptSync,
986
- * createDecipheriv
987
- * } = await import('crypto');
988
- *
989
- * const algorithm = 'aes-192-cbc';
990
- * const password = 'Password used to generate key';
991
- * // Key length is dependent on the algorithm. In this case for aes192, it is
992
- * // 24 bytes (192 bits).
993
- * // Use the async `crypto.scrypt()` instead.
994
- * const key = scryptSync(password, 'salt', 24);
995
- * // The IV is usually passed along with the ciphertext.
996
- * const iv = Buffer.alloc(16, 0); // Initialization vector.
997
- *
998
- * const decipher = createDecipheriv(algorithm, key, iv);
999
- *
1000
- * let decrypted = '';
1001
- * decipher.on('readable', () => {
1002
- * while (null !== (chunk = decipher.read())) {
1003
- * decrypted += chunk.toString('utf8');
1004
- * }
1005
- * });
1006
- * decipher.on('end', () => {
1007
- * console.log(decrypted);
1008
- * // Prints: some clear text data
1009
- * });
1010
- *
1011
- * // Encrypted with same algorithm, key and iv.
1012
- * const encrypted =
1013
- * 'e5f79c5915c02171eec6b212d5520d44480993d7d622a7c4c2da32f6efda0ffa';
1014
- * decipher.write(encrypted, 'hex');
1015
- * decipher.end();
1016
- * ```
1017
- *
1018
- * Example: Using `Decipher` and piped streams:
1019
- *
1020
- * ```js
1021
- * import {
1022
- * createReadStream,
1023
- * createWriteStream,
1024
- * } from 'fs';
1025
- * import { Buffer } from 'buffer';
1026
- * const {
1027
- * scryptSync,
1028
- * createDecipheriv
1029
- * } = await import('crypto');
1030
- *
1031
- * const algorithm = 'aes-192-cbc';
1032
- * const password = 'Password used to generate key';
1033
- * // Use the async `crypto.scrypt()` instead.
1034
- * const key = scryptSync(password, 'salt', 24);
1035
- * // The IV is usually passed along with the ciphertext.
1036
- * const iv = Buffer.alloc(16, 0); // Initialization vector.
1037
- *
1038
- * const decipher = createDecipheriv(algorithm, key, iv);
1039
- *
1040
- * const input = createReadStream('test.enc');
1041
- * const output = createWriteStream('test.js');
1042
- *
1043
- * input.pipe(decipher).pipe(output);
1044
- * ```
1045
- *
1046
- * Example: Using the `decipher.update()` and `decipher.final()` methods:
1047
- *
1048
- * ```js
1049
- * import { Buffer } from 'buffer';
1050
- * const {
1051
- * scryptSync,
1052
- * createDecipheriv
1053
- * } = await import('crypto');
1054
- *
1055
- * const algorithm = 'aes-192-cbc';
1056
- * const password = 'Password used to generate key';
1057
- * // Use the async `crypto.scrypt()` instead.
1058
- * const key = scryptSync(password, 'salt', 24);
1059
- * // The IV is usually passed along with the ciphertext.
1060
- * const iv = Buffer.alloc(16, 0); // Initialization vector.
1061
- *
1062
- * const decipher = createDecipheriv(algorithm, key, iv);
1063
- *
1064
- * // Encrypted using same algorithm, key and iv.
1065
- * const encrypted =
1066
- * 'e5f79c5915c02171eec6b212d5520d44480993d7d622a7c4c2da32f6efda0ffa';
1067
- * let decrypted = decipher.update(encrypted, 'hex', 'utf8');
1068
- * decrypted += decipher.final('utf8');
1069
- * console.log(decrypted);
1070
- * // Prints: some clear text data
1071
- * ```
1072
- * @since v0.1.94
1073
- */
1074
- class Decipher extends stream.Transform {
1075
- private constructor();
1076
- /**
1077
- * Updates the decipher with `data`. If the `inputEncoding` argument is given,
1078
- * the `data`argument is a string using the specified encoding. If the `inputEncoding`argument is not given, `data` must be a `Buffer`. If `data` is a `Buffer` then `inputEncoding` is
1079
- * ignored.
1080
- *
1081
- * The `outputEncoding` specifies the output format of the enciphered
1082
- * data. If the `outputEncoding`is specified, a string using the specified encoding is returned. If no`outputEncoding` is provided, a `Buffer` is returned.
1083
- *
1084
- * The `decipher.update()` method can be called multiple times with new data until `decipher.final()` is called. Calling `decipher.update()` after `decipher.final()` will result in an error
1085
- * being thrown.
1086
- * @since v0.1.94
1087
- * @param inputEncoding The `encoding` of the `data` string.
1088
- * @param outputEncoding The `encoding` of the return value.
1089
- */
1090
- update(data: NodeJS.ArrayBufferView): Buffer;
1091
- update(data: string, inputEncoding: Encoding): Buffer;
1092
- update(data: NodeJS.ArrayBufferView, inputEncoding: undefined, outputEncoding: Encoding): string;
1093
- update(data: string, inputEncoding: Encoding | undefined, outputEncoding: Encoding): string;
1094
- /**
1095
- * Once the `decipher.final()` method has been called, the `Decipher` object can
1096
- * no longer be used to decrypt data. Attempts to call `decipher.final()` more
1097
- * than once will result in an error being thrown.
1098
- * @since v0.1.94
1099
- * @param outputEncoding The `encoding` of the return value.
1100
- * @return Any remaining deciphered contents. If `outputEncoding` is specified, a string is returned. If an `outputEncoding` is not provided, a {@link Buffer} is returned.
1101
- */
1102
- final(): Buffer;
1103
- final(outputEncoding: BufferEncoding): string;
1104
- /**
1105
- * When data has been encrypted without standard block padding, calling`decipher.setAutoPadding(false)` will disable automatic padding to prevent `decipher.final()` from checking for and
1106
- * removing padding.
1107
- *
1108
- * Turning auto padding off will only work if the input data's length is a
1109
- * multiple of the ciphers block size.
1110
- *
1111
- * The `decipher.setAutoPadding()` method must be called before `decipher.final()`.
1112
- * @since v0.7.1
1113
- * @param [autoPadding=true]
1114
- * @return for method chaining.
1115
- */
1116
- setAutoPadding(auto_padding?: boolean): this;
1117
- }
1118
- interface DecipherCCM extends Decipher {
1119
- setAuthTag(buffer: NodeJS.ArrayBufferView): this;
1120
- setAAD(
1121
- buffer: NodeJS.ArrayBufferView,
1122
- options: {
1123
- plaintextLength: number;
1124
- }
1125
- ): this;
1126
- }
1127
- interface DecipherGCM extends Decipher {
1128
- setAuthTag(buffer: NodeJS.ArrayBufferView): this;
1129
- setAAD(
1130
- buffer: NodeJS.ArrayBufferView,
1131
- options?: {
1132
- plaintextLength: number;
1133
- }
1134
- ): this;
1135
- }
1136
- interface PrivateKeyInput {
1137
- key: string | Buffer;
1138
- format?: KeyFormat | undefined;
1139
- type?: 'pkcs1' | 'pkcs8' | 'sec1' | undefined;
1140
- passphrase?: string | Buffer | undefined;
1141
- }
1142
- interface PublicKeyInput {
1143
- key: string | Buffer;
1144
- format?: KeyFormat | undefined;
1145
- type?: 'pkcs1' | 'spki' | undefined;
1146
- }
1147
- /**
1148
- * Asynchronously generates a new random secret key of the given `length`. The`type` will determine which validations will be performed on the `length`.
1149
- *
1150
- * ```js
1151
- * const {
1152
- * generateKey
1153
- * } = await import('crypto');
1154
- *
1155
- * generateKey('hmac', { length: 64 }, (err, key) => {
1156
- * if (err) throw err;
1157
- * console.log(key.export().toString('hex')); // 46e..........620
1158
- * });
1159
- * ```
1160
- * @since v15.0.0
1161
- * @param type The intended use of the generated secret key. Currently accepted values are `'hmac'` and `'aes'`.
1162
- */
1163
- function generateKey(
1164
- type: 'hmac' | 'aes',
1165
- options: {
1166
- length: number;
1167
- },
1168
- callback: (err: Error | null, key: KeyObject) => void
1169
- ): void;
1170
- /**
1171
- * Synchronously generates a new random secret key of the given `length`. The`type` will determine which validations will be performed on the `length`.
1172
- *
1173
- * ```js
1174
- * const {
1175
- * generateKeySync
1176
- * } = await import('crypto');
1177
- *
1178
- * const key = generateKeySync('hmac', { length: 64 });
1179
- * console.log(key.export().toString('hex')); // e89..........41e
1180
- * ```
1181
- * @since v15.0.0
1182
- * @param type The intended use of the generated secret key. Currently accepted values are `'hmac'` and `'aes'`.
1183
- */
1184
- function generateKeySync(
1185
- type: 'hmac' | 'aes',
1186
- options: {
1187
- length: number;
1188
- }
1189
- ): KeyObject;
1190
- interface JsonWebKeyInput {
1191
- key: JsonWebKey;
1192
- format: 'jwk';
1193
- }
1194
- /**
1195
- * Creates and returns a new key object containing a private key. If `key` is a
1196
- * string or `Buffer`, `format` is assumed to be `'pem'`; otherwise, `key`must be an object with the properties described above.
1197
- *
1198
- * If the private key is encrypted, a `passphrase` must be specified. The length
1199
- * of the passphrase is limited to 1024 bytes.
1200
- * @since v11.6.0
1201
- */
1202
- function createPrivateKey(key: PrivateKeyInput | string | Buffer | JsonWebKeyInput): KeyObject;
1203
- /**
1204
- * Creates and returns a new key object containing a public key. If `key` is a
1205
- * string or `Buffer`, `format` is assumed to be `'pem'`; if `key` is a `KeyObject`with type `'private'`, the public key is derived from the given private key;
1206
- * otherwise, `key` must be an object with the properties described above.
1207
- *
1208
- * If the format is `'pem'`, the `'key'` may also be an X.509 certificate.
1209
- *
1210
- * Because public keys can be derived from private keys, a private key may be
1211
- * passed instead of a public key. In that case, this function behaves as if {@link createPrivateKey} had been called, except that the type of the
1212
- * returned `KeyObject` will be `'public'` and that the private key cannot be
1213
- * extracted from the returned `KeyObject`. Similarly, if a `KeyObject` with type`'private'` is given, a new `KeyObject` with type `'public'` will be returned
1214
- * and it will be impossible to extract the private key from the returned object.
1215
- * @since v11.6.0
1216
- */
1217
- function createPublicKey(key: PublicKeyInput | string | Buffer | KeyObject | JsonWebKeyInput): KeyObject;
1218
- /**
1219
- * Creates and returns a new key object containing a secret key for symmetric
1220
- * encryption or `Hmac`.
1221
- * @since v11.6.0
1222
- * @param encoding The string encoding when `key` is a string.
1223
- */
1224
- function createSecretKey(key: NodeJS.ArrayBufferView): KeyObject;
1225
- function createSecretKey(key: string, encoding: BufferEncoding): KeyObject;
1226
- /**
1227
- * Creates and returns a `Sign` object that uses the given `algorithm`. Use {@link getHashes} to obtain the names of the available digest algorithms.
1228
- * Optional `options` argument controls the `stream.Writable` behavior.
1229
- *
1230
- * In some cases, a `Sign` instance can be created using the name of a signature
1231
- * algorithm, such as `'RSA-SHA256'`, instead of a digest algorithm. This will use
1232
- * the corresponding digest algorithm. This does not work for all signature
1233
- * algorithms, such as `'ecdsa-with-SHA256'`, so it is best to always use digest
1234
- * algorithm names.
1235
- * @since v0.1.92
1236
- * @param options `stream.Writable` options
1237
- */
1238
- function createSign(algorithm: string, options?: stream.WritableOptions): Sign;
1239
- type DSAEncoding = 'der' | 'ieee-p1363';
1240
- interface SigningOptions {
1241
- /**
1242
- * @See crypto.constants.RSA_PKCS1_PADDING
1243
- */
1244
- padding?: number | undefined;
1245
- saltLength?: number | undefined;
1246
- dsaEncoding?: DSAEncoding | undefined;
1247
- }
1248
- interface SignPrivateKeyInput extends PrivateKeyInput, SigningOptions {}
1249
- interface SignKeyObjectInput extends SigningOptions {
1250
- key: KeyObject;
1251
- }
1252
- interface VerifyPublicKeyInput extends PublicKeyInput, SigningOptions {}
1253
- interface VerifyKeyObjectInput extends SigningOptions {
1254
- key: KeyObject;
1255
- }
1256
- type KeyLike = string | Buffer | KeyObject;
1257
- /**
1258
- * The `Sign` class is a utility for generating signatures. It can be used in one
1259
- * of two ways:
1260
- *
1261
- * * As a writable `stream`, where data to be signed is written and the `sign.sign()` method is used to generate and return the signature, or
1262
- * * Using the `sign.update()` and `sign.sign()` methods to produce the
1263
- * signature.
1264
- *
1265
- * The {@link createSign} method is used to create `Sign` instances. The
1266
- * argument is the string name of the hash function to use. `Sign` objects are not
1267
- * to be created directly using the `new` keyword.
1268
- *
1269
- * Example: Using `Sign` and `Verify` objects as streams:
1270
- *
1271
- * ```js
1272
- * const {
1273
- * generateKeyPairSync,
1274
- * createSign,
1275
- * createVerify
1276
- * } = await import('crypto');
1277
- *
1278
- * const { privateKey, publicKey } = generateKeyPairSync('ec', {
1279
- * namedCurve: 'sect239k1'
1280
- * });
1281
- *
1282
- * const sign = createSign('SHA256');
1283
- * sign.write('some data to sign');
1284
- * sign.end();
1285
- * const signature = sign.sign(privateKey, 'hex');
1286
- *
1287
- * const verify = createVerify('SHA256');
1288
- * verify.write('some data to sign');
1289
- * verify.end();
1290
- * console.log(verify.verify(publicKey, signature, 'hex'));
1291
- * // Prints: true
1292
- * ```
1293
- *
1294
- * Example: Using the `sign.update()` and `verify.update()` methods:
1295
- *
1296
- * ```js
1297
- * const {
1298
- * generateKeyPairSync,
1299
- * createSign,
1300
- * createVerify
1301
- * } = await import('crypto');
1302
- *
1303
- * const { privateKey, publicKey } = generateKeyPairSync('rsa', {
1304
- * modulusLength: 2048,
1305
- * });
1306
- *
1307
- * const sign = createSign('SHA256');
1308
- * sign.update('some data to sign');
1309
- * sign.end();
1310
- * const signature = sign.sign(privateKey);
1311
- *
1312
- * const verify = createVerify('SHA256');
1313
- * verify.update('some data to sign');
1314
- * verify.end();
1315
- * console.log(verify.verify(publicKey, signature));
1316
- * // Prints: true
1317
- * ```
1318
- * @since v0.1.92
1319
- */
1320
- class Sign extends stream.Writable {
1321
- private constructor();
1322
- /**
1323
- * Updates the `Sign` content with the given `data`, the encoding of which
1324
- * is given in `inputEncoding`.
1325
- * If `encoding` is not provided, and the `data` is a string, an
1326
- * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored.
1327
- *
1328
- * This can be called many times with new data as it is streamed.
1329
- * @since v0.1.92
1330
- * @param inputEncoding The `encoding` of the `data` string.
1331
- */
1332
- update(data: BinaryLike): this;
1333
- update(data: string, inputEncoding: Encoding): this;
1334
- /**
1335
- * Calculates the signature on all the data passed through using either `sign.update()` or `sign.write()`.
1336
- *
1337
- * If `privateKey` is not a `KeyObject`, this function behaves as if`privateKey` had been passed to {@link createPrivateKey}. If it is an
1338
- * object, the following additional properties can be passed:
1339
- *
1340
- * If `outputEncoding` is provided a string is returned; otherwise a `Buffer` is returned.
1341
- *
1342
- * The `Sign` object can not be again used after `sign.sign()` method has been
1343
- * called. Multiple calls to `sign.sign()` will result in an error being thrown.
1344
- * @since v0.1.92
1345
- */
1346
- sign(privateKey: KeyLike | SignKeyObjectInput | SignPrivateKeyInput): Buffer;
1347
- sign(privateKey: KeyLike | SignKeyObjectInput | SignPrivateKeyInput, outputFormat: BinaryToTextEncoding): string;
1348
- }
1349
- /**
1350
- * Creates and returns a `Verify` object that uses the given algorithm.
1351
- * Use {@link getHashes} to obtain an array of names of the available
1352
- * signing algorithms. Optional `options` argument controls the`stream.Writable` behavior.
1353
- *
1354
- * In some cases, a `Verify` instance can be created using the name of a signature
1355
- * algorithm, such as `'RSA-SHA256'`, instead of a digest algorithm. This will use
1356
- * the corresponding digest algorithm. This does not work for all signature
1357
- * algorithms, such as `'ecdsa-with-SHA256'`, so it is best to always use digest
1358
- * algorithm names.
1359
- * @since v0.1.92
1360
- * @param options `stream.Writable` options
1361
- */
1362
- function createVerify(algorithm: string, options?: stream.WritableOptions): Verify;
1363
- /**
1364
- * The `Verify` class is a utility for verifying signatures. It can be used in one
1365
- * of two ways:
1366
- *
1367
- * * As a writable `stream` where written data is used to validate against the
1368
- * supplied signature, or
1369
- * * Using the `verify.update()` and `verify.verify()` methods to verify
1370
- * the signature.
1371
- *
1372
- * The {@link createVerify} method is used to create `Verify` instances.`Verify` objects are not to be created directly using the `new` keyword.
1373
- *
1374
- * See `Sign` for examples.
1375
- * @since v0.1.92
1376
- */
1377
- class Verify extends stream.Writable {
1378
- private constructor();
1379
- /**
1380
- * Updates the `Verify` content with the given `data`, the encoding of which
1381
- * is given in `inputEncoding`.
1382
- * If `inputEncoding` is not provided, and the `data` is a string, an
1383
- * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored.
1384
- *
1385
- * This can be called many times with new data as it is streamed.
1386
- * @since v0.1.92
1387
- * @param inputEncoding The `encoding` of the `data` string.
1388
- */
1389
- update(data: BinaryLike): Verify;
1390
- update(data: string, inputEncoding: Encoding): Verify;
1391
- /**
1392
- * Verifies the provided data using the given `object` and `signature`.
1393
- *
1394
- * If `object` is not a `KeyObject`, this function behaves as if`object` had been passed to {@link createPublicKey}. If it is an
1395
- * object, the following additional properties can be passed:
1396
- *
1397
- * The `signature` argument is the previously calculated signature for the data, in
1398
- * the `signatureEncoding`.
1399
- * If a `signatureEncoding` is specified, the `signature` is expected to be a
1400
- * string; otherwise `signature` is expected to be a `Buffer`,`TypedArray`, or `DataView`.
1401
- *
1402
- * The `verify` object can not be used again after `verify.verify()` has been
1403
- * called. Multiple calls to `verify.verify()` will result in an error being
1404
- * thrown.
1405
- *
1406
- * Because public keys can be derived from private keys, a private key may
1407
- * be passed instead of a public key.
1408
- * @since v0.1.92
1409
- */
1410
- verify(object: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput, signature: NodeJS.ArrayBufferView): boolean;
1411
- verify(object: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput, signature: string, signature_format?: BinaryToTextEncoding): boolean;
1412
- }
1413
- /**
1414
- * Creates a `DiffieHellman` key exchange object using the supplied `prime` and an
1415
- * optional specific `generator`.
1416
- *
1417
- * The `generator` argument can be a number, string, or `Buffer`. If`generator` is not specified, the value `2` is used.
1418
- *
1419
- * If `primeEncoding` is specified, `prime` is expected to be a string; otherwise
1420
- * a `Buffer`, `TypedArray`, or `DataView` is expected.
1421
- *
1422
- * If `generatorEncoding` is specified, `generator` is expected to be a string;
1423
- * otherwise a number, `Buffer`, `TypedArray`, or `DataView` is expected.
1424
- * @since v0.11.12
1425
- * @param primeEncoding The `encoding` of the `prime` string.
1426
- * @param [generator=2]
1427
- * @param generatorEncoding The `encoding` of the `generator` string.
1428
- */
1429
- function createDiffieHellman(primeLength: number, generator?: number | NodeJS.ArrayBufferView): DiffieHellman;
1430
- function createDiffieHellman(prime: NodeJS.ArrayBufferView): DiffieHellman;
1431
- function createDiffieHellman(prime: string, primeEncoding: BinaryToTextEncoding): DiffieHellman;
1432
- function createDiffieHellman(prime: string, primeEncoding: BinaryToTextEncoding, generator: number | NodeJS.ArrayBufferView): DiffieHellman;
1433
- function createDiffieHellman(prime: string, primeEncoding: BinaryToTextEncoding, generator: string, generatorEncoding: BinaryToTextEncoding): DiffieHellman;
1434
- /**
1435
- * The `DiffieHellman` class is a utility for creating Diffie-Hellman key
1436
- * exchanges.
1437
- *
1438
- * Instances of the `DiffieHellman` class can be created using the {@link createDiffieHellman} function.
1439
- *
1440
- * ```js
1441
- * import assert from 'assert';
1442
- *
1443
- * const {
1444
- * createDiffieHellman
1445
- * } = await import('crypto');
1446
- *
1447
- * // Generate Alice's keys...
1448
- * const alice = createDiffieHellman(2048);
1449
- * const aliceKey = alice.generateKeys();
1450
- *
1451
- * // Generate Bob's keys...
1452
- * const bob = createDiffieHellman(alice.getPrime(), alice.getGenerator());
1453
- * const bobKey = bob.generateKeys();
1454
- *
1455
- * // Exchange and generate the secret...
1456
- * const aliceSecret = alice.computeSecret(bobKey);
1457
- * const bobSecret = bob.computeSecret(aliceKey);
1458
- *
1459
- * // OK
1460
- * assert.strictEqual(aliceSecret.toString('hex'), bobSecret.toString('hex'));
1461
- * ```
1462
- * @since v0.5.0
1463
- */
1464
- class DiffieHellman {
1465
- private constructor();
1466
- /**
1467
- * Generates private and public Diffie-Hellman key values, and returns
1468
- * the public key in the specified `encoding`. This key should be
1469
- * transferred to the other party.
1470
- * If `encoding` is provided a string is returned; otherwise a `Buffer` is returned.
1471
- * @since v0.5.0
1472
- * @param encoding The `encoding` of the return value.
1473
- */
1474
- generateKeys(): Buffer;
1475
- generateKeys(encoding: BinaryToTextEncoding): string;
1476
- /**
1477
- * Computes the shared secret using `otherPublicKey` as the other
1478
- * party's public key and returns the computed shared secret. The supplied
1479
- * key is interpreted using the specified `inputEncoding`, and secret is
1480
- * encoded using specified `outputEncoding`.
1481
- * If the `inputEncoding` is not
1482
- * provided, `otherPublicKey` is expected to be a `Buffer`,`TypedArray`, or `DataView`.
1483
- *
1484
- * If `outputEncoding` is given a string is returned; otherwise, a `Buffer` is returned.
1485
- * @since v0.5.0
1486
- * @param inputEncoding The `encoding` of an `otherPublicKey` string.
1487
- * @param outputEncoding The `encoding` of the return value.
1488
- */
1489
- computeSecret(otherPublicKey: NodeJS.ArrayBufferView): Buffer;
1490
- computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding): Buffer;
1491
- computeSecret(otherPublicKey: NodeJS.ArrayBufferView, outputEncoding: BinaryToTextEncoding): string;
1492
- computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding, outputEncoding: BinaryToTextEncoding): string;
1493
- /**
1494
- * Returns the Diffie-Hellman prime in the specified `encoding`.
1495
- * If `encoding` is provided a string is
1496
- * returned; otherwise a `Buffer` is returned.
1497
- * @since v0.5.0
1498
- * @param encoding The `encoding` of the return value.
1499
- */
1500
- getPrime(): Buffer;
1501
- getPrime(encoding: BinaryToTextEncoding): string;
1502
- /**
1503
- * Returns the Diffie-Hellman generator in the specified `encoding`.
1504
- * If `encoding` is provided a string is
1505
- * returned; otherwise a `Buffer` is returned.
1506
- * @since v0.5.0
1507
- * @param encoding The `encoding` of the return value.
1508
- */
1509
- getGenerator(): Buffer;
1510
- getGenerator(encoding: BinaryToTextEncoding): string;
1511
- /**
1512
- * Returns the Diffie-Hellman public key in the specified `encoding`.
1513
- * If `encoding` is provided a
1514
- * string is returned; otherwise a `Buffer` is returned.
1515
- * @since v0.5.0
1516
- * @param encoding The `encoding` of the return value.
1517
- */
1518
- getPublicKey(): Buffer;
1519
- getPublicKey(encoding: BinaryToTextEncoding): string;
1520
- /**
1521
- * Returns the Diffie-Hellman private key in the specified `encoding`.
1522
- * If `encoding` is provided a
1523
- * string is returned; otherwise a `Buffer` is returned.
1524
- * @since v0.5.0
1525
- * @param encoding The `encoding` of the return value.
1526
- */
1527
- getPrivateKey(): Buffer;
1528
- getPrivateKey(encoding: BinaryToTextEncoding): string;
1529
- /**
1530
- * Sets the Diffie-Hellman public key. If the `encoding` argument is provided,`publicKey` is expected
1531
- * to be a string. If no `encoding` is provided, `publicKey` is expected
1532
- * to be a `Buffer`, `TypedArray`, or `DataView`.
1533
- * @since v0.5.0
1534
- * @param encoding The `encoding` of the `publicKey` string.
1535
- */
1536
- setPublicKey(publicKey: NodeJS.ArrayBufferView): void;
1537
- setPublicKey(publicKey: string, encoding: BufferEncoding): void;
1538
- /**
1539
- * Sets the Diffie-Hellman private key. If the `encoding` argument is provided,`privateKey` is expected
1540
- * to be a string. If no `encoding` is provided, `privateKey` is expected
1541
- * to be a `Buffer`, `TypedArray`, or `DataView`.
1542
- * @since v0.5.0
1543
- * @param encoding The `encoding` of the `privateKey` string.
1544
- */
1545
- setPrivateKey(privateKey: NodeJS.ArrayBufferView): void;
1546
- setPrivateKey(privateKey: string, encoding: BufferEncoding): void;
1547
- /**
1548
- * A bit field containing any warnings and/or errors resulting from a check
1549
- * performed during initialization of the `DiffieHellman` object.
1550
- *
1551
- * The following values are valid for this property (as defined in `constants`module):
1552
- *
1553
- * * `DH_CHECK_P_NOT_SAFE_PRIME`
1554
- * * `DH_CHECK_P_NOT_PRIME`
1555
- * * `DH_UNABLE_TO_CHECK_GENERATOR`
1556
- * * `DH_NOT_SUITABLE_GENERATOR`
1557
- * @since v0.11.12
1558
- */
1559
- verifyError: number;
1560
- }
1561
- /**
1562
- * Creates a predefined `DiffieHellmanGroup` key exchange object. The
1563
- * supported groups are: `'modp1'`, `'modp2'`, `'modp5'` (defined in [RFC 2412](https://www.rfc-editor.org/rfc/rfc2412.txt), but see `Caveats`) and `'modp14'`, `'modp15'`,`'modp16'`, `'modp17'`,
1564
- * `'modp18'` (defined in [RFC 3526](https://www.rfc-editor.org/rfc/rfc3526.txt)). The
1565
- * returned object mimics the interface of objects created by {@link createDiffieHellman}, but will not allow changing
1566
- * the keys (with `diffieHellman.setPublicKey()`, for example). The
1567
- * advantage of using this method is that the parties do not have to
1568
- * generate nor exchange a group modulus beforehand, saving both processor
1569
- * and communication time.
1570
- *
1571
- * Example (obtaining a shared secret):
1572
- *
1573
- * ```js
1574
- * const {
1575
- * getDiffieHellman
1576
- * } = await import('crypto');
1577
- * const alice = getDiffieHellman('modp14');
1578
- * const bob = getDiffieHellman('modp14');
1579
- *
1580
- * alice.generateKeys();
1581
- * bob.generateKeys();
1582
- *
1583
- * const aliceSecret = alice.computeSecret(bob.getPublicKey(), null, 'hex');
1584
- * const bobSecret = bob.computeSecret(alice.getPublicKey(), null, 'hex');
1585
- *
1586
- * // aliceSecret and bobSecret should be the same
1587
- * console.log(aliceSecret === bobSecret);
1588
- * ```
1589
- * @since v0.7.5
1590
- */
1591
- function getDiffieHellman(groupName: string): DiffieHellman;
1592
- /**
1593
- * Provides an asynchronous Password-Based Key Derivation Function 2 (PBKDF2)
1594
- * implementation. A selected HMAC digest algorithm specified by `digest` is
1595
- * applied to derive a key of the requested byte length (`keylen`) from the`password`, `salt` and `iterations`.
1596
- *
1597
- * The supplied `callback` function is called with two arguments: `err` and`derivedKey`. If an error occurs while deriving the key, `err` will be set;
1598
- * otherwise `err` will be `null`. By default, the successfully generated`derivedKey` will be passed to the callback as a `Buffer`. An error will be
1599
- * thrown if any of the input arguments specify invalid values or types.
1600
- *
1601
- * If `digest` is `null`, `'sha1'` will be used. This behavior is deprecated,
1602
- * please specify a `digest` explicitly.
1603
- *
1604
- * The `iterations` argument must be a number set as high as possible. The
1605
- * higher the number of iterations, the more secure the derived key will be,
1606
- * but will take a longer amount of time to complete.
1607
- *
1608
- * The `salt` should be as unique as possible. It is recommended that a salt is
1609
- * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.
1610
- *
1611
- * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.
1612
- *
1613
- * ```js
1614
- * const {
1615
- * pbkdf2
1616
- * } = await import('crypto');
1617
- *
1618
- * pbkdf2('secret', 'salt', 100000, 64, 'sha512', (err, derivedKey) => {
1619
- * if (err) throw err;
1620
- * console.log(derivedKey.toString('hex')); // '3745e48...08d59ae'
1621
- * });
1622
- * ```
1623
- *
1624
- * The `crypto.DEFAULT_ENCODING` property can be used to change the way the`derivedKey` is passed to the callback. This property, however, has been
1625
- * deprecated and use should be avoided.
1626
- *
1627
- * ```js
1628
- * import crypto from 'crypto';
1629
- * crypto.DEFAULT_ENCODING = 'hex';
1630
- * crypto.pbkdf2('secret', 'salt', 100000, 512, 'sha512', (err, derivedKey) => {
1631
- * if (err) throw err;
1632
- * console.log(derivedKey); // '3745e48...aa39b34'
1633
- * });
1634
- * ```
1635
- *
1636
- * An array of supported digest functions can be retrieved using {@link getHashes}.
1637
- *
1638
- * This API uses libuv's threadpool, which can have surprising and
1639
- * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information.
1640
- * @since v0.5.5
1641
- */
1642
- function pbkdf2(password: BinaryLike, salt: BinaryLike, iterations: number, keylen: number, digest: string, callback: (err: Error | null, derivedKey: Buffer) => void): void;
1643
- /**
1644
- * Provides a synchronous Password-Based Key Derivation Function 2 (PBKDF2)
1645
- * implementation. A selected HMAC digest algorithm specified by `digest` is
1646
- * applied to derive a key of the requested byte length (`keylen`) from the`password`, `salt` and `iterations`.
1647
- *
1648
- * If an error occurs an `Error` will be thrown, otherwise the derived key will be
1649
- * returned as a `Buffer`.
1650
- *
1651
- * If `digest` is `null`, `'sha1'` will be used. This behavior is deprecated,
1652
- * please specify a `digest` explicitly.
1653
- *
1654
- * The `iterations` argument must be a number set as high as possible. The
1655
- * higher the number of iterations, the more secure the derived key will be,
1656
- * but will take a longer amount of time to complete.
1657
- *
1658
- * The `salt` should be as unique as possible. It is recommended that a salt is
1659
- * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.
1660
- *
1661
- * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.
1662
- *
1663
- * ```js
1664
- * const {
1665
- * pbkdf2Sync
1666
- * } = await import('crypto');
1667
- *
1668
- * const key = pbkdf2Sync('secret', 'salt', 100000, 64, 'sha512');
1669
- * console.log(key.toString('hex')); // '3745e48...08d59ae'
1670
- * ```
1671
- *
1672
- * The `crypto.DEFAULT_ENCODING` property may be used to change the way the`derivedKey` is returned. This property, however, is deprecated and use
1673
- * should be avoided.
1674
- *
1675
- * ```js
1676
- * import crypto from 'crypto';
1677
- * crypto.DEFAULT_ENCODING = 'hex';
1678
- * const key = crypto.pbkdf2Sync('secret', 'salt', 100000, 512, 'sha512');
1679
- * console.log(key); // '3745e48...aa39b34'
1680
- * ```
1681
- *
1682
- * An array of supported digest functions can be retrieved using {@link getHashes}.
1683
- * @since v0.9.3
1684
- */
1685
- function pbkdf2Sync(password: BinaryLike, salt: BinaryLike, iterations: number, keylen: number, digest: string): Buffer;
1686
- /**
1687
- * Generates cryptographically strong pseudorandom data. The `size` argument
1688
- * is a number indicating the number of bytes to generate.
1689
- *
1690
- * If a `callback` function is provided, the bytes are generated asynchronously
1691
- * and the `callback` function is invoked with two arguments: `err` and `buf`.
1692
- * If an error occurs, `err` will be an `Error` object; otherwise it is `null`. The`buf` argument is a `Buffer` containing the generated bytes.
1693
- *
1694
- * ```js
1695
- * // Asynchronous
1696
- * const {
1697
- * randomBytes
1698
- * } = await import('crypto');
1699
- *
1700
- * randomBytes(256, (err, buf) => {
1701
- * if (err) throw err;
1702
- * console.log(`${buf.length} bytes of random data: ${buf.toString('hex')}`);
1703
- * });
1704
- * ```
1705
- *
1706
- * If the `callback` function is not provided, the random bytes are generated
1707
- * synchronously and returned as a `Buffer`. An error will be thrown if
1708
- * there is a problem generating the bytes.
1709
- *
1710
- * ```js
1711
- * // Synchronous
1712
- * const {
1713
- * randomBytes
1714
- * } = await import('crypto');
1715
- *
1716
- * const buf = randomBytes(256);
1717
- * console.log(
1718
- * `${buf.length} bytes of random data: ${buf.toString('hex')}`);
1719
- * ```
1720
- *
1721
- * The `crypto.randomBytes()` method will not complete until there is
1722
- * sufficient entropy available.
1723
- * This should normally never take longer than a few milliseconds. The only time
1724
- * when generating the random bytes may conceivably block for a longer period of
1725
- * time is right after boot, when the whole system is still low on entropy.
1726
- *
1727
- * This API uses libuv's threadpool, which can have surprising and
1728
- * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information.
1729
- *
1730
- * The asynchronous version of `crypto.randomBytes()` is carried out in a single
1731
- * threadpool request. To minimize threadpool task length variation, partition
1732
- * large `randomBytes` requests when doing so as part of fulfilling a client
1733
- * request.
1734
- * @since v0.5.8
1735
- * @param size The number of bytes to generate. The `size` must not be larger than `2**31 - 1`.
1736
- * @return if the `callback` function is not provided.
1737
- */
1738
- function randomBytes(size: number): Buffer;
1739
- function randomBytes(size: number, callback: (err: Error | null, buf: Buffer) => void): void;
1740
- function pseudoRandomBytes(size: number): Buffer;
1741
- function pseudoRandomBytes(size: number, callback: (err: Error | null, buf: Buffer) => void): void;
1742
- /**
1743
- * Return a random integer `n` such that `min <= n < max`. This
1744
- * implementation avoids [modulo bias](https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle#Modulo_bias).
1745
- *
1746
- * The range (`max - min`) must be less than 248. `min` and `max` must
1747
- * be [safe integers](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger).
1748
- *
1749
- * If the `callback` function is not provided, the random integer is
1750
- * generated synchronously.
1751
- *
1752
- * ```js
1753
- * // Asynchronous
1754
- * const {
1755
- * randomInt
1756
- * } = await import('crypto');
1757
- *
1758
- * randomInt(3, (err, n) => {
1759
- * if (err) throw err;
1760
- * console.log(`Random number chosen from (0, 1, 2): ${n}`);
1761
- * });
1762
- * ```
1763
- *
1764
- * ```js
1765
- * // Synchronous
1766
- * const {
1767
- * randomInt
1768
- * } = await import('crypto');
1769
- *
1770
- * const n = randomInt(3);
1771
- * console.log(`Random number chosen from (0, 1, 2): ${n}`);
1772
- * ```
1773
- *
1774
- * ```js
1775
- * // With `min` argument
1776
- * const {
1777
- * randomInt
1778
- * } = await import('crypto');
1779
- *
1780
- * const n = randomInt(1, 7);
1781
- * console.log(`The dice rolled: ${n}`);
1782
- * ```
1783
- * @since v14.10.0, v12.19.0
1784
- * @param [min=0] Start of random range (inclusive).
1785
- * @param max End of random range (exclusive).
1786
- * @param callback `function(err, n) {}`.
1787
- */
1788
- function randomInt(max: number): number;
1789
- function randomInt(min: number, max: number): number;
1790
- function randomInt(max: number, callback: (err: Error | null, value: number) => void): void;
1791
- function randomInt(min: number, max: number, callback: (err: Error | null, value: number) => void): void;
1792
- /**
1793
- * Synchronous version of {@link randomFill}.
1794
- *
1795
- * ```js
1796
- * import { Buffer } from 'buffer';
1797
- * const { randomFillSync } = await import('crypto');
1798
- *
1799
- * const buf = Buffer.alloc(10);
1800
- * console.log(randomFillSync(buf).toString('hex'));
1801
- *
1802
- * randomFillSync(buf, 5);
1803
- * console.log(buf.toString('hex'));
1804
- *
1805
- * // The above is equivalent to the following:
1806
- * randomFillSync(buf, 5, 5);
1807
- * console.log(buf.toString('hex'));
1808
- * ```
1809
- *
1810
- * Any `ArrayBuffer`, `TypedArray` or `DataView` instance may be passed as`buffer`.
1811
- *
1812
- * ```js
1813
- * import { Buffer } from 'buffer';
1814
- * const { randomFillSync } = await import('crypto');
1815
- *
1816
- * const a = new Uint32Array(10);
1817
- * console.log(Buffer.from(randomFillSync(a).buffer,
1818
- * a.byteOffset, a.byteLength).toString('hex'));
1819
- *
1820
- * const b = new DataView(new ArrayBuffer(10));
1821
- * console.log(Buffer.from(randomFillSync(b).buffer,
1822
- * b.byteOffset, b.byteLength).toString('hex'));
1823
- *
1824
- * const c = new ArrayBuffer(10);
1825
- * console.log(Buffer.from(randomFillSync(c)).toString('hex'));
1826
- * ```
1827
- * @since v7.10.0, v6.13.0
1828
- * @param buffer Must be supplied. The size of the provided `buffer` must not be larger than `2**31 - 1`.
1829
- * @param [offset=0]
1830
- * @param [size=buffer.length - offset]
1831
- * @return The object passed as `buffer` argument.
1832
- */
1833
- function randomFillSync<T extends NodeJS.ArrayBufferView>(buffer: T, offset?: number, size?: number): T;
1834
- /**
1835
- * This function is similar to {@link randomBytes} but requires the first
1836
- * argument to be a `Buffer` that will be filled. It also
1837
- * requires that a callback is passed in.
1838
- *
1839
- * If the `callback` function is not provided, an error will be thrown.
1840
- *
1841
- * ```js
1842
- * import { Buffer } from 'buffer';
1843
- * const { randomFill } = await import('crypto');
1844
- *
1845
- * const buf = Buffer.alloc(10);
1846
- * randomFill(buf, (err, buf) => {
1847
- * if (err) throw err;
1848
- * console.log(buf.toString('hex'));
1849
- * });
1850
- *
1851
- * randomFill(buf, 5, (err, buf) => {
1852
- * if (err) throw err;
1853
- * console.log(buf.toString('hex'));
1854
- * });
1855
- *
1856
- * // The above is equivalent to the following:
1857
- * randomFill(buf, 5, 5, (err, buf) => {
1858
- * if (err) throw err;
1859
- * console.log(buf.toString('hex'));
1860
- * });
1861
- * ```
1862
- *
1863
- * Any `ArrayBuffer`, `TypedArray`, or `DataView` instance may be passed as`buffer`.
1864
- *
1865
- * While this includes instances of `Float32Array` and `Float64Array`, this
1866
- * function should not be used to generate random floating-point numbers. The
1867
- * result may contain `+Infinity`, `-Infinity`, and `NaN`, and even if the array
1868
- * contains finite numbers only, they are not drawn from a uniform random
1869
- * distribution and have no meaningful lower or upper bounds.
1870
- *
1871
- * ```js
1872
- * import { Buffer } from 'buffer';
1873
- * const { randomFill } = await import('crypto');
1874
- *
1875
- * const a = new Uint32Array(10);
1876
- * randomFill(a, (err, buf) => {
1877
- * if (err) throw err;
1878
- * console.log(Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength)
1879
- * .toString('hex'));
1880
- * });
1881
- *
1882
- * const b = new DataView(new ArrayBuffer(10));
1883
- * randomFill(b, (err, buf) => {
1884
- * if (err) throw err;
1885
- * console.log(Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength)
1886
- * .toString('hex'));
1887
- * });
1888
- *
1889
- * const c = new ArrayBuffer(10);
1890
- * randomFill(c, (err, buf) => {
1891
- * if (err) throw err;
1892
- * console.log(Buffer.from(buf).toString('hex'));
1893
- * });
1894
- * ```
1895
- *
1896
- * This API uses libuv's threadpool, which can have surprising and
1897
- * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information.
1898
- *
1899
- * The asynchronous version of `crypto.randomFill()` is carried out in a single
1900
- * threadpool request. To minimize threadpool task length variation, partition
1901
- * large `randomFill` requests when doing so as part of fulfilling a client
1902
- * request.
1903
- * @since v7.10.0, v6.13.0
1904
- * @param buffer Must be supplied. The size of the provided `buffer` must not be larger than `2**31 - 1`.
1905
- * @param [offset=0]
1906
- * @param [size=buffer.length - offset]
1907
- * @param callback `function(err, buf) {}`.
1908
- */
1909
- function randomFill<T extends NodeJS.ArrayBufferView>(buffer: T, callback: (err: Error | null, buf: T) => void): void;
1910
- function randomFill<T extends NodeJS.ArrayBufferView>(buffer: T, offset: number, callback: (err: Error | null, buf: T) => void): void;
1911
- function randomFill<T extends NodeJS.ArrayBufferView>(buffer: T, offset: number, size: number, callback: (err: Error | null, buf: T) => void): void;
1912
- interface ScryptOptions {
1913
- cost?: number | undefined;
1914
- blockSize?: number | undefined;
1915
- parallelization?: number | undefined;
1916
- N?: number | undefined;
1917
- r?: number | undefined;
1918
- p?: number | undefined;
1919
- maxmem?: number | undefined;
1920
- }
1921
- /**
1922
- * Provides an asynchronous [scrypt](https://en.wikipedia.org/wiki/Scrypt) implementation. Scrypt is a password-based
1923
- * key derivation function that is designed to be expensive computationally and
1924
- * memory-wise in order to make brute-force attacks unrewarding.
1925
- *
1926
- * The `salt` should be as unique as possible. It is recommended that a salt is
1927
- * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.
1928
- *
1929
- * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.
1930
- *
1931
- * The `callback` function is called with two arguments: `err` and `derivedKey`.`err` is an exception object when key derivation fails, otherwise `err` is`null`. `derivedKey` is passed to the
1932
- * callback as a `Buffer`.
1933
- *
1934
- * An exception is thrown when any of the input arguments specify invalid values
1935
- * or types.
1936
- *
1937
- * ```js
1938
- * const {
1939
- * scrypt
1940
- * } = await import('crypto');
1941
- *
1942
- * // Using the factory defaults.
1943
- * scrypt('password', 'salt', 64, (err, derivedKey) => {
1944
- * if (err) throw err;
1945
- * console.log(derivedKey.toString('hex')); // '3745e48...08d59ae'
1946
- * });
1947
- * // Using a custom N parameter. Must be a power of two.
1948
- * scrypt('password', 'salt', 64, { N: 1024 }, (err, derivedKey) => {
1949
- * if (err) throw err;
1950
- * console.log(derivedKey.toString('hex')); // '3745e48...aa39b34'
1951
- * });
1952
- * ```
1953
- * @since v10.5.0
1954
- */
1955
- function scrypt(password: BinaryLike, salt: BinaryLike, keylen: number, callback: (err: Error | null, derivedKey: Buffer) => void): void;
1956
- function scrypt(password: BinaryLike, salt: BinaryLike, keylen: number, options: ScryptOptions, callback: (err: Error | null, derivedKey: Buffer) => void): void;
1957
- /**
1958
- * Provides a synchronous [scrypt](https://en.wikipedia.org/wiki/Scrypt) implementation. Scrypt is a password-based
1959
- * key derivation function that is designed to be expensive computationally and
1960
- * memory-wise in order to make brute-force attacks unrewarding.
1961
- *
1962
- * The `salt` should be as unique as possible. It is recommended that a salt is
1963
- * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.
1964
- *
1965
- * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.
1966
- *
1967
- * An exception is thrown when key derivation fails, otherwise the derived key is
1968
- * returned as a `Buffer`.
1969
- *
1970
- * An exception is thrown when any of the input arguments specify invalid values
1971
- * or types.
1972
- *
1973
- * ```js
1974
- * const {
1975
- * scryptSync
1976
- * } = await import('crypto');
1977
- * // Using the factory defaults.
1978
- *
1979
- * const key1 = scryptSync('password', 'salt', 64);
1980
- * console.log(key1.toString('hex')); // '3745e48...08d59ae'
1981
- * // Using a custom N parameter. Must be a power of two.
1982
- * const key2 = scryptSync('password', 'salt', 64, { N: 1024 });
1983
- * console.log(key2.toString('hex')); // '3745e48...aa39b34'
1984
- * ```
1985
- * @since v10.5.0
1986
- */
1987
- function scryptSync(password: BinaryLike, salt: BinaryLike, keylen: number, options?: ScryptOptions): Buffer;
1988
- interface RsaPublicKey {
1989
- key: KeyLike;
1990
- padding?: number | undefined;
1991
- }
1992
- interface RsaPrivateKey {
1993
- key: KeyLike;
1994
- passphrase?: string | undefined;
1995
- /**
1996
- * @default 'sha1'
1997
- */
1998
- oaepHash?: string | undefined;
1999
- oaepLabel?: NodeJS.TypedArray | undefined;
2000
- padding?: number | undefined;
2001
- }
2002
- /**
2003
- * Encrypts the content of `buffer` with `key` and returns a new `Buffer` with encrypted content. The returned data can be decrypted using
2004
- * the corresponding private key, for example using {@link privateDecrypt}.
2005
- *
2006
- * If `key` is not a `KeyObject`, this function behaves as if`key` had been passed to {@link createPublicKey}. If it is an
2007
- * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_OAEP_PADDING`.
2008
- *
2009
- * Because RSA public keys can be derived from private keys, a private key may
2010
- * be passed instead of a public key.
2011
- * @since v0.11.14
2012
- */
2013
- function publicEncrypt(key: RsaPublicKey | RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer;
2014
- /**
2015
- * Decrypts `buffer` with `key`.`buffer` was previously encrypted using
2016
- * the corresponding private key, for example using {@link privateEncrypt}.
2017
- *
2018
- * If `key` is not a `KeyObject`, this function behaves as if`key` had been passed to {@link createPublicKey}. If it is an
2019
- * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_PADDING`.
2020
- *
2021
- * Because RSA public keys can be derived from private keys, a private key may
2022
- * be passed instead of a public key.
2023
- * @since v1.1.0
2024
- */
2025
- function publicDecrypt(key: RsaPublicKey | RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer;
2026
- /**
2027
- * Decrypts `buffer` with `privateKey`. `buffer` was previously encrypted using
2028
- * the corresponding public key, for example using {@link publicEncrypt}.
2029
- *
2030
- * If `privateKey` is not a `KeyObject`, this function behaves as if`privateKey` had been passed to {@link createPrivateKey}. If it is an
2031
- * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_OAEP_PADDING`.
2032
- * @since v0.11.14
2033
- */
2034
- function privateDecrypt(privateKey: RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer;
2035
- /**
2036
- * Encrypts `buffer` with `privateKey`. The returned data can be decrypted using
2037
- * the corresponding public key, for example using {@link publicDecrypt}.
2038
- *
2039
- * If `privateKey` is not a `KeyObject`, this function behaves as if`privateKey` had been passed to {@link createPrivateKey}. If it is an
2040
- * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_PADDING`.
2041
- * @since v1.1.0
2042
- */
2043
- function privateEncrypt(privateKey: RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer;
2044
- /**
2045
- * ```js
2046
- * const {
2047
- * getCiphers
2048
- * } = await import('crypto');
2049
- *
2050
- * console.log(getCiphers()); // ['aes-128-cbc', 'aes-128-ccm', ...]
2051
- * ```
2052
- * @since v0.9.3
2053
- * @return An array with the names of the supported cipher algorithms.
2054
- */
2055
- function getCiphers(): string[];
2056
- /**
2057
- * ```js
2058
- * const {
2059
- * getCurves
2060
- * } = await import('crypto');
2061
- *
2062
- * console.log(getCurves()); // ['Oakley-EC2N-3', 'Oakley-EC2N-4', ...]
2063
- * ```
2064
- * @since v2.3.0
2065
- * @return An array with the names of the supported elliptic curves.
2066
- */
2067
- function getCurves(): string[];
2068
- /**
2069
- * @since v10.0.0
2070
- * @return `1` if and only if a FIPS compliant crypto provider is currently in use, `0` otherwise. A future semver-major release may change the return type of this API to a {boolean}.
2071
- */
2072
- function getFips(): 1 | 0;
2073
- /**
2074
- * ```js
2075
- * const {
2076
- * getHashes
2077
- * } = await import('crypto');
2078
- *
2079
- * console.log(getHashes()); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...]
2080
- * ```
2081
- * @since v0.9.3
2082
- * @return An array of the names of the supported hash algorithms, such as `'RSA-SHA256'`. Hash algorithms are also called "digest" algorithms.
2083
- */
2084
- function getHashes(): string[];
2085
- /**
2086
- * The `ECDH` class is a utility for creating Elliptic Curve Diffie-Hellman (ECDH)
2087
- * key exchanges.
2088
- *
2089
- * Instances of the `ECDH` class can be created using the {@link createECDH} function.
2090
- *
2091
- * ```js
2092
- * import assert from 'assert';
2093
- *
2094
- * const {
2095
- * createECDH
2096
- * } = await import('crypto');
2097
- *
2098
- * // Generate Alice's keys...
2099
- * const alice = createECDH('secp521r1');
2100
- * const aliceKey = alice.generateKeys();
2101
- *
2102
- * // Generate Bob's keys...
2103
- * const bob = createECDH('secp521r1');
2104
- * const bobKey = bob.generateKeys();
2105
- *
2106
- * // Exchange and generate the secret...
2107
- * const aliceSecret = alice.computeSecret(bobKey);
2108
- * const bobSecret = bob.computeSecret(aliceKey);
2109
- *
2110
- * assert.strictEqual(aliceSecret.toString('hex'), bobSecret.toString('hex'));
2111
- * // OK
2112
- * ```
2113
- * @since v0.11.14
2114
- */
2115
- class ECDH {
2116
- private constructor();
2117
- /**
2118
- * Converts the EC Diffie-Hellman public key specified by `key` and `curve` to the
2119
- * format specified by `format`. The `format` argument specifies point encoding
2120
- * and can be `'compressed'`, `'uncompressed'` or `'hybrid'`. The supplied key is
2121
- * interpreted using the specified `inputEncoding`, and the returned key is encoded
2122
- * using the specified `outputEncoding`.
2123
- *
2124
- * Use {@link getCurves} to obtain a list of available curve names.
2125
- * On recent OpenSSL releases, `openssl ecparam -list_curves` will also display
2126
- * the name and description of each available elliptic curve.
2127
- *
2128
- * If `format` is not specified the point will be returned in `'uncompressed'`format.
2129
- *
2130
- * If the `inputEncoding` is not provided, `key` is expected to be a `Buffer`,`TypedArray`, or `DataView`.
2131
- *
2132
- * Example (uncompressing a key):
2133
- *
2134
- * ```js
2135
- * const {
2136
- * createECDH,
2137
- * ECDH
2138
- * } = await import('crypto');
2139
- *
2140
- * const ecdh = createECDH('secp256k1');
2141
- * ecdh.generateKeys();
2142
- *
2143
- * const compressedKey = ecdh.getPublicKey('hex', 'compressed');
2144
- *
2145
- * const uncompressedKey = ECDH.convertKey(compressedKey,
2146
- * 'secp256k1',
2147
- * 'hex',
2148
- * 'hex',
2149
- * 'uncompressed');
2150
- *
2151
- * // The converted key and the uncompressed public key should be the same
2152
- * console.log(uncompressedKey === ecdh.getPublicKey('hex'));
2153
- * ```
2154
- * @since v10.0.0
2155
- * @param inputEncoding The `encoding` of the `key` string.
2156
- * @param outputEncoding The `encoding` of the return value.
2157
- * @param [format='uncompressed']
2158
- */
2159
- static convertKey(
2160
- key: BinaryLike,
2161
- curve: string,
2162
- inputEncoding?: BinaryToTextEncoding,
2163
- outputEncoding?: 'latin1' | 'hex' | 'base64' | 'base64url',
2164
- format?: 'uncompressed' | 'compressed' | 'hybrid'
2165
- ): Buffer | string;
2166
- /**
2167
- * Generates private and public EC Diffie-Hellman key values, and returns
2168
- * the public key in the specified `format` and `encoding`. This key should be
2169
- * transferred to the other party.
2170
- *
2171
- * The `format` argument specifies point encoding and can be `'compressed'` or`'uncompressed'`. If `format` is not specified, the point will be returned in`'uncompressed'` format.
2172
- *
2173
- * If `encoding` is provided a string is returned; otherwise a `Buffer` is returned.
2174
- * @since v0.11.14
2175
- * @param encoding The `encoding` of the return value.
2176
- * @param [format='uncompressed']
2177
- */
2178
- generateKeys(): Buffer;
2179
- generateKeys(encoding: BinaryToTextEncoding, format?: ECDHKeyFormat): string;
2180
- /**
2181
- * Computes the shared secret using `otherPublicKey` as the other
2182
- * party's public key and returns the computed shared secret. The supplied
2183
- * key is interpreted using specified `inputEncoding`, and the returned secret
2184
- * is encoded using the specified `outputEncoding`.
2185
- * If the `inputEncoding` is not
2186
- * provided, `otherPublicKey` is expected to be a `Buffer`, `TypedArray`, or`DataView`.
2187
- *
2188
- * If `outputEncoding` is given a string will be returned; otherwise a `Buffer` is returned.
2189
- *
2190
- * `ecdh.computeSecret` will throw an`ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY` error when `otherPublicKey`lies outside of the elliptic curve. Since `otherPublicKey` is
2191
- * usually supplied from a remote user over an insecure network,
2192
- * be sure to handle this exception accordingly.
2193
- * @since v0.11.14
2194
- * @param inputEncoding The `encoding` of the `otherPublicKey` string.
2195
- * @param outputEncoding The `encoding` of the return value.
2196
- */
2197
- computeSecret(otherPublicKey: NodeJS.ArrayBufferView): Buffer;
2198
- computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding): Buffer;
2199
- computeSecret(otherPublicKey: NodeJS.ArrayBufferView, outputEncoding: BinaryToTextEncoding): string;
2200
- computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding, outputEncoding: BinaryToTextEncoding): string;
2201
- /**
2202
- * If `encoding` is specified, a string is returned; otherwise a `Buffer` is
2203
- * returned.
2204
- * @since v0.11.14
2205
- * @param encoding The `encoding` of the return value.
2206
- * @return The EC Diffie-Hellman in the specified `encoding`.
2207
- */
2208
- getPrivateKey(): Buffer;
2209
- getPrivateKey(encoding: BinaryToTextEncoding): string;
2210
- /**
2211
- * The `format` argument specifies point encoding and can be `'compressed'` or`'uncompressed'`. If `format` is not specified the point will be returned in`'uncompressed'` format.
2212
- *
2213
- * If `encoding` is specified, a string is returned; otherwise a `Buffer` is
2214
- * returned.
2215
- * @since v0.11.14
2216
- * @param encoding The `encoding` of the return value.
2217
- * @param [format='uncompressed']
2218
- * @return The EC Diffie-Hellman public key in the specified `encoding` and `format`.
2219
- */
2220
- getPublicKey(): Buffer;
2221
- getPublicKey(encoding: BinaryToTextEncoding, format?: ECDHKeyFormat): string;
2222
- /**
2223
- * Sets the EC Diffie-Hellman private key.
2224
- * If `encoding` is provided, `privateKey` is expected
2225
- * to be a string; otherwise `privateKey` is expected to be a `Buffer`,`TypedArray`, or `DataView`.
2226
- *
2227
- * If `privateKey` is not valid for the curve specified when the `ECDH` object was
2228
- * created, an error is thrown. Upon setting the private key, the associated
2229
- * public point (key) is also generated and set in the `ECDH` object.
2230
- * @since v0.11.14
2231
- * @param encoding The `encoding` of the `privateKey` string.
2232
- */
2233
- setPrivateKey(privateKey: NodeJS.ArrayBufferView): void;
2234
- setPrivateKey(privateKey: string, encoding: BinaryToTextEncoding): void;
2235
- }
2236
- /**
2237
- * Creates an Elliptic Curve Diffie-Hellman (`ECDH`) key exchange object using a
2238
- * predefined curve specified by the `curveName` string. Use {@link getCurves} to obtain a list of available curve names. On recent
2239
- * OpenSSL releases, `openssl ecparam -list_curves` will also display the name
2240
- * and description of each available elliptic curve.
2241
- * @since v0.11.14
2242
- */
2243
- function createECDH(curveName: string): ECDH;
2244
- /**
2245
- * This function is based on a constant-time algorithm.
2246
- * Returns true if `a` is equal to `b`, without leaking timing information that
2247
- * would allow an attacker to guess one of the values. This is suitable for
2248
- * comparing HMAC digests or secret values like authentication cookies or [capability urls](https://www.w3.org/TR/capability-urls/).
2249
- *
2250
- * `a` and `b` must both be `Buffer`s, `TypedArray`s, or `DataView`s, and they
2251
- * must have the same byte length.
2252
- *
2253
- * If at least one of `a` and `b` is a `TypedArray` with more than one byte per
2254
- * entry, such as `Uint16Array`, the result will be computed using the platform
2255
- * byte order.
2256
- *
2257
- * Use of `crypto.timingSafeEqual` does not guarantee that the _surrounding_ code
2258
- * is timing-safe. Care should be taken to ensure that the surrounding code does
2259
- * not introduce timing vulnerabilities.
2260
- * @since v6.6.0
2261
- */
2262
- function timingSafeEqual(a: NodeJS.ArrayBufferView, b: NodeJS.ArrayBufferView): boolean;
2263
- /** @deprecated since v10.0.0 */
2264
- const DEFAULT_ENCODING: BufferEncoding;
2265
- type KeyType = 'rsa' | 'rsa-pss' | 'dsa' | 'ec' | 'ed25519' | 'ed448' | 'x25519' | 'x448';
2266
- type KeyFormat = 'pem' | 'der';
2267
- interface BasePrivateKeyEncodingOptions<T extends KeyFormat> {
2268
- format: T;
2269
- cipher?: string | undefined;
2270
- passphrase?: string | undefined;
2271
- }
2272
- interface KeyPairKeyObjectResult {
2273
- publicKey: KeyObject;
2274
- privateKey: KeyObject;
2275
- }
2276
- interface ED25519KeyPairKeyObjectOptions {}
2277
- interface ED448KeyPairKeyObjectOptions {}
2278
- interface X25519KeyPairKeyObjectOptions {}
2279
- interface X448KeyPairKeyObjectOptions {}
2280
- interface ECKeyPairKeyObjectOptions {
2281
- /**
2282
- * Name of the curve to use
2283
- */
2284
- namedCurve: string;
2285
- }
2286
- interface RSAKeyPairKeyObjectOptions {
2287
- /**
2288
- * Key size in bits
2289
- */
2290
- modulusLength: number;
2291
- /**
2292
- * Public exponent
2293
- * @default 0x10001
2294
- */
2295
- publicExponent?: number | undefined;
2296
- }
2297
- interface RSAPSSKeyPairKeyObjectOptions {
2298
- /**
2299
- * Key size in bits
2300
- */
2301
- modulusLength: number;
2302
- /**
2303
- * Public exponent
2304
- * @default 0x10001
2305
- */
2306
- publicExponent?: number | undefined;
2307
- /**
2308
- * Name of the message digest
2309
- */
2310
- hashAlgorithm?: string;
2311
- /**
2312
- * Name of the message digest used by MGF1
2313
- */
2314
- mgf1HashAlgorithm?: string;
2315
- /**
2316
- * Minimal salt length in bytes
2317
- */
2318
- saltLength?: string;
2319
- }
2320
- interface DSAKeyPairKeyObjectOptions {
2321
- /**
2322
- * Key size in bits
2323
- */
2324
- modulusLength: number;
2325
- /**
2326
- * Size of q in bits
2327
- */
2328
- divisorLength: number;
2329
- }
2330
- interface RSAKeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {
2331
- /**
2332
- * Key size in bits
2333
- */
2334
- modulusLength: number;
2335
- /**
2336
- * Public exponent
2337
- * @default 0x10001
2338
- */
2339
- publicExponent?: number | undefined;
2340
- publicKeyEncoding: {
2341
- type: 'pkcs1' | 'spki';
2342
- format: PubF;
2343
- };
2344
- privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {
2345
- type: 'pkcs1' | 'pkcs8';
2346
- };
2347
- }
2348
- interface RSAPSSKeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {
2349
- /**
2350
- * Key size in bits
2351
- */
2352
- modulusLength: number;
2353
- /**
2354
- * Public exponent
2355
- * @default 0x10001
2356
- */
2357
- publicExponent?: number | undefined;
2358
- /**
2359
- * Name of the message digest
2360
- */
2361
- hashAlgorithm?: string;
2362
- /**
2363
- * Name of the message digest used by MGF1
2364
- */
2365
- mgf1HashAlgorithm?: string;
2366
- /**
2367
- * Minimal salt length in bytes
2368
- */
2369
- saltLength?: string;
2370
- publicKeyEncoding: {
2371
- type: 'spki';
2372
- format: PubF;
2373
- };
2374
- privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {
2375
- type: 'pkcs8';
2376
- };
2377
- }
2378
- interface DSAKeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {
2379
- /**
2380
- * Key size in bits
2381
- */
2382
- modulusLength: number;
2383
- /**
2384
- * Size of q in bits
2385
- */
2386
- divisorLength: number;
2387
- publicKeyEncoding: {
2388
- type: 'spki';
2389
- format: PubF;
2390
- };
2391
- privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {
2392
- type: 'pkcs8';
2393
- };
2394
- }
2395
- interface ECKeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {
2396
- /**
2397
- * Name of the curve to use.
2398
- */
2399
- namedCurve: string;
2400
- publicKeyEncoding: {
2401
- type: 'pkcs1' | 'spki';
2402
- format: PubF;
2403
- };
2404
- privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {
2405
- type: 'sec1' | 'pkcs8';
2406
- };
2407
- }
2408
- interface ED25519KeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {
2409
- publicKeyEncoding: {
2410
- type: 'spki';
2411
- format: PubF;
2412
- };
2413
- privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {
2414
- type: 'pkcs8';
2415
- };
2416
- }
2417
- interface ED448KeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {
2418
- publicKeyEncoding: {
2419
- type: 'spki';
2420
- format: PubF;
2421
- };
2422
- privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {
2423
- type: 'pkcs8';
2424
- };
2425
- }
2426
- interface X25519KeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {
2427
- publicKeyEncoding: {
2428
- type: 'spki';
2429
- format: PubF;
2430
- };
2431
- privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {
2432
- type: 'pkcs8';
2433
- };
2434
- }
2435
- interface X448KeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {
2436
- publicKeyEncoding: {
2437
- type: 'spki';
2438
- format: PubF;
2439
- };
2440
- privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {
2441
- type: 'pkcs8';
2442
- };
2443
- }
2444
- interface KeyPairSyncResult<T1 extends string | Buffer, T2 extends string | Buffer> {
2445
- publicKey: T1;
2446
- privateKey: T2;
2447
- }
2448
- /**
2449
- * Generates a new asymmetric key pair of the given `type`. RSA, RSA-PSS, DSA, EC,
2450
- * Ed25519, Ed448, X25519, X448, and DH are currently supported.
2451
- *
2452
- * If a `publicKeyEncoding` or `privateKeyEncoding` was specified, this function
2453
- * behaves as if `keyObject.export()` had been called on its result. Otherwise,
2454
- * the respective part of the key is returned as a `KeyObject`.
2455
- *
2456
- * When encoding public keys, it is recommended to use `'spki'`. When encoding
2457
- * private keys, it is recommended to use `'pkcs8'` with a strong passphrase,
2458
- * and to keep the passphrase confidential.
2459
- *
2460
- * ```js
2461
- * const {
2462
- * generateKeyPairSync
2463
- * } = await import('crypto');
2464
- *
2465
- * const {
2466
- * publicKey,
2467
- * privateKey,
2468
- * } = generateKeyPairSync('rsa', {
2469
- * modulusLength: 4096,
2470
- * publicKeyEncoding: {
2471
- * type: 'spki',
2472
- * format: 'pem'
2473
- * },
2474
- * privateKeyEncoding: {
2475
- * type: 'pkcs8',
2476
- * format: 'pem',
2477
- * cipher: 'aes-256-cbc',
2478
- * passphrase: 'top secret'
2479
- * }
2480
- * });
2481
- * ```
2482
- *
2483
- * The return value `{ publicKey, privateKey }` represents the generated key pair.
2484
- * When PEM encoding was selected, the respective key will be a string, otherwise
2485
- * it will be a buffer containing the data encoded as DER.
2486
- * @since v10.12.0
2487
- * @param type Must be `'rsa'`, `'rsa-pss'`, `'dsa'`, `'ec'`, `'ed25519'`, `'ed448'`, `'x25519'`, `'x448'`, or `'dh'`.
2488
- */
2489
- function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult<string, string>;
2490
- function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'pem', 'der'>): KeyPairSyncResult<string, Buffer>;
2491
- function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'der', 'pem'>): KeyPairSyncResult<Buffer, string>;
2492
- function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'der', 'der'>): KeyPairSyncResult<Buffer, Buffer>;
2493
- function generateKeyPairSync(type: 'rsa', options: RSAKeyPairKeyObjectOptions): KeyPairKeyObjectResult;
2494
- function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult<string, string>;
2495
- function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'der'>): KeyPairSyncResult<string, Buffer>;
2496
- function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'pem'>): KeyPairSyncResult<Buffer, string>;
2497
- function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'der'>): KeyPairSyncResult<Buffer, Buffer>;
2498
- function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairKeyObjectOptions): KeyPairKeyObjectResult;
2499
- function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult<string, string>;
2500
- function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'pem', 'der'>): KeyPairSyncResult<string, Buffer>;
2501
- function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'der', 'pem'>): KeyPairSyncResult<Buffer, string>;
2502
- function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'der', 'der'>): KeyPairSyncResult<Buffer, Buffer>;
2503
- function generateKeyPairSync(type: 'dsa', options: DSAKeyPairKeyObjectOptions): KeyPairKeyObjectResult;
2504
- function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult<string, string>;
2505
- function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'pem', 'der'>): KeyPairSyncResult<string, Buffer>;
2506
- function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'der', 'pem'>): KeyPairSyncResult<Buffer, string>;
2507
- function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'der', 'der'>): KeyPairSyncResult<Buffer, Buffer>;
2508
- function generateKeyPairSync(type: 'ec', options: ECKeyPairKeyObjectOptions): KeyPairKeyObjectResult;
2509
- function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult<string, string>;
2510
- function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'der'>): KeyPairSyncResult<string, Buffer>;
2511
- function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'pem'>): KeyPairSyncResult<Buffer, string>;
2512
- function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'der'>): KeyPairSyncResult<Buffer, Buffer>;
2513
- function generateKeyPairSync(type: 'ed25519', options?: ED25519KeyPairKeyObjectOptions): KeyPairKeyObjectResult;
2514
- function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult<string, string>;
2515
- function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'pem', 'der'>): KeyPairSyncResult<string, Buffer>;
2516
- function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'der', 'pem'>): KeyPairSyncResult<Buffer, string>;
2517
- function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'der', 'der'>): KeyPairSyncResult<Buffer, Buffer>;
2518
- function generateKeyPairSync(type: 'ed448', options?: ED448KeyPairKeyObjectOptions): KeyPairKeyObjectResult;
2519
- function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult<string, string>;
2520
- function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'pem', 'der'>): KeyPairSyncResult<string, Buffer>;
2521
- function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'der', 'pem'>): KeyPairSyncResult<Buffer, string>;
2522
- function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'der', 'der'>): KeyPairSyncResult<Buffer, Buffer>;
2523
- function generateKeyPairSync(type: 'x25519', options?: X25519KeyPairKeyObjectOptions): KeyPairKeyObjectResult;
2524
- function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult<string, string>;
2525
- function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'pem', 'der'>): KeyPairSyncResult<string, Buffer>;
2526
- function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'der', 'pem'>): KeyPairSyncResult<Buffer, string>;
2527
- function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'der', 'der'>): KeyPairSyncResult<Buffer, Buffer>;
2528
- function generateKeyPairSync(type: 'x448', options?: X448KeyPairKeyObjectOptions): KeyPairKeyObjectResult;
2529
- /**
2530
- * Generates a new asymmetric key pair of the given `type`. RSA, RSA-PSS, DSA, EC,
2531
- * Ed25519, Ed448, X25519, X448, and DH are currently supported.
2532
- *
2533
- * If a `publicKeyEncoding` or `privateKeyEncoding` was specified, this function
2534
- * behaves as if `keyObject.export()` had been called on its result. Otherwise,
2535
- * the respective part of the key is returned as a `KeyObject`.
2536
- *
2537
- * It is recommended to encode public keys as `'spki'` and private keys as`'pkcs8'` with encryption for long-term storage:
2538
- *
2539
- * ```js
2540
- * const {
2541
- * generateKeyPair
2542
- * } = await import('crypto');
2543
- *
2544
- * generateKeyPair('rsa', {
2545
- * modulusLength: 4096,
2546
- * publicKeyEncoding: {
2547
- * type: 'spki',
2548
- * format: 'pem'
2549
- * },
2550
- * privateKeyEncoding: {
2551
- * type: 'pkcs8',
2552
- * format: 'pem',
2553
- * cipher: 'aes-256-cbc',
2554
- * passphrase: 'top secret'
2555
- * }
2556
- * }, (err, publicKey, privateKey) => {
2557
- * // Handle errors and use the generated key pair.
2558
- * });
2559
- * ```
2560
- *
2561
- * On completion, `callback` will be called with `err` set to `undefined` and`publicKey` / `privateKey` representing the generated key pair.
2562
- *
2563
- * If this method is invoked as its `util.promisify()` ed version, it returns
2564
- * a `Promise` for an `Object` with `publicKey` and `privateKey` properties.
2565
- * @since v10.12.0
2566
- * @param type Must be `'rsa'`, `'rsa-pss'`, `'dsa'`, `'ec'`, `'ed25519'`, `'ed448'`, `'x25519'`, `'x448'`, or `'dh'`.
2567
- */
2568
- function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void;
2569
- function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void;
2570
- function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void;
2571
- function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void;
2572
- function generateKeyPair(type: 'rsa', options: RSAKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void;
2573
- function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void;
2574
- function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void;
2575
- function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void;
2576
- function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void;
2577
- function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void;
2578
- function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void;
2579
- function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void;
2580
- function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void;
2581
- function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void;
2582
- function generateKeyPair(type: 'dsa', options: DSAKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void;
2583
- function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void;
2584
- function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void;
2585
- function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void;
2586
- function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void;
2587
- function generateKeyPair(type: 'ec', options: ECKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void;
2588
- function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void;
2589
- function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void;
2590
- function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void;
2591
- function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void;
2592
- function generateKeyPair(type: 'ed25519', options: ED25519KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void;
2593
- function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void;
2594
- function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void;
2595
- function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void;
2596
- function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void;
2597
- function generateKeyPair(type: 'ed448', options: ED448KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void;
2598
- function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void;
2599
- function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void;
2600
- function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void;
2601
- function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void;
2602
- function generateKeyPair(type: 'x25519', options: X25519KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void;
2603
- function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void;
2604
- function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void;
2605
- function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void;
2606
- function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void;
2607
- function generateKeyPair(type: 'x448', options: X448KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void;
2608
- namespace generateKeyPair {
2609
- function __promisify__(
2610
- type: 'rsa',
2611
- options: RSAKeyPairOptions<'pem', 'pem'>
2612
- ): Promise<{
2613
- publicKey: string;
2614
- privateKey: string;
2615
- }>;
2616
- function __promisify__(
2617
- type: 'rsa',
2618
- options: RSAKeyPairOptions<'pem', 'der'>
2619
- ): Promise<{
2620
- publicKey: string;
2621
- privateKey: Buffer;
2622
- }>;
2623
- function __promisify__(
2624
- type: 'rsa',
2625
- options: RSAKeyPairOptions<'der', 'pem'>
2626
- ): Promise<{
2627
- publicKey: Buffer;
2628
- privateKey: string;
2629
- }>;
2630
- function __promisify__(
2631
- type: 'rsa',
2632
- options: RSAKeyPairOptions<'der', 'der'>
2633
- ): Promise<{
2634
- publicKey: Buffer;
2635
- privateKey: Buffer;
2636
- }>;
2637
- function __promisify__(type: 'rsa', options: RSAKeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;
2638
- function __promisify__(
2639
- type: 'rsa-pss',
2640
- options: RSAPSSKeyPairOptions<'pem', 'pem'>
2641
- ): Promise<{
2642
- publicKey: string;
2643
- privateKey: string;
2644
- }>;
2645
- function __promisify__(
2646
- type: 'rsa-pss',
2647
- options: RSAPSSKeyPairOptions<'pem', 'der'>
2648
- ): Promise<{
2649
- publicKey: string;
2650
- privateKey: Buffer;
2651
- }>;
2652
- function __promisify__(
2653
- type: 'rsa-pss',
2654
- options: RSAPSSKeyPairOptions<'der', 'pem'>
2655
- ): Promise<{
2656
- publicKey: Buffer;
2657
- privateKey: string;
2658
- }>;
2659
- function __promisify__(
2660
- type: 'rsa-pss',
2661
- options: RSAPSSKeyPairOptions<'der', 'der'>
2662
- ): Promise<{
2663
- publicKey: Buffer;
2664
- privateKey: Buffer;
2665
- }>;
2666
- function __promisify__(type: 'rsa-pss', options: RSAPSSKeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;
2667
- function __promisify__(
2668
- type: 'dsa',
2669
- options: DSAKeyPairOptions<'pem', 'pem'>
2670
- ): Promise<{
2671
- publicKey: string;
2672
- privateKey: string;
2673
- }>;
2674
- function __promisify__(
2675
- type: 'dsa',
2676
- options: DSAKeyPairOptions<'pem', 'der'>
2677
- ): Promise<{
2678
- publicKey: string;
2679
- privateKey: Buffer;
2680
- }>;
2681
- function __promisify__(
2682
- type: 'dsa',
2683
- options: DSAKeyPairOptions<'der', 'pem'>
2684
- ): Promise<{
2685
- publicKey: Buffer;
2686
- privateKey: string;
2687
- }>;
2688
- function __promisify__(
2689
- type: 'dsa',
2690
- options: DSAKeyPairOptions<'der', 'der'>
2691
- ): Promise<{
2692
- publicKey: Buffer;
2693
- privateKey: Buffer;
2694
- }>;
2695
- function __promisify__(type: 'dsa', options: DSAKeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;
2696
- function __promisify__(
2697
- type: 'ec',
2698
- options: ECKeyPairOptions<'pem', 'pem'>
2699
- ): Promise<{
2700
- publicKey: string;
2701
- privateKey: string;
2702
- }>;
2703
- function __promisify__(
2704
- type: 'ec',
2705
- options: ECKeyPairOptions<'pem', 'der'>
2706
- ): Promise<{
2707
- publicKey: string;
2708
- privateKey: Buffer;
2709
- }>;
2710
- function __promisify__(
2711
- type: 'ec',
2712
- options: ECKeyPairOptions<'der', 'pem'>
2713
- ): Promise<{
2714
- publicKey: Buffer;
2715
- privateKey: string;
2716
- }>;
2717
- function __promisify__(
2718
- type: 'ec',
2719
- options: ECKeyPairOptions<'der', 'der'>
2720
- ): Promise<{
2721
- publicKey: Buffer;
2722
- privateKey: Buffer;
2723
- }>;
2724
- function __promisify__(type: 'ec', options: ECKeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;
2725
- function __promisify__(
2726
- type: 'ed25519',
2727
- options: ED25519KeyPairOptions<'pem', 'pem'>
2728
- ): Promise<{
2729
- publicKey: string;
2730
- privateKey: string;
2731
- }>;
2732
- function __promisify__(
2733
- type: 'ed25519',
2734
- options: ED25519KeyPairOptions<'pem', 'der'>
2735
- ): Promise<{
2736
- publicKey: string;
2737
- privateKey: Buffer;
2738
- }>;
2739
- function __promisify__(
2740
- type: 'ed25519',
2741
- options: ED25519KeyPairOptions<'der', 'pem'>
2742
- ): Promise<{
2743
- publicKey: Buffer;
2744
- privateKey: string;
2745
- }>;
2746
- function __promisify__(
2747
- type: 'ed25519',
2748
- options: ED25519KeyPairOptions<'der', 'der'>
2749
- ): Promise<{
2750
- publicKey: Buffer;
2751
- privateKey: Buffer;
2752
- }>;
2753
- function __promisify__(type: 'ed25519', options?: ED25519KeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;
2754
- function __promisify__(
2755
- type: 'ed448',
2756
- options: ED448KeyPairOptions<'pem', 'pem'>
2757
- ): Promise<{
2758
- publicKey: string;
2759
- privateKey: string;
2760
- }>;
2761
- function __promisify__(
2762
- type: 'ed448',
2763
- options: ED448KeyPairOptions<'pem', 'der'>
2764
- ): Promise<{
2765
- publicKey: string;
2766
- privateKey: Buffer;
2767
- }>;
2768
- function __promisify__(
2769
- type: 'ed448',
2770
- options: ED448KeyPairOptions<'der', 'pem'>
2771
- ): Promise<{
2772
- publicKey: Buffer;
2773
- privateKey: string;
2774
- }>;
2775
- function __promisify__(
2776
- type: 'ed448',
2777
- options: ED448KeyPairOptions<'der', 'der'>
2778
- ): Promise<{
2779
- publicKey: Buffer;
2780
- privateKey: Buffer;
2781
- }>;
2782
- function __promisify__(type: 'ed448', options?: ED448KeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;
2783
- function __promisify__(
2784
- type: 'x25519',
2785
- options: X25519KeyPairOptions<'pem', 'pem'>
2786
- ): Promise<{
2787
- publicKey: string;
2788
- privateKey: string;
2789
- }>;
2790
- function __promisify__(
2791
- type: 'x25519',
2792
- options: X25519KeyPairOptions<'pem', 'der'>
2793
- ): Promise<{
2794
- publicKey: string;
2795
- privateKey: Buffer;
2796
- }>;
2797
- function __promisify__(
2798
- type: 'x25519',
2799
- options: X25519KeyPairOptions<'der', 'pem'>
2800
- ): Promise<{
2801
- publicKey: Buffer;
2802
- privateKey: string;
2803
- }>;
2804
- function __promisify__(
2805
- type: 'x25519',
2806
- options: X25519KeyPairOptions<'der', 'der'>
2807
- ): Promise<{
2808
- publicKey: Buffer;
2809
- privateKey: Buffer;
2810
- }>;
2811
- function __promisify__(type: 'x25519', options?: X25519KeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;
2812
- function __promisify__(
2813
- type: 'x448',
2814
- options: X448KeyPairOptions<'pem', 'pem'>
2815
- ): Promise<{
2816
- publicKey: string;
2817
- privateKey: string;
2818
- }>;
2819
- function __promisify__(
2820
- type: 'x448',
2821
- options: X448KeyPairOptions<'pem', 'der'>
2822
- ): Promise<{
2823
- publicKey: string;
2824
- privateKey: Buffer;
2825
- }>;
2826
- function __promisify__(
2827
- type: 'x448',
2828
- options: X448KeyPairOptions<'der', 'pem'>
2829
- ): Promise<{
2830
- publicKey: Buffer;
2831
- privateKey: string;
2832
- }>;
2833
- function __promisify__(
2834
- type: 'x448',
2835
- options: X448KeyPairOptions<'der', 'der'>
2836
- ): Promise<{
2837
- publicKey: Buffer;
2838
- privateKey: Buffer;
2839
- }>;
2840
- function __promisify__(type: 'x448', options?: X448KeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;
2841
- }
2842
- /**
2843
- * Calculates and returns the signature for `data` using the given private key and
2844
- * algorithm. If `algorithm` is `null` or `undefined`, then the algorithm is
2845
- * dependent upon the key type (especially Ed25519 and Ed448).
2846
- *
2847
- * If `key` is not a `KeyObject`, this function behaves as if `key` had been
2848
- * passed to {@link createPrivateKey}. If it is an object, the following
2849
- * additional properties can be passed:
2850
- *
2851
- * If the `callback` function is provided this function uses libuv's threadpool.
2852
- * @since v12.0.0
2853
- */
2854
- function sign(algorithm: string | null | undefined, data: NodeJS.ArrayBufferView, key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput): Buffer;
2855
- function sign(
2856
- algorithm: string | null | undefined,
2857
- data: NodeJS.ArrayBufferView,
2858
- key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput,
2859
- callback: (error: Error | null, data: Buffer) => void
2860
- ): void;
2861
- /**
2862
- * Verifies the given signature for `data` using the given key and algorithm. If`algorithm` is `null` or `undefined`, then the algorithm is dependent upon the
2863
- * key type (especially Ed25519 and Ed448).
2864
- *
2865
- * If `key` is not a `KeyObject`, this function behaves as if `key` had been
2866
- * passed to {@link createPublicKey}. If it is an object, the following
2867
- * additional properties can be passed:
2868
- *
2869
- * The `signature` argument is the previously calculated signature for the `data`.
2870
- *
2871
- * Because public keys can be derived from private keys, a private key or a public
2872
- * key may be passed for `key`.
2873
- *
2874
- * If the `callback` function is provided this function uses libuv's threadpool.
2875
- * @since v12.0.0
2876
- */
2877
- function verify(algorithm: string | null | undefined, data: NodeJS.ArrayBufferView, key: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput, signature: NodeJS.ArrayBufferView): boolean;
2878
- function verify(
2879
- algorithm: string | null | undefined,
2880
- data: NodeJS.ArrayBufferView,
2881
- key: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput,
2882
- signature: NodeJS.ArrayBufferView,
2883
- callback: (error: Error | null, result: boolean) => void
2884
- ): void;
2885
- /**
2886
- * Computes the Diffie-Hellman secret based on a `privateKey` and a `publicKey`.
2887
- * Both keys must have the same `asymmetricKeyType`, which must be one of `'dh'`(for Diffie-Hellman), `'ec'` (for ECDH), `'x448'`, or `'x25519'` (for ECDH-ES).
2888
- * @since v13.9.0, v12.17.0
2889
- */
2890
- function diffieHellman(options: { privateKey: KeyObject; publicKey: KeyObject }): Buffer;
2891
- type CipherMode = 'cbc' | 'ccm' | 'cfb' | 'ctr' | 'ecb' | 'gcm' | 'ocb' | 'ofb' | 'stream' | 'wrap' | 'xts';
2892
- interface CipherInfoOptions {
2893
- /**
2894
- * A test key length.
2895
- */
2896
- keyLength?: number | undefined;
2897
- /**
2898
- * A test IV length.
2899
- */
2900
- ivLength?: number | undefined;
2901
- }
2902
- interface CipherInfo {
2903
- /**
2904
- * The name of the cipher.
2905
- */
2906
- name: string;
2907
- /**
2908
- * The nid of the cipher.
2909
- */
2910
- nid: number;
2911
- /**
2912
- * The block size of the cipher in bytes.
2913
- * This property is omitted when mode is 'stream'.
2914
- */
2915
- blockSize?: number | undefined;
2916
- /**
2917
- * The expected or default initialization vector length in bytes.
2918
- * This property is omitted if the cipher does not use an initialization vector.
2919
- */
2920
- ivLength?: number | undefined;
2921
- /**
2922
- * The expected or default key length in bytes.
2923
- */
2924
- keyLength: number;
2925
- /**
2926
- * The cipher mode.
2927
- */
2928
- mode: CipherMode;
2929
- }
2930
- /**
2931
- * Returns information about a given cipher.
2932
- *
2933
- * Some ciphers accept variable length keys and initialization vectors. By default,
2934
- * the `crypto.getCipherInfo()` method will return the default values for these
2935
- * ciphers. To test if a given key length or iv length is acceptable for given
2936
- * cipher, use the `keyLength` and `ivLength` options. If the given values are
2937
- * unacceptable, `undefined` will be returned.
2938
- * @since v15.0.0
2939
- * @param nameOrNid The name or nid of the cipher to query.
2940
- */
2941
- function getCipherInfo(nameOrNid: string | number, options?: CipherInfoOptions): CipherInfo | undefined;
2942
- /**
2943
- * HKDF is a simple key derivation function defined in RFC 5869\. The given `ikm`,`salt` and `info` are used with the `digest` to derive a key of `keylen` bytes.
2944
- *
2945
- * The supplied `callback` function is called with two arguments: `err` and`derivedKey`. If an errors occurs while deriving the key, `err` will be set;
2946
- * otherwise `err` will be `null`. The successfully generated `derivedKey` will
2947
- * be passed to the callback as an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). An error will be thrown if any
2948
- * of the input arguments specify invalid values or types.
2949
- *
2950
- * ```js
2951
- * import { Buffer } from 'buffer';
2952
- * const {
2953
- * hkdf
2954
- * } = await import('crypto');
2955
- *
2956
- * hkdf('sha512', 'key', 'salt', 'info', 64, (err, derivedKey) => {
2957
- * if (err) throw err;
2958
- * console.log(Buffer.from(derivedKey).toString('hex')); // '24156e2...5391653'
2959
- * });
2960
- * ```
2961
- * @since v15.0.0
2962
- * @param digest The digest algorithm to use.
2963
- * @param ikm The input keying material. It must be at least one byte in length.
2964
- * @param salt The salt value. Must be provided but can be zero-length.
2965
- * @param info Additional info value. Must be provided but can be zero-length, and cannot be more than 1024 bytes.
2966
- * @param keylen The length of the key to generate. Must be greater than 0. The maximum allowable value is `255` times the number of bytes produced by the selected digest function (e.g. `sha512`
2967
- * generates 64-byte hashes, making the maximum HKDF output 16320 bytes).
2968
- */
2969
- function hkdf(digest: string, irm: BinaryLike | KeyObject, salt: BinaryLike, info: BinaryLike, keylen: number, callback: (err: Error | null, derivedKey: ArrayBuffer) => void): void;
2970
- /**
2971
- * Provides a synchronous HKDF key derivation function as defined in RFC 5869\. The
2972
- * given `ikm`, `salt` and `info` are used with the `digest` to derive a key of`keylen` bytes.
2973
- *
2974
- * The successfully generated `derivedKey` will be returned as an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer).
2975
- *
2976
- * An error will be thrown if any of the input arguments specify invalid values or
2977
- * types, or if the derived key cannot be generated.
2978
- *
2979
- * ```js
2980
- * import { Buffer } from 'buffer';
2981
- * const {
2982
- * hkdfSync
2983
- * } = await import('crypto');
2984
- *
2985
- * const derivedKey = hkdfSync('sha512', 'key', 'salt', 'info', 64);
2986
- * console.log(Buffer.from(derivedKey).toString('hex')); // '24156e2...5391653'
2987
- * ```
2988
- * @since v15.0.0
2989
- * @param digest The digest algorithm to use.
2990
- * @param ikm The input keying material. It must be at least one byte in length.
2991
- * @param salt The salt value. Must be provided but can be zero-length.
2992
- * @param info Additional info value. Must be provided but can be zero-length, and cannot be more than 1024 bytes.
2993
- * @param keylen The length of the key to generate. Must be greater than 0. The maximum allowable value is `255` times the number of bytes produced by the selected digest function (e.g. `sha512`
2994
- * generates 64-byte hashes, making the maximum HKDF output 16320 bytes).
2995
- */
2996
- function hkdfSync(digest: string, ikm: BinaryLike | KeyObject, salt: BinaryLike, info: BinaryLike, keylen: number): ArrayBuffer;
2997
- interface SecureHeapUsage {
2998
- /**
2999
- * The total allocated secure heap size as specified using the `--secure-heap=n` command-line flag.
3000
- */
3001
- total: number;
3002
- /**
3003
- * The minimum allocation from the secure heap as specified using the `--secure-heap-min` command-line flag.
3004
- */
3005
- min: number;
3006
- /**
3007
- * The total number of bytes currently allocated from the secure heap.
3008
- */
3009
- used: number;
3010
- /**
3011
- * The calculated ratio of `used` to `total` allocated bytes.
3012
- */
3013
- utilization: number;
3014
- }
3015
- /**
3016
- * @since v15.6.0
3017
- */
3018
- function secureHeapUsed(): SecureHeapUsage;
3019
- interface RandomUUIDOptions {
3020
- /**
3021
- * By default, to improve performance,
3022
- * Node.js will pre-emptively generate and persistently cache enough
3023
- * random data to generate up to 128 random UUIDs. To generate a UUID
3024
- * without using the cache, set `disableEntropyCache` to `true`.
3025
- *
3026
- * @default `false`
3027
- */
3028
- disableEntropyCache?: boolean | undefined;
3029
- }
3030
- /**
3031
- * Generates a random [RFC 4122](https://www.rfc-editor.org/rfc/rfc4122.txt) version 4 UUID. The UUID is generated using a
3032
- * cryptographic pseudorandom number generator.
3033
- * @since v15.6.0, v14.17.0
3034
- */
3035
- function randomUUID(options?: RandomUUIDOptions): string;
3036
- interface X509CheckOptions {
3037
- /**
3038
- * @default 'always'
3039
- */
3040
- subject: 'always' | 'never';
3041
- /**
3042
- * @default true
3043
- */
3044
- wildcards: boolean;
3045
- /**
3046
- * @default true
3047
- */
3048
- partialWildcards: boolean;
3049
- /**
3050
- * @default false
3051
- */
3052
- multiLabelWildcards: boolean;
3053
- /**
3054
- * @default false
3055
- */
3056
- singleLabelSubdomains: boolean;
3057
- }
3058
- /**
3059
- * Encapsulates an X509 certificate and provides read-only access to
3060
- * its information.
3061
- *
3062
- * ```js
3063
- * const { X509Certificate } = await import('crypto');
3064
- *
3065
- * const x509 = new X509Certificate('{... pem encoded cert ...}');
3066
- *
3067
- * console.log(x509.subject);
3068
- * ```
3069
- * @since v15.6.0
3070
- */
3071
- class X509Certificate {
3072
- /**
3073
- * Will be \`true\` if this is a Certificate Authority (ca) certificate.
3074
- * @since v15.6.0
3075
- */
3076
- readonly ca: boolean;
3077
- /**
3078
- * The SHA-1 fingerprint of this certificate.
3079
- * @since v15.6.0
3080
- */
3081
- readonly fingerprint: string;
3082
- /**
3083
- * The SHA-256 fingerprint of this certificate.
3084
- * @since v15.6.0
3085
- */
3086
- readonly fingerprint256: string;
3087
- /**
3088
- * The complete subject of this certificate.
3089
- * @since v15.6.0
3090
- */
3091
- readonly subject: string;
3092
- /**
3093
- * The subject alternative name specified for this certificate.
3094
- * @since v15.6.0
3095
- */
3096
- readonly subjectAltName: string;
3097
- /**
3098
- * The information access content of this certificate.
3099
- * @since v15.6.0
3100
- */
3101
- readonly infoAccess: string;
3102
- /**
3103
- * An array detailing the key usages for this certificate.
3104
- * @since v15.6.0
3105
- */
3106
- readonly keyUsage: string[];
3107
- /**
3108
- * The issuer identification included in this certificate.
3109
- * @since v15.6.0
3110
- */
3111
- readonly issuer: string;
3112
- /**
3113
- * The issuer certificate or `undefined` if the issuer certificate is not
3114
- * available.
3115
- * @since v15.9.0
3116
- */
3117
- readonly issuerCertificate?: X509Certificate | undefined;
3118
- /**
3119
- * The public key `KeyObject` for this certificate.
3120
- * @since v15.6.0
3121
- */
3122
- readonly publicKey: KeyObject;
3123
- /**
3124
- * A `Buffer` containing the DER encoding of this certificate.
3125
- * @since v15.6.0
3126
- */
3127
- readonly raw: Buffer;
3128
- /**
3129
- * The serial number of this certificate.
3130
- * @since v15.6.0
3131
- */
3132
- readonly serialNumber: string;
3133
- /**
3134
- * The date/time from which this certificate is considered valid.
3135
- * @since v15.6.0
3136
- */
3137
- readonly validFrom: string;
3138
- /**
3139
- * The date/time until which this certificate is considered valid.
3140
- * @since v15.6.0
3141
- */
3142
- readonly validTo: string;
3143
- constructor(buffer: BinaryLike);
3144
- /**
3145
- * Checks whether the certificate matches the given email address.
3146
- * @since v15.6.0
3147
- * @return Returns `email` if the certificate matches, `undefined` if it does not.
3148
- */
3149
- checkEmail(email: string, options?: X509CheckOptions): string | undefined;
3150
- /**
3151
- * Checks whether the certificate matches the given host name.
3152
- * @since v15.6.0
3153
- * @return Returns `name` if the certificate matches, `undefined` if it does not.
3154
- */
3155
- checkHost(name: string, options?: X509CheckOptions): string | undefined;
3156
- /**
3157
- * Checks whether the certificate matches the given IP address (IPv4 or IPv6).
3158
- * @since v15.6.0
3159
- * @return Returns `ip` if the certificate matches, `undefined` if it does not.
3160
- */
3161
- checkIP(ip: string, options?: X509CheckOptions): string | undefined;
3162
- /**
3163
- * Checks whether this certificate was issued by the given `otherCert`.
3164
- * @since v15.6.0
3165
- */
3166
- checkIssued(otherCert: X509Certificate): boolean;
3167
- /**
3168
- * Checks whether the public key for this certificate is consistent with
3169
- * the given private key.
3170
- * @since v15.6.0
3171
- * @param privateKey A private key.
3172
- */
3173
- checkPrivateKey(privateKey: KeyObject): boolean;
3174
- /**
3175
- * There is no standard JSON encoding for X509 certificates. The`toJSON()` method returns a string containing the PEM encoded
3176
- * certificate.
3177
- * @since v15.6.0
3178
- */
3179
- toJSON(): string;
3180
- /**
3181
- * Returns information about this certificate using the legacy `certificate object` encoding.
3182
- * @since v15.6.0
3183
- */
3184
- toLegacyObject(): PeerCertificate;
3185
- /**
3186
- * Returns the PEM-encoded certificate.
3187
- * @since v15.6.0
3188
- */
3189
- toString(): string;
3190
- /**
3191
- * Verifies that this certificate was signed by the given public key.
3192
- * Does not perform any other validation checks on the certificate.
3193
- * @since v15.6.0
3194
- * @param publicKey A public key.
3195
- */
3196
- verify(publicKey: KeyObject): boolean;
3197
- }
3198
- type LargeNumberLike = NodeJS.ArrayBufferView | SharedArrayBuffer | ArrayBuffer | bigint;
3199
- interface GeneratePrimeOptions {
3200
- add?: LargeNumberLike | undefined;
3201
- rem?: LargeNumberLike | undefined;
3202
- /**
3203
- * @default false
3204
- */
3205
- safe?: boolean | undefined;
3206
- bigint?: boolean | undefined;
3207
- }
3208
- interface GeneratePrimeOptionsBigInt extends GeneratePrimeOptions {
3209
- bigint: true;
3210
- }
3211
- interface GeneratePrimeOptionsArrayBuffer extends GeneratePrimeOptions {
3212
- bigint?: false | undefined;
3213
- }
3214
- /**
3215
- * Generates a pseudorandom prime of `size` bits.
3216
- *
3217
- * If `options.safe` is `true`, the prime will be a safe prime -- that is,`(prime - 1) / 2` will also be a prime.
3218
- *
3219
- * The `options.add` and `options.rem` parameters can be used to enforce additional
3220
- * requirements, e.g., for Diffie-Hellman:
3221
- *
3222
- * * If `options.add` and `options.rem` are both set, the prime will satisfy the
3223
- * condition that `prime % add = rem`.
3224
- * * If only `options.add` is set and `options.safe` is not `true`, the prime will
3225
- * satisfy the condition that `prime % add = 1`.
3226
- * * If only `options.add` is set and `options.safe` is set to `true`, the prime
3227
- * will instead satisfy the condition that `prime % add = 3`. This is necessary
3228
- * because `prime % add = 1` for `options.add > 2` would contradict the condition
3229
- * enforced by `options.safe`.
3230
- * * `options.rem` is ignored if `options.add` is not given.
3231
- *
3232
- * Both `options.add` and `options.rem` must be encoded as big-endian sequences
3233
- * if given as an `ArrayBuffer`, `SharedArrayBuffer`, `TypedArray`, `Buffer`, or`DataView`.
3234
- *
3235
- * By default, the prime is encoded as a big-endian sequence of octets
3236
- * in an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). If the `bigint` option is `true`, then a
3237
- * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) is provided.
3238
- * @since v15.8.0
3239
- * @param size The size (in bits) of the prime to generate.
3240
- */
3241
- function generatePrime(size: number, callback: (err: Error | null, prime: ArrayBuffer) => void): void;
3242
- function generatePrime(size: number, options: GeneratePrimeOptionsBigInt, callback: (err: Error | null, prime: bigint) => void): void;
3243
- function generatePrime(size: number, options: GeneratePrimeOptionsArrayBuffer, callback: (err: Error | null, prime: ArrayBuffer) => void): void;
3244
- function generatePrime(size: number, options: GeneratePrimeOptions, callback: (err: Error | null, prime: ArrayBuffer | bigint) => void): void;
3245
- /**
3246
- * Generates a pseudorandom prime of `size` bits.
3247
- *
3248
- * If `options.safe` is `true`, the prime will be a safe prime -- that is,`(prime - 1) / 2` will also be a prime.
3249
- *
3250
- * The `options.add` and `options.rem` parameters can be used to enforce additional
3251
- * requirements, e.g., for Diffie-Hellman:
3252
- *
3253
- * * If `options.add` and `options.rem` are both set, the prime will satisfy the
3254
- * condition that `prime % add = rem`.
3255
- * * If only `options.add` is set and `options.safe` is not `true`, the prime will
3256
- * satisfy the condition that `prime % add = 1`.
3257
- * * If only `options.add` is set and `options.safe` is set to `true`, the prime
3258
- * will instead satisfy the condition that `prime % add = 3`. This is necessary
3259
- * because `prime % add = 1` for `options.add > 2` would contradict the condition
3260
- * enforced by `options.safe`.
3261
- * * `options.rem` is ignored if `options.add` is not given.
3262
- *
3263
- * Both `options.add` and `options.rem` must be encoded as big-endian sequences
3264
- * if given as an `ArrayBuffer`, `SharedArrayBuffer`, `TypedArray`, `Buffer`, or`DataView`.
3265
- *
3266
- * By default, the prime is encoded as a big-endian sequence of octets
3267
- * in an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). If the `bigint` option is `true`, then a
3268
- * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) is provided.
3269
- * @since v15.8.0
3270
- * @param size The size (in bits) of the prime to generate.
3271
- */
3272
- function generatePrimeSync(size: number): ArrayBuffer;
3273
- function generatePrimeSync(size: number, options: GeneratePrimeOptionsBigInt): bigint;
3274
- function generatePrimeSync(size: number, options: GeneratePrimeOptionsArrayBuffer): ArrayBuffer;
3275
- function generatePrimeSync(size: number, options: GeneratePrimeOptions): ArrayBuffer | bigint;
3276
- interface CheckPrimeOptions {
3277
- /**
3278
- * The number of Miller-Rabin probabilistic primality iterations to perform.
3279
- * When the value is 0 (zero), a number of checks is used that yields a false positive rate of at most 2-64 for random input.
3280
- * Care must be used when selecting a number of checks.
3281
- * Refer to the OpenSSL documentation for the BN_is_prime_ex function nchecks options for more details.
3282
- *
3283
- * @default 0
3284
- */
3285
- checks?: number | undefined;
3286
- }
3287
- /**
3288
- * Checks the primality of the `candidate`.
3289
- * @since v15.8.0
3290
- * @param candidate A possible prime encoded as a sequence of big endian octets of arbitrary length.
3291
- */
3292
- function checkPrime(value: LargeNumberLike, callback: (err: Error | null, result: boolean) => void): void;
3293
- function checkPrime(value: LargeNumberLike, options: CheckPrimeOptions, callback: (err: Error | null, result: boolean) => void): void;
3294
- /**
3295
- * Checks the primality of the `candidate`.
3296
- * @since v15.8.0
3297
- * @param candidate A possible prime encoded as a sequence of big endian octets of arbitrary length.
3298
- * @return `true` if the candidate is a prime with an error probability less than `0.25 ** options.checks`.
3299
- */
3300
- function checkPrimeSync(candidate: LargeNumberLike, options?: CheckPrimeOptions): boolean;
3301
- namespace webcrypto {
3302
- class CryptoKey {} // placeholder
3303
- }
3304
- }
3305
- declare module 'node:crypto' {
3306
- export * from 'crypto';
3307
- }