@start9labs/start-sdk 2.0.0 → 2.0.1

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 (3294) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/node_modules/@eslint/config-array/LICENSE +201 -0
  3. package/node_modules/@eslint/config-array/README.md +368 -0
  4. package/node_modules/@eslint/config-array/dist/cjs/index.cjs +1539 -0
  5. package/node_modules/@eslint/config-array/dist/cjs/index.d.cts +145 -0
  6. package/node_modules/@eslint/config-array/dist/cjs/std__path/posix.cjs +1336 -0
  7. package/node_modules/@eslint/config-array/dist/cjs/std__path/windows.cjs +1678 -0
  8. package/node_modules/@eslint/config-array/dist/cjs/types.cts +29 -0
  9. package/node_modules/@eslint/config-array/dist/esm/index.d.ts +145 -0
  10. package/node_modules/@eslint/config-array/dist/esm/index.js +1514 -0
  11. package/node_modules/@eslint/config-array/dist/esm/std__path/posix.js +1314 -0
  12. package/node_modules/@eslint/config-array/dist/esm/std__path/windows.js +1656 -0
  13. package/node_modules/@eslint/config-array/dist/esm/types.d.ts +23 -0
  14. package/node_modules/@eslint/config-array/dist/esm/types.ts +29 -0
  15. package/node_modules/@eslint/config-array/node_modules/brace-expansion/LICENSE +21 -0
  16. package/node_modules/@eslint/config-array/node_modules/brace-expansion/README.md +129 -0
  17. package/node_modules/@eslint/config-array/node_modules/brace-expansion/index.js +203 -0
  18. package/node_modules/@eslint/config-array/node_modules/brace-expansion/package.json +50 -0
  19. package/node_modules/@eslint/config-array/node_modules/minimatch/LICENSE +15 -0
  20. package/node_modules/@eslint/config-array/node_modules/minimatch/README.md +267 -0
  21. package/node_modules/@eslint/config-array/node_modules/minimatch/minimatch.js +1005 -0
  22. package/node_modules/@eslint/config-array/node_modules/minimatch/package.json +33 -0
  23. package/node_modules/@eslint/config-array/package.json +64 -0
  24. package/node_modules/@eslint/config-helpers/LICENSE +201 -0
  25. package/node_modules/@eslint/config-helpers/README.md +97 -0
  26. package/node_modules/@eslint/config-helpers/dist/cjs/index.cjs +588 -0
  27. package/node_modules/@eslint/config-helpers/dist/cjs/index.d.cts +26 -0
  28. package/node_modules/@eslint/config-helpers/dist/cjs/types.cts +29 -0
  29. package/node_modules/@eslint/config-helpers/dist/esm/index.d.ts +26 -0
  30. package/node_modules/@eslint/config-helpers/dist/esm/index.js +586 -0
  31. package/node_modules/@eslint/config-helpers/dist/esm/types.d.ts +23 -0
  32. package/node_modules/@eslint/config-helpers/dist/esm/types.ts +29 -0
  33. package/node_modules/@eslint/config-helpers/package.json +60 -0
  34. package/node_modules/@eslint/core/LICENSE +201 -0
  35. package/node_modules/@eslint/core/README.md +29 -0
  36. package/node_modules/@eslint/core/dist/cjs/types.d.cts +1179 -0
  37. package/node_modules/@eslint/core/dist/esm/types.d.ts +1179 -0
  38. package/node_modules/@eslint/core/package.json +49 -0
  39. package/node_modules/@eslint/eslintrc/LICENSE +19 -0
  40. package/node_modules/@eslint/eslintrc/README.md +145 -0
  41. package/node_modules/@eslint/eslintrc/conf/config-schema.js +79 -0
  42. package/node_modules/@eslint/eslintrc/conf/environments.js +215 -0
  43. package/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +1212 -0
  44. package/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -0
  45. package/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +4466 -0
  46. package/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -0
  47. package/node_modules/@eslint/eslintrc/dist/eslintrc.d.cts +76 -0
  48. package/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +534 -0
  49. package/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +512 -0
  50. package/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +124 -0
  51. package/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +145 -0
  52. package/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +239 -0
  53. package/node_modules/@eslint/eslintrc/lib/config-array/index.js +19 -0
  54. package/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +227 -0
  55. package/node_modules/@eslint/eslintrc/lib/config-array-factory.js +1162 -0
  56. package/node_modules/@eslint/eslintrc/lib/flat-compat.js +329 -0
  57. package/node_modules/@eslint/eslintrc/lib/index-universal.js +29 -0
  58. package/node_modules/@eslint/eslintrc/lib/index.js +58 -0
  59. package/node_modules/@eslint/eslintrc/lib/shared/ajv.js +191 -0
  60. package/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +135 -0
  61. package/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +383 -0
  62. package/node_modules/@eslint/eslintrc/lib/shared/deep-merge-arrays.js +58 -0
  63. package/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +63 -0
  64. package/node_modules/@eslint/eslintrc/lib/shared/naming.js +96 -0
  65. package/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +43 -0
  66. package/node_modules/@eslint/eslintrc/lib/shared/types.js +149 -0
  67. package/node_modules/@eslint/eslintrc/lib/types/index.d.ts +76 -0
  68. package/node_modules/@eslint/eslintrc/node_modules/argparse/LICENSE +254 -0
  69. package/node_modules/@eslint/eslintrc/node_modules/argparse/README.md +84 -0
  70. package/node_modules/@eslint/eslintrc/node_modules/argparse/argparse.js +3707 -0
  71. package/node_modules/@eslint/eslintrc/node_modules/argparse/lib/sub.js +67 -0
  72. package/node_modules/@eslint/eslintrc/node_modules/argparse/lib/textwrap.js +440 -0
  73. package/node_modules/@eslint/eslintrc/node_modules/argparse/package.json +31 -0
  74. package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/LICENSE +21 -0
  75. package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/README.md +129 -0
  76. package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/index.js +203 -0
  77. package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/package.json +50 -0
  78. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/LICENSE +21 -0
  79. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/README.md +231 -0
  80. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/bin/js-yaml.js +117 -0
  81. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.js +2404 -0
  82. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.js.map +1 -0
  83. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.min.js +33 -0
  84. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.min.js.map +1 -0
  85. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.mjs +2382 -0
  86. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.mjs.map +1 -0
  87. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/index.js +44 -0
  88. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/common.js +50 -0
  89. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/dumper.js +937 -0
  90. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/exception.js +51 -0
  91. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/index_vite_proxy.tmp.mjs +37 -0
  92. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/loader.js +1794 -0
  93. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/core.js +9 -0
  94. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/default.js +20 -0
  95. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/failsafe.js +14 -0
  96. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/json.js +17 -0
  97. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema.js +109 -0
  98. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/snippet.js +96 -0
  99. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/binary.js +122 -0
  100. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/bool.js +35 -0
  101. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/float.js +99 -0
  102. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/int.js +142 -0
  103. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/map.js +8 -0
  104. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/merge.js +12 -0
  105. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/null.js +35 -0
  106. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/omap.js +45 -0
  107. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/pairs.js +50 -0
  108. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/seq.js +8 -0
  109. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/set.js +29 -0
  110. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/str.js +8 -0
  111. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/timestamp.js +88 -0
  112. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type.js +66 -0
  113. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/package.json +77 -0
  114. package/node_modules/@eslint/eslintrc/node_modules/minimatch/LICENSE +15 -0
  115. package/node_modules/@eslint/eslintrc/node_modules/minimatch/README.md +267 -0
  116. package/node_modules/@eslint/eslintrc/node_modules/minimatch/minimatch.js +1005 -0
  117. package/node_modules/@eslint/eslintrc/node_modules/minimatch/package.json +33 -0
  118. package/node_modules/@eslint/eslintrc/package.json +78 -0
  119. package/node_modules/@eslint/eslintrc/universal.js +10 -0
  120. package/node_modules/@eslint/js/LICENSE +19 -0
  121. package/node_modules/@eslint/js/README.md +103 -0
  122. package/node_modules/@eslint/js/package.json +36 -0
  123. package/node_modules/@eslint/js/src/configs/eslint-all.js +217 -0
  124. package/node_modules/@eslint/js/src/configs/eslint-recommended.js +79 -0
  125. package/node_modules/@eslint/js/src/index.js +23 -0
  126. package/node_modules/@eslint/js/types/index.d.ts +14 -0
  127. package/node_modules/@eslint/object-schema/LICENSE +201 -0
  128. package/node_modules/@eslint/object-schema/README.md +242 -0
  129. package/node_modules/@eslint/object-schema/dist/cjs/index.cjs +457 -0
  130. package/node_modules/@eslint/object-schema/dist/cjs/index.d.cts +125 -0
  131. package/node_modules/@eslint/object-schema/dist/cjs/types.cts +57 -0
  132. package/node_modules/@eslint/object-schema/dist/esm/index.d.ts +125 -0
  133. package/node_modules/@eslint/object-schema/dist/esm/index.js +454 -0
  134. package/node_modules/@eslint/object-schema/dist/esm/types.d.ts +40 -0
  135. package/node_modules/@eslint/object-schema/dist/esm/types.ts +57 -0
  136. package/node_modules/@eslint/object-schema/package.json +59 -0
  137. package/node_modules/@eslint/plugin-kit/LICENSE +201 -0
  138. package/node_modules/@eslint/plugin-kit/README.md +273 -0
  139. package/node_modules/@eslint/plugin-kit/dist/cjs/index.cjs +884 -0
  140. package/node_modules/@eslint/plugin-kit/dist/cjs/index.d.cts +328 -0
  141. package/node_modules/@eslint/plugin-kit/dist/cjs/types.cts +7 -0
  142. package/node_modules/@eslint/plugin-kit/dist/esm/index.d.ts +328 -0
  143. package/node_modules/@eslint/plugin-kit/dist/esm/index.js +879 -0
  144. package/node_modules/@eslint/plugin-kit/dist/esm/types.d.ts +6 -0
  145. package/node_modules/@eslint/plugin-kit/dist/esm/types.ts +7 -0
  146. package/node_modules/@eslint/plugin-kit/package.json +61 -0
  147. package/node_modules/@eslint-community/eslint-utils/LICENSE +21 -0
  148. package/node_modules/@eslint-community/eslint-utils/README.md +37 -0
  149. package/node_modules/@eslint-community/eslint-utils/index.d.mts +217 -0
  150. package/node_modules/@eslint-community/eslint-utils/index.d.ts +217 -0
  151. package/node_modules/@eslint-community/eslint-utils/index.js +2620 -0
  152. package/node_modules/@eslint-community/eslint-utils/index.js.map +1 -0
  153. package/node_modules/@eslint-community/eslint-utils/index.mjs +2579 -0
  154. package/node_modules/@eslint-community/eslint-utils/index.mjs.map +1 -0
  155. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/LICENSE +201 -0
  156. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/README.md +105 -0
  157. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +384 -0
  158. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +27 -0
  159. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
  160. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
  161. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js +65 -0
  162. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.js +315 -0
  163. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/package.json +74 -0
  164. package/node_modules/@eslint-community/eslint-utils/package.json +89 -0
  165. package/node_modules/@eslint-community/regexpp/LICENSE +21 -0
  166. package/node_modules/@eslint-community/regexpp/README.md +177 -0
  167. package/node_modules/@eslint-community/regexpp/index.d.ts +1163 -0
  168. package/node_modules/@eslint-community/regexpp/index.js +3042 -0
  169. package/node_modules/@eslint-community/regexpp/index.js.map +1 -0
  170. package/node_modules/@eslint-community/regexpp/index.mjs +3032 -0
  171. package/node_modules/@eslint-community/regexpp/index.mjs.map +1 -0
  172. package/node_modules/@eslint-community/regexpp/package.json +91 -0
  173. package/node_modules/@humanfs/core/LICENSE +201 -0
  174. package/node_modules/@humanfs/core/README.md +140 -0
  175. package/node_modules/@humanfs/core/dist/errors.d.ts +64 -0
  176. package/node_modules/@humanfs/core/dist/fsx.d.ts +193 -0
  177. package/node_modules/@humanfs/core/dist/hfs.d.ts +288 -0
  178. package/node_modules/@humanfs/core/dist/index.d.ts +3 -0
  179. package/node_modules/@humanfs/core/dist/path.d.ts +82 -0
  180. package/node_modules/@humanfs/core/package.json +54 -0
  181. package/node_modules/@humanfs/core/src/errors.js +105 -0
  182. package/node_modules/@humanfs/core/src/hfs.js +699 -0
  183. package/node_modules/@humanfs/core/src/index.js +8 -0
  184. package/node_modules/@humanfs/core/src/path.js +237 -0
  185. package/node_modules/@humanfs/node/LICENSE +201 -0
  186. package/node_modules/@humanfs/node/README.md +141 -0
  187. package/node_modules/@humanfs/node/dist/index.d.ts +2 -0
  188. package/node_modules/@humanfs/node/dist/node-fsx.d.ts +150 -0
  189. package/node_modules/@humanfs/node/dist/node-hfs.d.ts +176 -0
  190. package/node_modules/@humanfs/node/package.json +58 -0
  191. package/node_modules/@humanfs/node/src/index.js +7 -0
  192. package/node_modules/@humanfs/node/src/node-hfs.js +460 -0
  193. package/node_modules/@humanfs/types/CHANGELOG.md +150 -0
  194. package/node_modules/@humanfs/types/README.md +13 -0
  195. package/node_modules/@humanfs/types/package.json +42 -0
  196. package/node_modules/@humanfs/types/src/hfs-types.ts +192 -0
  197. package/node_modules/@humanfs/types/tsconfig.json +13 -0
  198. package/node_modules/@humanwhocodes/module-importer/LICENSE +201 -0
  199. package/node_modules/@humanwhocodes/module-importer/README.md +80 -0
  200. package/node_modules/@humanwhocodes/module-importer/dist/module-importer.cjs +22 -0
  201. package/node_modules/@humanwhocodes/module-importer/dist/module-importer.d.cts +27 -0
  202. package/node_modules/@humanwhocodes/module-importer/dist/module-importer.d.ts +2 -0
  203. package/node_modules/@humanwhocodes/module-importer/dist/module-importer.js +18 -0
  204. package/node_modules/@humanwhocodes/module-importer/package.json +65 -0
  205. package/node_modules/@humanwhocodes/module-importer/src/module-importer.cjs +81 -0
  206. package/node_modules/@humanwhocodes/module-importer/src/module-importer.js +22 -0
  207. package/node_modules/@humanwhocodes/retry/LICENSE +201 -0
  208. package/node_modules/@humanwhocodes/retry/README.md +177 -0
  209. package/node_modules/@humanwhocodes/retry/dist/retrier.cjs +478 -0
  210. package/node_modules/@humanwhocodes/retry/dist/retrier.d.cts +46 -0
  211. package/node_modules/@humanwhocodes/retry/dist/retrier.d.ts +46 -0
  212. package/node_modules/@humanwhocodes/retry/dist/retrier.js +477 -0
  213. package/node_modules/@humanwhocodes/retry/dist/retrier.min.js +1 -0
  214. package/node_modules/@humanwhocodes/retry/dist/retrier.mjs +476 -0
  215. package/node_modules/@humanwhocodes/retry/package.json +77 -0
  216. package/node_modules/@start9labs/start-core/osBindings/tunnel/WgServer.d.ts +0 -6
  217. package/node_modules/@start9labs/start-core/osBindings/tunnel/index.d.ts +0 -1
  218. package/node_modules/@types/estree/LICENSE +21 -0
  219. package/node_modules/@types/estree/README.md +15 -0
  220. package/node_modules/@types/estree/flow.d.ts +167 -0
  221. package/node_modules/@types/estree/index.d.ts +694 -0
  222. package/node_modules/@types/estree/package.json +27 -0
  223. package/node_modules/@types/json-schema/LICENSE +21 -0
  224. package/node_modules/@types/json-schema/README.md +15 -0
  225. package/node_modules/@types/json-schema/index.d.ts +749 -0
  226. package/node_modules/@types/json-schema/package.json +40 -0
  227. package/node_modules/@typescript-eslint/eslint-plugin/LICENSE +21 -0
  228. package/node_modules/@typescript-eslint/eslint-plugin/README.md +12 -0
  229. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended-raw.d.ts +10 -0
  230. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended-raw.js +46 -0
  231. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/all.d.ts +159 -0
  232. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/all.js +165 -0
  233. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/base.d.ts +8 -0
  234. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/base.js +6 -0
  235. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/disable-type-checked.d.ts +71 -0
  236. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/disable-type-checked.js +73 -0
  237. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/eslint-recommended.d.ts +12 -0
  238. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/eslint-recommended.js +13 -0
  239. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked-only.d.ts +33 -0
  240. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked-only.js +39 -0
  241. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked.d.ts +56 -0
  242. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked.js +62 -0
  243. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended.d.ts +29 -0
  244. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended.js +35 -0
  245. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked-only.d.ts +64 -0
  246. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked-only.js +79 -0
  247. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked.d.ts +98 -0
  248. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked.js +114 -0
  249. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict.d.ts +40 -0
  250. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict.js +47 -0
  251. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked-only.d.ts +15 -0
  252. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked-only.js +21 -0
  253. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked.d.ts +29 -0
  254. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked.js +35 -0
  255. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic.d.ts +20 -0
  256. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic.js +26 -0
  257. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/all.d.ts +7 -0
  258. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/all.js +179 -0
  259. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/base.d.ts +8 -0
  260. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/base.js +17 -0
  261. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/disable-type-checked.d.ts +7 -0
  262. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/disable-type-checked.js +81 -0
  263. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/eslint-recommended.d.ts +9 -0
  264. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/eslint-recommended.js +16 -0
  265. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked-only.d.ts +7 -0
  266. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked-only.js +53 -0
  267. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked.d.ts +7 -0
  268. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked.js +76 -0
  269. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended.d.ts +7 -0
  270. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended.js +49 -0
  271. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked-only.d.ts +7 -0
  272. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked-only.js +93 -0
  273. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked.d.ts +7 -0
  274. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked.js +128 -0
  275. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict.d.ts +7 -0
  276. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict.js +61 -0
  277. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked-only.d.ts +7 -0
  278. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked-only.js +35 -0
  279. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked.d.ts +7 -0
  280. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked.js +49 -0
  281. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic.d.ts +7 -0
  282. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic.js +40 -0
  283. package/node_modules/@typescript-eslint/eslint-plugin/dist/index.d.ts +1128 -0
  284. package/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +6 -0
  285. package/node_modules/@typescript-eslint/eslint-plugin/dist/raw-plugin.d.ts +1152 -0
  286. package/node_modules/@typescript-eslint/eslint-plugin/dist/raw-plugin.js +122 -0
  287. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.d.ts +4 -0
  288. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js +124 -0
  289. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.d.ts +12 -0
  290. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js +224 -0
  291. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.d.ts +6 -0
  292. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js +228 -0
  293. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.d.ts +17 -0
  294. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js +195 -0
  295. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.d.ts +4 -0
  296. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js +53 -0
  297. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.d.ts +7 -0
  298. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js +160 -0
  299. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.d.ts +13 -0
  300. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.js +219 -0
  301. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.d.ts +6 -0
  302. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.js +126 -0
  303. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.d.ts +7 -0
  304. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js +256 -0
  305. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-return.d.ts +18 -0
  306. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-return.js +135 -0
  307. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.d.ts +14 -0
  308. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js +256 -0
  309. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.d.ts +5 -0
  310. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js +100 -0
  311. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.d.ts +11 -0
  312. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js +335 -0
  313. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.d.ts +15 -0
  314. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js +608 -0
  315. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.d.ts +4 -0
  316. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js +68 -0
  317. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.d.ts +23 -0
  318. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js +139 -0
  319. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.d.ts +36 -0
  320. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.js +121 -0
  321. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.d.ts +17 -0
  322. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js +179 -0
  323. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.d.ts +19 -0
  324. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js +299 -0
  325. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.d.ts +15 -0
  326. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js +386 -0
  327. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.d.ts +448 -0
  328. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js +275 -0
  329. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.d.ts +15 -0
  330. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js +105 -0
  331. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.d.ts +25 -0
  332. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.js +72 -0
  333. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.d.ts +33 -0
  334. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js +833 -0
  335. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.d.ts +6 -0
  336. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js +186 -0
  337. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.d.ts +79 -0
  338. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js +102 -0
  339. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.d.ts +2 -0
  340. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js +89 -0
  341. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.d.ts +6 -0
  342. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js +11 -0
  343. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.d.ts +2 -0
  344. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js +69 -0
  345. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.d.ts +2 -0
  346. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js +305 -0
  347. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.d.ts +5 -0
  348. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js +16 -0
  349. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.d.ts +39 -0
  350. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js +2 -0
  351. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.d.ts +3 -0
  352. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js +349 -0
  353. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.d.ts +8 -0
  354. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js +506 -0
  355. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.d.ts +4 -0
  356. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js +62 -0
  357. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.d.ts +6 -0
  358. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.js +80 -0
  359. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.d.ts +11 -0
  360. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js +322 -0
  361. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.d.ts +6 -0
  362. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js +142 -0
  363. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.d.ts +13 -0
  364. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js +357 -0
  365. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-deprecated.d.ts +11 -0
  366. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-deprecated.js +404 -0
  367. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.d.ts +14 -0
  368. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js +39 -0
  369. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.d.ts +4 -0
  370. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.js +83 -0
  371. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.d.ts +11 -0
  372. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.js +227 -0
  373. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.d.ts +4 -0
  374. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js +42 -0
  375. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.d.ts +16 -0
  376. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js +134 -0
  377. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.d.ts +11 -0
  378. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js +102 -0
  379. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-object-type.d.ts +15 -0
  380. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-object-type.js +143 -0
  381. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.d.ts +12 -0
  382. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js +197 -0
  383. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.d.ts +4 -0
  384. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js +35 -0
  385. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.d.ts +13 -0
  386. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js +121 -0
  387. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.d.ts +16 -0
  388. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js +377 -0
  389. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.d.ts +4 -0
  390. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js +86 -0
  391. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.d.ts +4 -0
  392. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js +152 -0
  393. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.d.ts +7 -0
  394. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.js +53 -0
  395. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.d.ts +11 -0
  396. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js +182 -0
  397. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.d.ts +15 -0
  398. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js +75 -0
  399. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.d.ts +9 -0
  400. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js +210 -0
  401. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.d.ts +13 -0
  402. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js +187 -0
  403. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.d.ts +9 -0
  404. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js +35 -0
  405. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.d.ts +29 -0
  406. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js +249 -0
  407. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.d.ts +10 -0
  408. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js +102 -0
  409. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.d.ts +4 -0
  410. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js +81 -0
  411. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.d.ts +21 -0
  412. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js +765 -0
  413. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-spread.d.ts +12 -0
  414. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-spread.js +260 -0
  415. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.d.ts +4 -0
  416. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.js +200 -0
  417. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.d.ts +11 -0
  418. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js +60 -0
  419. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.d.ts +5 -0
  420. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js +73 -0
  421. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.d.ts +5 -0
  422. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js +65 -0
  423. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.d.ts +6 -0
  424. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js +93 -0
  425. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.d.ts +12 -0
  426. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js +199 -0
  427. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.d.ts +4 -0
  428. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.js +431 -0
  429. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.d.ts +11 -0
  430. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js +115 -0
  431. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.d.ts +9 -0
  432. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js +243 -0
  433. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-types.d.ts +16 -0
  434. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-types.js +171 -0
  435. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.d.ts +16 -0
  436. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js +551 -0
  437. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.d.ts +11 -0
  438. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js +66 -0
  439. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.d.ts +18 -0
  440. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js +268 -0
  441. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.d.ts +12 -0
  442. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js +261 -0
  443. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.d.ts +14 -0
  444. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js +689 -0
  445. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-parameter-property-assignment.d.ts +4 -0
  446. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-parameter-property-assignment.js +148 -0
  447. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.d.ts +4 -0
  448. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js +156 -0
  449. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-template-expression.d.ts +6 -0
  450. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-template-expression.js +361 -0
  451. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.d.ts +5 -0
  452. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js +202 -0
  453. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.d.ts +11 -0
  454. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js +745 -0
  455. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.d.ts +5 -0
  456. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js +119 -0
  457. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-conversion.d.ts +5 -0
  458. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-conversion.js +356 -0
  459. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-parameters.d.ts +5 -0
  460. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-parameters.js +422 -0
  461. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.d.ts +5 -0
  462. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js +272 -0
  463. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.d.ts +4 -0
  464. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js +322 -0
  465. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.d.ts +5 -0
  466. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js +136 -0
  467. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.d.ts +4 -0
  468. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.js +54 -0
  469. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.d.ts +5 -0
  470. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.js +192 -0
  471. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-function-type.d.ts +4 -0
  472. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-function-type.js +45 -0
  473. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.d.ts +10 -0
  474. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js +183 -0
  475. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.d.ts +4 -0
  476. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js +184 -0
  477. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-type-assertion.d.ts +4 -0
  478. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-type-assertion.js +165 -0
  479. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.d.ts +6 -0
  480. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.js +78 -0
  481. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.d.ts +19 -0
  482. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js +64 -0
  483. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-private-class-members.d.ts +6 -0
  484. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-private-class-members.js +44 -0
  485. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.d.ts +24 -0
  486. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js +1035 -0
  487. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.d.ts +16 -0
  488. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js +303 -0
  489. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.d.ts +11 -0
  490. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js +57 -0
  491. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-default-assignment.d.ts +11 -0
  492. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-default-assignment.js +321 -0
  493. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.d.ts +4 -0
  494. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.js +70 -0
  495. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.d.ts +10 -0
  496. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js +83 -0
  497. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-wrapper-object-types.d.ts +5 -0
  498. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-wrapper-object-types.js +60 -0
  499. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.d.ts +4 -0
  500. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js +132 -0
  501. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/only-throw-error.d.ts +14 -0
  502. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/only-throw-error.js +158 -0
  503. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.d.ts +13 -0
  504. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.js +164 -0
  505. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.d.ts +5 -0
  506. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js +72 -0
  507. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.d.ts +19 -0
  508. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.js +216 -0
  509. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.d.ts +6 -0
  510. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js +62 -0
  511. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.d.ts +5 -0
  512. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js +247 -0
  513. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.d.ts +5 -0
  514. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js +115 -0
  515. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.d.ts +9 -0
  516. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js +186 -0
  517. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.d.ts +5 -0
  518. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js +242 -0
  519. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.d.ts +6 -0
  520. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js +116 -0
  521. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.d.ts +4 -0
  522. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js +42 -0
  523. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.d.ts +22 -0
  524. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js +647 -0
  525. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.d.ts +11 -0
  526. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.js +2 -0
  527. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.d.ts +7 -0
  528. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.js +612 -0
  529. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/checkNullishAndReport.d.ts +6 -0
  530. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/checkNullishAndReport.js +45 -0
  531. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.d.ts +15 -0
  532. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.js +326 -0
  533. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.d.ts +61 -0
  534. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.js +411 -0
  535. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.d.ts +5 -0
  536. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js +150 -0
  537. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.d.ts +14 -0
  538. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.js +124 -0
  539. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.d.ts +14 -0
  540. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js +98 -0
  541. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.d.ts +10 -0
  542. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js +439 -0
  543. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.d.ts +4 -0
  544. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js +114 -0
  545. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.d.ts +4 -0
  546. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js +182 -0
  547. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.d.ts +4 -0
  548. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js +154 -0
  549. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.d.ts +12 -0
  550. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js +512 -0
  551. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.d.ts +5 -0
  552. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js +71 -0
  553. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.d.ts +15 -0
  554. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js +204 -0
  555. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/related-getter-setter-pairs.d.ts +4 -0
  556. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/related-getter-setter-pairs.js +71 -0
  557. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.d.ts +10 -0
  558. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js +63 -0
  559. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.d.ts +4 -0
  560. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js +263 -0
  561. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.d.ts +15 -0
  562. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js +231 -0
  563. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.d.ts +19 -0
  564. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js +119 -0
  565. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.d.ts +5 -0
  566. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js +363 -0
  567. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.d.ts +14 -0
  568. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.js +272 -0
  569. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.d.ts +19 -0
  570. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js +882 -0
  571. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-void-return.d.ts +10 -0
  572. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-void-return.js +377 -0
  573. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.d.ts +33 -0
  574. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js +291 -0
  575. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.d.ts +12 -0
  576. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js +110 -0
  577. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.d.ts +16 -0
  578. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js +239 -0
  579. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.d.ts +9 -0
  580. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js +334 -0
  581. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.d.ts +11 -0
  582. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js +465 -0
  583. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/use-unknown-in-catch-callback-variable.d.ts +6 -0
  584. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/use-unknown-in-catch-callback-variable.js +261 -0
  585. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/assertionFunctionUtils.d.ts +16 -0
  586. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/assertionFunctionUtils.js +116 -0
  587. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.d.ts +17 -0
  588. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js +143 -0
  589. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/baseTypeUtils.d.ts +13 -0
  590. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/baseTypeUtils.js +75 -0
  591. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/classScopeAnalyzer.d.ts +52 -0
  592. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/classScopeAnalyzer.js +566 -0
  593. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/extractComputedName.d.ts +17 -0
  594. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/extractComputedName.js +70 -0
  595. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/types.d.ts +12 -0
  596. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/types.js +10 -0
  597. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.d.ts +15 -0
  598. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js +601 -0
  599. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.d.ts +5 -0
  600. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js +5 -0
  601. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.d.ts +1 -0
  602. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js +14 -0
  603. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.d.ts +47 -0
  604. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js +238 -0
  605. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getBaseTypesOfClassMember.d.ts +11 -0
  606. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getBaseTypesOfClassMember.js +31 -0
  607. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getConstraintInfo.d.ts +35 -0
  608. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getConstraintInfo.js +70 -0
  609. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.d.ts +27 -0
  610. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js +16 -0
  611. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFixOrSuggest.d.ts +9 -0
  612. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFixOrSuggest.js +13 -0
  613. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getForStatementHeadLoc.d.ts +17 -0
  614. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getForStatementHeadLoc.js +26 -0
  615. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.d.ts +101 -0
  616. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js +161 -0
  617. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getMemberHeadLoc.d.ts +36 -0
  618. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getMemberHeadLoc.js +79 -0
  619. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.d.ts +39 -0
  620. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.js +421 -0
  621. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getParentFunctionNode.d.ts +2 -0
  622. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getParentFunctionNode.js +18 -0
  623. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.d.ts +11 -0
  624. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.js +44 -0
  625. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.d.ts +1 -0
  626. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.js +14 -0
  627. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getTextWithParentheses.d.ts +3 -0
  628. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getTextWithParentheses.js +16 -0
  629. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.d.ts +2 -0
  630. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js +24 -0
  631. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getValueOfLiteralType.d.ts +2 -0
  632. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getValueOfLiteralType.js +16 -0
  633. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.d.ts +2 -0
  634. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.js +6 -0
  635. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.d.ts +42 -0
  636. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js +184 -0
  637. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/hasOverloadSignatures.d.ts +6 -0
  638. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/hasOverloadSignatures.js +47 -0
  639. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.d.ts +40 -0
  640. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js +53 -0
  641. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isArrayMethodCallWithPredicate.d.ts +3 -0
  642. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isArrayMethodCallWithPredicate.js +64 -0
  643. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isAssignee.d.ts +2 -0
  644. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isAssignee.js +50 -0
  645. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isHigherPrecedenceThanAwait.d.ts +2 -0
  646. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isHigherPrecedenceThanAwait.js +46 -0
  647. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.d.ts +2 -0
  648. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.js +25 -0
  649. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.d.ts +2 -0
  650. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.js +7 -0
  651. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isPromiseAggregatorMethod.d.ts +3 -0
  652. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isPromiseAggregatorMethod.js +22 -0
  653. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isStartOfExpressionStatement.d.ts +7 -0
  654. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isStartOfExpressionStatement.js +22 -0
  655. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isTypeImport.d.ts +12 -0
  656. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isTypeImport.js +21 -0
  657. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.d.ts +2 -0
  658. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.js +7 -0
  659. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.d.ts +115 -0
  660. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js +270 -0
  661. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsPrecedingSemiColon.d.ts +11 -0
  662. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsPrecedingSemiColon.js +97 -0
  663. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsToBeAwaited.d.ts +7 -0
  664. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsToBeAwaited.js +63 -0
  665. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.d.ts +3 -0
  666. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js +25 -0
  667. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/promiseUtils.d.ts +27 -0
  668. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/promiseUtils.js +98 -0
  669. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/rangeToLoc.d.ts +2 -0
  670. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/rangeToLoc.js +9 -0
  671. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypePredicate.d.ts +5 -0
  672. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypePredicate.js +18 -0
  673. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypeQuery.d.ts +5 -0
  674. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypeQuery.js +19 -0
  675. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/scopeUtils.d.ts +3 -0
  676. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/scopeUtils.js +10 -0
  677. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/skipChainExpression.d.ts +2 -0
  678. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/skipChainExpression.js +7 -0
  679. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/truthinessUtils.d.ts +3 -0
  680. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/truthinessUtils.js +60 -0
  681. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/types.d.ts +2 -0
  682. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/types.js +2 -0
  683. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/walkStatements.d.ts +7 -0
  684. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/walkStatements.js +56 -0
  685. package/node_modules/@typescript-eslint/eslint-plugin/index.d.ts +13 -0
  686. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/LICENSE-MIT +21 -0
  687. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/README.md +452 -0
  688. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/index.d.ts +81 -0
  689. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/index.js +784 -0
  690. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/legacy.js +681 -0
  691. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/package.json +87 -0
  692. package/node_modules/@typescript-eslint/eslint-plugin/package.json +126 -0
  693. package/node_modules/@typescript-eslint/eslint-plugin/raw-plugin.d.ts +25 -0
  694. package/node_modules/@typescript-eslint/eslint-plugin/rules.d.ts +87 -0
  695. package/node_modules/@typescript-eslint/parser/LICENSE +21 -0
  696. package/node_modules/@typescript-eslint/parser/README.md +12 -0
  697. package/node_modules/@typescript-eslint/parser/dist/index.d.ts +7 -0
  698. package/node_modules/@typescript-eslint/parser/dist/index.js +17 -0
  699. package/node_modules/@typescript-eslint/parser/dist/parser.d.ts +22 -0
  700. package/node_modules/@typescript-eslint/parser/dist/parser.js +144 -0
  701. package/node_modules/@typescript-eslint/parser/package.json +86 -0
  702. package/node_modules/@typescript-eslint/project-service/LICENSE +21 -0
  703. package/node_modules/@typescript-eslint/project-service/README.md +12 -0
  704. package/node_modules/@typescript-eslint/project-service/dist/createProjectService.d.ts +65 -0
  705. package/node_modules/@typescript-eslint/project-service/dist/createProjectService.js +138 -0
  706. package/node_modules/@typescript-eslint/project-service/dist/getParsedConfigFileFromTSServer.d.ts +2 -0
  707. package/node_modules/@typescript-eslint/project-service/dist/getParsedConfigFileFromTSServer.js +15 -0
  708. package/node_modules/@typescript-eslint/project-service/dist/index.d.ts +1 -0
  709. package/node_modules/@typescript-eslint/project-service/dist/index.js +17 -0
  710. package/node_modules/@typescript-eslint/project-service/package.json +83 -0
  711. package/node_modules/@typescript-eslint/scope-manager/LICENSE +21 -0
  712. package/node_modules/@typescript-eslint/scope-manager/README.md +10 -0
  713. package/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +2 -0
  714. package/node_modules/@typescript-eslint/scope-manager/dist/ID.js +19 -0
  715. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +77 -0
  716. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +189 -0
  717. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +53 -0
  718. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +41 -0
  719. package/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +1 -0
  720. package/node_modules/@typescript-eslint/scope-manager/dist/assert.js +9 -0
  721. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +8 -0
  722. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +13 -0
  723. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +8 -0
  724. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +13 -0
  725. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +12 -0
  726. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +2 -0
  727. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +33 -0
  728. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +34 -0
  729. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +13 -0
  730. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +17 -0
  731. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +8 -0
  732. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +13 -0
  733. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +8 -0
  734. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +13 -0
  735. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +9 -0
  736. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +13 -0
  737. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +12 -0
  738. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +18 -0
  739. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +8 -0
  740. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +13 -0
  741. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +8 -0
  742. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +13 -0
  743. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +8 -0
  744. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +13 -0
  745. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +8 -0
  746. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +13 -0
  747. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +8 -0
  748. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +13 -0
  749. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +13 -0
  750. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +29 -0
  751. package/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +8 -0
  752. package/node_modules/@typescript-eslint/scope-manager/dist/index.js +30 -0
  753. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +15 -0
  754. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +22 -0
  755. package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts +2 -0
  756. package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js +25 -0
  757. package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts +2 -0
  758. package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js +17 -0
  759. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.asynciterable.d.ts +2 -0
  760. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.asynciterable.js +11 -0
  761. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +2 -0
  762. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +2 -0
  763. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +11 -0
  764. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +1812 -0
  765. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +2 -0
  766. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +23 -0
  767. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +2 -0
  768. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +34 -0
  769. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +2 -0
  770. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +2 -0
  771. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +17 -0
  772. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +2 -0
  773. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +62 -0
  774. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +32 -0
  775. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +2 -0
  776. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +12 -0
  777. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +2 -0
  778. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +15 -0
  779. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +2 -0
  780. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +12 -0
  781. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +2 -0
  782. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +12 -0
  783. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +2 -0
  784. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +47 -0
  785. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +2 -0
  786. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +24 -0
  787. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +2 -0
  788. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +2 -0
  789. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +16 -0
  790. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.intl.d.ts +2 -0
  791. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.intl.js +12 -0
  792. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +14 -0
  793. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.arraybuffer.d.ts +2 -0
  794. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.arraybuffer.js +12 -0
  795. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +2 -0
  796. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts +2 -0
  797. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js +12 -0
  798. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +2 -0
  799. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +16 -0
  800. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +2 -0
  801. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +12 -0
  802. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +28 -0
  803. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +2 -0
  804. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +12 -0
  805. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +2 -0
  806. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +19 -0
  807. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +2 -0
  808. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +12 -0
  809. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +2 -0
  810. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +22 -0
  811. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +2 -0
  812. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +17 -0
  813. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +2 -0
  814. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +20 -0
  815. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +2 -0
  816. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +2 -0
  817. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +24 -0
  818. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +2 -0
  819. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +12 -0
  820. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +24 -0
  821. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +2 -0
  822. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +12 -0
  823. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +2 -0
  824. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +16 -0
  825. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +2 -0
  826. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +16 -0
  827. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +2 -0
  828. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +2 -0
  829. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +24 -0
  830. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts +2 -0
  831. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js +12 -0
  832. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +24 -0
  833. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +2 -0
  834. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +13 -0
  835. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +2 -0
  836. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +12 -0
  837. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +2 -0
  838. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +12 -0
  839. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +2 -0
  840. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +23 -0
  841. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +2 -0
  842. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +2 -0
  843. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +13 -0
  844. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +2 -0
  845. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +24 -0
  846. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +2 -0
  847. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +13 -0
  848. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +30 -0
  849. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +2 -0
  850. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +13 -0
  851. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +2 -0
  852. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +17 -0
  853. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +2 -0
  854. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +13 -0
  855. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +2 -0
  856. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +15 -0
  857. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +2 -0
  858. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +18 -0
  859. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +2 -0
  860. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +2 -0
  861. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +24 -0
  862. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +2 -0
  863. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +12 -0
  864. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +16 -0
  865. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +2 -0
  866. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +16 -0
  867. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +2 -0
  868. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +12 -0
  869. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +2 -0
  870. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +18 -0
  871. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +2 -0
  872. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js +26 -0
  873. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +2 -0
  874. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +2 -0
  875. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js +24 -0
  876. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +2 -0
  877. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +24 -0
  878. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts +2 -0
  879. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js +12 -0
  880. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js +26 -0
  881. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +2 -0
  882. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js +12 -0
  883. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts +2 -0
  884. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js +17 -0
  885. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +2 -0
  886. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js +12 -0
  887. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts +2 -0
  888. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js +26 -0
  889. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts +2 -0
  890. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js +12 -0
  891. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts +2 -0
  892. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts +2 -0
  893. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js +24 -0
  894. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.intl.d.ts +2 -0
  895. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.intl.js +12 -0
  896. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js +15 -0
  897. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.arraybuffer.d.ts +2 -0
  898. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.arraybuffer.js +15 -0
  899. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.collection.d.ts +2 -0
  900. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.collection.js +12 -0
  901. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.d.ts +2 -0
  902. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.full.d.ts +2 -0
  903. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.full.js +24 -0
  904. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.js +28 -0
  905. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.object.d.ts +2 -0
  906. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.object.js +12 -0
  907. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.promise.d.ts +2 -0
  908. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.promise.js +15 -0
  909. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.regexp.d.ts +2 -0
  910. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.regexp.js +12 -0
  911. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.sharedmemory.d.ts +2 -0
  912. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.sharedmemory.js +17 -0
  913. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.string.d.ts +2 -0
  914. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.string.js +12 -0
  915. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.collection.d.ts +2 -0
  916. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.collection.js +17 -0
  917. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.d.ts +2 -0
  918. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.float16.d.ts +2 -0
  919. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.float16.js +19 -0
  920. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.full.d.ts +2 -0
  921. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.full.js +24 -0
  922. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.intl.d.ts +2 -0
  923. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.intl.js +13 -0
  924. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.iterator.d.ts +2 -0
  925. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.iterator.js +16 -0
  926. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.js +26 -0
  927. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.promise.d.ts +2 -0
  928. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.promise.js +12 -0
  929. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.regexp.d.ts +2 -0
  930. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.regexp.js +12 -0
  931. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +2 -0
  932. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +118 -0
  933. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +2 -0
  934. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +32 -0
  935. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +2 -0
  936. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +14 -0
  937. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +2 -0
  938. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +12 -0
  939. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +2 -0
  940. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +20 -0
  941. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +2 -0
  942. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +23 -0
  943. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts +2 -0
  944. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js +16 -0
  945. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +2 -0
  946. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.date.d.ts +2 -0
  947. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.date.js +13 -0
  948. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts +2 -0
  949. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js +17 -0
  950. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts +2 -0
  951. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js +27 -0
  952. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.error.d.ts +2 -0
  953. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.error.js +12 -0
  954. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.float16.d.ts +2 -0
  955. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.float16.js +19 -0
  956. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +2 -0
  957. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +24 -0
  958. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +2 -0
  959. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +13 -0
  960. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.iterator.d.ts +2 -0
  961. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.iterator.js +16 -0
  962. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +34 -0
  963. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.object.d.ts +2 -0
  964. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.object.js +12 -0
  965. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +2 -0
  966. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +12 -0
  967. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.regexp.d.ts +2 -0
  968. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.regexp.js +12 -0
  969. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.sharedmemory.d.ts +2 -0
  970. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.sharedmemory.js +12 -0
  971. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +2 -0
  972. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +12 -0
  973. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +2 -0
  974. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +12 -0
  975. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.temporal.d.ts +2 -0
  976. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.temporal.js +15 -0
  977. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.typedarrays.d.ts +2 -0
  978. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.typedarrays.js +15 -0
  979. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +2 -0
  980. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +18 -0
  981. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +2 -0
  982. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +247 -0
  983. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +2 -0
  984. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +15 -0
  985. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +2 -0
  986. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +26 -0
  987. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.asynciterable.d.ts +2 -0
  988. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.asynciterable.js +11 -0
  989. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +2 -0
  990. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +2 -0
  991. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +11 -0
  992. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +2 -0
  993. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +11 -0
  994. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +842 -0
  995. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +27 -0
  996. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +178 -0
  997. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +13 -0
  998. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +71 -0
  999. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +12 -0
  1000. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +36 -0
  1001. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +27 -0
  1002. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +94 -0
  1003. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +87 -0
  1004. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +119 -0
  1005. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +91 -0
  1006. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +558 -0
  1007. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +31 -0
  1008. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +221 -0
  1009. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +13 -0
  1010. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +29 -0
  1011. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +21 -0
  1012. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +67 -0
  1013. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +1 -0
  1014. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +5 -0
  1015. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +8 -0
  1016. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +11 -0
  1017. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +8 -0
  1018. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +11 -0
  1019. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +8 -0
  1020. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +11 -0
  1021. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +8 -0
  1022. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +11 -0
  1023. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +8 -0
  1024. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +11 -0
  1025. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +8 -0
  1026. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +11 -0
  1027. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +8 -0
  1028. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +11 -0
  1029. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +9 -0
  1030. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +17 -0
  1031. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +11 -0
  1032. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +35 -0
  1033. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +8 -0
  1034. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +11 -0
  1035. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +17 -0
  1036. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +60 -0
  1037. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +8 -0
  1038. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +11 -0
  1039. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +8 -0
  1040. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +11 -0
  1041. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +19 -0
  1042. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +2 -0
  1043. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +96 -0
  1044. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +308 -0
  1045. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +20 -0
  1046. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +24 -0
  1047. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +8 -0
  1048. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +11 -0
  1049. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +8 -0
  1050. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +11 -0
  1051. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +8 -0
  1052. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +11 -0
  1053. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +8 -0
  1054. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +11 -0
  1055. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +9 -0
  1056. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +21 -0
  1057. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +19 -0
  1058. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +35 -0
  1059. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +32 -0
  1060. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +35 -0
  1061. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +27 -0
  1062. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +26 -0
  1063. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +16 -0
  1064. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +32 -0
  1065. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +42 -0
  1066. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +47 -0
  1067. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +6 -0
  1068. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +9 -0
  1069. package/node_modules/@typescript-eslint/scope-manager/package.json +82 -0
  1070. package/node_modules/@typescript-eslint/tsconfig-utils/LICENSE +21 -0
  1071. package/node_modules/@typescript-eslint/tsconfig-utils/README.md +12 -0
  1072. package/node_modules/@typescript-eslint/tsconfig-utils/dist/compilerOptions.d.ts +8 -0
  1073. package/node_modules/@typescript-eslint/tsconfig-utils/dist/compilerOptions.js +13 -0
  1074. package/node_modules/@typescript-eslint/tsconfig-utils/dist/getParsedConfigFile.d.ts +8 -0
  1075. package/node_modules/@typescript-eslint/tsconfig-utils/dist/getParsedConfigFile.js +79 -0
  1076. package/node_modules/@typescript-eslint/tsconfig-utils/dist/index.d.ts +2 -0
  1077. package/node_modules/@typescript-eslint/tsconfig-utils/dist/index.js +18 -0
  1078. package/node_modules/@typescript-eslint/tsconfig-utils/package.json +74 -0
  1079. package/node_modules/@typescript-eslint/type-utils/LICENSE +21 -0
  1080. package/node_modules/@typescript-eslint/type-utils/README.md +12 -0
  1081. package/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.d.ts +132 -0
  1082. package/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.js +212 -0
  1083. package/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.d.ts +53 -0
  1084. package/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.js +165 -0
  1085. package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts +9 -0
  1086. package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js +69 -0
  1087. package/node_modules/@typescript-eslint/type-utils/dist/discriminateAnyType.d.ts +12 -0
  1088. package/node_modules/@typescript-eslint/type-utils/dist/discriminateAnyType.js +77 -0
  1089. package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts +12 -0
  1090. package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.js +19 -0
  1091. package/node_modules/@typescript-eslint/type-utils/dist/getContextualType.d.ts +7 -0
  1092. package/node_modules/@typescript-eslint/type-utils/dist/getContextualType.js +76 -0
  1093. package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts +6 -0
  1094. package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.js +14 -0
  1095. package/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.d.ts +6 -0
  1096. package/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.js +47 -0
  1097. package/node_modules/@typescript-eslint/type-utils/dist/getTypeName.d.ts +7 -0
  1098. package/node_modules/@typescript-eslint/type-utils/dist/getTypeName.js +84 -0
  1099. package/node_modules/@typescript-eslint/type-utils/dist/index.d.ts +18 -0
  1100. package/node_modules/@typescript-eslint/type-utils/dist/index.js +38 -0
  1101. package/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.d.ts +2 -0
  1102. package/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.js +16 -0
  1103. package/node_modules/@typescript-eslint/type-utils/dist/isTypeBrandedLiteralLike.d.ts +2 -0
  1104. package/node_modules/@typescript-eslint/type-utils/dist/isTypeBrandedLiteralLike.js +74 -0
  1105. package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts +100 -0
  1106. package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js +255 -0
  1107. package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts +16 -0
  1108. package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js +114 -0
  1109. package/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts +37 -0
  1110. package/node_modules/@typescript-eslint/type-utils/dist/predicates.js +157 -0
  1111. package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts +3 -0
  1112. package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.js +35 -0
  1113. package/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.d.ts +3 -0
  1114. package/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.js +52 -0
  1115. package/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.d.ts +17 -0
  1116. package/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.js +70 -0
  1117. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/specifierNameMatches.d.ts +2 -0
  1118. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/specifierNameMatches.js +16 -0
  1119. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInFile.d.ts +2 -0
  1120. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInFile.js +16 -0
  1121. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInLib.d.ts +2 -0
  1122. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInLib.js +11 -0
  1123. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInPackageDeclarationFile.d.ts +2 -0
  1124. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInPackageDeclarationFile.js +70 -0
  1125. package/node_modules/@typescript-eslint/type-utils/package.json +85 -0
  1126. package/node_modules/@typescript-eslint/types/LICENSE +21 -0
  1127. package/node_modules/@typescript-eslint/types/README.md +12 -0
  1128. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts +2163 -0
  1129. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js +200 -0
  1130. package/node_modules/@typescript-eslint/types/dist/index.d.ts +4 -0
  1131. package/node_modules/@typescript-eslint/types/dist/index.js +23 -0
  1132. package/node_modules/@typescript-eslint/types/dist/lib.d.ts +1 -0
  1133. package/node_modules/@typescript-eslint/types/dist/lib.js +6 -0
  1134. package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts +68 -0
  1135. package/node_modules/@typescript-eslint/types/dist/parser-options.js +2 -0
  1136. package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts +188 -0
  1137. package/node_modules/@typescript-eslint/types/dist/ts-estree.js +37 -0
  1138. package/node_modules/@typescript-eslint/types/package.json +103 -0
  1139. package/node_modules/@typescript-eslint/typescript-estree/LICENSE +21 -0
  1140. package/node_modules/@typescript-eslint/typescript-estree/README.md +14 -0
  1141. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts +8 -0
  1142. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js +60 -0
  1143. package/node_modules/@typescript-eslint/typescript-estree/dist/check-modifiers.d.ts +2 -0
  1144. package/node_modules/@typescript-eslint/typescript-estree/dist/check-modifiers.js +289 -0
  1145. package/node_modules/@typescript-eslint/typescript-estree/dist/check-syntax-errors.d.ts +3 -0
  1146. package/node_modules/@typescript-eslint/typescript-estree/dist/check-syntax-errors.js +440 -0
  1147. package/node_modules/@typescript-eslint/typescript-estree/dist/clear-caches.d.ts +9 -0
  1148. package/node_modules/@typescript-eslint/typescript-estree/dist/clear-caches.js +27 -0
  1149. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts +9 -0
  1150. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js +61 -0
  1151. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts +142 -0
  1152. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js +2400 -0
  1153. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts +12 -0
  1154. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.js +5 -0
  1155. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts +6 -0
  1156. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js +96 -0
  1157. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts +8 -0
  1158. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js +23 -0
  1159. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgramError.d.ts +3 -0
  1160. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgramError.js +74 -0
  1161. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts +5 -0
  1162. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js +62 -0
  1163. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/describeFilePath.d.ts +1 -0
  1164. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/describeFilePath.js +30 -0
  1165. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.d.ts +3 -0
  1166. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.js +80 -0
  1167. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getWatchProgramsForProjects.d.ts +13 -0
  1168. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getWatchProgramsForProjects.js +380 -0
  1169. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts +27 -0
  1170. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js +130 -0
  1171. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts +11 -0
  1172. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js +81 -0
  1173. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/validateDefaultProjectForFilesGlob.d.ts +2 -0
  1174. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/validateDefaultProjectForFilesGlob.js +23 -0
  1175. package/node_modules/@typescript-eslint/typescript-estree/dist/createParserServices.d.ts +4 -0
  1176. package/node_modules/@typescript-eslint/typescript-estree/dist/createParserServices.js +33 -0
  1177. package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.d.ts +3 -0
  1178. package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.js +74 -0
  1179. package/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts +14 -0
  1180. package/node_modules/@typescript-eslint/typescript-estree/dist/index.js +41 -0
  1181. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.d.ts +1 -0
  1182. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.js +258 -0
  1183. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts +189 -0
  1184. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js +673 -0
  1185. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/ExpiringCache.d.ts +16 -0
  1186. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/ExpiringCache.js +46 -0
  1187. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/candidateTSConfigRootDirs.d.ts +3 -0
  1188. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/candidateTSConfigRootDirs.js +28 -0
  1189. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/createParseSettings.d.ts +6 -0
  1190. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/createParseSettings.js +252 -0
  1191. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/getProjectConfigFiles.d.ts +12 -0
  1192. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/getProjectConfigFiles.js +82 -0
  1193. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.d.ts +126 -0
  1194. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.js +2 -0
  1195. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/inferSingleRun.d.ts +14 -0
  1196. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/inferSingleRun.js +62 -0
  1197. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/resolveProjectList.d.ts +18 -0
  1198. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/resolveProjectList.js +95 -0
  1199. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.d.ts +6 -0
  1200. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js +81 -0
  1201. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts +210 -0
  1202. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.js +2 -0
  1203. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts +17 -0
  1204. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js +184 -0
  1205. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.d.ts +12 -0
  1206. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.js +94 -0
  1207. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts +11 -0
  1208. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js +58 -0
  1209. package/node_modules/@typescript-eslint/typescript-estree/dist/source-files.d.ts +3 -0
  1210. package/node_modules/@typescript-eslint/typescript-estree/dist/source-files.js +49 -0
  1211. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts +178 -0
  1212. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js +2 -0
  1213. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts +3 -0
  1214. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.js +24 -0
  1215. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts +17 -0
  1216. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.js +2 -0
  1217. package/node_modules/@typescript-eslint/typescript-estree/dist/use-at-your-own-risk.d.ts +7 -0
  1218. package/node_modules/@typescript-eslint/typescript-estree/dist/use-at-your-own-risk.js +29 -0
  1219. package/node_modules/@typescript-eslint/typescript-estree/dist/useProgramFromProjectService.d.ts +6 -0
  1220. package/node_modules/@typescript-eslint/typescript-estree/dist/useProgramFromProjectService.js +205 -0
  1221. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts +4 -0
  1222. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.js +63 -0
  1223. package/node_modules/@typescript-eslint/typescript-estree/dist/version.d.ts +1 -0
  1224. package/node_modules/@typescript-eslint/typescript-estree/dist/version.js +6 -0
  1225. package/node_modules/@typescript-eslint/typescript-estree/dist/withoutProjectParserOptions.d.ts +9 -0
  1226. package/node_modules/@typescript-eslint/typescript-estree/dist/withoutProjectParserOptions.js +16 -0
  1227. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/LICENSE.md +23 -0
  1228. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/README.md +57 -0
  1229. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
  1230. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.d.ts.map +1 -0
  1231. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.js +59 -0
  1232. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.js.map +1 -0
  1233. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/package.json +3 -0
  1234. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
  1235. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.d.ts.map +1 -0
  1236. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.js +54 -0
  1237. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.js.map +1 -0
  1238. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/package.json +3 -0
  1239. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/package.json +68 -0
  1240. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/LICENSE +23 -0
  1241. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/README.md +94 -0
  1242. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
  1243. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
  1244. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
  1245. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
  1246. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
  1247. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
  1248. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
  1249. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.js +197 -0
  1250. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
  1251. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/package.json +3 -0
  1252. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/package.json +64 -0
  1253. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/LICENSE.md +55 -0
  1254. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/README.md +528 -0
  1255. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
  1256. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
  1257. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  1258. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
  1259. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
  1260. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
  1261. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.js +845 -0
  1262. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
  1263. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
  1264. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
  1265. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
  1266. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
  1267. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
  1268. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
  1269. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.js +30 -0
  1270. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
  1271. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
  1272. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
  1273. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.js +1127 -0
  1274. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
  1275. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/package.json +3 -0
  1276. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
  1277. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
  1278. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
  1279. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
  1280. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
  1281. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
  1282. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  1283. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
  1284. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
  1285. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
  1286. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.js +841 -0
  1287. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.js.map +1 -0
  1288. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
  1289. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
  1290. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
  1291. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
  1292. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
  1293. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
  1294. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.js +26 -0
  1295. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.js.map +1 -0
  1296. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.d.ts +174 -0
  1297. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
  1298. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.js +1114 -0
  1299. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.js.map +1 -0
  1300. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/package.json +3 -0
  1301. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
  1302. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
  1303. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.js +34 -0
  1304. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
  1305. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/package.json +73 -0
  1306. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/LICENSE +15 -0
  1307. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/README.md +680 -0
  1308. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/bin/semver.js +195 -0
  1309. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/comparator.js +143 -0
  1310. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/index.js +7 -0
  1311. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/range.js +564 -0
  1312. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/semver.js +350 -0
  1313. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/clean.js +8 -0
  1314. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/cmp.js +54 -0
  1315. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/coerce.js +62 -0
  1316. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/compare-build.js +9 -0
  1317. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/compare-loose.js +5 -0
  1318. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/compare.js +7 -0
  1319. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/diff.js +60 -0
  1320. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/eq.js +5 -0
  1321. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/gt.js +5 -0
  1322. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/gte.js +5 -0
  1323. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/inc.js +21 -0
  1324. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/lt.js +5 -0
  1325. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/lte.js +5 -0
  1326. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/major.js +5 -0
  1327. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/minor.js +5 -0
  1328. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/neq.js +5 -0
  1329. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/parse.js +18 -0
  1330. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/patch.js +5 -0
  1331. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/prerelease.js +8 -0
  1332. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/rcompare.js +5 -0
  1333. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/rsort.js +5 -0
  1334. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/satisfies.js +12 -0
  1335. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/sort.js +5 -0
  1336. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/truncate.js +48 -0
  1337. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/valid.js +8 -0
  1338. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/index.js +93 -0
  1339. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/constants.js +37 -0
  1340. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/debug.js +11 -0
  1341. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/identifiers.js +29 -0
  1342. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/lrucache.js +42 -0
  1343. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/parse-options.js +17 -0
  1344. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/re.js +223 -0
  1345. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/package.json +78 -0
  1346. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/preload.js +4 -0
  1347. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/range.bnf +17 -0
  1348. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/gtr.js +6 -0
  1349. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/intersects.js +9 -0
  1350. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/ltr.js +6 -0
  1351. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/max-satisfying.js +27 -0
  1352. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/min-satisfying.js +26 -0
  1353. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/min-version.js +63 -0
  1354. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/outside.js +82 -0
  1355. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/simplify.js +49 -0
  1356. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/subset.js +249 -0
  1357. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/to-comparators.js +10 -0
  1358. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/valid.js +13 -0
  1359. package/node_modules/@typescript-eslint/typescript-estree/package.json +95 -0
  1360. package/node_modules/@typescript-eslint/utils/LICENSE +21 -0
  1361. package/node_modules/@typescript-eslint/utils/README.md +12 -0
  1362. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts +47 -0
  1363. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js +44 -0
  1364. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts +71 -0
  1365. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js +48 -0
  1366. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts +83 -0
  1367. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js +101 -0
  1368. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts +5 -0
  1369. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js +21 -0
  1370. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts +31 -0
  1371. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js +59 -0
  1372. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts +16 -0
  1373. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js +51 -0
  1374. package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts +18 -0
  1375. package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js +21 -0
  1376. package/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts +4 -0
  1377. package/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js +20 -0
  1378. package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts +10 -0
  1379. package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js +15 -0
  1380. package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts +68 -0
  1381. package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js +108 -0
  1382. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts +9 -0
  1383. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js +2 -0
  1384. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts +32 -0
  1385. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js +54 -0
  1386. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts +8 -0
  1387. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js +33 -0
  1388. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts +14 -0
  1389. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js +46 -0
  1390. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts +22 -0
  1391. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js +41 -0
  1392. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts +6 -0
  1393. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js +22 -0
  1394. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts +12 -0
  1395. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js +21 -0
  1396. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserSeemsToBeTSESLint.d.ts +1 -0
  1397. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserSeemsToBeTSESLint.js +6 -0
  1398. package/node_modules/@typescript-eslint/utils/dist/index.d.ts +6 -0
  1399. package/node_modules/@typescript-eslint/utils/dist/index.js +45 -0
  1400. package/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts +387 -0
  1401. package/node_modules/@typescript-eslint/utils/dist/json-schema.js +8 -0
  1402. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts +8 -0
  1403. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js +3 -0
  1404. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts +291 -0
  1405. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js +3 -0
  1406. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts +7 -0
  1407. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js +13 -0
  1408. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts +255 -0
  1409. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js +13 -0
  1410. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts +94 -0
  1411. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js +3 -0
  1412. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts +1 -0
  1413. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js +2 -0
  1414. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts +63 -0
  1415. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js +3 -0
  1416. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts +614 -0
  1417. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js +2 -0
  1418. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts +183 -0
  1419. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js +11 -0
  1420. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts +42 -0
  1421. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js +43 -0
  1422. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts +354 -0
  1423. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js +8 -0
  1424. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/ESLintShared.d.ts +381 -0
  1425. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/ESLintShared.js +2 -0
  1426. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.d.ts +87 -0
  1427. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.js +19 -0
  1428. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.d.ts +72 -0
  1429. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.js +36 -0
  1430. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts +11 -0
  1431. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js +27 -0
  1432. package/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts +3 -0
  1433. package/node_modules/@typescript-eslint/utils/dist/ts-estree.js +9 -0
  1434. package/node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.d.ts +9 -0
  1435. package/node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.js +2 -0
  1436. package/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts +2 -0
  1437. package/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js +18 -0
  1438. package/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts +1 -0
  1439. package/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js +7 -0
  1440. package/node_modules/@typescript-eslint/utils/package.json +115 -0
  1441. package/node_modules/@typescript-eslint/visitor-keys/LICENSE +21 -0
  1442. package/node_modules/@typescript-eslint/visitor-keys/README.md +10 -0
  1443. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +2 -0
  1444. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +5 -0
  1445. package/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +2 -0
  1446. package/node_modules/@typescript-eslint/visitor-keys/dist/index.js +7 -0
  1447. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +2 -0
  1448. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +194 -0
  1449. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/LICENSE +201 -0
  1450. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/README.md +123 -0
  1451. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +187 -0
  1452. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +28 -0
  1453. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
  1454. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
  1455. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/lib/index.js +67 -0
  1456. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/lib/visitor-keys.js +118 -0
  1457. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/package.json +57 -0
  1458. package/node_modules/@typescript-eslint/visitor-keys/package.json +76 -0
  1459. package/node_modules/acorn/CHANGELOG.md +972 -0
  1460. package/node_modules/acorn/LICENSE +21 -0
  1461. package/node_modules/acorn/README.md +301 -0
  1462. package/node_modules/acorn/bin/acorn +4 -0
  1463. package/node_modules/acorn/dist/acorn.d.mts +883 -0
  1464. package/node_modules/acorn/dist/acorn.d.ts +883 -0
  1465. package/node_modules/acorn/dist/acorn.js +6295 -0
  1466. package/node_modules/acorn/dist/acorn.mjs +6266 -0
  1467. package/node_modules/acorn/dist/bin.js +90 -0
  1468. package/node_modules/acorn/package.json +50 -0
  1469. package/node_modules/acorn-jsx/LICENSE +19 -0
  1470. package/node_modules/acorn-jsx/README.md +40 -0
  1471. package/node_modules/acorn-jsx/index.d.ts +12 -0
  1472. package/node_modules/acorn-jsx/index.js +488 -0
  1473. package/node_modules/acorn-jsx/package.json +27 -0
  1474. package/node_modules/acorn-jsx/xhtml.js +255 -0
  1475. package/node_modules/ajv/.tonic_example.js +20 -0
  1476. package/node_modules/ajv/LICENSE +22 -0
  1477. package/node_modules/ajv/README.md +1505 -0
  1478. package/node_modules/ajv/dist/ajv.bundle.js +7201 -0
  1479. package/node_modules/ajv/dist/ajv.min.js +3 -0
  1480. package/node_modules/ajv/dist/ajv.min.js.map +1 -0
  1481. package/node_modules/ajv/lib/ajv.d.ts +402 -0
  1482. package/node_modules/ajv/lib/ajv.js +506 -0
  1483. package/node_modules/ajv/lib/cache.js +26 -0
  1484. package/node_modules/ajv/lib/compile/async.js +90 -0
  1485. package/node_modules/ajv/lib/compile/equal.js +5 -0
  1486. package/node_modules/ajv/lib/compile/error_classes.js +34 -0
  1487. package/node_modules/ajv/lib/compile/formats.js +142 -0
  1488. package/node_modules/ajv/lib/compile/index.js +389 -0
  1489. package/node_modules/ajv/lib/compile/resolve.js +270 -0
  1490. package/node_modules/ajv/lib/compile/rules.js +66 -0
  1491. package/node_modules/ajv/lib/compile/schema_obj.js +9 -0
  1492. package/node_modules/ajv/lib/compile/ucs2length.js +20 -0
  1493. package/node_modules/ajv/lib/compile/util.js +239 -0
  1494. package/node_modules/ajv/lib/data.js +49 -0
  1495. package/node_modules/ajv/lib/definition_schema.js +37 -0
  1496. package/node_modules/ajv/lib/dot/_limit.jst +113 -0
  1497. package/node_modules/ajv/lib/dot/_limitItems.jst +12 -0
  1498. package/node_modules/ajv/lib/dot/_limitLength.jst +12 -0
  1499. package/node_modules/ajv/lib/dot/_limitProperties.jst +12 -0
  1500. package/node_modules/ajv/lib/dot/allOf.jst +32 -0
  1501. package/node_modules/ajv/lib/dot/anyOf.jst +46 -0
  1502. package/node_modules/ajv/lib/dot/coerce.def +51 -0
  1503. package/node_modules/ajv/lib/dot/comment.jst +9 -0
  1504. package/node_modules/ajv/lib/dot/const.jst +11 -0
  1505. package/node_modules/ajv/lib/dot/contains.jst +55 -0
  1506. package/node_modules/ajv/lib/dot/custom.jst +191 -0
  1507. package/node_modules/ajv/lib/dot/defaults.def +47 -0
  1508. package/node_modules/ajv/lib/dot/definitions.def +203 -0
  1509. package/node_modules/ajv/lib/dot/dependencies.jst +79 -0
  1510. package/node_modules/ajv/lib/dot/enum.jst +30 -0
  1511. package/node_modules/ajv/lib/dot/errors.def +194 -0
  1512. package/node_modules/ajv/lib/dot/format.jst +106 -0
  1513. package/node_modules/ajv/lib/dot/if.jst +73 -0
  1514. package/node_modules/ajv/lib/dot/items.jst +98 -0
  1515. package/node_modules/ajv/lib/dot/missing.def +39 -0
  1516. package/node_modules/ajv/lib/dot/multipleOf.jst +22 -0
  1517. package/node_modules/ajv/lib/dot/not.jst +43 -0
  1518. package/node_modules/ajv/lib/dot/oneOf.jst +54 -0
  1519. package/node_modules/ajv/lib/dot/pattern.jst +25 -0
  1520. package/node_modules/ajv/lib/dot/properties.jst +245 -0
  1521. package/node_modules/ajv/lib/dot/propertyNames.jst +52 -0
  1522. package/node_modules/ajv/lib/dot/ref.jst +85 -0
  1523. package/node_modules/ajv/lib/dot/required.jst +108 -0
  1524. package/node_modules/ajv/lib/dot/uniqueItems.jst +62 -0
  1525. package/node_modules/ajv/lib/dot/validate.jst +276 -0
  1526. package/node_modules/ajv/lib/dotjs/README.md +3 -0
  1527. package/node_modules/ajv/lib/dotjs/_limit.js +163 -0
  1528. package/node_modules/ajv/lib/dotjs/_limitItems.js +80 -0
  1529. package/node_modules/ajv/lib/dotjs/_limitLength.js +85 -0
  1530. package/node_modules/ajv/lib/dotjs/_limitProperties.js +80 -0
  1531. package/node_modules/ajv/lib/dotjs/allOf.js +42 -0
  1532. package/node_modules/ajv/lib/dotjs/anyOf.js +73 -0
  1533. package/node_modules/ajv/lib/dotjs/comment.js +14 -0
  1534. package/node_modules/ajv/lib/dotjs/const.js +56 -0
  1535. package/node_modules/ajv/lib/dotjs/contains.js +81 -0
  1536. package/node_modules/ajv/lib/dotjs/custom.js +228 -0
  1537. package/node_modules/ajv/lib/dotjs/dependencies.js +168 -0
  1538. package/node_modules/ajv/lib/dotjs/enum.js +66 -0
  1539. package/node_modules/ajv/lib/dotjs/format.js +150 -0
  1540. package/node_modules/ajv/lib/dotjs/if.js +103 -0
  1541. package/node_modules/ajv/lib/dotjs/index.js +33 -0
  1542. package/node_modules/ajv/lib/dotjs/items.js +140 -0
  1543. package/node_modules/ajv/lib/dotjs/multipleOf.js +80 -0
  1544. package/node_modules/ajv/lib/dotjs/not.js +84 -0
  1545. package/node_modules/ajv/lib/dotjs/oneOf.js +73 -0
  1546. package/node_modules/ajv/lib/dotjs/pattern.js +85 -0
  1547. package/node_modules/ajv/lib/dotjs/properties.js +335 -0
  1548. package/node_modules/ajv/lib/dotjs/propertyNames.js +81 -0
  1549. package/node_modules/ajv/lib/dotjs/ref.js +124 -0
  1550. package/node_modules/ajv/lib/dotjs/required.js +270 -0
  1551. package/node_modules/ajv/lib/dotjs/uniqueItems.js +86 -0
  1552. package/node_modules/ajv/lib/dotjs/validate.js +482 -0
  1553. package/node_modules/ajv/lib/keyword.js +146 -0
  1554. package/node_modules/ajv/lib/refs/data.json +17 -0
  1555. package/node_modules/ajv/lib/refs/json-schema-draft-04.json +149 -0
  1556. package/node_modules/ajv/lib/refs/json-schema-draft-06.json +154 -0
  1557. package/node_modules/ajv/lib/refs/json-schema-draft-07.json +168 -0
  1558. package/node_modules/ajv/lib/refs/json-schema-secure.json +94 -0
  1559. package/node_modules/ajv/package.json +107 -0
  1560. package/node_modules/ajv/scripts/.eslintrc.yml +3 -0
  1561. package/node_modules/ajv/scripts/bundle.js +61 -0
  1562. package/node_modules/ajv/scripts/compile-dots.js +73 -0
  1563. package/node_modules/ajv/scripts/info +10 -0
  1564. package/node_modules/ajv/scripts/prepare-tests +12 -0
  1565. package/node_modules/ajv/scripts/publish-built-version +32 -0
  1566. package/node_modules/ajv/scripts/travis-gh-pages +23 -0
  1567. package/node_modules/ansi-styles/index.d.ts +345 -0
  1568. package/node_modules/ansi-styles/index.js +163 -0
  1569. package/node_modules/ansi-styles/license +9 -0
  1570. package/node_modules/ansi-styles/package.json +56 -0
  1571. package/node_modules/ansi-styles/readme.md +152 -0
  1572. package/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  1573. package/node_modules/balanced-match/LICENSE.md +21 -0
  1574. package/node_modules/balanced-match/README.md +97 -0
  1575. package/node_modules/balanced-match/index.js +62 -0
  1576. package/node_modules/balanced-match/package.json +48 -0
  1577. package/node_modules/callsites/index.d.ts +96 -0
  1578. package/node_modules/callsites/index.js +13 -0
  1579. package/node_modules/callsites/license +9 -0
  1580. package/node_modules/callsites/package.json +39 -0
  1581. package/node_modules/callsites/readme.md +48 -0
  1582. package/node_modules/chalk/index.d.ts +415 -0
  1583. package/node_modules/chalk/license +9 -0
  1584. package/node_modules/chalk/package.json +68 -0
  1585. package/node_modules/chalk/readme.md +341 -0
  1586. package/node_modules/chalk/source/index.js +229 -0
  1587. package/node_modules/chalk/source/templates.js +134 -0
  1588. package/node_modules/chalk/source/util.js +39 -0
  1589. package/node_modules/color-convert/LICENSE +21 -0
  1590. package/node_modules/color-convert/README.md +68 -0
  1591. package/node_modules/color-convert/conversions.js +839 -0
  1592. package/node_modules/color-convert/index.js +81 -0
  1593. package/node_modules/color-convert/package.json +48 -0
  1594. package/node_modules/color-convert/route.js +97 -0
  1595. package/node_modules/color-name/LICENSE +8 -0
  1596. package/node_modules/color-name/README.md +11 -0
  1597. package/node_modules/color-name/index.js +152 -0
  1598. package/node_modules/color-name/package.json +28 -0
  1599. package/node_modules/concat-map/.travis.yml +4 -0
  1600. package/node_modules/concat-map/LICENSE +18 -0
  1601. package/node_modules/concat-map/README.markdown +62 -0
  1602. package/node_modules/concat-map/example/map.js +6 -0
  1603. package/node_modules/concat-map/index.js +13 -0
  1604. package/node_modules/concat-map/package.json +43 -0
  1605. package/node_modules/concat-map/test/map.js +39 -0
  1606. package/node_modules/cross-spawn/LICENSE +21 -0
  1607. package/node_modules/cross-spawn/README.md +89 -0
  1608. package/node_modules/cross-spawn/index.js +39 -0
  1609. package/node_modules/cross-spawn/lib/enoent.js +59 -0
  1610. package/node_modules/cross-spawn/lib/parse.js +91 -0
  1611. package/node_modules/cross-spawn/lib/util/escape.js +47 -0
  1612. package/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  1613. package/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  1614. package/node_modules/cross-spawn/package.json +73 -0
  1615. package/node_modules/debug/LICENSE +20 -0
  1616. package/node_modules/debug/README.md +481 -0
  1617. package/node_modules/debug/package.json +64 -0
  1618. package/node_modules/debug/src/browser.js +272 -0
  1619. package/node_modules/debug/src/common.js +292 -0
  1620. package/node_modules/debug/src/index.js +10 -0
  1621. package/node_modules/debug/src/node.js +263 -0
  1622. package/node_modules/deep-is/.travis.yml +5 -0
  1623. package/node_modules/deep-is/LICENSE +22 -0
  1624. package/node_modules/deep-is/README.markdown +70 -0
  1625. package/node_modules/deep-is/example/cmp.js +11 -0
  1626. package/node_modules/deep-is/index.js +102 -0
  1627. package/node_modules/deep-is/package.json +58 -0
  1628. package/node_modules/deep-is/test/NaN.js +16 -0
  1629. package/node_modules/deep-is/test/cmp.js +23 -0
  1630. package/node_modules/deep-is/test/neg-vs-pos-0.js +15 -0
  1631. package/node_modules/eslint/LICENSE +19 -0
  1632. package/node_modules/eslint/README.md +354 -0
  1633. package/node_modules/eslint/bin/eslint.js +196 -0
  1634. package/node_modules/eslint/conf/default-cli-options.js +32 -0
  1635. package/node_modules/eslint/conf/ecma-version.js +16 -0
  1636. package/node_modules/eslint/conf/globals.js +169 -0
  1637. package/node_modules/eslint/conf/replacements.json +26 -0
  1638. package/node_modules/eslint/conf/rule-type-list.json +91 -0
  1639. package/node_modules/eslint/lib/api.js +50 -0
  1640. package/node_modules/eslint/lib/cli-engine/cli-engine.js +1109 -0
  1641. package/node_modules/eslint/lib/cli-engine/file-enumerator.js +541 -0
  1642. package/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +18 -0
  1643. package/node_modules/eslint/lib/cli-engine/formatters/html.js +359 -0
  1644. package/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +16 -0
  1645. package/node_modules/eslint/lib/cli-engine/formatters/json.js +13 -0
  1646. package/node_modules/eslint/lib/cli-engine/formatters/stylish.js +122 -0
  1647. package/node_modules/eslint/lib/cli-engine/hash.js +35 -0
  1648. package/node_modules/eslint/lib/cli-engine/index.js +7 -0
  1649. package/node_modules/eslint/lib/cli-engine/lint-result-cache.js +220 -0
  1650. package/node_modules/eslint/lib/cli-engine/load-rules.js +46 -0
  1651. package/node_modules/eslint/lib/cli.js +553 -0
  1652. package/node_modules/eslint/lib/config/config-loader.js +816 -0
  1653. package/node_modules/eslint/lib/config/config.js +674 -0
  1654. package/node_modules/eslint/lib/config/default-config.js +78 -0
  1655. package/node_modules/eslint/lib/config/flat-config-array.js +217 -0
  1656. package/node_modules/eslint/lib/config/flat-config-schema.js +598 -0
  1657. package/node_modules/eslint/lib/config-api.js +12 -0
  1658. package/node_modules/eslint/lib/eslint/eslint-helpers.js +1465 -0
  1659. package/node_modules/eslint/lib/eslint/eslint.js +1362 -0
  1660. package/node_modules/eslint/lib/eslint/index.js +9 -0
  1661. package/node_modules/eslint/lib/eslint/legacy-eslint.js +786 -0
  1662. package/node_modules/eslint/lib/eslint/worker.js +173 -0
  1663. package/node_modules/eslint/lib/languages/js/index.js +336 -0
  1664. package/node_modules/eslint/lib/languages/js/source-code/index.js +7 -0
  1665. package/node_modules/eslint/lib/languages/js/source-code/source-code.js +1364 -0
  1666. package/node_modules/eslint/lib/languages/js/source-code/token-store/backward-token-comment-cursor.js +61 -0
  1667. package/node_modules/eslint/lib/languages/js/source-code/token-store/backward-token-cursor.js +57 -0
  1668. package/node_modules/eslint/lib/languages/js/source-code/token-store/cursor.js +76 -0
  1669. package/node_modules/eslint/lib/languages/js/source-code/token-store/cursors.js +120 -0
  1670. package/node_modules/eslint/lib/languages/js/source-code/token-store/decorative-cursor.js +38 -0
  1671. package/node_modules/eslint/lib/languages/js/source-code/token-store/filter-cursor.js +42 -0
  1672. package/node_modules/eslint/lib/languages/js/source-code/token-store/forward-token-comment-cursor.js +65 -0
  1673. package/node_modules/eslint/lib/languages/js/source-code/token-store/forward-token-cursor.js +62 -0
  1674. package/node_modules/eslint/lib/languages/js/source-code/token-store/index.js +721 -0
  1675. package/node_modules/eslint/lib/languages/js/source-code/token-store/limit-cursor.js +39 -0
  1676. package/node_modules/eslint/lib/languages/js/source-code/token-store/padded-token-cursor.js +45 -0
  1677. package/node_modules/eslint/lib/languages/js/source-code/token-store/skip-cursor.js +41 -0
  1678. package/node_modules/eslint/lib/languages/js/source-code/token-store/utils.js +110 -0
  1679. package/node_modules/eslint/lib/languages/js/validate-language-options.js +196 -0
  1680. package/node_modules/eslint/lib/linter/apply-disable-directives.js +584 -0
  1681. package/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +828 -0
  1682. package/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +262 -0
  1683. package/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +2370 -0
  1684. package/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +332 -0
  1685. package/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +223 -0
  1686. package/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +374 -0
  1687. package/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +44 -0
  1688. package/node_modules/eslint/lib/linter/esquery.js +332 -0
  1689. package/node_modules/eslint/lib/linter/file-context.js +144 -0
  1690. package/node_modules/eslint/lib/linter/file-report.js +608 -0
  1691. package/node_modules/eslint/lib/linter/index.js +11 -0
  1692. package/node_modules/eslint/lib/linter/interpolate.js +50 -0
  1693. package/node_modules/eslint/lib/linter/linter.js +2676 -0
  1694. package/node_modules/eslint/lib/linter/rule-fixer.js +169 -0
  1695. package/node_modules/eslint/lib/linter/rules.js +71 -0
  1696. package/node_modules/eslint/lib/linter/source-code-fixer.js +154 -0
  1697. package/node_modules/eslint/lib/linter/source-code-traverser.js +333 -0
  1698. package/node_modules/eslint/lib/linter/source-code-visitor.js +81 -0
  1699. package/node_modules/eslint/lib/linter/timing.js +209 -0
  1700. package/node_modules/eslint/lib/linter/vfile.js +115 -0
  1701. package/node_modules/eslint/lib/options.js +536 -0
  1702. package/node_modules/eslint/lib/rule-tester/index.js +7 -0
  1703. package/node_modules/eslint/lib/rule-tester/rule-tester.js +1579 -0
  1704. package/node_modules/eslint/lib/rules/accessor-pairs.js +420 -0
  1705. package/node_modules/eslint/lib/rules/array-bracket-newline.js +291 -0
  1706. package/node_modules/eslint/lib/rules/array-bracket-spacing.js +301 -0
  1707. package/node_modules/eslint/lib/rules/array-callback-return.js +493 -0
  1708. package/node_modules/eslint/lib/rules/array-element-newline.js +374 -0
  1709. package/node_modules/eslint/lib/rules/arrow-body-style.js +418 -0
  1710. package/node_modules/eslint/lib/rules/arrow-parens.js +237 -0
  1711. package/node_modules/eslint/lib/rules/arrow-spacing.js +188 -0
  1712. package/node_modules/eslint/lib/rules/block-scoped-var.js +137 -0
  1713. package/node_modules/eslint/lib/rules/block-spacing.js +202 -0
  1714. package/node_modules/eslint/lib/rules/brace-style.js +278 -0
  1715. package/node_modules/eslint/lib/rules/callback-return.js +216 -0
  1716. package/node_modules/eslint/lib/rules/camelcase.js +422 -0
  1717. package/node_modules/eslint/lib/rules/capitalized-comments.js +325 -0
  1718. package/node_modules/eslint/lib/rules/class-methods-use-this.js +250 -0
  1719. package/node_modules/eslint/lib/rules/comma-dangle.js +424 -0
  1720. package/node_modules/eslint/lib/rules/comma-spacing.js +208 -0
  1721. package/node_modules/eslint/lib/rules/comma-style.js +391 -0
  1722. package/node_modules/eslint/lib/rules/complexity.js +201 -0
  1723. package/node_modules/eslint/lib/rules/computed-property-spacing.js +251 -0
  1724. package/node_modules/eslint/lib/rules/consistent-return.js +221 -0
  1725. package/node_modules/eslint/lib/rules/consistent-this.js +179 -0
  1726. package/node_modules/eslint/lib/rules/constructor-super.js +453 -0
  1727. package/node_modules/eslint/lib/rules/curly.js +425 -0
  1728. package/node_modules/eslint/lib/rules/default-case-last.js +51 -0
  1729. package/node_modules/eslint/lib/rules/default-case.js +103 -0
  1730. package/node_modules/eslint/lib/rules/default-param-last.js +78 -0
  1731. package/node_modules/eslint/lib/rules/dot-location.js +138 -0
  1732. package/node_modules/eslint/lib/rules/dot-notation.js +216 -0
  1733. package/node_modules/eslint/lib/rules/eol-last.js +135 -0
  1734. package/node_modules/eslint/lib/rules/eqeqeq.js +210 -0
  1735. package/node_modules/eslint/lib/rules/for-direction.js +168 -0
  1736. package/node_modules/eslint/lib/rules/func-call-spacing.js +281 -0
  1737. package/node_modules/eslint/lib/rules/func-name-matching.js +338 -0
  1738. package/node_modules/eslint/lib/rules/func-names.js +192 -0
  1739. package/node_modules/eslint/lib/rules/func-style.js +221 -0
  1740. package/node_modules/eslint/lib/rules/function-call-argument-newline.js +166 -0
  1741. package/node_modules/eslint/lib/rules/function-paren-newline.js +368 -0
  1742. package/node_modules/eslint/lib/rules/generator-star-spacing.js +246 -0
  1743. package/node_modules/eslint/lib/rules/getter-return.js +242 -0
  1744. package/node_modules/eslint/lib/rules/global-require.js +117 -0
  1745. package/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +268 -0
  1746. package/node_modules/eslint/lib/rules/guard-for-in.js +85 -0
  1747. package/node_modules/eslint/lib/rules/handle-callback-err.js +122 -0
  1748. package/node_modules/eslint/lib/rules/id-blacklist.js +241 -0
  1749. package/node_modules/eslint/lib/rules/id-denylist.js +223 -0
  1750. package/node_modules/eslint/lib/rules/id-length.js +217 -0
  1751. package/node_modules/eslint/lib/rules/id-match.js +363 -0
  1752. package/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +125 -0
  1753. package/node_modules/eslint/lib/rules/indent-legacy.js +1369 -0
  1754. package/node_modules/eslint/lib/rules/indent.js +2334 -0
  1755. package/node_modules/eslint/lib/rules/index.js +332 -0
  1756. package/node_modules/eslint/lib/rules/init-declarations.js +172 -0
  1757. package/node_modules/eslint/lib/rules/jsx-quotes.js +128 -0
  1758. package/node_modules/eslint/lib/rules/key-spacing.js +822 -0
  1759. package/node_modules/eslint/lib/rules/keyword-spacing.js +701 -0
  1760. package/node_modules/eslint/lib/rules/line-comment-position.js +157 -0
  1761. package/node_modules/eslint/lib/rules/linebreak-style.js +135 -0
  1762. package/node_modules/eslint/lib/rules/lines-around-comment.js +581 -0
  1763. package/node_modules/eslint/lib/rules/lines-around-directive.js +249 -0
  1764. package/node_modules/eslint/lib/rules/lines-between-class-members.js +358 -0
  1765. package/node_modules/eslint/lib/rules/logical-assignment-operators.js +688 -0
  1766. package/node_modules/eslint/lib/rules/max-classes-per-file.js +90 -0
  1767. package/node_modules/eslint/lib/rules/max-depth.js +159 -0
  1768. package/node_modules/eslint/lib/rules/max-len.js +497 -0
  1769. package/node_modules/eslint/lib/rules/max-lines-per-function.js +238 -0
  1770. package/node_modules/eslint/lib/rules/max-lines.js +189 -0
  1771. package/node_modules/eslint/lib/rules/max-nested-callbacks.js +115 -0
  1772. package/node_modules/eslint/lib/rules/max-params.js +129 -0
  1773. package/node_modules/eslint/lib/rules/max-statements-per-line.js +224 -0
  1774. package/node_modules/eslint/lib/rules/max-statements.js +188 -0
  1775. package/node_modules/eslint/lib/rules/multiline-comment-style.js +652 -0
  1776. package/node_modules/eslint/lib/rules/multiline-ternary.js +257 -0
  1777. package/node_modules/eslint/lib/rules/new-cap.js +277 -0
  1778. package/node_modules/eslint/lib/rules/new-parens.js +120 -0
  1779. package/node_modules/eslint/lib/rules/newline-after-var.js +307 -0
  1780. package/node_modules/eslint/lib/rules/newline-before-return.js +242 -0
  1781. package/node_modules/eslint/lib/rules/newline-per-chained-call.js +159 -0
  1782. package/node_modules/eslint/lib/rules/no-alert.js +149 -0
  1783. package/node_modules/eslint/lib/rules/no-array-constructor.js +195 -0
  1784. package/node_modules/eslint/lib/rules/no-async-promise-executor.js +45 -0
  1785. package/node_modules/eslint/lib/rules/no-await-in-loop.js +115 -0
  1786. package/node_modules/eslint/lib/rules/no-bitwise.js +145 -0
  1787. package/node_modules/eslint/lib/rules/no-buffer-constructor.js +74 -0
  1788. package/node_modules/eslint/lib/rules/no-caller.js +52 -0
  1789. package/node_modules/eslint/lib/rules/no-case-declarations.js +80 -0
  1790. package/node_modules/eslint/lib/rules/no-catch-shadow.js +96 -0
  1791. package/node_modules/eslint/lib/rules/no-class-assign.js +66 -0
  1792. package/node_modules/eslint/lib/rules/no-compare-neg-zero.js +74 -0
  1793. package/node_modules/eslint/lib/rules/no-cond-assign.js +175 -0
  1794. package/node_modules/eslint/lib/rules/no-confusing-arrow.js +127 -0
  1795. package/node_modules/eslint/lib/rules/no-console.js +221 -0
  1796. package/node_modules/eslint/lib/rules/no-const-assign.js +73 -0
  1797. package/node_modules/eslint/lib/rules/no-constant-binary-expression.js +603 -0
  1798. package/node_modules/eslint/lib/rules/no-constant-condition.js +177 -0
  1799. package/node_modules/eslint/lib/rules/no-constructor-return.js +62 -0
  1800. package/node_modules/eslint/lib/rules/no-continue.js +38 -0
  1801. package/node_modules/eslint/lib/rules/no-control-regex.js +142 -0
  1802. package/node_modules/eslint/lib/rules/no-debugger.js +41 -0
  1803. package/node_modules/eslint/lib/rules/no-delete-var.js +42 -0
  1804. package/node_modules/eslint/lib/rules/no-div-regex.js +60 -0
  1805. package/node_modules/eslint/lib/rules/no-dupe-args.js +92 -0
  1806. package/node_modules/eslint/lib/rules/no-dupe-class-members.js +117 -0
  1807. package/node_modules/eslint/lib/rules/no-dupe-else-if.js +145 -0
  1808. package/node_modules/eslint/lib/rules/no-dupe-keys.js +165 -0
  1809. package/node_modules/eslint/lib/rules/no-duplicate-case.js +78 -0
  1810. package/node_modules/eslint/lib/rules/no-duplicate-imports.js +368 -0
  1811. package/node_modules/eslint/lib/rules/no-else-return.js +450 -0
  1812. package/node_modules/eslint/lib/rules/no-empty-character-class.js +83 -0
  1813. package/node_modules/eslint/lib/rules/no-empty-function.js +236 -0
  1814. package/node_modules/eslint/lib/rules/no-empty-pattern.js +85 -0
  1815. package/node_modules/eslint/lib/rules/no-empty-static-block.js +73 -0
  1816. package/node_modules/eslint/lib/rules/no-empty.js +153 -0
  1817. package/node_modules/eslint/lib/rules/no-eq-null.js +51 -0
  1818. package/node_modules/eslint/lib/rules/no-eval.js +295 -0
  1819. package/node_modules/eslint/lib/rules/no-ex-assign.js +57 -0
  1820. package/node_modules/eslint/lib/rules/no-extend-native.js +180 -0
  1821. package/node_modules/eslint/lib/rules/no-extra-bind.js +224 -0
  1822. package/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +420 -0
  1823. package/node_modules/eslint/lib/rules/no-extra-label.js +169 -0
  1824. package/node_modules/eslint/lib/rules/no-extra-parens.js +1669 -0
  1825. package/node_modules/eslint/lib/rules/no-extra-semi.js +167 -0
  1826. package/node_modules/eslint/lib/rules/no-fallthrough.js +260 -0
  1827. package/node_modules/eslint/lib/rules/no-floating-decimal.js +99 -0
  1828. package/node_modules/eslint/lib/rules/no-func-assign.js +77 -0
  1829. package/node_modules/eslint/lib/rules/no-global-assign.js +101 -0
  1830. package/node_modules/eslint/lib/rules/no-implicit-coercion.js +468 -0
  1831. package/node_modules/eslint/lib/rules/no-implicit-globals.js +187 -0
  1832. package/node_modules/eslint/lib/rules/no-implied-eval.js +170 -0
  1833. package/node_modules/eslint/lib/rules/no-import-assign.js +227 -0
  1834. package/node_modules/eslint/lib/rules/no-inline-comments.js +115 -0
  1835. package/node_modules/eslint/lib/rules/no-inner-declarations.js +147 -0
  1836. package/node_modules/eslint/lib/rules/no-invalid-regexp.js +243 -0
  1837. package/node_modules/eslint/lib/rules/no-invalid-this.js +178 -0
  1838. package/node_modules/eslint/lib/rules/no-irregular-whitespace.js +292 -0
  1839. package/node_modules/eslint/lib/rules/no-iterator.js +48 -0
  1840. package/node_modules/eslint/lib/rules/no-label-var.js +78 -0
  1841. package/node_modules/eslint/lib/rules/no-labels.js +156 -0
  1842. package/node_modules/eslint/lib/rules/no-lone-blocks.js +140 -0
  1843. package/node_modules/eslint/lib/rules/no-lonely-if.js +126 -0
  1844. package/node_modules/eslint/lib/rules/no-loop-func.js +267 -0
  1845. package/node_modules/eslint/lib/rules/no-loss-of-precision.js +249 -0
  1846. package/node_modules/eslint/lib/rules/no-magic-numbers.js +365 -0
  1847. package/node_modules/eslint/lib/rules/no-misleading-character-class.js +595 -0
  1848. package/node_modules/eslint/lib/rules/no-mixed-operators.js +253 -0
  1849. package/node_modules/eslint/lib/rules/no-mixed-requires.js +267 -0
  1850. package/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +148 -0
  1851. package/node_modules/eslint/lib/rules/no-multi-assign.js +66 -0
  1852. package/node_modules/eslint/lib/rules/no-multi-spaces.js +179 -0
  1853. package/node_modules/eslint/lib/rules/no-multi-str.js +67 -0
  1854. package/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +210 -0
  1855. package/node_modules/eslint/lib/rules/no-native-reassign.js +114 -0
  1856. package/node_modules/eslint/lib/rules/no-negated-condition.js +100 -0
  1857. package/node_modules/eslint/lib/rules/no-negated-in-lhs.js +59 -0
  1858. package/node_modules/eslint/lib/rules/no-nested-ternary.js +46 -0
  1859. package/node_modules/eslint/lib/rules/no-new-func.js +96 -0
  1860. package/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +70 -0
  1861. package/node_modules/eslint/lib/rules/no-new-object.js +76 -0
  1862. package/node_modules/eslint/lib/rules/no-new-require.js +67 -0
  1863. package/node_modules/eslint/lib/rules/no-new-symbol.js +74 -0
  1864. package/node_modules/eslint/lib/rules/no-new-wrappers.js +62 -0
  1865. package/node_modules/eslint/lib/rules/no-new.js +42 -0
  1866. package/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +176 -0
  1867. package/node_modules/eslint/lib/rules/no-obj-calls.js +99 -0
  1868. package/node_modules/eslint/lib/rules/no-object-constructor.js +124 -0
  1869. package/node_modules/eslint/lib/rules/no-octal-escape.js +53 -0
  1870. package/node_modules/eslint/lib/rules/no-octal.js +42 -0
  1871. package/node_modules/eslint/lib/rules/no-param-reassign.js +248 -0
  1872. package/node_modules/eslint/lib/rules/no-path-concat.js +79 -0
  1873. package/node_modules/eslint/lib/rules/no-plusplus.js +102 -0
  1874. package/node_modules/eslint/lib/rules/no-process-env.js +68 -0
  1875. package/node_modules/eslint/lib/rules/no-process-exit.js +67 -0
  1876. package/node_modules/eslint/lib/rules/no-promise-executor-return.js +264 -0
  1877. package/node_modules/eslint/lib/rules/no-proto.js +45 -0
  1878. package/node_modules/eslint/lib/rules/no-prototype-builtins.js +181 -0
  1879. package/node_modules/eslint/lib/rules/no-redeclare.js +173 -0
  1880. package/node_modules/eslint/lib/rules/no-regex-spaces.js +219 -0
  1881. package/node_modules/eslint/lib/rules/no-restricted-exports.js +227 -0
  1882. package/node_modules/eslint/lib/rules/no-restricted-globals.js +266 -0
  1883. package/node_modules/eslint/lib/rules/no-restricted-imports.js +850 -0
  1884. package/node_modules/eslint/lib/rules/no-restricted-modules.js +249 -0
  1885. package/node_modules/eslint/lib/rules/no-restricted-properties.js +233 -0
  1886. package/node_modules/eslint/lib/rules/no-restricted-syntax.js +74 -0
  1887. package/node_modules/eslint/lib/rules/no-return-assign.js +87 -0
  1888. package/node_modules/eslint/lib/rules/no-return-await.js +162 -0
  1889. package/node_modules/eslint/lib/rules/no-script-url.js +68 -0
  1890. package/node_modules/eslint/lib/rules/no-self-assign.js +186 -0
  1891. package/node_modules/eslint/lib/rules/no-self-compare.js +77 -0
  1892. package/node_modules/eslint/lib/rules/no-sequences.js +158 -0
  1893. package/node_modules/eslint/lib/rules/no-setter-return.js +224 -0
  1894. package/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +113 -0
  1895. package/node_modules/eslint/lib/rules/no-shadow.js +624 -0
  1896. package/node_modules/eslint/lib/rules/no-spaced-func.js +105 -0
  1897. package/node_modules/eslint/lib/rules/no-sparse-arrays.js +68 -0
  1898. package/node_modules/eslint/lib/rules/no-sync.js +81 -0
  1899. package/node_modules/eslint/lib/rules/no-tabs.js +110 -0
  1900. package/node_modules/eslint/lib/rules/no-template-curly-in-string.js +45 -0
  1901. package/node_modules/eslint/lib/rules/no-ternary.js +38 -0
  1902. package/node_modules/eslint/lib/rules/no-this-before-super.js +365 -0
  1903. package/node_modules/eslint/lib/rules/no-throw-literal.js +46 -0
  1904. package/node_modules/eslint/lib/rules/no-trailing-spaces.js +227 -0
  1905. package/node_modules/eslint/lib/rules/no-unassigned-vars.js +80 -0
  1906. package/node_modules/eslint/lib/rules/no-undef-init.js +101 -0
  1907. package/node_modules/eslint/lib/rules/no-undef.js +84 -0
  1908. package/node_modules/eslint/lib/rules/no-undefined.js +85 -0
  1909. package/node_modules/eslint/lib/rules/no-underscore-dangle.js +383 -0
  1910. package/node_modules/eslint/lib/rules/no-unexpected-multiline.js +130 -0
  1911. package/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +360 -0
  1912. package/node_modules/eslint/lib/rules/no-unneeded-ternary.js +232 -0
  1913. package/node_modules/eslint/lib/rules/no-unreachable-loop.js +190 -0
  1914. package/node_modules/eslint/lib/rules/no-unreachable.js +300 -0
  1915. package/node_modules/eslint/lib/rules/no-unsafe-finally.js +119 -0
  1916. package/node_modules/eslint/lib/rules/no-unsafe-negation.js +152 -0
  1917. package/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +221 -0
  1918. package/node_modules/eslint/lib/rules/no-unused-expressions.js +227 -0
  1919. package/node_modules/eslint/lib/rules/no-unused-labels.js +158 -0
  1920. package/node_modules/eslint/lib/rules/no-unused-private-class-members.js +219 -0
  1921. package/node_modules/eslint/lib/rules/no-unused-vars.js +1739 -0
  1922. package/node_modules/eslint/lib/rules/no-use-before-define.js +446 -0
  1923. package/node_modules/eslint/lib/rules/no-useless-assignment.js +654 -0
  1924. package/node_modules/eslint/lib/rules/no-useless-backreference.js +263 -0
  1925. package/node_modules/eslint/lib/rules/no-useless-call.js +95 -0
  1926. package/node_modules/eslint/lib/rules/no-useless-catch.js +57 -0
  1927. package/node_modules/eslint/lib/rules/no-useless-computed-key.js +204 -0
  1928. package/node_modules/eslint/lib/rules/no-useless-concat.js +121 -0
  1929. package/node_modules/eslint/lib/rules/no-useless-constructor.js +252 -0
  1930. package/node_modules/eslint/lib/rules/no-useless-escape.js +406 -0
  1931. package/node_modules/eslint/lib/rules/no-useless-rename.js +202 -0
  1932. package/node_modules/eslint/lib/rules/no-useless-return.js +401 -0
  1933. package/node_modules/eslint/lib/rules/no-var.js +367 -0
  1934. package/node_modules/eslint/lib/rules/no-void.js +69 -0
  1935. package/node_modules/eslint/lib/rules/no-warning-comments.js +209 -0
  1936. package/node_modules/eslint/lib/rules/no-whitespace-before-property.js +150 -0
  1937. package/node_modules/eslint/lib/rules/no-with.js +37 -0
  1938. package/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +164 -0
  1939. package/node_modules/eslint/lib/rules/object-curly-newline.js +383 -0
  1940. package/node_modules/eslint/lib/rules/object-curly-spacing.js +375 -0
  1941. package/node_modules/eslint/lib/rules/object-property-newline.js +151 -0
  1942. package/node_modules/eslint/lib/rules/object-shorthand.js +652 -0
  1943. package/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +117 -0
  1944. package/node_modules/eslint/lib/rules/one-var.js +717 -0
  1945. package/node_modules/eslint/lib/rules/operator-assignment.js +270 -0
  1946. package/node_modules/eslint/lib/rules/operator-linebreak.js +315 -0
  1947. package/node_modules/eslint/lib/rules/padded-blocks.js +366 -0
  1948. package/node_modules/eslint/lib/rules/padding-line-between-statements.js +612 -0
  1949. package/node_modules/eslint/lib/rules/prefer-arrow-callback.js +437 -0
  1950. package/node_modules/eslint/lib/rules/prefer-const.js +546 -0
  1951. package/node_modules/eslint/lib/rules/prefer-destructuring.js +332 -0
  1952. package/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +235 -0
  1953. package/node_modules/eslint/lib/rules/prefer-named-capture-group.js +197 -0
  1954. package/node_modules/eslint/lib/rules/prefer-numeric-literals.js +157 -0
  1955. package/node_modules/eslint/lib/rules/prefer-object-has-own.js +148 -0
  1956. package/node_modules/eslint/lib/rules/prefer-object-spread.js +319 -0
  1957. package/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +154 -0
  1958. package/node_modules/eslint/lib/rules/prefer-reflect.js +150 -0
  1959. package/node_modules/eslint/lib/rules/prefer-regex-literals.js +605 -0
  1960. package/node_modules/eslint/lib/rules/prefer-rest-params.js +117 -0
  1961. package/node_modules/eslint/lib/rules/prefer-spread.js +91 -0
  1962. package/node_modules/eslint/lib/rules/prefer-template.js +347 -0
  1963. package/node_modules/eslint/lib/rules/preserve-caught-error.js +535 -0
  1964. package/node_modules/eslint/lib/rules/quote-props.js +394 -0
  1965. package/node_modules/eslint/lib/rules/quotes.js +416 -0
  1966. package/node_modules/eslint/lib/rules/radix.js +216 -0
  1967. package/node_modules/eslint/lib/rules/require-atomic-updates.js +365 -0
  1968. package/node_modules/eslint/lib/rules/require-await.js +184 -0
  1969. package/node_modules/eslint/lib/rules/require-unicode-regexp.js +317 -0
  1970. package/node_modules/eslint/lib/rules/require-yield.js +76 -0
  1971. package/node_modules/eslint/lib/rules/rest-spread-spacing.js +153 -0
  1972. package/node_modules/eslint/lib/rules/semi-spacing.js +297 -0
  1973. package/node_modules/eslint/lib/rules/semi-style.js +218 -0
  1974. package/node_modules/eslint/lib/rules/semi.js +476 -0
  1975. package/node_modules/eslint/lib/rules/sort-imports.js +319 -0
  1976. package/node_modules/eslint/lib/rules/sort-keys.js +268 -0
  1977. package/node_modules/eslint/lib/rules/sort-vars.js +140 -0
  1978. package/node_modules/eslint/lib/rules/space-before-blocks.js +232 -0
  1979. package/node_modules/eslint/lib/rules/space-before-function-paren.js +205 -0
  1980. package/node_modules/eslint/lib/rules/space-in-parens.js +374 -0
  1981. package/node_modules/eslint/lib/rules/space-infix-ops.js +252 -0
  1982. package/node_modules/eslint/lib/rules/space-unary-ops.js +400 -0
  1983. package/node_modules/eslint/lib/rules/spaced-comment.js +447 -0
  1984. package/node_modules/eslint/lib/rules/strict.js +314 -0
  1985. package/node_modules/eslint/lib/rules/switch-colon-spacing.js +158 -0
  1986. package/node_modules/eslint/lib/rules/symbol-description.js +70 -0
  1987. package/node_modules/eslint/lib/rules/template-curly-spacing.js +168 -0
  1988. package/node_modules/eslint/lib/rules/template-tag-spacing.js +121 -0
  1989. package/node_modules/eslint/lib/rules/unicode-bom.js +73 -0
  1990. package/node_modules/eslint/lib/rules/use-isnan.js +268 -0
  1991. package/node_modules/eslint/lib/rules/utils/ast-utils.js +2733 -0
  1992. package/node_modules/eslint/lib/rules/utils/char-source.js +247 -0
  1993. package/node_modules/eslint/lib/rules/utils/fix-tracker.js +125 -0
  1994. package/node_modules/eslint/lib/rules/utils/keywords.js +67 -0
  1995. package/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +118 -0
  1996. package/node_modules/eslint/lib/rules/utils/regular-expressions.js +58 -0
  1997. package/node_modules/eslint/lib/rules/utils/unicode/index.js +16 -0
  1998. package/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +13 -0
  1999. package/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +13 -0
  2000. package/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +13 -0
  2001. package/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +14 -0
  2002. package/node_modules/eslint/lib/rules/valid-typeof.js +171 -0
  2003. package/node_modules/eslint/lib/rules/vars-on-top.js +165 -0
  2004. package/node_modules/eslint/lib/rules/wrap-iife.js +238 -0
  2005. package/node_modules/eslint/lib/rules/wrap-regex.js +91 -0
  2006. package/node_modules/eslint/lib/rules/yield-star-spacing.js +159 -0
  2007. package/node_modules/eslint/lib/rules/yoda.js +362 -0
  2008. package/node_modules/eslint/lib/services/parser-service.js +65 -0
  2009. package/node_modules/eslint/lib/services/processor-service.js +101 -0
  2010. package/node_modules/eslint/lib/services/suppressions-service.js +302 -0
  2011. package/node_modules/eslint/lib/services/warning-service.js +111 -0
  2012. package/node_modules/eslint/lib/shared/ajv.js +34 -0
  2013. package/node_modules/eslint/lib/shared/assert.js +21 -0
  2014. package/node_modules/eslint/lib/shared/ast-utils.js +30 -0
  2015. package/node_modules/eslint/lib/shared/deep-merge-arrays.js +62 -0
  2016. package/node_modules/eslint/lib/shared/directives.js +16 -0
  2017. package/node_modules/eslint/lib/shared/flags.js +108 -0
  2018. package/node_modules/eslint/lib/shared/logging.js +38 -0
  2019. package/node_modules/eslint/lib/shared/naming.js +109 -0
  2020. package/node_modules/eslint/lib/shared/option-utils.js +63 -0
  2021. package/node_modules/eslint/lib/shared/relative-module-resolver.js +28 -0
  2022. package/node_modules/eslint/lib/shared/runtime-info.js +177 -0
  2023. package/node_modules/eslint/lib/shared/serialization.js +78 -0
  2024. package/node_modules/eslint/lib/shared/severity.js +49 -0
  2025. package/node_modules/eslint/lib/shared/stats.js +30 -0
  2026. package/node_modules/eslint/lib/shared/string-utils.js +58 -0
  2027. package/node_modules/eslint/lib/shared/text-table.js +68 -0
  2028. package/node_modules/eslint/lib/shared/translate-cli-options.js +281 -0
  2029. package/node_modules/eslint/lib/shared/traverser.js +202 -0
  2030. package/node_modules/eslint/lib/types/config-api.d.ts +12 -0
  2031. package/node_modules/eslint/lib/types/index.d.ts +1915 -0
  2032. package/node_modules/eslint/lib/types/rules.d.ts +5589 -0
  2033. package/node_modules/eslint/lib/types/universal.d.ts +6 -0
  2034. package/node_modules/eslint/lib/types/use-at-your-own-risk.d.ts +87 -0
  2035. package/node_modules/eslint/lib/universal.js +10 -0
  2036. package/node_modules/eslint/lib/unsupported-api.js +29 -0
  2037. package/node_modules/eslint/messages/all-files-ignored.js +16 -0
  2038. package/node_modules/eslint/messages/all-matched-files-ignored.js +21 -0
  2039. package/node_modules/eslint/messages/config-file-missing.js +16 -0
  2040. package/node_modules/eslint/messages/config-plugin-missing.js +14 -0
  2041. package/node_modules/eslint/messages/config-serialize-function.js +30 -0
  2042. package/node_modules/eslint/messages/eslintrc-incompat.js +117 -0
  2043. package/node_modules/eslint/messages/eslintrc-plugins.js +27 -0
  2044. package/node_modules/eslint/messages/extend-config-missing.js +13 -0
  2045. package/node_modules/eslint/messages/failed-to-read-json.js +11 -0
  2046. package/node_modules/eslint/messages/file-not-found.js +10 -0
  2047. package/node_modules/eslint/messages/invalid-rule-options.js +17 -0
  2048. package/node_modules/eslint/messages/invalid-rule-severity.js +13 -0
  2049. package/node_modules/eslint/messages/no-config-found.js +15 -0
  2050. package/node_modules/eslint/messages/plugin-conflict.js +22 -0
  2051. package/node_modules/eslint/messages/plugin-invalid.js +16 -0
  2052. package/node_modules/eslint/messages/plugin-missing.js +19 -0
  2053. package/node_modules/eslint/messages/print-config-with-directory-path.js +8 -0
  2054. package/node_modules/eslint/messages/shared.js +23 -0
  2055. package/node_modules/eslint/messages/whitespace-found.js +11 -0
  2056. package/node_modules/eslint/node_modules/brace-expansion/LICENSE +21 -0
  2057. package/node_modules/eslint/node_modules/brace-expansion/README.md +129 -0
  2058. package/node_modules/eslint/node_modules/brace-expansion/index.js +203 -0
  2059. package/node_modules/eslint/node_modules/brace-expansion/package.json +50 -0
  2060. package/node_modules/eslint/node_modules/escape-string-regexp/index.d.ts +18 -0
  2061. package/node_modules/eslint/node_modules/escape-string-regexp/index.js +13 -0
  2062. package/node_modules/eslint/node_modules/escape-string-regexp/license +9 -0
  2063. package/node_modules/eslint/node_modules/escape-string-regexp/package.json +38 -0
  2064. package/node_modules/eslint/node_modules/escape-string-regexp/readme.md +34 -0
  2065. package/node_modules/eslint/node_modules/find-up/index.d.ts +138 -0
  2066. package/node_modules/eslint/node_modules/find-up/index.js +89 -0
  2067. package/node_modules/eslint/node_modules/find-up/license +9 -0
  2068. package/node_modules/eslint/node_modules/find-up/package.json +54 -0
  2069. package/node_modules/eslint/node_modules/find-up/readme.md +151 -0
  2070. package/node_modules/eslint/node_modules/glob-parent/LICENSE +15 -0
  2071. package/node_modules/eslint/node_modules/glob-parent/README.md +134 -0
  2072. package/node_modules/eslint/node_modules/glob-parent/index.js +75 -0
  2073. package/node_modules/eslint/node_modules/glob-parent/package.json +54 -0
  2074. package/node_modules/eslint/node_modules/locate-path/index.d.ts +83 -0
  2075. package/node_modules/eslint/node_modules/locate-path/index.js +68 -0
  2076. package/node_modules/eslint/node_modules/locate-path/license +9 -0
  2077. package/node_modules/eslint/node_modules/locate-path/package.json +46 -0
  2078. package/node_modules/eslint/node_modules/locate-path/readme.md +125 -0
  2079. package/node_modules/eslint/node_modules/minimatch/LICENSE +15 -0
  2080. package/node_modules/eslint/node_modules/minimatch/README.md +267 -0
  2081. package/node_modules/eslint/node_modules/minimatch/minimatch.js +1005 -0
  2082. package/node_modules/eslint/node_modules/minimatch/package.json +33 -0
  2083. package/node_modules/eslint/node_modules/p-locate/index.d.ts +53 -0
  2084. package/node_modules/eslint/node_modules/p-locate/index.js +50 -0
  2085. package/node_modules/eslint/node_modules/p-locate/license +9 -0
  2086. package/node_modules/eslint/node_modules/p-locate/package.json +54 -0
  2087. package/node_modules/eslint/node_modules/p-locate/readme.md +93 -0
  2088. package/node_modules/eslint/package.json +226 -0
  2089. package/node_modules/eslint-scope/LICENSE +22 -0
  2090. package/node_modules/eslint-scope/README.md +198 -0
  2091. package/node_modules/eslint-scope/dist/eslint-scope.cjs +2339 -0
  2092. package/node_modules/eslint-scope/lib/assert.js +17 -0
  2093. package/node_modules/eslint-scope/lib/definition.js +85 -0
  2094. package/node_modules/eslint-scope/lib/index.js +170 -0
  2095. package/node_modules/eslint-scope/lib/pattern-visitor.js +154 -0
  2096. package/node_modules/eslint-scope/lib/reference.js +166 -0
  2097. package/node_modules/eslint-scope/lib/referencer.js +708 -0
  2098. package/node_modules/eslint-scope/lib/scope-manager.js +253 -0
  2099. package/node_modules/eslint-scope/lib/scope.js +793 -0
  2100. package/node_modules/eslint-scope/lib/variable.js +87 -0
  2101. package/node_modules/eslint-scope/lib/version.js +3 -0
  2102. package/node_modules/eslint-scope/package.json +64 -0
  2103. package/node_modules/eslint-visitor-keys/LICENSE +201 -0
  2104. package/node_modules/eslint-visitor-keys/README.md +121 -0
  2105. package/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +396 -0
  2106. package/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +28 -0
  2107. package/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
  2108. package/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
  2109. package/node_modules/eslint-visitor-keys/lib/index.js +67 -0
  2110. package/node_modules/eslint-visitor-keys/lib/visitor-keys.js +327 -0
  2111. package/node_modules/eslint-visitor-keys/package.json +70 -0
  2112. package/node_modules/espree/LICENSE +25 -0
  2113. package/node_modules/espree/README.md +262 -0
  2114. package/node_modules/espree/dist/espree.cjs +940 -0
  2115. package/node_modules/espree/espree.js +174 -0
  2116. package/node_modules/espree/lib/espree.js +349 -0
  2117. package/node_modules/espree/lib/features.js +27 -0
  2118. package/node_modules/espree/lib/options.js +125 -0
  2119. package/node_modules/espree/lib/token-translator.js +263 -0
  2120. package/node_modules/espree/lib/version.js +3 -0
  2121. package/node_modules/espree/package.json +77 -0
  2122. package/node_modules/esquery/README.md +27 -0
  2123. package/node_modules/esquery/dist/esquery.esm.js +4418 -0
  2124. package/node_modules/esquery/dist/esquery.esm.min.js +2 -0
  2125. package/node_modules/esquery/dist/esquery.esm.min.js.map +1 -0
  2126. package/node_modules/esquery/dist/esquery.js +4426 -0
  2127. package/node_modules/esquery/dist/esquery.lite.js +3716 -0
  2128. package/node_modules/esquery/dist/esquery.lite.min.js +2 -0
  2129. package/node_modules/esquery/dist/esquery.lite.min.js.map +1 -0
  2130. package/node_modules/esquery/dist/esquery.min.js +2 -0
  2131. package/node_modules/esquery/dist/esquery.min.js.map +1 -0
  2132. package/node_modules/esquery/license.txt +24 -0
  2133. package/node_modules/esquery/package.json +78 -0
  2134. package/node_modules/esquery/parser.js +2941 -0
  2135. package/node_modules/esrecurse/.babelrc +3 -0
  2136. package/node_modules/esrecurse/README.md +171 -0
  2137. package/node_modules/esrecurse/esrecurse.js +117 -0
  2138. package/node_modules/esrecurse/gulpfile.babel.js +92 -0
  2139. package/node_modules/esrecurse/package.json +52 -0
  2140. package/node_modules/estraverse/.jshintrc +16 -0
  2141. package/node_modules/estraverse/LICENSE.BSD +19 -0
  2142. package/node_modules/estraverse/README.md +153 -0
  2143. package/node_modules/estraverse/estraverse.js +805 -0
  2144. package/node_modules/estraverse/gulpfile.js +70 -0
  2145. package/node_modules/estraverse/package.json +40 -0
  2146. package/node_modules/esutils/LICENSE.BSD +19 -0
  2147. package/node_modules/esutils/README.md +174 -0
  2148. package/node_modules/esutils/lib/ast.js +144 -0
  2149. package/node_modules/esutils/lib/code.js +135 -0
  2150. package/node_modules/esutils/lib/keyword.js +165 -0
  2151. package/node_modules/esutils/lib/utils.js +33 -0
  2152. package/node_modules/esutils/package.json +44 -0
  2153. package/node_modules/fast-deep-equal/LICENSE +21 -0
  2154. package/node_modules/fast-deep-equal/README.md +96 -0
  2155. package/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
  2156. package/node_modules/fast-deep-equal/es6/index.js +72 -0
  2157. package/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
  2158. package/node_modules/fast-deep-equal/es6/react.js +79 -0
  2159. package/node_modules/fast-deep-equal/index.d.ts +4 -0
  2160. package/node_modules/fast-deep-equal/index.js +46 -0
  2161. package/node_modules/fast-deep-equal/package.json +61 -0
  2162. package/node_modules/fast-deep-equal/react.d.ts +2 -0
  2163. package/node_modules/fast-deep-equal/react.js +53 -0
  2164. package/node_modules/fast-json-stable-stringify/.eslintrc.yml +26 -0
  2165. package/node_modules/fast-json-stable-stringify/.github/FUNDING.yml +1 -0
  2166. package/node_modules/fast-json-stable-stringify/.travis.yml +8 -0
  2167. package/node_modules/fast-json-stable-stringify/LICENSE +21 -0
  2168. package/node_modules/fast-json-stable-stringify/README.md +131 -0
  2169. package/node_modules/fast-json-stable-stringify/benchmark/index.js +31 -0
  2170. package/node_modules/fast-json-stable-stringify/benchmark/test.json +137 -0
  2171. package/node_modules/fast-json-stable-stringify/example/key_cmp.js +7 -0
  2172. package/node_modules/fast-json-stable-stringify/example/nested.js +3 -0
  2173. package/node_modules/fast-json-stable-stringify/example/str.js +3 -0
  2174. package/node_modules/fast-json-stable-stringify/example/value_cmp.js +7 -0
  2175. package/node_modules/fast-json-stable-stringify/index.d.ts +4 -0
  2176. package/node_modules/fast-json-stable-stringify/index.js +59 -0
  2177. package/node_modules/fast-json-stable-stringify/package.json +52 -0
  2178. package/node_modules/fast-json-stable-stringify/test/cmp.js +13 -0
  2179. package/node_modules/fast-json-stable-stringify/test/nested.js +44 -0
  2180. package/node_modules/fast-json-stable-stringify/test/str.js +46 -0
  2181. package/node_modules/fast-json-stable-stringify/test/to-json.js +22 -0
  2182. package/node_modules/fast-levenshtein/LICENSE.md +25 -0
  2183. package/node_modules/fast-levenshtein/README.md +104 -0
  2184. package/node_modules/fast-levenshtein/levenshtein.js +136 -0
  2185. package/node_modules/fast-levenshtein/package.json +39 -0
  2186. package/node_modules/fdir/LICENSE +7 -0
  2187. package/node_modules/fdir/README.md +91 -0
  2188. package/node_modules/fdir/dist/index.cjs +588 -0
  2189. package/node_modules/fdir/dist/index.d.cts +155 -0
  2190. package/node_modules/fdir/dist/index.d.mts +155 -0
  2191. package/node_modules/fdir/dist/index.mjs +570 -0
  2192. package/node_modules/fdir/package.json +103 -0
  2193. package/node_modules/file-entry-cache/LICENSE +22 -0
  2194. package/node_modules/file-entry-cache/README.md +115 -0
  2195. package/node_modules/file-entry-cache/cache.js +291 -0
  2196. package/node_modules/file-entry-cache/package.json +56 -0
  2197. package/node_modules/flat-cache/LICENSE +22 -0
  2198. package/node_modules/flat-cache/README.md +77 -0
  2199. package/node_modules/flat-cache/package.json +63 -0
  2200. package/node_modules/flat-cache/src/cache.js +214 -0
  2201. package/node_modules/flat-cache/src/del.js +30 -0
  2202. package/node_modules/flat-cache/src/utils.js +42 -0
  2203. package/node_modules/flatted/LICENSE +15 -0
  2204. package/node_modules/flatted/README.md +111 -0
  2205. package/node_modules/flatted/cjs/index.js +132 -0
  2206. package/node_modules/flatted/cjs/package.json +1 -0
  2207. package/node_modules/flatted/es.js +1 -0
  2208. package/node_modules/flatted/esm/index.js +127 -0
  2209. package/node_modules/flatted/esm.js +1 -0
  2210. package/node_modules/flatted/golang/README.md +60 -0
  2211. package/node_modules/flatted/golang/pkg/flatted/flatted.go +277 -0
  2212. package/node_modules/flatted/index.js +155 -0
  2213. package/node_modules/flatted/min.js +1 -0
  2214. package/node_modules/flatted/package.json +80 -0
  2215. package/node_modules/flatted/php/flatted.php +156 -0
  2216. package/node_modules/flatted/python/flatted.py +144 -0
  2217. package/node_modules/flatted/types/index.d.ts +4 -0
  2218. package/node_modules/globals/globals.json +1998 -0
  2219. package/node_modules/globals/index.d.ts +2077 -0
  2220. package/node_modules/globals/index.js +2 -0
  2221. package/node_modules/globals/license +9 -0
  2222. package/node_modules/globals/package.json +58 -0
  2223. package/node_modules/globals/readme.md +44 -0
  2224. package/node_modules/has-flag/index.d.ts +39 -0
  2225. package/node_modules/has-flag/index.js +8 -0
  2226. package/node_modules/has-flag/license +9 -0
  2227. package/node_modules/has-flag/package.json +46 -0
  2228. package/node_modules/has-flag/readme.md +89 -0
  2229. package/node_modules/ignore/LICENSE-MIT +21 -0
  2230. package/node_modules/ignore/README.md +412 -0
  2231. package/node_modules/ignore/index.d.ts +61 -0
  2232. package/node_modules/ignore/index.js +636 -0
  2233. package/node_modules/ignore/legacy.js +559 -0
  2234. package/node_modules/ignore/package.json +74 -0
  2235. package/node_modules/import-fresh/index.d.ts +30 -0
  2236. package/node_modules/import-fresh/index.js +34 -0
  2237. package/node_modules/import-fresh/license +9 -0
  2238. package/node_modules/import-fresh/node_modules/resolve-from/index.js +47 -0
  2239. package/node_modules/import-fresh/node_modules/resolve-from/license +9 -0
  2240. package/node_modules/import-fresh/node_modules/resolve-from/package.json +34 -0
  2241. package/node_modules/import-fresh/node_modules/resolve-from/readme.md +72 -0
  2242. package/node_modules/import-fresh/package.json +48 -0
  2243. package/node_modules/import-fresh/readme.md +54 -0
  2244. package/node_modules/imurmurhash/README.md +122 -0
  2245. package/node_modules/imurmurhash/imurmurhash.js +138 -0
  2246. package/node_modules/imurmurhash/imurmurhash.min.js +12 -0
  2247. package/node_modules/imurmurhash/package.json +40 -0
  2248. package/node_modules/is-extglob/LICENSE +21 -0
  2249. package/node_modules/is-extglob/README.md +107 -0
  2250. package/node_modules/is-extglob/index.js +20 -0
  2251. package/node_modules/is-extglob/package.json +69 -0
  2252. package/node_modules/is-glob/LICENSE +21 -0
  2253. package/node_modules/is-glob/README.md +206 -0
  2254. package/node_modules/is-glob/index.js +150 -0
  2255. package/node_modules/is-glob/package.json +81 -0
  2256. package/node_modules/isexe/.npmignore +2 -0
  2257. package/node_modules/isexe/LICENSE +15 -0
  2258. package/node_modules/isexe/README.md +51 -0
  2259. package/node_modules/isexe/index.js +57 -0
  2260. package/node_modules/isexe/mode.js +41 -0
  2261. package/node_modules/isexe/package.json +31 -0
  2262. package/node_modules/isexe/test/basic.js +221 -0
  2263. package/node_modules/isexe/windows.js +42 -0
  2264. package/node_modules/json-buffer/.travis.yml +3 -0
  2265. package/node_modules/json-buffer/LICENSE +22 -0
  2266. package/node_modules/json-buffer/README.md +24 -0
  2267. package/node_modules/json-buffer/index.js +58 -0
  2268. package/node_modules/json-buffer/package.json +34 -0
  2269. package/node_modules/json-buffer/test/index.js +63 -0
  2270. package/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
  2271. package/node_modules/json-schema-traverse/.travis.yml +8 -0
  2272. package/node_modules/json-schema-traverse/LICENSE +21 -0
  2273. package/node_modules/json-schema-traverse/README.md +83 -0
  2274. package/node_modules/json-schema-traverse/index.js +89 -0
  2275. package/node_modules/json-schema-traverse/package.json +43 -0
  2276. package/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
  2277. package/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
  2278. package/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
  2279. package/node_modules/json-stable-stringify-without-jsonify/.npmignore +1 -0
  2280. package/node_modules/json-stable-stringify-without-jsonify/.travis.yml +4 -0
  2281. package/node_modules/json-stable-stringify-without-jsonify/LICENSE +18 -0
  2282. package/node_modules/json-stable-stringify-without-jsonify/example/key_cmp.js +7 -0
  2283. package/node_modules/json-stable-stringify-without-jsonify/example/nested.js +3 -0
  2284. package/node_modules/json-stable-stringify-without-jsonify/example/str.js +3 -0
  2285. package/node_modules/json-stable-stringify-without-jsonify/example/value_cmp.js +7 -0
  2286. package/node_modules/json-stable-stringify-without-jsonify/index.js +82 -0
  2287. package/node_modules/json-stable-stringify-without-jsonify/package.json +43 -0
  2288. package/node_modules/json-stable-stringify-without-jsonify/readme.markdown +132 -0
  2289. package/node_modules/json-stable-stringify-without-jsonify/test/cmp.js +11 -0
  2290. package/node_modules/json-stable-stringify-without-jsonify/test/nested.js +42 -0
  2291. package/node_modules/json-stable-stringify-without-jsonify/test/replacer.js +74 -0
  2292. package/node_modules/json-stable-stringify-without-jsonify/test/space.js +59 -0
  2293. package/node_modules/json-stable-stringify-without-jsonify/test/str.js +32 -0
  2294. package/node_modules/json-stable-stringify-without-jsonify/test/to-json.js +20 -0
  2295. package/node_modules/keyv/README.md +429 -0
  2296. package/node_modules/keyv/package.json +57 -0
  2297. package/node_modules/keyv/src/index.d.ts +112 -0
  2298. package/node_modules/keyv/src/index.js +259 -0
  2299. package/node_modules/levn/LICENSE +22 -0
  2300. package/node_modules/levn/README.md +196 -0
  2301. package/node_modules/levn/lib/cast.js +327 -0
  2302. package/node_modules/levn/lib/index.js +22 -0
  2303. package/node_modules/levn/lib/parse-string.js +113 -0
  2304. package/node_modules/levn/package.json +46 -0
  2305. package/node_modules/lodash.merge/LICENSE +47 -0
  2306. package/node_modules/lodash.merge/README.md +18 -0
  2307. package/node_modules/lodash.merge/index.js +1977 -0
  2308. package/node_modules/lodash.merge/package.json +16 -0
  2309. package/node_modules/ms/index.js +162 -0
  2310. package/node_modules/ms/license.md +21 -0
  2311. package/node_modules/ms/package.json +38 -0
  2312. package/node_modules/ms/readme.md +59 -0
  2313. package/node_modules/natural-compare/README.md +125 -0
  2314. package/node_modules/natural-compare/index.js +57 -0
  2315. package/node_modules/natural-compare/package.json +42 -0
  2316. package/node_modules/optionator/LICENSE +22 -0
  2317. package/node_modules/optionator/README.md +238 -0
  2318. package/node_modules/optionator/lib/help.js +260 -0
  2319. package/node_modules/optionator/lib/index.js +465 -0
  2320. package/node_modules/optionator/lib/util.js +54 -0
  2321. package/node_modules/optionator/package.json +43 -0
  2322. package/node_modules/p-limit/index.d.ts +42 -0
  2323. package/node_modules/p-limit/index.js +71 -0
  2324. package/node_modules/p-limit/license +9 -0
  2325. package/node_modules/p-limit/package.json +52 -0
  2326. package/node_modules/p-limit/readme.md +101 -0
  2327. package/node_modules/parent-module/index.js +37 -0
  2328. package/node_modules/parent-module/license +9 -0
  2329. package/node_modules/parent-module/package.json +46 -0
  2330. package/node_modules/parent-module/readme.md +67 -0
  2331. package/node_modules/path-exists/index.d.ts +28 -0
  2332. package/node_modules/path-exists/index.js +23 -0
  2333. package/node_modules/path-exists/license +9 -0
  2334. package/node_modules/path-exists/package.json +39 -0
  2335. package/node_modules/path-exists/readme.md +52 -0
  2336. package/node_modules/path-key/index.d.ts +40 -0
  2337. package/node_modules/path-key/index.js +16 -0
  2338. package/node_modules/path-key/license +9 -0
  2339. package/node_modules/path-key/package.json +39 -0
  2340. package/node_modules/path-key/readme.md +61 -0
  2341. package/node_modules/picomatch/LICENSE +21 -0
  2342. package/node_modules/picomatch/README.md +749 -0
  2343. package/node_modules/picomatch/index.js +17 -0
  2344. package/node_modules/picomatch/lib/constants.js +184 -0
  2345. package/node_modules/picomatch/lib/parse.js +1386 -0
  2346. package/node_modules/picomatch/lib/picomatch.js +349 -0
  2347. package/node_modules/picomatch/lib/scan.js +391 -0
  2348. package/node_modules/picomatch/lib/utils.js +72 -0
  2349. package/node_modules/picomatch/package.json +82 -0
  2350. package/node_modules/picomatch/posix.js +3 -0
  2351. package/node_modules/prelude-ls/LICENSE +22 -0
  2352. package/node_modules/prelude-ls/README.md +15 -0
  2353. package/node_modules/prelude-ls/lib/Func.js +69 -0
  2354. package/node_modules/prelude-ls/lib/List.js +716 -0
  2355. package/node_modules/prelude-ls/lib/Num.js +130 -0
  2356. package/node_modules/prelude-ls/lib/Obj.js +154 -0
  2357. package/node_modules/prelude-ls/lib/Str.js +92 -0
  2358. package/node_modules/prelude-ls/lib/index.js +178 -0
  2359. package/node_modules/prelude-ls/package.json +46 -0
  2360. package/node_modules/punycode/LICENSE-MIT.txt +20 -0
  2361. package/node_modules/punycode/README.md +148 -0
  2362. package/node_modules/punycode/package.json +58 -0
  2363. package/node_modules/punycode/punycode.es6.js +444 -0
  2364. package/node_modules/punycode/punycode.js +443 -0
  2365. package/node_modules/shebang-command/index.js +19 -0
  2366. package/node_modules/shebang-command/license +9 -0
  2367. package/node_modules/shebang-command/package.json +34 -0
  2368. package/node_modules/shebang-command/readme.md +34 -0
  2369. package/node_modules/shebang-regex/index.d.ts +22 -0
  2370. package/node_modules/shebang-regex/index.js +2 -0
  2371. package/node_modules/shebang-regex/license +9 -0
  2372. package/node_modules/shebang-regex/package.json +35 -0
  2373. package/node_modules/shebang-regex/readme.md +33 -0
  2374. package/node_modules/strip-json-comments/index.d.ts +36 -0
  2375. package/node_modules/strip-json-comments/index.js +77 -0
  2376. package/node_modules/strip-json-comments/license +9 -0
  2377. package/node_modules/strip-json-comments/package.json +47 -0
  2378. package/node_modules/strip-json-comments/readme.md +78 -0
  2379. package/node_modules/supports-color/browser.js +5 -0
  2380. package/node_modules/supports-color/index.js +135 -0
  2381. package/node_modules/supports-color/license +9 -0
  2382. package/node_modules/supports-color/package.json +53 -0
  2383. package/node_modules/supports-color/readme.md +76 -0
  2384. package/node_modules/tinyglobby/LICENSE +21 -0
  2385. package/node_modules/tinyglobby/README.md +25 -0
  2386. package/node_modules/tinyglobby/dist/index.cjs +335 -0
  2387. package/node_modules/tinyglobby/dist/index.d.cts +148 -0
  2388. package/node_modules/tinyglobby/dist/index.d.mts +148 -0
  2389. package/node_modules/tinyglobby/dist/index.mjs +307 -0
  2390. package/node_modules/tinyglobby/package.json +70 -0
  2391. package/node_modules/ts-api-utils/LICENSE.md +20 -0
  2392. package/node_modules/ts-api-utils/README.md +40 -0
  2393. package/node_modules/ts-api-utils/lib/index.cjs +2308 -0
  2394. package/node_modules/ts-api-utils/lib/index.d.cts +3053 -0
  2395. package/node_modules/ts-api-utils/lib/index.d.ts +3053 -0
  2396. package/node_modules/ts-api-utils/lib/index.js +2107 -0
  2397. package/node_modules/ts-api-utils/package.json +101 -0
  2398. package/node_modules/type-check/LICENSE +22 -0
  2399. package/node_modules/type-check/README.md +210 -0
  2400. package/node_modules/type-check/lib/check.js +128 -0
  2401. package/node_modules/type-check/lib/index.js +16 -0
  2402. package/node_modules/type-check/lib/parse-type.js +198 -0
  2403. package/node_modules/type-check/package.json +39 -0
  2404. package/node_modules/typescript-eslint/LICENSE +21 -0
  2405. package/node_modules/typescript-eslint/README.md +12 -0
  2406. package/node_modules/typescript-eslint/dist/compatibility-types.d.ts +16 -0
  2407. package/node_modules/typescript-eslint/dist/compatibility-types.js +7 -0
  2408. package/node_modules/typescript-eslint/dist/config-helper.d.ts +70 -0
  2409. package/node_modules/typescript-eslint/dist/config-helper.js +130 -0
  2410. package/node_modules/typescript-eslint/dist/getTSConfigRootDirFromStack.d.ts +8 -0
  2411. package/node_modules/typescript-eslint/dist/getTSConfigRootDirFromStack.js +52 -0
  2412. package/node_modules/typescript-eslint/dist/index.d.ts +155 -0
  2413. package/node_modules/typescript-eslint/dist/index.js +173 -0
  2414. package/node_modules/typescript-eslint/package.json +104 -0
  2415. package/node_modules/uri-js/LICENSE +11 -0
  2416. package/node_modules/uri-js/README.md +203 -0
  2417. package/node_modules/uri-js/dist/es5/uri.all.d.ts +59 -0
  2418. package/node_modules/uri-js/dist/es5/uri.all.js +1443 -0
  2419. package/node_modules/uri-js/dist/es5/uri.all.js.map +1 -0
  2420. package/node_modules/uri-js/dist/es5/uri.all.min.d.ts +59 -0
  2421. package/node_modules/uri-js/dist/es5/uri.all.min.js +3 -0
  2422. package/node_modules/uri-js/dist/es5/uri.all.min.js.map +1 -0
  2423. package/node_modules/uri-js/dist/esnext/index.d.ts +1 -0
  2424. package/node_modules/uri-js/dist/esnext/index.js +17 -0
  2425. package/node_modules/uri-js/dist/esnext/index.js.map +1 -0
  2426. package/node_modules/uri-js/dist/esnext/regexps-iri.d.ts +3 -0
  2427. package/node_modules/uri-js/dist/esnext/regexps-iri.js +3 -0
  2428. package/node_modules/uri-js/dist/esnext/regexps-iri.js.map +1 -0
  2429. package/node_modules/uri-js/dist/esnext/regexps-uri.d.ts +4 -0
  2430. package/node_modules/uri-js/dist/esnext/regexps-uri.js +42 -0
  2431. package/node_modules/uri-js/dist/esnext/regexps-uri.js.map +1 -0
  2432. package/node_modules/uri-js/dist/esnext/schemes/http.d.ts +3 -0
  2433. package/node_modules/uri-js/dist/esnext/schemes/http.js +28 -0
  2434. package/node_modules/uri-js/dist/esnext/schemes/http.js.map +1 -0
  2435. package/node_modules/uri-js/dist/esnext/schemes/https.d.ts +3 -0
  2436. package/node_modules/uri-js/dist/esnext/schemes/https.js +9 -0
  2437. package/node_modules/uri-js/dist/esnext/schemes/https.js.map +1 -0
  2438. package/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts +12 -0
  2439. package/node_modules/uri-js/dist/esnext/schemes/mailto.js +148 -0
  2440. package/node_modules/uri-js/dist/esnext/schemes/mailto.js.map +1 -0
  2441. package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts +7 -0
  2442. package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js +23 -0
  2443. package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map +1 -0
  2444. package/node_modules/uri-js/dist/esnext/schemes/urn.d.ts +10 -0
  2445. package/node_modules/uri-js/dist/esnext/schemes/urn.js +49 -0
  2446. package/node_modules/uri-js/dist/esnext/schemes/urn.js.map +1 -0
  2447. package/node_modules/uri-js/dist/esnext/schemes/ws.d.ts +7 -0
  2448. package/node_modules/uri-js/dist/esnext/schemes/ws.js +41 -0
  2449. package/node_modules/uri-js/dist/esnext/schemes/ws.js.map +1 -0
  2450. package/node_modules/uri-js/dist/esnext/schemes/wss.d.ts +3 -0
  2451. package/node_modules/uri-js/dist/esnext/schemes/wss.js +9 -0
  2452. package/node_modules/uri-js/dist/esnext/schemes/wss.js.map +1 -0
  2453. package/node_modules/uri-js/dist/esnext/uri.d.ts +59 -0
  2454. package/node_modules/uri-js/dist/esnext/uri.js +480 -0
  2455. package/node_modules/uri-js/dist/esnext/uri.js.map +1 -0
  2456. package/node_modules/uri-js/dist/esnext/util.d.ts +6 -0
  2457. package/node_modules/uri-js/dist/esnext/util.js +36 -0
  2458. package/node_modules/uri-js/dist/esnext/util.js.map +1 -0
  2459. package/node_modules/uri-js/package.json +77 -0
  2460. package/node_modules/which/LICENSE +15 -0
  2461. package/node_modules/which/README.md +54 -0
  2462. package/node_modules/which/bin/node-which +52 -0
  2463. package/node_modules/which/package.json +43 -0
  2464. package/node_modules/which/which.js +125 -0
  2465. package/node_modules/word-wrap/LICENSE +21 -0
  2466. package/node_modules/word-wrap/README.md +201 -0
  2467. package/node_modules/word-wrap/index.d.ts +50 -0
  2468. package/node_modules/word-wrap/index.js +61 -0
  2469. package/node_modules/word-wrap/package.json +77 -0
  2470. package/node_modules/yocto-queue/index.d.ts +56 -0
  2471. package/node_modules/yocto-queue/index.js +68 -0
  2472. package/node_modules/yocto-queue/license +9 -0
  2473. package/node_modules/yocto-queue/package.json +43 -0
  2474. package/node_modules/yocto-queue/readme.md +64 -0
  2475. package/package.json +7 -5
  2476. package/node_modules/@start9labs/start-core/osBindings/tunnel/SetIpv6Params.d.ts +0 -7
  2477. package/node_modules/@start9labs/start-core/osBindings/tunnel/SetIpv6Params.js +0 -4
  2478. package/node_modules/@start9labs/start-core/osBindings/tunnel/SetIpv6Params.js.map +0 -1
  2479. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/LICENSE +0 -0
  2480. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/README.md +0 -0
  2481. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/index.d.ts +0 -0
  2482. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-date.js +0 -0
  2483. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-datetime-float.js +0 -0
  2484. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-datetime.js +0 -0
  2485. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-time.js +0 -0
  2486. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/format-num.js +0 -0
  2487. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/parser-debug.js +0 -0
  2488. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/parser.js +0 -0
  2489. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/toml-parser.js +0 -0
  2490. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/package.json +0 -0
  2491. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-async.js +0 -0
  2492. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-pretty-error.js +0 -0
  2493. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-stream.js +0 -0
  2494. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-string.js +0 -0
  2495. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse.js +0 -0
  2496. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/stringify.js +0 -0
  2497. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/toml.js +0 -0
  2498. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/LICENSE +0 -0
  2499. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/README.md +0 -0
  2500. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.d.ts +0 -0
  2501. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.d.ts.map +0 -0
  2502. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.js +0 -0
  2503. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.js.map +0 -0
  2504. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.d.ts +0 -0
  2505. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.d.ts.map +0 -0
  2506. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.js +0 -0
  2507. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.js.map +0 -0
  2508. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.d.ts +0 -0
  2509. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.d.ts.map +0 -0
  2510. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.js +0 -0
  2511. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.js.map +0 -0
  2512. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.d.ts +0 -0
  2513. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.d.ts.map +0 -0
  2514. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.js +0 -0
  2515. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.js.map +0 -0
  2516. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.d.ts +0 -0
  2517. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.d.ts.map +0 -0
  2518. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.js +0 -0
  2519. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.js.map +0 -0
  2520. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.d.ts +0 -0
  2521. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.d.ts.map +0 -0
  2522. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.js +0 -0
  2523. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.js.map +0 -0
  2524. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.d.ts +0 -0
  2525. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.d.ts.map +0 -0
  2526. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.js +0 -0
  2527. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.js.map +0 -0
  2528. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.d.ts +0 -0
  2529. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.d.ts.map +0 -0
  2530. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.js +0 -0
  2531. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.js.map +0 -0
  2532. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.d.ts +0 -0
  2533. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.d.ts.map +0 -0
  2534. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.js +0 -0
  2535. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.js.map +0 -0
  2536. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.d.ts +0 -0
  2537. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.d.ts.map +0 -0
  2538. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.js +0 -0
  2539. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.js.map +0 -0
  2540. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.d.ts +0 -0
  2541. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.d.ts.map +0 -0
  2542. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.js +0 -0
  2543. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.js.map +0 -0
  2544. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.d.ts +0 -0
  2545. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.d.ts.map +0 -0
  2546. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.js +0 -0
  2547. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.js.map +0 -0
  2548. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.d.ts +0 -0
  2549. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.d.ts.map +0 -0
  2550. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.js +0 -0
  2551. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.js.map +0 -0
  2552. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.d.ts +0 -0
  2553. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.d.ts.map +0 -0
  2554. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.js +0 -0
  2555. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.js.map +0 -0
  2556. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.d.ts +0 -0
  2557. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.d.ts.map +0 -0
  2558. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.js +0 -0
  2559. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.js.map +0 -0
  2560. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.d.ts +0 -0
  2561. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.d.ts.map +0 -0
  2562. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.js +0 -0
  2563. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.js.map +0 -0
  2564. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.d.ts +0 -0
  2565. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.d.ts.map +0 -0
  2566. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.js +0 -0
  2567. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.js.map +0 -0
  2568. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.d.ts +0 -0
  2569. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.d.ts.map +0 -0
  2570. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.js +0 -0
  2571. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.js.map +0 -0
  2572. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.d.ts +0 -0
  2573. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.d.ts.map +0 -0
  2574. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.js +0 -0
  2575. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.js.map +0 -0
  2576. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.d.ts +0 -0
  2577. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.d.ts.map +0 -0
  2578. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.js +0 -0
  2579. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.js.map +0 -0
  2580. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.d.ts +0 -0
  2581. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.d.ts.map +0 -0
  2582. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.js +0 -0
  2583. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.js.map +0 -0
  2584. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.d.ts +0 -0
  2585. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.d.ts.map +0 -0
  2586. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.js +0 -0
  2587. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.js.map +0 -0
  2588. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.d.ts +0 -0
  2589. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.d.ts.map +0 -0
  2590. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.js +0 -0
  2591. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.js.map +0 -0
  2592. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.d.ts +0 -0
  2593. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.d.ts.map +0 -0
  2594. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.js +0 -0
  2595. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.js.map +0 -0
  2596. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.d.ts +0 -0
  2597. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.d.ts.map +0 -0
  2598. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.js +0 -0
  2599. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.js.map +0 -0
  2600. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.d.ts +0 -0
  2601. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.d.ts.map +0 -0
  2602. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.js +0 -0
  2603. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.js.map +0 -0
  2604. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.d.ts +0 -0
  2605. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.d.ts.map +0 -0
  2606. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.js +0 -0
  2607. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.js.map +0 -0
  2608. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.d.ts +0 -0
  2609. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.d.ts.map +0 -0
  2610. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.js +0 -0
  2611. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.js.map +0 -0
  2612. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.d.ts +0 -0
  2613. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.d.ts.map +0 -0
  2614. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.js +0 -0
  2615. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.js.map +0 -0
  2616. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.d.ts +0 -0
  2617. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.d.ts.map +0 -0
  2618. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.js +0 -0
  2619. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.js.map +0 -0
  2620. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.d.ts +0 -0
  2621. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.d.ts.map +0 -0
  2622. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.js +0 -0
  2623. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.js.map +0 -0
  2624. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.d.ts +0 -0
  2625. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.d.ts.map +0 -0
  2626. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.js +0 -0
  2627. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.js.map +0 -0
  2628. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.d.ts +0 -0
  2629. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.d.ts.map +0 -0
  2630. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.js +0 -0
  2631. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.js.map +0 -0
  2632. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.d.ts +0 -0
  2633. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.d.ts.map +0 -0
  2634. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.js +0 -0
  2635. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.js.map +0 -0
  2636. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.d.ts +0 -0
  2637. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.d.ts.map +0 -0
  2638. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.js +0 -0
  2639. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.js.map +0 -0
  2640. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.d.ts +0 -0
  2641. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.d.ts.map +0 -0
  2642. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.js +0 -0
  2643. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.js.map +0 -0
  2644. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.d.ts +0 -0
  2645. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.d.ts.map +0 -0
  2646. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.js +0 -0
  2647. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.js.map +0 -0
  2648. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.d.ts +0 -0
  2649. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.d.ts.map +0 -0
  2650. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.js +0 -0
  2651. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.js.map +0 -0
  2652. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.d.ts +0 -0
  2653. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.d.ts.map +0 -0
  2654. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.js +0 -0
  2655. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.js.map +0 -0
  2656. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/package.json +0 -0
  2657. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.d.ts +0 -0
  2658. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.d.ts.map +0 -0
  2659. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.js +0 -0
  2660. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.js.map +0 -0
  2661. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.d.ts +0 -0
  2662. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.d.ts.map +0 -0
  2663. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.js +0 -0
  2664. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.js.map +0 -0
  2665. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.d.ts +0 -0
  2666. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.d.ts.map +0 -0
  2667. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.js +0 -0
  2668. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.js.map +0 -0
  2669. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.d.ts +0 -0
  2670. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.d.ts.map +0 -0
  2671. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.js +0 -0
  2672. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.js.map +0 -0
  2673. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.d.ts +0 -0
  2674. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.d.ts.map +0 -0
  2675. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.js +0 -0
  2676. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.js.map +0 -0
  2677. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.d.ts +0 -0
  2678. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.d.ts.map +0 -0
  2679. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.js +0 -0
  2680. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.js.map +0 -0
  2681. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.d.ts +0 -0
  2682. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.d.ts.map +0 -0
  2683. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.js +0 -0
  2684. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.js.map +0 -0
  2685. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.d.ts +0 -0
  2686. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.d.ts.map +0 -0
  2687. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.js +0 -0
  2688. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.js.map +0 -0
  2689. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.d.ts +0 -0
  2690. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.d.ts.map +0 -0
  2691. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.js +0 -0
  2692. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.js.map +0 -0
  2693. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.d.ts +0 -0
  2694. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.d.ts.map +0 -0
  2695. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.js +0 -0
  2696. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.js.map +0 -0
  2697. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/package.json +0 -0
  2698. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.d.ts +0 -0
  2699. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.d.ts.map +0 -0
  2700. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.js +0 -0
  2701. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.js.map +0 -0
  2702. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.d.ts +0 -0
  2703. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.d.ts.map +0 -0
  2704. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.js +0 -0
  2705. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.js.map +0 -0
  2706. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/_shortw_utils.ts +0 -0
  2707. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/bls.ts +0 -0
  2708. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/curve.ts +0 -0
  2709. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/edwards.ts +0 -0
  2710. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/fft.ts +0 -0
  2711. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/hash-to-curve.ts +0 -0
  2712. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/modular.ts +0 -0
  2713. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/montgomery.ts +0 -0
  2714. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/poseidon.ts +0 -0
  2715. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/tower.ts +0 -0
  2716. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/utils.ts +0 -0
  2717. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/weierstrass.ts +0 -0
  2718. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/bls12-381.ts +0 -0
  2719. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/bn254.ts +0 -0
  2720. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/ed25519.ts +0 -0
  2721. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/ed448.ts +0 -0
  2722. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/index.ts +0 -0
  2723. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/jubjub.ts +0 -0
  2724. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/misc.ts +0 -0
  2725. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/nist.ts +0 -0
  2726. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/p256.ts +0 -0
  2727. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/p384.ts +0 -0
  2728. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/p521.ts +0 -0
  2729. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/package.json +0 -0
  2730. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/pasta.ts +0 -0
  2731. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/secp256k1.ts +0 -0
  2732. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/utils.ts +0 -0
  2733. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.d.ts +0 -0
  2734. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.d.ts.map +0 -0
  2735. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.js +0 -0
  2736. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.js.map +0 -0
  2737. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/LICENSE +0 -0
  2738. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/README.md +0 -0
  2739. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.d.ts +0 -0
  2740. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.d.ts.map +0 -0
  2741. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.js +0 -0
  2742. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.js.map +0 -0
  2743. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.d.ts +0 -0
  2744. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.d.ts.map +0 -0
  2745. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.js +0 -0
  2746. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.js.map +0 -0
  2747. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.d.ts +0 -0
  2748. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.d.ts.map +0 -0
  2749. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.js +0 -0
  2750. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.js.map +0 -0
  2751. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.d.ts +0 -0
  2752. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.d.ts.map +0 -0
  2753. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.js +0 -0
  2754. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.js.map +0 -0
  2755. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.d.ts +0 -0
  2756. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.d.ts.map +0 -0
  2757. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.js +0 -0
  2758. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.js.map +0 -0
  2759. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.d.ts +0 -0
  2760. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.d.ts.map +0 -0
  2761. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.js +0 -0
  2762. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.js.map +0 -0
  2763. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.d.ts +0 -0
  2764. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.d.ts.map +0 -0
  2765. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.js +0 -0
  2766. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.js.map +0 -0
  2767. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.d.ts +0 -0
  2768. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.d.ts.map +0 -0
  2769. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.js +0 -0
  2770. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.js.map +0 -0
  2771. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.d.ts +0 -0
  2772. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.d.ts.map +0 -0
  2773. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.js +0 -0
  2774. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.js.map +0 -0
  2775. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.d.ts +0 -0
  2776. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.d.ts.map +0 -0
  2777. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.js +0 -0
  2778. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.js.map +0 -0
  2779. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.d.ts +0 -0
  2780. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.d.ts.map +0 -0
  2781. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.js +0 -0
  2782. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.js.map +0 -0
  2783. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.d.ts +0 -0
  2784. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.d.ts.map +0 -0
  2785. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.js +0 -0
  2786. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.js.map +0 -0
  2787. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.d.ts +0 -0
  2788. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.d.ts.map +0 -0
  2789. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.js +0 -0
  2790. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.js.map +0 -0
  2791. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.d.ts +0 -0
  2792. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.d.ts.map +0 -0
  2793. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.js +0 -0
  2794. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.js.map +0 -0
  2795. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.d.ts +0 -0
  2796. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.d.ts.map +0 -0
  2797. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.js +0 -0
  2798. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.js.map +0 -0
  2799. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.d.ts +0 -0
  2800. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.d.ts.map +0 -0
  2801. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.js +0 -0
  2802. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.js.map +0 -0
  2803. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.d.ts +0 -0
  2804. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.d.ts.map +0 -0
  2805. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.js +0 -0
  2806. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.js.map +0 -0
  2807. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.d.ts +0 -0
  2808. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.d.ts.map +0 -0
  2809. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.js +0 -0
  2810. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.js.map +0 -0
  2811. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.d.ts +0 -0
  2812. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.d.ts.map +0 -0
  2813. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.js +0 -0
  2814. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.js.map +0 -0
  2815. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.d.ts +0 -0
  2816. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.d.ts.map +0 -0
  2817. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.js +0 -0
  2818. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.js.map +0 -0
  2819. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.d.ts +0 -0
  2820. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.d.ts.map +0 -0
  2821. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.js +0 -0
  2822. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.js.map +0 -0
  2823. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.d.ts +0 -0
  2824. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.d.ts.map +0 -0
  2825. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.js +0 -0
  2826. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.js.map +0 -0
  2827. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.d.ts +0 -0
  2828. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.d.ts.map +0 -0
  2829. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.js +0 -0
  2830. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.js.map +0 -0
  2831. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.d.ts +0 -0
  2832. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.d.ts.map +0 -0
  2833. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.js +0 -0
  2834. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.js.map +0 -0
  2835. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.d.ts +0 -0
  2836. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.d.ts.map +0 -0
  2837. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.js +0 -0
  2838. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.js.map +0 -0
  2839. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.d.ts +0 -0
  2840. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.d.ts.map +0 -0
  2841. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.js +0 -0
  2842. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.js.map +0 -0
  2843. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.d.ts +0 -0
  2844. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.d.ts.map +0 -0
  2845. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.js +0 -0
  2846. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.js.map +0 -0
  2847. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.d.ts +0 -0
  2848. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.d.ts.map +0 -0
  2849. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.js +0 -0
  2850. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.js.map +0 -0
  2851. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.d.ts +0 -0
  2852. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.d.ts.map +0 -0
  2853. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.js +0 -0
  2854. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.js.map +0 -0
  2855. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.d.ts +0 -0
  2856. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.d.ts.map +0 -0
  2857. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.js +0 -0
  2858. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.js.map +0 -0
  2859. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/package.json +0 -0
  2860. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.d.ts +0 -0
  2861. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.d.ts.map +0 -0
  2862. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.js +0 -0
  2863. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.js.map +0 -0
  2864. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.d.ts +0 -0
  2865. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.d.ts.map +0 -0
  2866. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.js +0 -0
  2867. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.js.map +0 -0
  2868. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.d.ts +0 -0
  2869. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.d.ts.map +0 -0
  2870. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.js +0 -0
  2871. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.js.map +0 -0
  2872. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.d.ts +0 -0
  2873. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.d.ts.map +0 -0
  2874. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.js +0 -0
  2875. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.js.map +0 -0
  2876. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.d.ts +0 -0
  2877. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.d.ts.map +0 -0
  2878. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.js +0 -0
  2879. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.js.map +0 -0
  2880. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.d.ts +0 -0
  2881. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.d.ts.map +0 -0
  2882. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.js +0 -0
  2883. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.js.map +0 -0
  2884. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.d.ts +0 -0
  2885. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.d.ts.map +0 -0
  2886. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.js +0 -0
  2887. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.js.map +0 -0
  2888. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.d.ts +0 -0
  2889. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.d.ts.map +0 -0
  2890. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.js +0 -0
  2891. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.js.map +0 -0
  2892. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.d.ts +0 -0
  2893. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.d.ts.map +0 -0
  2894. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.js +0 -0
  2895. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.js.map +0 -0
  2896. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.d.ts +0 -0
  2897. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.d.ts.map +0 -0
  2898. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.js +0 -0
  2899. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.js.map +0 -0
  2900. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.d.ts +0 -0
  2901. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.d.ts.map +0 -0
  2902. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.js +0 -0
  2903. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.js.map +0 -0
  2904. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.d.ts +0 -0
  2905. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.d.ts.map +0 -0
  2906. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.js +0 -0
  2907. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.js.map +0 -0
  2908. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.d.ts +0 -0
  2909. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.d.ts.map +0 -0
  2910. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.js +0 -0
  2911. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.js.map +0 -0
  2912. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.d.ts +0 -0
  2913. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.d.ts.map +0 -0
  2914. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.js +0 -0
  2915. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.js.map +0 -0
  2916. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/package.json +0 -0
  2917. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.d.ts +0 -0
  2918. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.d.ts.map +0 -0
  2919. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.js +0 -0
  2920. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.js.map +0 -0
  2921. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.d.ts +0 -0
  2922. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.d.ts.map +0 -0
  2923. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.js +0 -0
  2924. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.js.map +0 -0
  2925. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.d.ts +0 -0
  2926. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.d.ts.map +0 -0
  2927. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.js +0 -0
  2928. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.js.map +0 -0
  2929. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.d.ts +0 -0
  2930. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.d.ts.map +0 -0
  2931. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.js +0 -0
  2932. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.js.map +0 -0
  2933. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.d.ts +0 -0
  2934. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.d.ts.map +0 -0
  2935. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.js +0 -0
  2936. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.js.map +0 -0
  2937. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.d.ts +0 -0
  2938. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.d.ts.map +0 -0
  2939. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.js +0 -0
  2940. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.js.map +0 -0
  2941. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.d.ts +0 -0
  2942. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.d.ts.map +0 -0
  2943. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.js +0 -0
  2944. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.js.map +0 -0
  2945. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.d.ts +0 -0
  2946. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.d.ts.map +0 -0
  2947. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.js +0 -0
  2948. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.js.map +0 -0
  2949. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.d.ts +0 -0
  2950. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.d.ts.map +0 -0
  2951. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.js +0 -0
  2952. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.js.map +0 -0
  2953. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_assert.ts +0 -0
  2954. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_blake.ts +0 -0
  2955. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_md.ts +0 -0
  2956. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_u64.ts +0 -0
  2957. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/argon2.ts +0 -0
  2958. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake1.ts +0 -0
  2959. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake2.ts +0 -0
  2960. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake2b.ts +0 -0
  2961. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake2s.ts +0 -0
  2962. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake3.ts +0 -0
  2963. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/crypto.ts +0 -0
  2964. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/cryptoNode.ts +0 -0
  2965. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/eskdf.ts +0 -0
  2966. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/hkdf.ts +0 -0
  2967. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/hmac.ts +0 -0
  2968. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/index.ts +0 -0
  2969. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/legacy.ts +0 -0
  2970. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/pbkdf2.ts +0 -0
  2971. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/ripemd160.ts +0 -0
  2972. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/scrypt.ts +0 -0
  2973. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha1.ts +0 -0
  2974. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha2.ts +0 -0
  2975. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha256.ts +0 -0
  2976. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha3-addons.ts +0 -0
  2977. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha3.ts +0 -0
  2978. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha512.ts +0 -0
  2979. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/utils.ts +0 -0
  2980. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.d.ts +0 -0
  2981. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.d.ts.map +0 -0
  2982. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.js +0 -0
  2983. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.js.map +0 -0
  2984. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/.editorconfig +0 -0
  2985. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/.jshintrc +0 -0
  2986. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/.travis.yml +0 -0
  2987. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/LICENSE +0 -0
  2988. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/README.md +0 -0
  2989. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/bower.json +0 -0
  2990. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/fetch-bower.js +0 -0
  2991. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/fetch-npm-browserify.js +0 -0
  2992. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/fetch-npm-node.js +0 -0
  2993. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/package.json +0 -0
  2994. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/test/api.test.js +0 -0
  2995. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/LICENSE +0 -0
  2996. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/README.md +0 -0
  2997. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/bin/cli.js +0 -0
  2998. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/Mime.d.ts +0 -0
  2999. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/Mime.js +0 -0
  3000. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index.d.ts +0 -0
  3001. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index.js +0 -0
  3002. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index_lite.d.ts +0 -0
  3003. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index_lite.js +0 -0
  3004. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/mime_cli.d.ts +0 -0
  3005. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/mime_cli.js +0 -0
  3006. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/other.d.ts +0 -0
  3007. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/other.js +0 -0
  3008. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/standard.d.ts +0 -0
  3009. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/standard.js +0 -0
  3010. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/package.json +0 -0
  3011. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/Mime.ts +0 -0
  3012. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/index.ts +0 -0
  3013. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/index_lite.ts +0 -0
  3014. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/mime_cli.ts +0 -0
  3015. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/types/other.ts +0 -0
  3016. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/types/standard.ts +0 -0
  3017. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/LICENSE.md +0 -0
  3018. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/README.md +0 -0
  3019. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/browser.js +0 -0
  3020. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/lib/index.es.js +0 -0
  3021. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/lib/index.js +0 -0
  3022. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/lib/index.mjs +0 -0
  3023. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/package.json +0 -0
  3024. /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/LICENSE +0 -0
  3025. /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/dist/object_hash.js +0 -0
  3026. /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/index.js +0 -0
  3027. /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/package.json +0 -0
  3028. /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/readme.markdown +0 -0
  3029. /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/.npmignore +0 -0
  3030. /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/index.js +0 -0
  3031. /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/lib/.gitkeep +0 -0
  3032. /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/lib/mappingTable.json +0 -0
  3033. /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/package.json +0 -0
  3034. /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/LICENSE.md +0 -0
  3035. /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/README.md +0 -0
  3036. /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/lib/index.js +0 -0
  3037. /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/package.json +0 -0
  3038. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/LICENSE +0 -0
  3039. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/README.md +0 -0
  3040. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/dist/fetch.umd.js +0 -0
  3041. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/dist/fetch.umd.js.flow +0 -0
  3042. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/fetch.js +0 -0
  3043. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/fetch.js.flow +0 -0
  3044. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/package.json +0 -0
  3045. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/LICENSE.txt +0 -0
  3046. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/README.md +0 -0
  3047. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/URL-impl.js +0 -0
  3048. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/URL.js +0 -0
  3049. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/public-api.js +0 -0
  3050. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/url-state-machine.js +0 -0
  3051. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/utils.js +0 -0
  3052. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/package.json +0 -0
  3053. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/LICENSE +0 -0
  3054. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/README.md +0 -0
  3055. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/bin.mjs +0 -0
  3056. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-collection.js +0 -0
  3057. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-doc.js +0 -0
  3058. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-node.js +0 -0
  3059. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-scalar.js +0 -0
  3060. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/composer.js +0 -0
  3061. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-block-map.js +0 -0
  3062. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-block-scalar.js +0 -0
  3063. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-block-seq.js +0 -0
  3064. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-end.js +0 -0
  3065. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-flow-collection.js +0 -0
  3066. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-flow-scalar.js +0 -0
  3067. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-props.js +0 -0
  3068. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-contains-newline.js +0 -0
  3069. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-empty-scalar-position.js +0 -0
  3070. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-flow-indent-check.js +0 -0
  3071. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-map-includes.js +0 -0
  3072. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/Document.js +0 -0
  3073. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/anchors.js +0 -0
  3074. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/applyReviver.js +0 -0
  3075. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/createNode.js +0 -0
  3076. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/directives.js +0 -0
  3077. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/errors.js +0 -0
  3078. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/index.js +0 -0
  3079. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/log.js +0 -0
  3080. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Alias.js +0 -0
  3081. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Collection.js +0 -0
  3082. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Node.js +0 -0
  3083. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Pair.js +0 -0
  3084. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Scalar.js +0 -0
  3085. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/YAMLMap.js +0 -0
  3086. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/YAMLSeq.js +0 -0
  3087. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/addPairToJSMap.js +0 -0
  3088. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/identity.js +0 -0
  3089. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/toJS.js +0 -0
  3090. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst-scalar.js +0 -0
  3091. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst-stringify.js +0 -0
  3092. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst-visit.js +0 -0
  3093. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst.js +0 -0
  3094. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/lexer.js +0 -0
  3095. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/line-counter.js +0 -0
  3096. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/parser.js +0 -0
  3097. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/public-api.js +0 -0
  3098. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/Schema.js +0 -0
  3099. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/map.js +0 -0
  3100. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/null.js +0 -0
  3101. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/seq.js +0 -0
  3102. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/string.js +0 -0
  3103. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/bool.js +0 -0
  3104. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/float.js +0 -0
  3105. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/int.js +0 -0
  3106. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/schema.js +0 -0
  3107. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/json/schema.js +0 -0
  3108. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/tags.js +0 -0
  3109. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/binary.js +0 -0
  3110. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/bool.js +0 -0
  3111. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/float.js +0 -0
  3112. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/int.js +0 -0
  3113. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/merge.js +0 -0
  3114. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/omap.js +0 -0
  3115. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/pairs.js +0 -0
  3116. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/schema.js +0 -0
  3117. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/set.js +0 -0
  3118. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/timestamp.js +0 -0
  3119. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/foldFlowLines.js +0 -0
  3120. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringify.js +0 -0
  3121. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyCollection.js +0 -0
  3122. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyComment.js +0 -0
  3123. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyDocument.js +0 -0
  3124. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyNumber.js +0 -0
  3125. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyPair.js +0 -0
  3126. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyString.js +0 -0
  3127. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/util.js +0 -0
  3128. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/visit.js +0 -0
  3129. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/index.js +0 -0
  3130. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/package.json +0 -0
  3131. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/cli.d.ts +0 -0
  3132. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/cli.mjs +0 -0
  3133. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-collection.d.ts +0 -0
  3134. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-collection.js +0 -0
  3135. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-doc.d.ts +0 -0
  3136. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-doc.js +0 -0
  3137. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-node.d.ts +0 -0
  3138. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-node.js +0 -0
  3139. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-scalar.d.ts +0 -0
  3140. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-scalar.js +0 -0
  3141. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/composer.d.ts +0 -0
  3142. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/composer.js +0 -0
  3143. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-map.d.ts +0 -0
  3144. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-map.js +0 -0
  3145. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-scalar.d.ts +0 -0
  3146. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-scalar.js +0 -0
  3147. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-seq.d.ts +0 -0
  3148. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-seq.js +0 -0
  3149. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-end.d.ts +0 -0
  3150. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-end.js +0 -0
  3151. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-collection.d.ts +0 -0
  3152. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-collection.js +0 -0
  3153. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-scalar.d.ts +0 -0
  3154. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-scalar.js +0 -0
  3155. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-props.d.ts +0 -0
  3156. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-props.js +0 -0
  3157. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-contains-newline.d.ts +0 -0
  3158. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-contains-newline.js +0 -0
  3159. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-empty-scalar-position.d.ts +0 -0
  3160. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-empty-scalar-position.js +0 -0
  3161. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-flow-indent-check.d.ts +0 -0
  3162. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-flow-indent-check.js +0 -0
  3163. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-map-includes.d.ts +0 -0
  3164. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-map-includes.js +0 -0
  3165. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/Document.d.ts +0 -0
  3166. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/Document.js +0 -0
  3167. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/anchors.d.ts +0 -0
  3168. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/anchors.js +0 -0
  3169. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/applyReviver.d.ts +0 -0
  3170. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/applyReviver.js +0 -0
  3171. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/createNode.d.ts +0 -0
  3172. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/createNode.js +0 -0
  3173. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/directives.d.ts +0 -0
  3174. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/directives.js +0 -0
  3175. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/errors.d.ts +0 -0
  3176. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/errors.js +0 -0
  3177. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/index.d.ts +0 -0
  3178. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/index.js +0 -0
  3179. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/log.d.ts +0 -0
  3180. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/log.js +0 -0
  3181. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Alias.d.ts +0 -0
  3182. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Alias.js +0 -0
  3183. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Collection.d.ts +0 -0
  3184. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Collection.js +0 -0
  3185. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Node.d.ts +0 -0
  3186. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Node.js +0 -0
  3187. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Pair.d.ts +0 -0
  3188. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Pair.js +0 -0
  3189. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Scalar.d.ts +0 -0
  3190. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Scalar.js +0 -0
  3191. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLMap.d.ts +0 -0
  3192. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLMap.js +0 -0
  3193. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLSeq.d.ts +0 -0
  3194. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLSeq.js +0 -0
  3195. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/addPairToJSMap.d.ts +0 -0
  3196. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/addPairToJSMap.js +0 -0
  3197. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/identity.d.ts +0 -0
  3198. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/identity.js +0 -0
  3199. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/toJS.d.ts +0 -0
  3200. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/toJS.js +0 -0
  3201. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/options.d.ts +0 -0
  3202. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-scalar.d.ts +0 -0
  3203. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-scalar.js +0 -0
  3204. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-stringify.d.ts +0 -0
  3205. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-stringify.js +0 -0
  3206. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-visit.d.ts +0 -0
  3207. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-visit.js +0 -0
  3208. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst.d.ts +0 -0
  3209. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst.js +0 -0
  3210. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/lexer.d.ts +0 -0
  3211. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/lexer.js +0 -0
  3212. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/line-counter.d.ts +0 -0
  3213. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/line-counter.js +0 -0
  3214. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/parser.d.ts +0 -0
  3215. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/parser.js +0 -0
  3216. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/public-api.d.ts +0 -0
  3217. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/public-api.js +0 -0
  3218. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/Schema.d.ts +0 -0
  3219. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/Schema.js +0 -0
  3220. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/map.d.ts +0 -0
  3221. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/map.js +0 -0
  3222. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/null.d.ts +0 -0
  3223. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/null.js +0 -0
  3224. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/seq.d.ts +0 -0
  3225. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/seq.js +0 -0
  3226. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/string.d.ts +0 -0
  3227. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/string.js +0 -0
  3228. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/bool.d.ts +0 -0
  3229. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/bool.js +0 -0
  3230. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/float.d.ts +0 -0
  3231. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/float.js +0 -0
  3232. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/int.d.ts +0 -0
  3233. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/int.js +0 -0
  3234. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/schema.d.ts +0 -0
  3235. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/schema.js +0 -0
  3236. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/json/schema.d.ts +0 -0
  3237. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/json/schema.js +0 -0
  3238. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/json-schema.d.ts +0 -0
  3239. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/tags.d.ts +0 -0
  3240. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/tags.js +0 -0
  3241. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/types.d.ts +0 -0
  3242. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/binary.d.ts +0 -0
  3243. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/binary.js +0 -0
  3244. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/bool.d.ts +0 -0
  3245. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/bool.js +0 -0
  3246. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/float.d.ts +0 -0
  3247. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/float.js +0 -0
  3248. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/int.d.ts +0 -0
  3249. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/int.js +0 -0
  3250. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/merge.d.ts +0 -0
  3251. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/merge.js +0 -0
  3252. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/omap.d.ts +0 -0
  3253. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/omap.js +0 -0
  3254. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/pairs.d.ts +0 -0
  3255. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/pairs.js +0 -0
  3256. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/schema.d.ts +0 -0
  3257. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/schema.js +0 -0
  3258. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/set.d.ts +0 -0
  3259. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/set.js +0 -0
  3260. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/timestamp.d.ts +0 -0
  3261. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/timestamp.js +0 -0
  3262. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/foldFlowLines.d.ts +0 -0
  3263. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/foldFlowLines.js +0 -0
  3264. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringify.d.ts +0 -0
  3265. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringify.js +0 -0
  3266. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyCollection.d.ts +0 -0
  3267. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyCollection.js +0 -0
  3268. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyComment.d.ts +0 -0
  3269. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyComment.js +0 -0
  3270. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyDocument.d.ts +0 -0
  3271. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyDocument.js +0 -0
  3272. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyNumber.d.ts +0 -0
  3273. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyNumber.js +0 -0
  3274. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyPair.d.ts +0 -0
  3275. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyPair.js +0 -0
  3276. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyString.d.ts +0 -0
  3277. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyString.js +0 -0
  3278. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/test-events.d.ts +0 -0
  3279. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/test-events.js +0 -0
  3280. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/util.d.ts +0 -0
  3281. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/util.js +0 -0
  3282. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/visit.d.ts +0 -0
  3283. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/visit.js +0 -0
  3284. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/package.json +0 -0
  3285. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/util.js +0 -0
  3286. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/LICENSE +0 -0
  3287. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/README.md +0 -0
  3288. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/index.d.ts +0 -0
  3289. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/index.js +0 -0
  3290. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/index.js.map +0 -0
  3291. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/types.d.ts +0 -0
  3292. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/types.js +0 -0
  3293. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/types.js.map +0 -0
  3294. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/package.json +0 -0
@@ -0,0 +1,2370 @@
1
+ /**
2
+ * @fileoverview A class to manage state of generating a code path.
3
+ * @author Toru Nagashima
4
+ */
5
+
6
+ "use strict";
7
+
8
+ //------------------------------------------------------------------------------
9
+ // Requirements
10
+ //------------------------------------------------------------------------------
11
+
12
+ const CodePathSegment = require("./code-path-segment"),
13
+ ForkContext = require("./fork-context");
14
+
15
+ //-----------------------------------------------------------------------------
16
+ // Contexts
17
+ //-----------------------------------------------------------------------------
18
+
19
+ /**
20
+ * Represents the context in which a `break` statement can be used.
21
+ *
22
+ * A `break` statement without a label is only valid in a few places in
23
+ * JavaScript: any type of loop or a `switch` statement. Otherwise, `break`
24
+ * without a label causes a syntax error. For these contexts, `breakable` is
25
+ * set to `true` to indicate that a `break` without a label is valid.
26
+ *
27
+ * However, a `break` statement with a label is also valid inside of a labeled
28
+ * statement. For example, this is valid:
29
+ *
30
+ * a : {
31
+ * break a;
32
+ * }
33
+ *
34
+ * The `breakable` property is set false for labeled statements to indicate
35
+ * that `break` without a label is invalid.
36
+ */
37
+ class BreakContext {
38
+ /**
39
+ * Creates a new instance.
40
+ * @param {BreakContext} upperContext The previous `BreakContext`.
41
+ * @param {boolean} breakable Indicates if we are inside a statement where
42
+ * `break` without a label will exit the statement.
43
+ * @param {string|null} label The label for the statement.
44
+ * @param {ForkContext} forkContext The current fork context.
45
+ */
46
+ constructor(upperContext, breakable, label, forkContext) {
47
+ /**
48
+ * The previous `BreakContext`
49
+ * @type {BreakContext}
50
+ */
51
+ this.upper = upperContext;
52
+
53
+ /**
54
+ * Indicates if we are inside a statement where `break` without a label
55
+ * will exit the statement.
56
+ * @type {boolean}
57
+ */
58
+ this.breakable = breakable;
59
+
60
+ /**
61
+ * The label associated with the statement.
62
+ * @type {string|null}
63
+ */
64
+ this.label = label;
65
+
66
+ /**
67
+ * The fork context for the `break`.
68
+ * @type {ForkContext}
69
+ */
70
+ this.brokenForkContext = ForkContext.newEmpty(forkContext);
71
+ }
72
+ }
73
+
74
+ /**
75
+ * Represents the context for `ChainExpression` nodes.
76
+ */
77
+ class ChainContext {
78
+ /**
79
+ * Creates a new instance.
80
+ * @param {ChainContext} upperContext The previous `ChainContext`.
81
+ */
82
+ constructor(upperContext) {
83
+ /**
84
+ * The previous `ChainContext`
85
+ * @type {ChainContext}
86
+ */
87
+ this.upper = upperContext;
88
+
89
+ /**
90
+ * The number of choice contexts inside of the `ChainContext`.
91
+ * @type {number}
92
+ */
93
+ this.choiceContextCount = 0;
94
+ }
95
+ }
96
+
97
+ /**
98
+ * Represents a choice in the code path.
99
+ *
100
+ * Choices are created by logical operators such as `&&`, loops, conditionals,
101
+ * and `if` statements. This is the point at which the code path has a choice of
102
+ * which direction to go.
103
+ *
104
+ * The result of a choice might be in the left (test) expression of another choice,
105
+ * and in that case, may create a new fork. For example, `a || b` is a choice
106
+ * but does not create a new fork because the result of the expression is
107
+ * not used as the test expression in another expression. In this case,
108
+ * `isForkingAsResult` is false. In the expression `a || b || c`, the `a || b`
109
+ * expression appears as the test expression for `|| c`, so the
110
+ * result of `a || b` creates a fork because execution may or may not
111
+ * continue to `|| c`. `isForkingAsResult` for `a || b` in this case is true
112
+ * while `isForkingAsResult` for `|| c` is false. (`isForkingAsResult` is always
113
+ * false for `if` statements, conditional expressions, and loops.)
114
+ *
115
+ * All of the choices except one (`??`) operate on a true/false fork, meaning if
116
+ * true go one way and if false go the other (tracked by `trueForkContext` and
117
+ * `falseForkContext`). The `??` operator doesn't operate on true/false because
118
+ * the left expression is evaluated to be nullish or not, so only if nullish do
119
+ * we fork to the right expression (tracked by `nullishForkContext`).
120
+ */
121
+ class ChoiceContext {
122
+ /**
123
+ * Creates a new instance.
124
+ * @param {ChoiceContext} upperContext The previous `ChoiceContext`.
125
+ * @param {string} kind The kind of choice. If it's a logical or assignment expression, this
126
+ * is `"&&"` or `"||"` or `"??"`; if it's an `if` statement or
127
+ * conditional expression, this is `"test"`; otherwise, this is `"loop"`.
128
+ * @param {boolean} isForkingAsResult Indicates if the result of the choice
129
+ * creates a fork.
130
+ * @param {ForkContext} forkContext The containing `ForkContext`.
131
+ */
132
+ constructor(upperContext, kind, isForkingAsResult, forkContext) {
133
+ /**
134
+ * The previous `ChoiceContext`
135
+ * @type {ChoiceContext}
136
+ */
137
+ this.upper = upperContext;
138
+
139
+ /**
140
+ * The kind of choice. If it's a logical or assignment expression, this
141
+ * is `"&&"` or `"||"` or `"??"`; if it's an `if` statement or
142
+ * conditional expression, this is `"test"`; otherwise, this is `"loop"`.
143
+ * @type {string}
144
+ */
145
+ this.kind = kind;
146
+
147
+ /**
148
+ * Indicates if the result of the choice forks the code path.
149
+ * @type {boolean}
150
+ */
151
+ this.isForkingAsResult = isForkingAsResult;
152
+
153
+ /**
154
+ * The fork context for the `true` path of the choice.
155
+ * @type {ForkContext}
156
+ */
157
+ this.trueForkContext = ForkContext.newEmpty(forkContext);
158
+
159
+ /**
160
+ * The fork context for the `false` path of the choice.
161
+ * @type {ForkContext}
162
+ */
163
+ this.falseForkContext = ForkContext.newEmpty(forkContext);
164
+
165
+ /**
166
+ * The fork context for when the choice result is `null` or `undefined`.
167
+ * @type {ForkContext}
168
+ */
169
+ this.nullishForkContext = ForkContext.newEmpty(forkContext);
170
+
171
+ /**
172
+ * Indicates if any of `trueForkContext`, `falseForkContext`, or
173
+ * `nullishForkContext` have been updated with segments from a child context.
174
+ * @type {boolean}
175
+ */
176
+ this.processed = false;
177
+ }
178
+ }
179
+
180
+ /**
181
+ * Base class for all loop contexts.
182
+ */
183
+ class LoopContextBase {
184
+ /**
185
+ * Creates a new instance.
186
+ * @param {LoopContext|null} upperContext The previous `LoopContext`.
187
+ * @param {string} type The AST node's `type` for the loop.
188
+ * @param {string|null} label The label for the loop from an enclosing `LabeledStatement`.
189
+ * @param {BreakContext} breakContext The context for breaking the loop.
190
+ */
191
+ constructor(upperContext, type, label, breakContext) {
192
+ /**
193
+ * The previous `LoopContext`.
194
+ * @type {LoopContext}
195
+ */
196
+ this.upper = upperContext;
197
+
198
+ /**
199
+ * The AST node's `type` for the loop.
200
+ * @type {string}
201
+ */
202
+ this.type = type;
203
+
204
+ /**
205
+ * The label for the loop from an enclosing `LabeledStatement`.
206
+ * @type {string|null}
207
+ */
208
+ this.label = label;
209
+
210
+ /**
211
+ * The fork context for when `break` is encountered.
212
+ * @type {ForkContext}
213
+ */
214
+ this.brokenForkContext = breakContext.brokenForkContext;
215
+ }
216
+ }
217
+
218
+ /**
219
+ * Represents the context for a `while` loop.
220
+ */
221
+ class WhileLoopContext extends LoopContextBase {
222
+ /**
223
+ * Creates a new instance.
224
+ * @param {LoopContext|null} upperContext The previous `LoopContext`.
225
+ * @param {string|null} label The label for the loop from an enclosing `LabeledStatement`.
226
+ * @param {BreakContext} breakContext The context for breaking the loop.
227
+ */
228
+ constructor(upperContext, label, breakContext) {
229
+ super(upperContext, "WhileStatement", label, breakContext);
230
+
231
+ /**
232
+ * The hardcoded literal boolean test condition for
233
+ * the loop. Used to catch infinite or skipped loops.
234
+ * @type {boolean|undefined}
235
+ */
236
+ this.test = void 0;
237
+
238
+ /**
239
+ * The segments representing the test condition where `continue` will
240
+ * jump to. The test condition will typically have just one segment but
241
+ * it's possible for there to be more than one.
242
+ * @type {Array<CodePathSegment>|null}
243
+ */
244
+ this.continueDestSegments = null;
245
+ }
246
+ }
247
+
248
+ /**
249
+ * Represents the context for a `do-while` loop.
250
+ */
251
+ class DoWhileLoopContext extends LoopContextBase {
252
+ /**
253
+ * Creates a new instance.
254
+ * @param {LoopContext|null} upperContext The previous `LoopContext`.
255
+ * @param {string|null} label The label for the loop from an enclosing `LabeledStatement`.
256
+ * @param {BreakContext} breakContext The context for breaking the loop.
257
+ * @param {ForkContext} forkContext The enclosing fork context.
258
+ */
259
+ constructor(upperContext, label, breakContext, forkContext) {
260
+ super(upperContext, "DoWhileStatement", label, breakContext);
261
+
262
+ /**
263
+ * The hardcoded literal boolean test condition for
264
+ * the loop. Used to catch infinite or skipped loops.
265
+ * @type {boolean|undefined}
266
+ */
267
+ this.test = void 0;
268
+
269
+ /**
270
+ * The segments at the start of the loop body. This is the only loop
271
+ * where the test comes at the end, so the first iteration always
272
+ * happens and we need a reference to the first statements.
273
+ * @type {Array<CodePathSegment>|null}
274
+ */
275
+ this.entrySegments = null;
276
+
277
+ /**
278
+ * The fork context to follow when a `continue` is found.
279
+ * @type {ForkContext}
280
+ */
281
+ this.continueForkContext = ForkContext.newEmpty(forkContext);
282
+ }
283
+ }
284
+
285
+ /**
286
+ * Represents the context for a `for` loop.
287
+ */
288
+ class ForLoopContext extends LoopContextBase {
289
+ /**
290
+ * Creates a new instance.
291
+ * @param {LoopContext|null} upperContext The previous `LoopContext`.
292
+ * @param {string|null} label The label for the loop from an enclosing `LabeledStatement`.
293
+ * @param {BreakContext} breakContext The context for breaking the loop.
294
+ */
295
+ constructor(upperContext, label, breakContext) {
296
+ super(upperContext, "ForStatement", label, breakContext);
297
+
298
+ /**
299
+ * The hardcoded literal boolean test condition for
300
+ * the loop. Used to catch infinite or skipped loops.
301
+ * @type {boolean|undefined}
302
+ */
303
+ this.test = void 0;
304
+
305
+ /**
306
+ * The end of the init expression. This may change during the lifetime
307
+ * of the instance as we traverse the loop because some loops don't have
308
+ * an init expression.
309
+ * @type {Array<CodePathSegment>|null}
310
+ */
311
+ this.endOfInitSegments = null;
312
+
313
+ /**
314
+ * The start of the test expression. This may change during the lifetime
315
+ * of the instance as we traverse the loop because some loops don't have
316
+ * a test expression.
317
+ * @type {Array<CodePathSegment>|null}
318
+ */
319
+ this.testSegments = null;
320
+
321
+ /**
322
+ * The end of the test expression. This may change during the lifetime
323
+ * of the instance as we traverse the loop because some loops don't have
324
+ * a test expression.
325
+ * @type {Array<CodePathSegment>|null}
326
+ */
327
+ this.endOfTestSegments = null;
328
+
329
+ /**
330
+ * The start of the update expression. This may change during the lifetime
331
+ * of the instance as we traverse the loop because some loops don't have
332
+ * an update expression.
333
+ * @type {Array<CodePathSegment>|null}
334
+ */
335
+ this.updateSegments = null;
336
+
337
+ /**
338
+ * The end of the update expression. This may change during the lifetime
339
+ * of the instance as we traverse the loop because some loops don't have
340
+ * an update expression.
341
+ * @type {Array<CodePathSegment>|null}
342
+ */
343
+ this.endOfUpdateSegments = null;
344
+
345
+ /**
346
+ * The segments representing the test condition where `continue` will
347
+ * jump to. The test condition will typically have just one segment but
348
+ * it's possible for there to be more than one. This may change during the
349
+ * lifetime of the instance as we traverse the loop because some loops
350
+ * don't have an update expression. When there is an update expression, this
351
+ * will end up pointing to that expression; otherwise it will end up pointing
352
+ * to the test expression.
353
+ * @type {Array<CodePathSegment>|null}
354
+ */
355
+ this.continueDestSegments = null;
356
+ }
357
+ }
358
+
359
+ /**
360
+ * Represents the context for a `for-in` loop.
361
+ *
362
+ * Terminology:
363
+ * - "left" means the part of the loop to the left of the `in` keyword. For
364
+ * example, in `for (var x in y)`, the left is `var x`.
365
+ * - "right" means the part of the loop to the right of the `in` keyword. For
366
+ * example, in `for (var x in y)`, the right is `y`.
367
+ */
368
+ class ForInLoopContext extends LoopContextBase {
369
+ /**
370
+ * Creates a new instance.
371
+ * @param {LoopContext|null} upperContext The previous `LoopContext`.
372
+ * @param {string|null} label The label for the loop from an enclosing `LabeledStatement`.
373
+ * @param {BreakContext} breakContext The context for breaking the loop.
374
+ */
375
+ constructor(upperContext, label, breakContext) {
376
+ super(upperContext, "ForInStatement", label, breakContext);
377
+
378
+ /**
379
+ * The segments that came immediately before the start of the loop.
380
+ * This allows you to traverse backwards out of the loop into the
381
+ * surrounding code. This is necessary to evaluate the right expression
382
+ * correctly, as it must be evaluated in the same way as the left
383
+ * expression, but the pointer to these segments would otherwise be
384
+ * lost if not stored on the instance. Once the right expression has
385
+ * been evaluated, this property is no longer used.
386
+ * @type {Array<CodePathSegment>|null}
387
+ */
388
+ this.prevSegments = null;
389
+
390
+ /**
391
+ * Segments representing the start of everything to the left of the
392
+ * `in` keyword. This can be used to move forward towards
393
+ * `endOfLeftSegments`. `leftSegments` and `endOfLeftSegments` are
394
+ * effectively the head and tail of a doubly-linked list.
395
+ * @type {Array<CodePathSegment>|null}
396
+ */
397
+ this.leftSegments = null;
398
+
399
+ /**
400
+ * Segments representing the end of everything to the left of the
401
+ * `in` keyword. This can be used to move backward towards `leftSegments`.
402
+ * `leftSegments` and `endOfLeftSegments` are effectively the head
403
+ * and tail of a doubly-linked list.
404
+ * @type {Array<CodePathSegment>|null}
405
+ */
406
+ this.endOfLeftSegments = null;
407
+
408
+ /**
409
+ * The segments representing the left expression where `continue` will
410
+ * jump to. In `for-in` loops, `continue` must always re-execute the
411
+ * left expression each time through the loop. This contains the same
412
+ * segments as `leftSegments`, but is duplicated here so each loop
413
+ * context has the same property pointing to where `continue` should
414
+ * end up.
415
+ * @type {Array<CodePathSegment>|null}
416
+ */
417
+ this.continueDestSegments = null;
418
+ }
419
+ }
420
+
421
+ /**
422
+ * Represents the context for a `for-of` loop.
423
+ */
424
+ class ForOfLoopContext extends LoopContextBase {
425
+ /**
426
+ * Creates a new instance.
427
+ * @param {LoopContext|null} upperContext The previous `LoopContext`.
428
+ * @param {string|null} label The label for the loop from an enclosing `LabeledStatement`.
429
+ * @param {BreakContext} breakContext The context for breaking the loop.
430
+ */
431
+ constructor(upperContext, label, breakContext) {
432
+ super(upperContext, "ForOfStatement", label, breakContext);
433
+
434
+ /**
435
+ * The segments that came immediately before the start of the loop.
436
+ * This allows you to traverse backwards out of the loop into the
437
+ * surrounding code. This is necessary to evaluate the right expression
438
+ * correctly, as it must be evaluated in the same way as the left
439
+ * expression, but the pointer to these segments would otherwise be
440
+ * lost if not stored on the instance. Once the right expression has
441
+ * been evaluated, this property is no longer used.
442
+ * @type {Array<CodePathSegment>|null}
443
+ */
444
+ this.prevSegments = null;
445
+
446
+ /**
447
+ * Segments representing the start of everything to the left of the
448
+ * `of` keyword. This can be used to move forward towards
449
+ * `endOfLeftSegments`. `leftSegments` and `endOfLeftSegments` are
450
+ * effectively the head and tail of a doubly-linked list.
451
+ * @type {Array<CodePathSegment>|null}
452
+ */
453
+ this.leftSegments = null;
454
+
455
+ /**
456
+ * Segments representing the end of everything to the left of the
457
+ * `of` keyword. This can be used to move backward towards `leftSegments`.
458
+ * `leftSegments` and `endOfLeftSegments` are effectively the head
459
+ * and tail of a doubly-linked list.
460
+ * @type {Array<CodePathSegment>|null}
461
+ */
462
+ this.endOfLeftSegments = null;
463
+
464
+ /**
465
+ * The segments representing the left expression where `continue` will
466
+ * jump to. In `for-in` loops, `continue` must always re-execute the
467
+ * left expression each time through the loop. This contains the same
468
+ * segments as `leftSegments`, but is duplicated here so each loop
469
+ * context has the same property pointing to where `continue` should
470
+ * end up.
471
+ * @type {Array<CodePathSegment>|null}
472
+ */
473
+ this.continueDestSegments = null;
474
+ }
475
+ }
476
+
477
+ /**
478
+ * Represents the context for any loop.
479
+ * @typedef {WhileLoopContext|DoWhileLoopContext|ForLoopContext|ForInLoopContext|ForOfLoopContext} LoopContext
480
+ */
481
+
482
+ /**
483
+ * Represents the context for a `switch` statement.
484
+ */
485
+ class SwitchContext {
486
+ /**
487
+ * Creates a new instance.
488
+ * @param {SwitchContext} upperContext The previous context.
489
+ * @param {boolean} hasCase Indicates if there is at least one `case` statement.
490
+ * `default` doesn't count.
491
+ */
492
+ constructor(upperContext, hasCase) {
493
+ /**
494
+ * The previous context.
495
+ * @type {SwitchContext}
496
+ */
497
+ this.upper = upperContext;
498
+
499
+ /**
500
+ * Indicates if there is at least one `case` statement. `default` doesn't count.
501
+ * @type {boolean}
502
+ */
503
+ this.hasCase = hasCase;
504
+
505
+ /**
506
+ * The `default` keyword.
507
+ * @type {Array<CodePathSegment>|null}
508
+ */
509
+ this.defaultSegments = null;
510
+
511
+ /**
512
+ * The default case body starting segments.
513
+ * @type {Array<CodePathSegment>|null}
514
+ */
515
+ this.defaultBodySegments = null;
516
+
517
+ /**
518
+ * Indicates if a `default` case and is empty exists.
519
+ * @type {boolean}
520
+ */
521
+ this.foundEmptyDefault = false;
522
+
523
+ /**
524
+ * Indicates that a `default` exists and is the last case.
525
+ * @type {boolean}
526
+ */
527
+ this.lastIsDefault = false;
528
+
529
+ /**
530
+ * The number of fork contexts created. This is equivalent to the
531
+ * number of `case` statements plus a `default` statement (if present).
532
+ * @type {number}
533
+ */
534
+ this.forkCount = 0;
535
+ }
536
+ }
537
+
538
+ /**
539
+ * Represents the context for a `try` statement.
540
+ */
541
+ class TryContext {
542
+ /**
543
+ * Creates a new instance.
544
+ * @param {TryContext} upperContext The previous context.
545
+ * @param {boolean} hasFinalizer Indicates if the `try` statement has a
546
+ * `finally` block.
547
+ * @param {ForkContext} forkContext The enclosing fork context.
548
+ */
549
+ constructor(upperContext, hasFinalizer, forkContext) {
550
+ /**
551
+ * The previous context.
552
+ * @type {TryContext}
553
+ */
554
+ this.upper = upperContext;
555
+
556
+ /**
557
+ * Indicates if the `try` statement has a `finally` block.
558
+ * @type {boolean}
559
+ */
560
+ this.hasFinalizer = hasFinalizer;
561
+
562
+ /**
563
+ * Tracks the traversal position inside of the `try` statement. This is
564
+ * used to help determine the context necessary to create paths because
565
+ * a `try` statement may or may not have `catch` or `finally` blocks,
566
+ * and code paths behave differently in those blocks.
567
+ * @type {"try"|"catch"|"finally"}
568
+ */
569
+ this.position = "try";
570
+
571
+ /**
572
+ * If the `try` statement has a `finally` block, this affects how a
573
+ * `return` statement behaves in the `try` block. Without `finally`,
574
+ * `return` behaves as usual and doesn't require a fork; with `finally`,
575
+ * `return` forks into the `finally` block, so we need a fork context
576
+ * to track it.
577
+ * @type {ForkContext|null}
578
+ */
579
+ this.returnedForkContext = hasFinalizer
580
+ ? ForkContext.newEmpty(forkContext)
581
+ : null;
582
+
583
+ /**
584
+ * When a `throw` occurs inside of a `try` block, the code path forks
585
+ * into the `catch` or `finally` blocks, and this fork context tracks
586
+ * that path.
587
+ * @type {ForkContext}
588
+ */
589
+ this.thrownForkContext = ForkContext.newEmpty(forkContext);
590
+
591
+ /**
592
+ * Indicates if the last segment in the `try` block is reachable.
593
+ * @type {boolean}
594
+ */
595
+ this.lastOfTryIsReachable = false;
596
+
597
+ /**
598
+ * Indicates if the last segment in the `catch` block is reachable.
599
+ * @type {boolean}
600
+ */
601
+ this.lastOfCatchIsReachable = false;
602
+ }
603
+ }
604
+
605
+ //------------------------------------------------------------------------------
606
+ // Helpers
607
+ //------------------------------------------------------------------------------
608
+
609
+ /**
610
+ * Adds given segments into the `dest` array.
611
+ * If the `others` array does not include the given segments, adds to the `all`
612
+ * array as well.
613
+ *
614
+ * This adds only reachable and used segments.
615
+ * @param {CodePathSegment[]} dest A destination array (`returnedSegments` or `thrownSegments`).
616
+ * @param {CodePathSegment[]} others Another destination array (`returnedSegments` or `thrownSegments`).
617
+ * @param {CodePathSegment[]} all The unified destination array (`finalSegments`).
618
+ * @param {CodePathSegment[]} segments Segments to add.
619
+ * @returns {void}
620
+ */
621
+ function addToReturnedOrThrown(dest, others, all, segments) {
622
+ for (let i = 0; i < segments.length; ++i) {
623
+ const segment = segments[i];
624
+
625
+ dest.push(segment);
626
+ if (!others.includes(segment)) {
627
+ all.push(segment);
628
+ }
629
+ }
630
+ }
631
+
632
+ /**
633
+ * Gets a loop context for a `continue` statement based on a given label.
634
+ * @param {CodePathState} state The state to search within.
635
+ * @param {string|null} label The label of a `continue` statement.
636
+ * @returns {LoopContext} A loop-context for a `continue` statement.
637
+ */
638
+ function getContinueContext(state, label) {
639
+ if (!label) {
640
+ return state.loopContext;
641
+ }
642
+
643
+ let context = state.loopContext;
644
+
645
+ while (context) {
646
+ if (context.label === label) {
647
+ return context;
648
+ }
649
+ context = context.upper;
650
+ }
651
+
652
+ /* c8 ignore next */
653
+ return null;
654
+ }
655
+
656
+ /**
657
+ * Gets a context for a `break` statement.
658
+ * @param {CodePathState} state The state to search within.
659
+ * @param {string|null} label The label of a `break` statement.
660
+ * @returns {BreakContext} A context for a `break` statement.
661
+ */
662
+ function getBreakContext(state, label) {
663
+ let context = state.breakContext;
664
+
665
+ while (context) {
666
+ if (label ? context.label === label : context.breakable) {
667
+ return context;
668
+ }
669
+ context = context.upper;
670
+ }
671
+
672
+ /* c8 ignore next */
673
+ return null;
674
+ }
675
+
676
+ /**
677
+ * Gets a context for a `return` statement. There is just one special case:
678
+ * if there is a `try` statement with a `finally` block, because that alters
679
+ * how `return` behaves; otherwise, this just passes through the given state.
680
+ * @param {CodePathState} state The state to search within
681
+ * @returns {TryContext|CodePathState} A context for a `return` statement.
682
+ */
683
+ function getReturnContext(state) {
684
+ let context = state.tryContext;
685
+
686
+ while (context) {
687
+ if (context.hasFinalizer && context.position !== "finally") {
688
+ return context;
689
+ }
690
+ context = context.upper;
691
+ }
692
+
693
+ return state;
694
+ }
695
+
696
+ /**
697
+ * Gets a context for a `throw` statement. There is just one special case:
698
+ * if there is a `try` statement with a `finally` block and we are inside of
699
+ * a `catch` because that changes how `throw` behaves; otherwise, this just
700
+ * passes through the given state.
701
+ * @param {CodePathState} state The state to search within.
702
+ * @returns {TryContext|CodePathState} A context for a `throw` statement.
703
+ */
704
+ function getThrowContext(state) {
705
+ let context = state.tryContext;
706
+
707
+ while (context) {
708
+ if (
709
+ context.position === "try" ||
710
+ (context.hasFinalizer && context.position === "catch")
711
+ ) {
712
+ return context;
713
+ }
714
+ context = context.upper;
715
+ }
716
+
717
+ return state;
718
+ }
719
+
720
+ /**
721
+ * Removes a given value from a given array.
722
+ * @param {any[]} elements An array to remove the specific element.
723
+ * @param {any} value The value to be removed.
724
+ * @returns {void}
725
+ */
726
+ function removeFromArray(elements, value) {
727
+ elements.splice(elements.indexOf(value), 1);
728
+ }
729
+
730
+ /**
731
+ * Disconnect given segments.
732
+ *
733
+ * This is used in a process for switch statements.
734
+ * If there is the "default" chunk before other cases, the order is different
735
+ * between node's and running's.
736
+ * @param {CodePathSegment[]} prevSegments Forward segments to disconnect.
737
+ * @param {CodePathSegment[]} nextSegments Backward segments to disconnect.
738
+ * @returns {void}
739
+ */
740
+ function disconnectSegments(prevSegments, nextSegments) {
741
+ for (let i = 0; i < prevSegments.length; ++i) {
742
+ const prevSegment = prevSegments[i];
743
+ const nextSegment = nextSegments[i];
744
+
745
+ removeFromArray(prevSegment.nextSegments, nextSegment);
746
+ removeFromArray(prevSegment.allNextSegments, nextSegment);
747
+ removeFromArray(nextSegment.prevSegments, prevSegment);
748
+ removeFromArray(nextSegment.allPrevSegments, prevSegment);
749
+ }
750
+ }
751
+
752
+ /**
753
+ * Creates looping path between two arrays of segments, ensuring that there are
754
+ * paths going between matching segments in the arrays.
755
+ * @param {CodePathState} state The state to operate on.
756
+ * @param {CodePathSegment[]} unflattenedFromSegments Segments which are source.
757
+ * @param {CodePathSegment[]} unflattenedToSegments Segments which are destination.
758
+ * @returns {void}
759
+ */
760
+ function makeLooped(state, unflattenedFromSegments, unflattenedToSegments) {
761
+ const fromSegments = CodePathSegment.flattenUnusedSegments(
762
+ unflattenedFromSegments,
763
+ );
764
+ const toSegments = CodePathSegment.flattenUnusedSegments(
765
+ unflattenedToSegments,
766
+ );
767
+ const end = Math.min(fromSegments.length, toSegments.length);
768
+
769
+ /*
770
+ * This loop effectively updates a doubly-linked list between two collections
771
+ * of segments making sure that segments in the same array indices are
772
+ * combined to create a path.
773
+ */
774
+ for (let i = 0; i < end; ++i) {
775
+ // get the segments in matching array indices
776
+ const fromSegment = fromSegments[i];
777
+ const toSegment = toSegments[i];
778
+
779
+ /*
780
+ * If the destination segment is reachable, then create a path from the
781
+ * source segment to the destination segment.
782
+ */
783
+ if (toSegment.reachable) {
784
+ fromSegment.nextSegments.push(toSegment);
785
+ }
786
+
787
+ /*
788
+ * If the source segment is reachable, then create a path from the
789
+ * destination segment back to the source segment.
790
+ */
791
+ if (fromSegment.reachable) {
792
+ toSegment.prevSegments.push(fromSegment);
793
+ }
794
+
795
+ /*
796
+ * Also update the arrays that don't care if the segments are reachable
797
+ * or not. This should always happen regardless of anything else.
798
+ */
799
+ fromSegment.allNextSegments.push(toSegment);
800
+ toSegment.allPrevSegments.push(fromSegment);
801
+
802
+ /*
803
+ * If the destination segment has at least two previous segments in its
804
+ * path then that means there was one previous segment before this iteration
805
+ * of the loop was executed. So, we need to mark the source segment as
806
+ * looped.
807
+ */
808
+ if (toSegment.allPrevSegments.length >= 2) {
809
+ CodePathSegment.markPrevSegmentAsLooped(toSegment, fromSegment);
810
+ }
811
+
812
+ // let the code path analyzer know that there's been a loop created
813
+ state.notifyLooped(fromSegment, toSegment);
814
+ }
815
+ }
816
+
817
+ /**
818
+ * Finalizes segments of `test` chunk of a ForStatement.
819
+ *
820
+ * - Adds `false` paths to paths which are leaving from the loop.
821
+ * - Sets `true` paths to paths which go to the body.
822
+ * @param {LoopContext} context A loop context to modify.
823
+ * @param {ChoiceContext} choiceContext A choice context of this loop.
824
+ * @param {CodePathSegment[]} head The current head paths.
825
+ * @returns {void}
826
+ */
827
+ function finalizeTestSegmentsOfFor(context, choiceContext, head) {
828
+ /*
829
+ * If this choice context doesn't already contain paths from a
830
+ * child context, then add the current head to each potential path.
831
+ */
832
+ if (!choiceContext.processed) {
833
+ choiceContext.trueForkContext.add(head);
834
+ choiceContext.falseForkContext.add(head);
835
+ choiceContext.nullishForkContext.add(head);
836
+ }
837
+
838
+ /*
839
+ * If the test condition isn't a hardcoded truthy value, then `break`
840
+ * must follow the same path as if the test condition is false. To represent
841
+ * that, we append the path for when the loop test is false (represented by
842
+ * `falseForkContext`) to the `brokenForkContext`.
843
+ */
844
+ if (context.test !== true) {
845
+ context.brokenForkContext.addAll(choiceContext.falseForkContext);
846
+ }
847
+
848
+ context.endOfTestSegments = choiceContext.trueForkContext.makeNext(0, -1);
849
+ }
850
+
851
+ //------------------------------------------------------------------------------
852
+ // Public Interface
853
+ //------------------------------------------------------------------------------
854
+
855
+ /**
856
+ * A class which manages state to analyze code paths.
857
+ */
858
+ class CodePathState {
859
+ /**
860
+ * Creates a new instance.
861
+ * @param {IdGenerator} idGenerator An id generator to generate id for code
862
+ * path segments.
863
+ * @param {Function} onLooped A callback function to notify looping.
864
+ */
865
+ constructor(idGenerator, onLooped) {
866
+ /**
867
+ * The ID generator to use when creating new segments.
868
+ * @type {IdGenerator}
869
+ */
870
+ this.idGenerator = idGenerator;
871
+
872
+ /**
873
+ * A callback function to call when there is a loop.
874
+ * @type {Function}
875
+ */
876
+ this.notifyLooped = onLooped;
877
+
878
+ /**
879
+ * The root fork context for this state.
880
+ * @type {ForkContext}
881
+ */
882
+ this.forkContext = ForkContext.newRoot(idGenerator);
883
+
884
+ /**
885
+ * Context for logical expressions, conditional expressions, `if` statements,
886
+ * and loops.
887
+ * @type {ChoiceContext}
888
+ */
889
+ this.choiceContext = null;
890
+
891
+ /**
892
+ * Context for `switch` statements.
893
+ * @type {SwitchContext}
894
+ */
895
+ this.switchContext = null;
896
+
897
+ /**
898
+ * Context for `try` statements.
899
+ * @type {TryContext}
900
+ */
901
+ this.tryContext = null;
902
+
903
+ /**
904
+ * Context for loop statements.
905
+ * @type {LoopContext}
906
+ */
907
+ this.loopContext = null;
908
+
909
+ /**
910
+ * Context for `break` statements.
911
+ * @type {BreakContext}
912
+ */
913
+ this.breakContext = null;
914
+
915
+ /**
916
+ * Context for `ChainExpression` nodes.
917
+ * @type {ChainContext}
918
+ */
919
+ this.chainContext = null;
920
+
921
+ /**
922
+ * An array that tracks the current segments in the state. The array
923
+ * starts empty and segments are added with each `onCodePathSegmentStart`
924
+ * event and removed with each `onCodePathSegmentEnd` event. Effectively,
925
+ * this is tracking the code path segment traversal as the state is
926
+ * modified.
927
+ * @type {Array<CodePathSegment>}
928
+ */
929
+ this.currentSegments = [];
930
+
931
+ /**
932
+ * Tracks the starting segment for this path. This value never changes.
933
+ * @type {CodePathSegment}
934
+ */
935
+ this.initialSegment = this.forkContext.head[0];
936
+
937
+ /**
938
+ * The final segments of the code path which are either `return` or `throw`.
939
+ * This is a union of the segments in `returnedForkContext` and `thrownForkContext`.
940
+ * @type {Array<CodePathSegment>}
941
+ */
942
+ this.finalSegments = [];
943
+
944
+ /**
945
+ * The final segments of the code path which are `return`. These
946
+ * segments are also contained in `finalSegments`.
947
+ * @type {Array<CodePathSegment>}
948
+ */
949
+ this.returnedForkContext = [];
950
+
951
+ /**
952
+ * The final segments of the code path which are `throw`. These
953
+ * segments are also contained in `finalSegments`.
954
+ * @type {Array<CodePathSegment>}
955
+ */
956
+ this.thrownForkContext = [];
957
+
958
+ /*
959
+ * We add an `add` method so that these look more like fork contexts and
960
+ * can be used interchangeably when a fork context is needed to add more
961
+ * segments to a path.
962
+ *
963
+ * Ultimately, we want anything added to `returned` or `thrown` to also
964
+ * be added to `final`. We only add reachable and used segments to these
965
+ * arrays.
966
+ */
967
+ const final = this.finalSegments;
968
+ const returned = this.returnedForkContext;
969
+ const thrown = this.thrownForkContext;
970
+
971
+ returned.add = addToReturnedOrThrown.bind(
972
+ null,
973
+ returned,
974
+ thrown,
975
+ final,
976
+ );
977
+ thrown.add = addToReturnedOrThrown.bind(null, thrown, returned, final);
978
+ }
979
+
980
+ /**
981
+ * A passthrough property exposing the current pointer as part of the API.
982
+ * @type {CodePathSegment[]}
983
+ */
984
+ get headSegments() {
985
+ return this.forkContext.head;
986
+ }
987
+
988
+ /**
989
+ * The parent forking context.
990
+ * This is used for the root of new forks.
991
+ * @type {ForkContext}
992
+ */
993
+ get parentForkContext() {
994
+ const current = this.forkContext;
995
+
996
+ return current && current.upper;
997
+ }
998
+
999
+ /**
1000
+ * Creates and stacks new forking context.
1001
+ * @param {boolean} forkLeavingPath A flag which shows being in a
1002
+ * "finally" block.
1003
+ * @returns {ForkContext} The created context.
1004
+ */
1005
+ pushForkContext(forkLeavingPath) {
1006
+ this.forkContext = ForkContext.newEmpty(
1007
+ this.forkContext,
1008
+ forkLeavingPath,
1009
+ );
1010
+
1011
+ return this.forkContext;
1012
+ }
1013
+
1014
+ /**
1015
+ * Pops and merges the last forking context.
1016
+ * @returns {ForkContext} The last context.
1017
+ */
1018
+ popForkContext() {
1019
+ const lastContext = this.forkContext;
1020
+
1021
+ this.forkContext = lastContext.upper;
1022
+ this.forkContext.replaceHead(lastContext.makeNext(0, -1));
1023
+
1024
+ return lastContext;
1025
+ }
1026
+
1027
+ /**
1028
+ * Creates a new path.
1029
+ * @returns {void}
1030
+ */
1031
+ forkPath() {
1032
+ this.forkContext.add(this.parentForkContext.makeNext(-1, -1));
1033
+ }
1034
+
1035
+ /**
1036
+ * Creates a bypass path.
1037
+ * This is used for such as IfStatement which does not have "else" chunk.
1038
+ * @returns {void}
1039
+ */
1040
+ forkBypassPath() {
1041
+ this.forkContext.add(this.parentForkContext.head);
1042
+ }
1043
+
1044
+ //--------------------------------------------------------------------------
1045
+ // ConditionalExpression, LogicalExpression, IfStatement
1046
+ //--------------------------------------------------------------------------
1047
+
1048
+ /**
1049
+ * Creates a context for ConditionalExpression, LogicalExpression, AssignmentExpression (logical assignments only),
1050
+ * IfStatement, WhileStatement, DoWhileStatement, or ForStatement.
1051
+ *
1052
+ * LogicalExpressions have cases that it goes different paths between the
1053
+ * `true` case and the `false` case.
1054
+ *
1055
+ * For Example:
1056
+ *
1057
+ * if (a || b) {
1058
+ * foo();
1059
+ * } else {
1060
+ * bar();
1061
+ * }
1062
+ *
1063
+ * In this case, `b` is evaluated always in the code path of the `else`
1064
+ * block, but it's not so in the code path of the `if` block.
1065
+ * So there are 3 paths.
1066
+ *
1067
+ * a -> foo();
1068
+ * a -> b -> foo();
1069
+ * a -> b -> bar();
1070
+ * @param {string} kind A kind string.
1071
+ * If the new context is LogicalExpression's or AssignmentExpression's, this is `"&&"` or `"||"` or `"??"`.
1072
+ * If it's IfStatement's or ConditionalExpression's, this is `"test"`.
1073
+ * Otherwise, this is `"loop"`.
1074
+ * @param {boolean} isForkingAsResult Indicates if the result of the choice
1075
+ * creates a fork.
1076
+ * @returns {void}
1077
+ */
1078
+ pushChoiceContext(kind, isForkingAsResult) {
1079
+ this.choiceContext = new ChoiceContext(
1080
+ this.choiceContext,
1081
+ kind,
1082
+ isForkingAsResult,
1083
+ this.forkContext,
1084
+ );
1085
+ }
1086
+
1087
+ /**
1088
+ * Pops the last choice context and finalizes it.
1089
+ * This is called upon leaving a node that represents a choice.
1090
+ * @throws {Error} (Unreachable.)
1091
+ * @returns {ChoiceContext} The popped context.
1092
+ */
1093
+ popChoiceContext() {
1094
+ const poppedChoiceContext = this.choiceContext;
1095
+ const forkContext = this.forkContext;
1096
+ const head = forkContext.head;
1097
+
1098
+ this.choiceContext = poppedChoiceContext.upper;
1099
+
1100
+ switch (poppedChoiceContext.kind) {
1101
+ case "&&":
1102
+ case "||":
1103
+ case "??":
1104
+ /*
1105
+ * The `head` are the path of the right-hand operand.
1106
+ * If we haven't previously added segments from child contexts,
1107
+ * then we add these segments to all possible forks.
1108
+ */
1109
+ if (!poppedChoiceContext.processed) {
1110
+ poppedChoiceContext.trueForkContext.add(head);
1111
+ poppedChoiceContext.falseForkContext.add(head);
1112
+ poppedChoiceContext.nullishForkContext.add(head);
1113
+ }
1114
+
1115
+ /*
1116
+ * If this context is the left (test) expression for another choice
1117
+ * context, such as `a || b` in the expression `a || b || c`,
1118
+ * then we take the segments for this context and move them up
1119
+ * to the parent context.
1120
+ */
1121
+ if (poppedChoiceContext.isForkingAsResult) {
1122
+ const parentContext = this.choiceContext;
1123
+
1124
+ parentContext.trueForkContext.addAll(
1125
+ poppedChoiceContext.trueForkContext,
1126
+ );
1127
+ parentContext.falseForkContext.addAll(
1128
+ poppedChoiceContext.falseForkContext,
1129
+ );
1130
+ parentContext.nullishForkContext.addAll(
1131
+ poppedChoiceContext.nullishForkContext,
1132
+ );
1133
+ parentContext.processed = true;
1134
+
1135
+ // Exit early so we don't collapse all paths into one.
1136
+ return poppedChoiceContext;
1137
+ }
1138
+
1139
+ break;
1140
+
1141
+ case "test":
1142
+ if (!poppedChoiceContext.processed) {
1143
+ /*
1144
+ * The head segments are the path of the `if` block here.
1145
+ * Updates the `true` path with the end of the `if` block.
1146
+ */
1147
+ poppedChoiceContext.trueForkContext.clear();
1148
+ poppedChoiceContext.trueForkContext.add(head);
1149
+ } else {
1150
+ /*
1151
+ * The head segments are the path of the `else` block here.
1152
+ * Updates the `false` path with the end of the `else`
1153
+ * block.
1154
+ */
1155
+ poppedChoiceContext.falseForkContext.clear();
1156
+ poppedChoiceContext.falseForkContext.add(head);
1157
+ }
1158
+
1159
+ break;
1160
+
1161
+ case "loop":
1162
+ /*
1163
+ * Loops are addressed in `popLoopContext()` so just return
1164
+ * the context without modification.
1165
+ */
1166
+ return poppedChoiceContext;
1167
+
1168
+ /* c8 ignore next */
1169
+ default:
1170
+ throw new Error("unreachable");
1171
+ }
1172
+
1173
+ /*
1174
+ * Merge the true path with the false path to create a single path.
1175
+ */
1176
+ const combinedForkContext = poppedChoiceContext.trueForkContext;
1177
+
1178
+ combinedForkContext.addAll(poppedChoiceContext.falseForkContext);
1179
+ forkContext.replaceHead(combinedForkContext.makeNext(0, -1));
1180
+
1181
+ return poppedChoiceContext;
1182
+ }
1183
+
1184
+ /**
1185
+ * Creates a code path segment to represent right-hand operand of a logical
1186
+ * expression.
1187
+ * This is called in the preprocessing phase when entering a node.
1188
+ * @throws {Error} (Unreachable.)
1189
+ * @returns {void}
1190
+ */
1191
+ makeLogicalRight() {
1192
+ const currentChoiceContext = this.choiceContext;
1193
+ const forkContext = this.forkContext;
1194
+
1195
+ if (currentChoiceContext.processed) {
1196
+ /*
1197
+ * This context was already assigned segments from a child
1198
+ * choice context. In this case, we are concerned only about
1199
+ * the path that does not short-circuit and so ends up on the
1200
+ * right-hand operand of the logical expression.
1201
+ */
1202
+ let prevForkContext;
1203
+
1204
+ switch (currentChoiceContext.kind) {
1205
+ case "&&": // if true then go to the right-hand side.
1206
+ prevForkContext = currentChoiceContext.trueForkContext;
1207
+ break;
1208
+ case "||": // if false then go to the right-hand side.
1209
+ prevForkContext = currentChoiceContext.falseForkContext;
1210
+ break;
1211
+ case "??": // Both true/false can short-circuit, so needs the third path to go to the right-hand side. That's nullishForkContext.
1212
+ prevForkContext = currentChoiceContext.nullishForkContext;
1213
+ break;
1214
+ default:
1215
+ throw new Error("unreachable");
1216
+ }
1217
+
1218
+ /*
1219
+ * Create the segment for the right-hand operand of the logical expression
1220
+ * and adjust the fork context pointer to point there. The right-hand segment
1221
+ * is added at the end of all segments in `prevForkContext`.
1222
+ */
1223
+ forkContext.replaceHead(prevForkContext.makeNext(0, -1));
1224
+
1225
+ /*
1226
+ * We no longer need this list of segments.
1227
+ *
1228
+ * Reset `processed` because we've removed the segments from the child
1229
+ * choice context. This allows `popChoiceContext()` to continue adding
1230
+ * segments later.
1231
+ */
1232
+ prevForkContext.clear();
1233
+ currentChoiceContext.processed = false;
1234
+ } else {
1235
+ /*
1236
+ * This choice context was not assigned segments from a child
1237
+ * choice context, which means that it's a terminal logical
1238
+ * expression.
1239
+ *
1240
+ * `head` is the segments for the left-hand operand of the
1241
+ * logical expression.
1242
+ *
1243
+ * Each of the fork contexts below are empty at this point. We choose
1244
+ * the path(s) that will short-circuit and add the segment for the
1245
+ * left-hand operand to it. Ultimately, this will be the only segment
1246
+ * in that path due to the short-circuting, so we are just seeding
1247
+ * these paths to start.
1248
+ */
1249
+ switch (currentChoiceContext.kind) {
1250
+ case "&&":
1251
+ /*
1252
+ * In most contexts, when a && expression evaluates to false,
1253
+ * it short circuits, so we need to account for that by setting
1254
+ * the `falseForkContext` to the left operand.
1255
+ *
1256
+ * When a && expression is the left-hand operand for a ??
1257
+ * expression, such as `(a && b) ?? c`, a nullish value will
1258
+ * also short-circuit in a different way than a false value,
1259
+ * so we also set the `nullishForkContext` to the left operand.
1260
+ * This path is only used with a ?? expression and is thrown
1261
+ * away for any other type of logical expression, so it's safe
1262
+ * to always add.
1263
+ */
1264
+ currentChoiceContext.falseForkContext.add(forkContext.head);
1265
+ currentChoiceContext.nullishForkContext.add(
1266
+ forkContext.head,
1267
+ );
1268
+ break;
1269
+ case "||": // the true path can short-circuit.
1270
+ currentChoiceContext.trueForkContext.add(forkContext.head);
1271
+ break;
1272
+ case "??": // both can short-circuit.
1273
+ currentChoiceContext.trueForkContext.add(forkContext.head);
1274
+ currentChoiceContext.falseForkContext.add(forkContext.head);
1275
+ break;
1276
+ default:
1277
+ throw new Error("unreachable");
1278
+ }
1279
+
1280
+ /*
1281
+ * Create the segment for the right-hand operand of the logical expression
1282
+ * and adjust the fork context pointer to point there.
1283
+ */
1284
+ forkContext.replaceHead(forkContext.makeNext(-1, -1));
1285
+ }
1286
+ }
1287
+
1288
+ /**
1289
+ * Makes a code path segment of the `if` block.
1290
+ * @returns {void}
1291
+ */
1292
+ makeIfConsequent() {
1293
+ const context = this.choiceContext;
1294
+ const forkContext = this.forkContext;
1295
+
1296
+ /*
1297
+ * If any result were not transferred from child contexts,
1298
+ * this sets the head segments to both cases.
1299
+ * The head segments are the path of the test expression.
1300
+ */
1301
+ if (!context.processed) {
1302
+ context.trueForkContext.add(forkContext.head);
1303
+ context.falseForkContext.add(forkContext.head);
1304
+ context.nullishForkContext.add(forkContext.head);
1305
+ }
1306
+
1307
+ context.processed = false;
1308
+
1309
+ // Creates new path from the `true` case.
1310
+ forkContext.replaceHead(context.trueForkContext.makeNext(0, -1));
1311
+ }
1312
+
1313
+ /**
1314
+ * Makes a code path segment of the `else` block.
1315
+ * @returns {void}
1316
+ */
1317
+ makeIfAlternate() {
1318
+ const context = this.choiceContext;
1319
+ const forkContext = this.forkContext;
1320
+
1321
+ /*
1322
+ * The head segments are the path of the `if` block.
1323
+ * Updates the `true` path with the end of the `if` block.
1324
+ */
1325
+ context.trueForkContext.clear();
1326
+ context.trueForkContext.add(forkContext.head);
1327
+ context.processed = true;
1328
+
1329
+ // Creates new path from the `false` case.
1330
+ forkContext.replaceHead(context.falseForkContext.makeNext(0, -1));
1331
+ }
1332
+
1333
+ //--------------------------------------------------------------------------
1334
+ // ChainExpression
1335
+ //--------------------------------------------------------------------------
1336
+
1337
+ /**
1338
+ * Pushes a new `ChainExpression` context to the stack. This method is
1339
+ * called when entering a `ChainExpression` node. A chain context is used to
1340
+ * count forking in the optional chain then merge them on the exiting from the
1341
+ * `ChainExpression` node.
1342
+ * @returns {void}
1343
+ */
1344
+ pushChainContext() {
1345
+ this.chainContext = new ChainContext(this.chainContext);
1346
+ }
1347
+
1348
+ /**
1349
+ * Pop a `ChainExpression` context from the stack. This method is called on
1350
+ * exiting from each `ChainExpression` node. This merges all forks of the
1351
+ * last optional chaining.
1352
+ * @returns {void}
1353
+ */
1354
+ popChainContext() {
1355
+ const context = this.chainContext;
1356
+
1357
+ this.chainContext = context.upper;
1358
+
1359
+ // pop all choice contexts of this.
1360
+ for (let i = context.choiceContextCount; i > 0; --i) {
1361
+ this.popChoiceContext();
1362
+ }
1363
+ }
1364
+
1365
+ /**
1366
+ * Create a choice context for optional access.
1367
+ * This method is called on entering to each `(Call|Member)Expression[optional=true]` node.
1368
+ * This creates a choice context as similar to `LogicalExpression[operator="??"]` node.
1369
+ * @returns {void}
1370
+ */
1371
+ makeOptionalNode() {
1372
+ if (this.chainContext) {
1373
+ this.chainContext.choiceContextCount += 1;
1374
+ this.pushChoiceContext("??", false);
1375
+ }
1376
+ }
1377
+
1378
+ /**
1379
+ * Create a fork.
1380
+ * This method is called on entering to the `arguments|property` property of each `(Call|Member)Expression` node.
1381
+ * @returns {void}
1382
+ */
1383
+ makeOptionalRight() {
1384
+ if (this.chainContext) {
1385
+ this.makeLogicalRight();
1386
+ }
1387
+ }
1388
+
1389
+ //--------------------------------------------------------------------------
1390
+ // SwitchStatement
1391
+ //--------------------------------------------------------------------------
1392
+
1393
+ /**
1394
+ * Creates a context object of SwitchStatement and stacks it.
1395
+ * @param {boolean} hasCase `true` if the switch statement has one or more
1396
+ * case parts.
1397
+ * @param {string|null} label The label text.
1398
+ * @returns {void}
1399
+ */
1400
+ pushSwitchContext(hasCase, label) {
1401
+ this.switchContext = new SwitchContext(this.switchContext, hasCase);
1402
+ this.pushBreakContext(true, label);
1403
+ }
1404
+
1405
+ /**
1406
+ * Pops the last context of SwitchStatement and finalizes it.
1407
+ *
1408
+ * - Disposes all forking stack for `case` and `default`.
1409
+ * - Creates the next code path segment from `context.brokenForkContext`.
1410
+ * - If the last `SwitchCase` node is not a `default` part, creates a path
1411
+ * to the `default` body.
1412
+ * @returns {void}
1413
+ */
1414
+ popSwitchContext() {
1415
+ const context = this.switchContext;
1416
+
1417
+ this.switchContext = context.upper;
1418
+
1419
+ const forkContext = this.forkContext;
1420
+ const brokenForkContext = this.popBreakContext().brokenForkContext;
1421
+
1422
+ if (context.forkCount === 0) {
1423
+ /*
1424
+ * When there is only one `default` chunk and there is one or more
1425
+ * `break` statements, even if forks are nothing, it needs to merge
1426
+ * those.
1427
+ */
1428
+ if (!brokenForkContext.empty) {
1429
+ brokenForkContext.add(forkContext.makeNext(-1, -1));
1430
+ forkContext.replaceHead(brokenForkContext.makeNext(0, -1));
1431
+ }
1432
+
1433
+ return;
1434
+ }
1435
+
1436
+ const lastSegments = forkContext.head;
1437
+
1438
+ this.forkBypassPath();
1439
+ const lastCaseSegments = forkContext.head;
1440
+
1441
+ /*
1442
+ * `brokenForkContext` is used to make the next segment.
1443
+ * It must add the last segment into `brokenForkContext`.
1444
+ */
1445
+ brokenForkContext.add(lastSegments);
1446
+
1447
+ /*
1448
+ * Any value that doesn't match a `case` test should flow to the default
1449
+ * case. That happens normally when the default case is last in the `switch`,
1450
+ * but if it's not, we need to rewire some of the paths to be correct.
1451
+ */
1452
+ if (!context.lastIsDefault) {
1453
+ if (context.defaultBodySegments) {
1454
+ /*
1455
+ * There is a non-empty default case, so remove the path from the `default`
1456
+ * label to its body for an accurate representation.
1457
+ */
1458
+ disconnectSegments(
1459
+ context.defaultSegments,
1460
+ context.defaultBodySegments,
1461
+ );
1462
+
1463
+ /*
1464
+ * Connect the path from the last non-default case to the body of the
1465
+ * default case.
1466
+ */
1467
+ makeLooped(this, lastCaseSegments, context.defaultBodySegments);
1468
+ } else {
1469
+ /*
1470
+ * There is no default case, so we treat this as if the last case
1471
+ * had a `break` in it.
1472
+ */
1473
+ brokenForkContext.add(lastCaseSegments);
1474
+ }
1475
+ }
1476
+
1477
+ // Traverse up to the original fork context for the `switch` statement
1478
+ for (let i = 0; i < context.forkCount; ++i) {
1479
+ this.forkContext = this.forkContext.upper;
1480
+ }
1481
+
1482
+ /*
1483
+ * Creates a path from all `brokenForkContext` paths.
1484
+ * This is a path after `switch` statement.
1485
+ */
1486
+ this.forkContext.replaceHead(brokenForkContext.makeNext(0, -1));
1487
+ }
1488
+
1489
+ /**
1490
+ * Makes a code path segment for a `SwitchCase` node.
1491
+ * @param {boolean} isCaseBodyEmpty `true` if the body is empty.
1492
+ * @param {boolean} isDefaultCase `true` if the body is the default case.
1493
+ * @returns {void}
1494
+ */
1495
+ makeSwitchCaseBody(isCaseBodyEmpty, isDefaultCase) {
1496
+ const context = this.switchContext;
1497
+
1498
+ if (!context.hasCase) {
1499
+ return;
1500
+ }
1501
+
1502
+ /*
1503
+ * Merge forks.
1504
+ * The parent fork context has two segments.
1505
+ * Those are from the current `case` and the body of the previous case.
1506
+ */
1507
+ const parentForkContext = this.forkContext;
1508
+ const forkContext = this.pushForkContext();
1509
+
1510
+ forkContext.add(parentForkContext.makeNext(0, -1));
1511
+
1512
+ /*
1513
+ * Add information about the default case.
1514
+ *
1515
+ * The purpose of this is to identify the starting segments for the
1516
+ * default case to make sure there is a path there.
1517
+ */
1518
+ if (isDefaultCase) {
1519
+ /*
1520
+ * This is the default case in the `switch`.
1521
+ *
1522
+ * We first save the current pointer as `defaultSegments` to point
1523
+ * to the `default` keyword.
1524
+ */
1525
+ context.defaultSegments = parentForkContext.head;
1526
+
1527
+ /*
1528
+ * If the body of the case is empty then we just set
1529
+ * `foundEmptyDefault` to true; otherwise, we save a reference
1530
+ * to the current pointer as `defaultBodySegments`.
1531
+ */
1532
+ if (isCaseBodyEmpty) {
1533
+ context.foundEmptyDefault = true;
1534
+ } else {
1535
+ context.defaultBodySegments = forkContext.head;
1536
+ }
1537
+ } else {
1538
+ /*
1539
+ * This is not the default case in the `switch`.
1540
+ *
1541
+ * If it's not empty and there is already an empty default case found,
1542
+ * that means the default case actually comes before this case,
1543
+ * and that it will fall through to this case. So, we can now
1544
+ * ignore the previous default case (reset `foundEmptyDefault` to false)
1545
+ * and set `defaultBodySegments` to the current segments because this is
1546
+ * effectively the new default case.
1547
+ */
1548
+ if (!isCaseBodyEmpty && context.foundEmptyDefault) {
1549
+ context.foundEmptyDefault = false;
1550
+ context.defaultBodySegments = forkContext.head;
1551
+ }
1552
+ }
1553
+
1554
+ // keep track if the default case ends up last
1555
+ context.lastIsDefault = isDefaultCase;
1556
+ context.forkCount += 1;
1557
+ }
1558
+
1559
+ //--------------------------------------------------------------------------
1560
+ // TryStatement
1561
+ //--------------------------------------------------------------------------
1562
+
1563
+ /**
1564
+ * Creates a context object of TryStatement and stacks it.
1565
+ * @param {boolean} hasFinalizer `true` if the try statement has a
1566
+ * `finally` block.
1567
+ * @returns {void}
1568
+ */
1569
+ pushTryContext(hasFinalizer) {
1570
+ this.tryContext = new TryContext(
1571
+ this.tryContext,
1572
+ hasFinalizer,
1573
+ this.forkContext,
1574
+ );
1575
+ }
1576
+
1577
+ /**
1578
+ * Pops the last context of TryStatement and finalizes it.
1579
+ * @returns {void}
1580
+ */
1581
+ popTryContext() {
1582
+ const context = this.tryContext;
1583
+
1584
+ this.tryContext = context.upper;
1585
+
1586
+ /*
1587
+ * If we're inside the `catch` block, that means there is no `finally`,
1588
+ * so we can process the `try` and `catch` blocks the simple way and
1589
+ * merge their two paths.
1590
+ */
1591
+ if (context.position === "catch") {
1592
+ this.popForkContext();
1593
+ return;
1594
+ }
1595
+
1596
+ /*
1597
+ * The following process is executed only when there is a `finally`
1598
+ * block.
1599
+ */
1600
+
1601
+ const originalReturnedForkContext = context.returnedForkContext;
1602
+ const originalThrownForkContext = context.thrownForkContext;
1603
+
1604
+ // no `return` or `throw` in `try` or `catch` so there's nothing left to do
1605
+ if (
1606
+ originalReturnedForkContext.empty &&
1607
+ originalThrownForkContext.empty
1608
+ ) {
1609
+ return;
1610
+ }
1611
+
1612
+ /*
1613
+ * The following process is executed only when there is a `finally`
1614
+ * block and there was a `return` or `throw` in the `try` or `catch`
1615
+ * blocks.
1616
+ */
1617
+
1618
+ // Separate head to normal paths and leaving paths.
1619
+ const headSegments = this.forkContext.head;
1620
+
1621
+ this.forkContext = this.forkContext.upper;
1622
+ const normalSegments = headSegments.slice(
1623
+ 0,
1624
+ (headSegments.length / 2) | 0,
1625
+ );
1626
+ const leavingSegments = headSegments.slice(
1627
+ (headSegments.length / 2) | 0,
1628
+ );
1629
+
1630
+ // Forwards the leaving path to upper contexts.
1631
+ if (!originalReturnedForkContext.empty) {
1632
+ getReturnContext(this).returnedForkContext.add(leavingSegments);
1633
+ }
1634
+ if (!originalThrownForkContext.empty) {
1635
+ getThrowContext(this).thrownForkContext.add(leavingSegments);
1636
+ }
1637
+
1638
+ // Sets the normal path as the next.
1639
+ this.forkContext.replaceHead(normalSegments);
1640
+
1641
+ /*
1642
+ * If both paths of the `try` block and the `catch` block are
1643
+ * unreachable, the next path becomes unreachable as well.
1644
+ */
1645
+ if (!context.lastOfTryIsReachable && !context.lastOfCatchIsReachable) {
1646
+ this.forkContext.makeUnreachable();
1647
+ }
1648
+ }
1649
+
1650
+ /**
1651
+ * Makes a code path segment for a `catch` block.
1652
+ * @returns {void}
1653
+ */
1654
+ makeCatchBlock() {
1655
+ const context = this.tryContext;
1656
+ const forkContext = this.forkContext;
1657
+ const originalThrownForkContext = context.thrownForkContext;
1658
+
1659
+ /*
1660
+ * We are now in a catch block so we need to update the context
1661
+ * with that information. This includes creating a new fork
1662
+ * context in case we encounter any `throw` statements here.
1663
+ */
1664
+ context.position = "catch";
1665
+ context.thrownForkContext = ForkContext.newEmpty(forkContext);
1666
+ context.lastOfTryIsReachable = forkContext.reachable;
1667
+
1668
+ // Merge the thrown paths from the `try` and `catch` blocks
1669
+ originalThrownForkContext.add(forkContext.head);
1670
+ const thrownSegments = originalThrownForkContext.makeNext(0, -1);
1671
+
1672
+ // Fork to a bypass and the merged thrown path.
1673
+ this.pushForkContext();
1674
+ this.forkBypassPath();
1675
+ this.forkContext.add(thrownSegments);
1676
+ }
1677
+
1678
+ /**
1679
+ * Makes a code path segment for a `finally` block.
1680
+ *
1681
+ * In the `finally` block, parallel paths are created. The parallel paths
1682
+ * are used as leaving-paths. The leaving-paths are paths from `return`
1683
+ * statements and `throw` statements in a `try` block or a `catch` block.
1684
+ * @returns {void}
1685
+ */
1686
+ makeFinallyBlock() {
1687
+ const context = this.tryContext;
1688
+ let forkContext = this.forkContext;
1689
+ const originalReturnedForkContext = context.returnedForkContext;
1690
+ const originalThrownForContext = context.thrownForkContext;
1691
+ const headOfLeavingSegments = forkContext.head;
1692
+
1693
+ // Update state.
1694
+ if (context.position === "catch") {
1695
+ // Merges two paths from the `try` block and `catch` block.
1696
+ this.popForkContext();
1697
+ forkContext = this.forkContext;
1698
+
1699
+ context.lastOfCatchIsReachable = forkContext.reachable;
1700
+ } else {
1701
+ context.lastOfTryIsReachable = forkContext.reachable;
1702
+ }
1703
+
1704
+ context.position = "finally";
1705
+
1706
+ /*
1707
+ * If there was no `return` or `throw` in either the `try` or `catch`
1708
+ * blocks, then there's no further code paths to create for `finally`.
1709
+ */
1710
+ if (
1711
+ originalReturnedForkContext.empty &&
1712
+ originalThrownForContext.empty
1713
+ ) {
1714
+ // This path does not leave.
1715
+ return;
1716
+ }
1717
+
1718
+ /*
1719
+ * Create a parallel segment from merging returned and thrown.
1720
+ * This segment will leave at the end of this `finally` block.
1721
+ */
1722
+ const segments = forkContext.makeNext(-1, -1);
1723
+
1724
+ for (let i = 0; i < forkContext.count; ++i) {
1725
+ const prevSegsOfLeavingSegment = [headOfLeavingSegments[i]];
1726
+
1727
+ for (
1728
+ let j = 0;
1729
+ j < originalReturnedForkContext.segmentsList.length;
1730
+ ++j
1731
+ ) {
1732
+ prevSegsOfLeavingSegment.push(
1733
+ originalReturnedForkContext.segmentsList[j][i],
1734
+ );
1735
+ }
1736
+ for (
1737
+ let j = 0;
1738
+ j < originalThrownForContext.segmentsList.length;
1739
+ ++j
1740
+ ) {
1741
+ prevSegsOfLeavingSegment.push(
1742
+ originalThrownForContext.segmentsList[j][i],
1743
+ );
1744
+ }
1745
+
1746
+ segments.push(
1747
+ CodePathSegment.newNext(
1748
+ this.idGenerator.next(),
1749
+ prevSegsOfLeavingSegment,
1750
+ ),
1751
+ );
1752
+ }
1753
+
1754
+ this.pushForkContext(true);
1755
+ this.forkContext.add(segments);
1756
+ }
1757
+
1758
+ /**
1759
+ * Makes a code path segment from the first throwable node to the `catch`
1760
+ * block or the `finally` block.
1761
+ * @returns {void}
1762
+ */
1763
+ makeFirstThrowablePathInTryBlock() {
1764
+ const forkContext = this.forkContext;
1765
+
1766
+ if (!forkContext.reachable) {
1767
+ return;
1768
+ }
1769
+
1770
+ const context = getThrowContext(this);
1771
+
1772
+ if (
1773
+ context === this ||
1774
+ context.position !== "try" ||
1775
+ !context.thrownForkContext.empty
1776
+ ) {
1777
+ return;
1778
+ }
1779
+
1780
+ context.thrownForkContext.add(forkContext.head);
1781
+ forkContext.replaceHead(forkContext.makeNext(-1, -1));
1782
+ }
1783
+
1784
+ //--------------------------------------------------------------------------
1785
+ // Loop Statements
1786
+ //--------------------------------------------------------------------------
1787
+
1788
+ /**
1789
+ * Creates a context object of a loop statement and stacks it.
1790
+ * @param {string} type The type of the node which was triggered. One of
1791
+ * `WhileStatement`, `DoWhileStatement`, `ForStatement`, `ForInStatement`,
1792
+ * and `ForStatement`.
1793
+ * @param {string|null} label A label of the node which was triggered.
1794
+ * @throws {Error} (Unreachable - unknown type.)
1795
+ * @returns {void}
1796
+ */
1797
+ pushLoopContext(type, label) {
1798
+ const forkContext = this.forkContext;
1799
+
1800
+ // All loops need a path to account for `break` statements
1801
+ const breakContext = this.pushBreakContext(true, label);
1802
+
1803
+ switch (type) {
1804
+ case "WhileStatement":
1805
+ this.pushChoiceContext("loop", false);
1806
+ this.loopContext = new WhileLoopContext(
1807
+ this.loopContext,
1808
+ label,
1809
+ breakContext,
1810
+ );
1811
+ break;
1812
+
1813
+ case "DoWhileStatement":
1814
+ this.pushChoiceContext("loop", false);
1815
+ this.loopContext = new DoWhileLoopContext(
1816
+ this.loopContext,
1817
+ label,
1818
+ breakContext,
1819
+ forkContext,
1820
+ );
1821
+ break;
1822
+
1823
+ case "ForStatement":
1824
+ this.pushChoiceContext("loop", false);
1825
+ this.loopContext = new ForLoopContext(
1826
+ this.loopContext,
1827
+ label,
1828
+ breakContext,
1829
+ );
1830
+ break;
1831
+
1832
+ case "ForInStatement":
1833
+ this.loopContext = new ForInLoopContext(
1834
+ this.loopContext,
1835
+ label,
1836
+ breakContext,
1837
+ );
1838
+ break;
1839
+
1840
+ case "ForOfStatement":
1841
+ this.loopContext = new ForOfLoopContext(
1842
+ this.loopContext,
1843
+ label,
1844
+ breakContext,
1845
+ );
1846
+ break;
1847
+
1848
+ /* c8 ignore next */
1849
+ default:
1850
+ throw new Error(`unknown type: "${type}"`);
1851
+ }
1852
+ }
1853
+
1854
+ /**
1855
+ * Pops the last context of a loop statement and finalizes it.
1856
+ * @throws {Error} (Unreachable - unknown type.)
1857
+ * @returns {void}
1858
+ */
1859
+ popLoopContext() {
1860
+ const context = this.loopContext;
1861
+
1862
+ this.loopContext = context.upper;
1863
+
1864
+ const forkContext = this.forkContext;
1865
+ const brokenForkContext = this.popBreakContext().brokenForkContext;
1866
+
1867
+ // Creates a looped path.
1868
+ switch (context.type) {
1869
+ case "WhileStatement":
1870
+ case "ForStatement":
1871
+ this.popChoiceContext();
1872
+
1873
+ /*
1874
+ * Creates the path from the end of the loop body up to the
1875
+ * location where `continue` would jump to.
1876
+ */
1877
+ makeLooped(
1878
+ this,
1879
+ forkContext.head,
1880
+ context.continueDestSegments,
1881
+ );
1882
+ break;
1883
+
1884
+ case "DoWhileStatement": {
1885
+ const choiceContext = this.popChoiceContext();
1886
+
1887
+ if (!choiceContext.processed) {
1888
+ choiceContext.trueForkContext.add(forkContext.head);
1889
+ choiceContext.falseForkContext.add(forkContext.head);
1890
+ }
1891
+
1892
+ /*
1893
+ * If this isn't a hardcoded `true` condition, then `break`
1894
+ * should continue down the path as if the condition evaluated
1895
+ * to false.
1896
+ */
1897
+ if (context.test !== true) {
1898
+ brokenForkContext.addAll(choiceContext.falseForkContext);
1899
+ }
1900
+
1901
+ /*
1902
+ * When the condition is true, the loop continues back to the top,
1903
+ * so create a path from each possible true condition back to the
1904
+ * top of the loop.
1905
+ */
1906
+ const segmentsList = choiceContext.trueForkContext.segmentsList;
1907
+
1908
+ for (let i = 0; i < segmentsList.length; ++i) {
1909
+ makeLooped(this, segmentsList[i], context.entrySegments);
1910
+ }
1911
+ break;
1912
+ }
1913
+
1914
+ case "ForInStatement":
1915
+ case "ForOfStatement":
1916
+ brokenForkContext.add(forkContext.head);
1917
+
1918
+ /*
1919
+ * Creates the path from the end of the loop body up to the
1920
+ * left expression (left of `in` or `of`) of the loop.
1921
+ */
1922
+ makeLooped(this, forkContext.head, context.leftSegments);
1923
+ break;
1924
+
1925
+ /* c8 ignore next */
1926
+ default:
1927
+ throw new Error("unreachable");
1928
+ }
1929
+
1930
+ /*
1931
+ * If there wasn't a `break` statement in the loop, then we're at
1932
+ * the end of the loop's path, so we make an unreachable segment
1933
+ * to mark that.
1934
+ *
1935
+ * If there was a `break` statement, then we continue on into the
1936
+ * `brokenForkContext`.
1937
+ */
1938
+ if (brokenForkContext.empty) {
1939
+ forkContext.replaceHead(forkContext.makeUnreachable(-1, -1));
1940
+ } else {
1941
+ forkContext.replaceHead(brokenForkContext.makeNext(0, -1));
1942
+ }
1943
+ }
1944
+
1945
+ /**
1946
+ * Makes a code path segment for the test part of a WhileStatement.
1947
+ * @param {boolean|undefined} test The test value (only when constant).
1948
+ * @returns {void}
1949
+ */
1950
+ makeWhileTest(test) {
1951
+ const context = this.loopContext;
1952
+ const forkContext = this.forkContext;
1953
+ const testSegments = forkContext.makeNext(0, -1);
1954
+
1955
+ // Update state.
1956
+ context.test = test;
1957
+ context.continueDestSegments = testSegments;
1958
+ forkContext.replaceHead(testSegments);
1959
+ }
1960
+
1961
+ /**
1962
+ * Makes a code path segment for the body part of a WhileStatement.
1963
+ * @returns {void}
1964
+ */
1965
+ makeWhileBody() {
1966
+ const context = this.loopContext;
1967
+ const choiceContext = this.choiceContext;
1968
+ const forkContext = this.forkContext;
1969
+
1970
+ if (!choiceContext.processed) {
1971
+ choiceContext.trueForkContext.add(forkContext.head);
1972
+ choiceContext.falseForkContext.add(forkContext.head);
1973
+ }
1974
+
1975
+ /*
1976
+ * If this isn't a hardcoded `true` condition, then `break`
1977
+ * should continue down the path as if the condition evaluated
1978
+ * to false.
1979
+ */
1980
+ if (context.test !== true) {
1981
+ context.brokenForkContext.addAll(choiceContext.falseForkContext);
1982
+ }
1983
+ forkContext.replaceHead(choiceContext.trueForkContext.makeNext(0, -1));
1984
+ }
1985
+
1986
+ /**
1987
+ * Makes a code path segment for the body part of a DoWhileStatement.
1988
+ * @returns {void}
1989
+ */
1990
+ makeDoWhileBody() {
1991
+ const context = this.loopContext;
1992
+ const forkContext = this.forkContext;
1993
+ const bodySegments = forkContext.makeNext(-1, -1);
1994
+
1995
+ // Update state.
1996
+ context.entrySegments = bodySegments;
1997
+ forkContext.replaceHead(bodySegments);
1998
+ }
1999
+
2000
+ /**
2001
+ * Makes a code path segment for the test part of a DoWhileStatement.
2002
+ * @param {boolean|undefined} test The test value (only when constant).
2003
+ * @returns {void}
2004
+ */
2005
+ makeDoWhileTest(test) {
2006
+ const context = this.loopContext;
2007
+ const forkContext = this.forkContext;
2008
+
2009
+ context.test = test;
2010
+
2011
+ /*
2012
+ * If there is a `continue` statement in the loop then `continueForkContext`
2013
+ * won't be empty. We wire up the path from `continue` to the loop
2014
+ * test condition and then continue the traversal in the root fork context.
2015
+ */
2016
+ if (!context.continueForkContext.empty) {
2017
+ context.continueForkContext.add(forkContext.head);
2018
+ const testSegments = context.continueForkContext.makeNext(0, -1);
2019
+
2020
+ forkContext.replaceHead(testSegments);
2021
+ }
2022
+ }
2023
+
2024
+ /**
2025
+ * Makes a code path segment for the test part of a ForStatement.
2026
+ * @param {boolean|undefined} test The test value (only when constant).
2027
+ * @returns {void}
2028
+ */
2029
+ makeForTest(test) {
2030
+ const context = this.loopContext;
2031
+ const forkContext = this.forkContext;
2032
+ const endOfInitSegments = forkContext.head;
2033
+ const testSegments = forkContext.makeNext(-1, -1);
2034
+
2035
+ /*
2036
+ * Update the state.
2037
+ *
2038
+ * The `continueDestSegments` are set to `testSegments` because we
2039
+ * don't yet know if there is an update expression in this loop. So,
2040
+ * from what we already know at this point, a `continue` statement
2041
+ * will jump back to the test expression.
2042
+ */
2043
+ context.test = test;
2044
+ context.endOfInitSegments = endOfInitSegments;
2045
+ context.continueDestSegments = context.testSegments = testSegments;
2046
+ forkContext.replaceHead(testSegments);
2047
+ }
2048
+
2049
+ /**
2050
+ * Makes a code path segment for the update part of a ForStatement.
2051
+ * @returns {void}
2052
+ */
2053
+ makeForUpdate() {
2054
+ const context = this.loopContext;
2055
+ const choiceContext = this.choiceContext;
2056
+ const forkContext = this.forkContext;
2057
+
2058
+ // Make the next paths of the test.
2059
+ if (context.testSegments) {
2060
+ finalizeTestSegmentsOfFor(context, choiceContext, forkContext.head);
2061
+ } else {
2062
+ context.endOfInitSegments = forkContext.head;
2063
+ }
2064
+
2065
+ /*
2066
+ * Update the state.
2067
+ *
2068
+ * The `continueDestSegments` are now set to `updateSegments` because we
2069
+ * know there is an update expression in this loop. So, a `continue` statement
2070
+ * in the loop will jump to the update expression first, and then to any
2071
+ * test expression the loop might have.
2072
+ */
2073
+ const updateSegments = forkContext.makeDisconnected(-1, -1);
2074
+
2075
+ context.continueDestSegments = context.updateSegments = updateSegments;
2076
+ forkContext.replaceHead(updateSegments);
2077
+ }
2078
+
2079
+ /**
2080
+ * Makes a code path segment for the body part of a ForStatement.
2081
+ * @returns {void}
2082
+ */
2083
+ makeForBody() {
2084
+ const context = this.loopContext;
2085
+ const choiceContext = this.choiceContext;
2086
+ const forkContext = this.forkContext;
2087
+
2088
+ /*
2089
+ * Determine what to do based on which part of the `for` loop are present.
2090
+ * 1. If there is an update expression, then `updateSegments` is not null and
2091
+ * we need to assign `endOfUpdateSegments`, and if there is a test
2092
+ * expression, we then need to create the looped path to get back to
2093
+ * the test condition.
2094
+ * 2. If there is no update expression but there is a test expression,
2095
+ * then we only need to update the test segment information.
2096
+ * 3. If there is no update expression and no test expression, then we
2097
+ * just save `endOfInitSegments`.
2098
+ */
2099
+ if (context.updateSegments) {
2100
+ context.endOfUpdateSegments = forkContext.head;
2101
+
2102
+ /*
2103
+ * In a `for` loop that has both an update expression and a test
2104
+ * condition, execution flows from the test expression into the
2105
+ * loop body, to the update expression, and then back to the test
2106
+ * expression to determine if the loop should continue.
2107
+ *
2108
+ * To account for that, we need to make a path from the end of the
2109
+ * update expression to the start of the test expression. This is
2110
+ * effectively what creates the loop in the code path.
2111
+ */
2112
+ if (context.testSegments) {
2113
+ makeLooped(
2114
+ this,
2115
+ context.endOfUpdateSegments,
2116
+ context.testSegments,
2117
+ );
2118
+ }
2119
+ } else if (context.testSegments) {
2120
+ finalizeTestSegmentsOfFor(context, choiceContext, forkContext.head);
2121
+ } else {
2122
+ context.endOfInitSegments = forkContext.head;
2123
+ }
2124
+
2125
+ let bodySegments = context.endOfTestSegments;
2126
+
2127
+ /*
2128
+ * If there is a test condition, then there `endOfTestSegments` is also
2129
+ * the start of the loop body. If there isn't a test condition then
2130
+ * `bodySegments` will be null and we need to look elsewhere to find
2131
+ * the start of the body.
2132
+ *
2133
+ * The body starts at the end of the init expression and ends at the end
2134
+ * of the update expression, so we use those locations to determine the
2135
+ * body segments.
2136
+ */
2137
+ if (!bodySegments) {
2138
+ const prevForkContext = ForkContext.newEmpty(forkContext);
2139
+
2140
+ prevForkContext.add(context.endOfInitSegments);
2141
+ if (context.endOfUpdateSegments) {
2142
+ prevForkContext.add(context.endOfUpdateSegments);
2143
+ }
2144
+
2145
+ bodySegments = prevForkContext.makeNext(0, -1);
2146
+ }
2147
+
2148
+ /*
2149
+ * If there was no test condition and no update expression, then
2150
+ * `continueDestSegments` will be null. In that case, a
2151
+ * `continue` should skip directly to the body of the loop.
2152
+ * Otherwise, we want to keep the current `continueDestSegments`.
2153
+ */
2154
+ context.continueDestSegments =
2155
+ context.continueDestSegments || bodySegments;
2156
+
2157
+ // move pointer to the body
2158
+ forkContext.replaceHead(bodySegments);
2159
+ }
2160
+
2161
+ /**
2162
+ * Makes a code path segment for the left part of a ForInStatement and a
2163
+ * ForOfStatement.
2164
+ * @returns {void}
2165
+ */
2166
+ makeForInOfLeft() {
2167
+ const context = this.loopContext;
2168
+ const forkContext = this.forkContext;
2169
+ const leftSegments = forkContext.makeDisconnected(-1, -1);
2170
+
2171
+ // Update state.
2172
+ context.prevSegments = forkContext.head;
2173
+ context.leftSegments = context.continueDestSegments = leftSegments;
2174
+ forkContext.replaceHead(leftSegments);
2175
+ }
2176
+
2177
+ /**
2178
+ * Makes a code path segment for the right part of a ForInStatement and a
2179
+ * ForOfStatement.
2180
+ * @returns {void}
2181
+ */
2182
+ makeForInOfRight() {
2183
+ const context = this.loopContext;
2184
+ const forkContext = this.forkContext;
2185
+ const temp = ForkContext.newEmpty(forkContext);
2186
+
2187
+ temp.add(context.prevSegments);
2188
+ const rightSegments = temp.makeNext(-1, -1);
2189
+
2190
+ // Update state.
2191
+ context.endOfLeftSegments = forkContext.head;
2192
+ forkContext.replaceHead(rightSegments);
2193
+ }
2194
+
2195
+ /**
2196
+ * Makes a code path segment for the body part of a ForInStatement and a
2197
+ * ForOfStatement.
2198
+ * @returns {void}
2199
+ */
2200
+ makeForInOfBody() {
2201
+ const context = this.loopContext;
2202
+ const forkContext = this.forkContext;
2203
+ const temp = ForkContext.newEmpty(forkContext);
2204
+
2205
+ temp.add(context.endOfLeftSegments);
2206
+ const bodySegments = temp.makeNext(-1, -1);
2207
+
2208
+ // Make a path: `right` -> `left`.
2209
+ makeLooped(this, forkContext.head, context.leftSegments);
2210
+
2211
+ // Update state.
2212
+ context.brokenForkContext.add(forkContext.head);
2213
+ forkContext.replaceHead(bodySegments);
2214
+ }
2215
+
2216
+ //--------------------------------------------------------------------------
2217
+ // Control Statements
2218
+ //--------------------------------------------------------------------------
2219
+
2220
+ /**
2221
+ * Creates new context in which a `break` statement can be used. This occurs inside of a loop,
2222
+ * labeled statement, or switch statement.
2223
+ * @param {boolean} breakable Indicates if we are inside a statement where
2224
+ * `break` without a label will exit the statement.
2225
+ * @param {string|null} label The label associated with the statement.
2226
+ * @returns {BreakContext} The new context.
2227
+ */
2228
+ pushBreakContext(breakable, label) {
2229
+ this.breakContext = new BreakContext(
2230
+ this.breakContext,
2231
+ breakable,
2232
+ label,
2233
+ this.forkContext,
2234
+ );
2235
+ return this.breakContext;
2236
+ }
2237
+
2238
+ /**
2239
+ * Removes the top item of the break context stack.
2240
+ * @returns {Object} The removed context.
2241
+ */
2242
+ popBreakContext() {
2243
+ const context = this.breakContext;
2244
+ const forkContext = this.forkContext;
2245
+
2246
+ this.breakContext = context.upper;
2247
+
2248
+ // Process this context here for other than switches and loops.
2249
+ if (!context.breakable) {
2250
+ const brokenForkContext = context.brokenForkContext;
2251
+
2252
+ if (!brokenForkContext.empty) {
2253
+ brokenForkContext.add(forkContext.head);
2254
+ forkContext.replaceHead(brokenForkContext.makeNext(0, -1));
2255
+ }
2256
+ }
2257
+
2258
+ return context;
2259
+ }
2260
+
2261
+ /**
2262
+ * Makes a path for a `break` statement.
2263
+ *
2264
+ * It registers the head segment to a context of `break`.
2265
+ * It makes new unreachable segment, then it set the head with the segment.
2266
+ * @param {string|null} label A label of the break statement.
2267
+ * @returns {void}
2268
+ */
2269
+ makeBreak(label) {
2270
+ const forkContext = this.forkContext;
2271
+
2272
+ if (!forkContext.reachable) {
2273
+ return;
2274
+ }
2275
+
2276
+ const context = getBreakContext(this, label);
2277
+
2278
+ if (context) {
2279
+ context.brokenForkContext.add(forkContext.head);
2280
+ }
2281
+
2282
+ /* c8 ignore next */
2283
+ forkContext.replaceHead(forkContext.makeUnreachable(-1, -1));
2284
+ }
2285
+
2286
+ /**
2287
+ * Makes a path for a `continue` statement.
2288
+ *
2289
+ * It makes a looping path.
2290
+ * It makes new unreachable segment, then it set the head with the segment.
2291
+ * @param {string|null} label A label of the continue statement.
2292
+ * @returns {void}
2293
+ */
2294
+ makeContinue(label) {
2295
+ const forkContext = this.forkContext;
2296
+
2297
+ if (!forkContext.reachable) {
2298
+ return;
2299
+ }
2300
+
2301
+ const context = getContinueContext(this, label);
2302
+
2303
+ if (context) {
2304
+ if (context.continueDestSegments) {
2305
+ makeLooped(
2306
+ this,
2307
+ forkContext.head,
2308
+ context.continueDestSegments,
2309
+ );
2310
+
2311
+ // If the context is a for-in/of loop, this affects a break also.
2312
+ if (
2313
+ context.type === "ForInStatement" ||
2314
+ context.type === "ForOfStatement"
2315
+ ) {
2316
+ context.brokenForkContext.add(forkContext.head);
2317
+ }
2318
+ } else {
2319
+ context.continueForkContext.add(forkContext.head);
2320
+ }
2321
+ }
2322
+ forkContext.replaceHead(forkContext.makeUnreachable(-1, -1));
2323
+ }
2324
+
2325
+ /**
2326
+ * Makes a path for a `return` statement.
2327
+ *
2328
+ * It registers the head segment to a context of `return`.
2329
+ * It makes new unreachable segment, then it set the head with the segment.
2330
+ * @returns {void}
2331
+ */
2332
+ makeReturn() {
2333
+ const forkContext = this.forkContext;
2334
+
2335
+ if (forkContext.reachable) {
2336
+ getReturnContext(this).returnedForkContext.add(forkContext.head);
2337
+ forkContext.replaceHead(forkContext.makeUnreachable(-1, -1));
2338
+ }
2339
+ }
2340
+
2341
+ /**
2342
+ * Makes a path for a `throw` statement.
2343
+ *
2344
+ * It registers the head segment to a context of `throw`.
2345
+ * It makes new unreachable segment, then it set the head with the segment.
2346
+ * @returns {void}
2347
+ */
2348
+ makeThrow() {
2349
+ const forkContext = this.forkContext;
2350
+
2351
+ if (forkContext.reachable) {
2352
+ getThrowContext(this).thrownForkContext.add(forkContext.head);
2353
+ forkContext.replaceHead(forkContext.makeUnreachable(-1, -1));
2354
+ }
2355
+ }
2356
+
2357
+ /**
2358
+ * Makes the final path.
2359
+ * @returns {void}
2360
+ */
2361
+ makeFinal() {
2362
+ const segments = this.currentSegments;
2363
+
2364
+ if (segments.length > 0 && segments[0].reachable) {
2365
+ this.returnedForkContext.add(segments);
2366
+ }
2367
+ }
2368
+ }
2369
+
2370
+ module.exports = CodePathState;