@game_ryo/lsji 0.3.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2509) hide show
  1. package/.github/ISSUE_TEMPLATE/good-first-issue-1.md +62 -0
  2. package/.github/ISSUE_TEMPLATE/good-first-issue-2.md +75 -0
  3. package/.github/ISSUE_TEMPLATE/good-first-issue-3.md +101 -0
  4. package/.github/ISSUE_TEMPLATE/good-first-issue-4.md +78 -0
  5. package/.github/ISSUE_TEMPLATE/good-first-issue-5.md +81 -0
  6. package/README.md +146 -56
  7. package/lsji-plugins/example.js +88 -0
  8. package/package.json +4 -3
  9. package/src/cli.js +85 -1
  10. package/src/execution/engine.js +2 -2
  11. package/src/server/index.js +57 -38
  12. package/src/server/ui/dist/assets/main-DDUT9zbA.js +40 -0
  13. package/src/server/ui/dist/assets/main-DNMVBaZA.css +1 -0
  14. package/src/server/ui/dist/index.html +17 -0
  15. package/src/server/ui/node_modules/.package-lock.json +1042 -0
  16. package/src/server/ui/node_modules/@babel/code-frame/LICENSE +22 -0
  17. package/src/server/ui/node_modules/@babel/code-frame/README.md +19 -0
  18. package/src/server/ui/node_modules/@babel/code-frame/lib/index.js +217 -0
  19. package/src/server/ui/node_modules/@babel/code-frame/lib/index.js.map +1 -0
  20. package/src/server/ui/node_modules/@babel/code-frame/package.json +32 -0
  21. package/src/server/ui/node_modules/@babel/compat-data/LICENSE +22 -0
  22. package/src/server/ui/node_modules/@babel/compat-data/README.md +19 -0
  23. package/src/server/ui/node_modules/@babel/compat-data/corejs2-built-ins.js +2 -0
  24. package/src/server/ui/node_modules/@babel/compat-data/corejs3-shipped-proposals.js +2 -0
  25. package/src/server/ui/node_modules/@babel/compat-data/data/corejs2-built-ins.json +2120 -0
  26. package/src/server/ui/node_modules/@babel/compat-data/data/corejs3-shipped-proposals.json +5 -0
  27. package/src/server/ui/node_modules/@babel/compat-data/data/native-modules.json +18 -0
  28. package/src/server/ui/node_modules/@babel/compat-data/data/overlapping-plugins.json +38 -0
  29. package/src/server/ui/node_modules/@babel/compat-data/data/plugin-bugfixes.json +231 -0
  30. package/src/server/ui/node_modules/@babel/compat-data/data/plugins.json +843 -0
  31. package/src/server/ui/node_modules/@babel/compat-data/native-modules.js +2 -0
  32. package/src/server/ui/node_modules/@babel/compat-data/overlapping-plugins.js +2 -0
  33. package/src/server/ui/node_modules/@babel/compat-data/package.json +40 -0
  34. package/src/server/ui/node_modules/@babel/compat-data/plugin-bugfixes.js +2 -0
  35. package/src/server/ui/node_modules/@babel/compat-data/plugins.js +2 -0
  36. package/src/server/ui/node_modules/@babel/core/LICENSE +22 -0
  37. package/src/server/ui/node_modules/@babel/core/README.md +19 -0
  38. package/src/server/ui/node_modules/@babel/core/lib/config/cache-contexts.js +5 -0
  39. package/src/server/ui/node_modules/@babel/core/lib/config/cache-contexts.js.map +1 -0
  40. package/src/server/ui/node_modules/@babel/core/lib/config/caching.js +261 -0
  41. package/src/server/ui/node_modules/@babel/core/lib/config/caching.js.map +1 -0
  42. package/src/server/ui/node_modules/@babel/core/lib/config/config-chain.js +469 -0
  43. package/src/server/ui/node_modules/@babel/core/lib/config/config-chain.js.map +1 -0
  44. package/src/server/ui/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
  45. package/src/server/ui/node_modules/@babel/core/lib/config/config-descriptors.js.map +1 -0
  46. package/src/server/ui/node_modules/@babel/core/lib/config/files/configuration.js +290 -0
  47. package/src/server/ui/node_modules/@babel/core/lib/config/files/configuration.js.map +1 -0
  48. package/src/server/ui/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
  49. package/src/server/ui/node_modules/@babel/core/lib/config/files/import.cjs.map +1 -0
  50. package/src/server/ui/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
  51. package/src/server/ui/node_modules/@babel/core/lib/config/files/index-browser.js.map +1 -0
  52. package/src/server/ui/node_modules/@babel/core/lib/config/files/index.js +78 -0
  53. package/src/server/ui/node_modules/@babel/core/lib/config/files/index.js.map +1 -0
  54. package/src/server/ui/node_modules/@babel/core/lib/config/files/module-types.js +203 -0
  55. package/src/server/ui/node_modules/@babel/core/lib/config/files/module-types.js.map +1 -0
  56. package/src/server/ui/node_modules/@babel/core/lib/config/files/package.js +61 -0
  57. package/src/server/ui/node_modules/@babel/core/lib/config/files/package.js.map +1 -0
  58. package/src/server/ui/node_modules/@babel/core/lib/config/files/plugins.js +220 -0
  59. package/src/server/ui/node_modules/@babel/core/lib/config/files/plugins.js.map +1 -0
  60. package/src/server/ui/node_modules/@babel/core/lib/config/files/types.js +5 -0
  61. package/src/server/ui/node_modules/@babel/core/lib/config/files/types.js.map +1 -0
  62. package/src/server/ui/node_modules/@babel/core/lib/config/files/utils.js +36 -0
  63. package/src/server/ui/node_modules/@babel/core/lib/config/files/utils.js.map +1 -0
  64. package/src/server/ui/node_modules/@babel/core/lib/config/full.js +312 -0
  65. package/src/server/ui/node_modules/@babel/core/lib/config/full.js.map +1 -0
  66. package/src/server/ui/node_modules/@babel/core/lib/config/helpers/config-api.js +85 -0
  67. package/src/server/ui/node_modules/@babel/core/lib/config/helpers/config-api.js.map +1 -0
  68. package/src/server/ui/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
  69. package/src/server/ui/node_modules/@babel/core/lib/config/helpers/deep-array.js.map +1 -0
  70. package/src/server/ui/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
  71. package/src/server/ui/node_modules/@babel/core/lib/config/helpers/environment.js.map +1 -0
  72. package/src/server/ui/node_modules/@babel/core/lib/config/index.js +87 -0
  73. package/src/server/ui/node_modules/@babel/core/lib/config/index.js.map +1 -0
  74. package/src/server/ui/node_modules/@babel/core/lib/config/item.js +67 -0
  75. package/src/server/ui/node_modules/@babel/core/lib/config/item.js.map +1 -0
  76. package/src/server/ui/node_modules/@babel/core/lib/config/partial.js +158 -0
  77. package/src/server/ui/node_modules/@babel/core/lib/config/partial.js.map +1 -0
  78. package/src/server/ui/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
  79. package/src/server/ui/node_modules/@babel/core/lib/config/pattern-to-regex.js.map +1 -0
  80. package/src/server/ui/node_modules/@babel/core/lib/config/plugin.js +33 -0
  81. package/src/server/ui/node_modules/@babel/core/lib/config/plugin.js.map +1 -0
  82. package/src/server/ui/node_modules/@babel/core/lib/config/printer.js +113 -0
  83. package/src/server/ui/node_modules/@babel/core/lib/config/printer.js.map +1 -0
  84. package/src/server/ui/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
  85. package/src/server/ui/node_modules/@babel/core/lib/config/resolve-targets-browser.js.map +1 -0
  86. package/src/server/ui/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
  87. package/src/server/ui/node_modules/@babel/core/lib/config/resolve-targets.js.map +1 -0
  88. package/src/server/ui/node_modules/@babel/core/lib/config/util.js +31 -0
  89. package/src/server/ui/node_modules/@babel/core/lib/config/util.js.map +1 -0
  90. package/src/server/ui/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
  91. package/src/server/ui/node_modules/@babel/core/lib/config/validation/option-assertions.js.map +1 -0
  92. package/src/server/ui/node_modules/@babel/core/lib/config/validation/options.js +187 -0
  93. package/src/server/ui/node_modules/@babel/core/lib/config/validation/options.js.map +1 -0
  94. package/src/server/ui/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
  95. package/src/server/ui/node_modules/@babel/core/lib/config/validation/plugins.js.map +1 -0
  96. package/src/server/ui/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
  97. package/src/server/ui/node_modules/@babel/core/lib/config/validation/removed.js.map +1 -0
  98. package/src/server/ui/node_modules/@babel/core/lib/errors/config-error.js +18 -0
  99. package/src/server/ui/node_modules/@babel/core/lib/errors/config-error.js.map +1 -0
  100. package/src/server/ui/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
  101. package/src/server/ui/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js.map +1 -0
  102. package/src/server/ui/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
  103. package/src/server/ui/node_modules/@babel/core/lib/gensync-utils/async.js.map +1 -0
  104. package/src/server/ui/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
  105. package/src/server/ui/node_modules/@babel/core/lib/gensync-utils/fs.js.map +1 -0
  106. package/src/server/ui/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
  107. package/src/server/ui/node_modules/@babel/core/lib/gensync-utils/functional.js.map +1 -0
  108. package/src/server/ui/node_modules/@babel/core/lib/index.js +230 -0
  109. package/src/server/ui/node_modules/@babel/core/lib/index.js.map +1 -0
  110. package/src/server/ui/node_modules/@babel/core/lib/parse.js +45 -0
  111. package/src/server/ui/node_modules/@babel/core/lib/parse.js.map +1 -0
  112. package/src/server/ui/node_modules/@babel/core/lib/parser/index.js +85 -0
  113. package/src/server/ui/node_modules/@babel/core/lib/parser/index.js.map +1 -0
  114. package/src/server/ui/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +337 -0
  115. package/src/server/ui/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js.map +1 -0
  116. package/src/server/ui/node_modules/@babel/core/lib/tools/build-external-helpers.js +144 -0
  117. package/src/server/ui/node_modules/@babel/core/lib/tools/build-external-helpers.js.map +1 -0
  118. package/src/server/ui/node_modules/@babel/core/lib/transform-ast.js +48 -0
  119. package/src/server/ui/node_modules/@babel/core/lib/transform-ast.js.map +1 -0
  120. package/src/server/ui/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
  121. package/src/server/ui/node_modules/@babel/core/lib/transform-file-browser.js.map +1 -0
  122. package/src/server/ui/node_modules/@babel/core/lib/transform-file.js +40 -0
  123. package/src/server/ui/node_modules/@babel/core/lib/transform-file.js.map +1 -0
  124. package/src/server/ui/node_modules/@babel/core/lib/transform.js +47 -0
  125. package/src/server/ui/node_modules/@babel/core/lib/transform.js.map +1 -0
  126. package/src/server/ui/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +84 -0
  127. package/src/server/ui/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js.map +1 -0
  128. package/src/server/ui/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs +4 -0
  129. package/src/server/ui/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs.map +1 -0
  130. package/src/server/ui/node_modules/@babel/core/lib/transformation/file/file.js +204 -0
  131. package/src/server/ui/node_modules/@babel/core/lib/transformation/file/file.js.map +1 -0
  132. package/src/server/ui/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
  133. package/src/server/ui/node_modules/@babel/core/lib/transformation/file/generate.js.map +1 -0
  134. package/src/server/ui/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
  135. package/src/server/ui/node_modules/@babel/core/lib/transformation/file/merge-map.js.map +1 -0
  136. package/src/server/ui/node_modules/@babel/core/lib/transformation/index.js +90 -0
  137. package/src/server/ui/node_modules/@babel/core/lib/transformation/index.js.map +1 -0
  138. package/src/server/ui/node_modules/@babel/core/lib/transformation/normalize-file.js +113 -0
  139. package/src/server/ui/node_modules/@babel/core/lib/transformation/normalize-file.js.map +1 -0
  140. package/src/server/ui/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
  141. package/src/server/ui/node_modules/@babel/core/lib/transformation/normalize-opts.js.map +1 -0
  142. package/src/server/ui/node_modules/@babel/core/lib/transformation/plugin-pass.js +48 -0
  143. package/src/server/ui/node_modules/@babel/core/lib/transformation/plugin-pass.js.map +1 -0
  144. package/src/server/ui/node_modules/@babel/core/lib/transformation/read-input-source-map-file-browser.js +12 -0
  145. package/src/server/ui/node_modules/@babel/core/lib/transformation/read-input-source-map-file-browser.js.map +1 -0
  146. package/src/server/ui/node_modules/@babel/core/lib/transformation/read-input-source-map-file.js +88 -0
  147. package/src/server/ui/node_modules/@babel/core/lib/transformation/read-input-source-map-file.js.map +1 -0
  148. package/src/server/ui/node_modules/@babel/core/lib/transformation/util/clone-deep.js +54 -0
  149. package/src/server/ui/node_modules/@babel/core/lib/transformation/util/clone-deep.js.map +1 -0
  150. package/src/server/ui/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1042 -0
  151. package/src/server/ui/node_modules/@babel/core/lib/vendor/import-meta-resolve.js.map +1 -0
  152. package/src/server/ui/node_modules/@babel/core/package.json +84 -0
  153. package/src/server/ui/node_modules/@babel/core/src/config/files/index-browser.ts +115 -0
  154. package/src/server/ui/node_modules/@babel/core/src/config/files/index.ts +30 -0
  155. package/src/server/ui/node_modules/@babel/core/src/config/resolve-targets-browser.ts +42 -0
  156. package/src/server/ui/node_modules/@babel/core/src/config/resolve-targets.ts +54 -0
  157. package/src/server/ui/node_modules/@babel/core/src/transform-file-browser.ts +33 -0
  158. package/src/server/ui/node_modules/@babel/core/src/transform-file.ts +56 -0
  159. package/src/server/ui/node_modules/@babel/core/src/transformation/read-input-source-map-file-browser.ts +5 -0
  160. package/src/server/ui/node_modules/@babel/core/src/transformation/read-input-source-map-file.ts +89 -0
  161. package/src/server/ui/node_modules/@babel/generator/LICENSE +22 -0
  162. package/src/server/ui/node_modules/@babel/generator/README.md +19 -0
  163. package/src/server/ui/node_modules/@babel/generator/lib/buffer.js +247 -0
  164. package/src/server/ui/node_modules/@babel/generator/lib/buffer.js.map +1 -0
  165. package/src/server/ui/node_modules/@babel/generator/lib/generators/base.js +86 -0
  166. package/src/server/ui/node_modules/@babel/generator/lib/generators/base.js.map +1 -0
  167. package/src/server/ui/node_modules/@babel/generator/lib/generators/classes.js +215 -0
  168. package/src/server/ui/node_modules/@babel/generator/lib/generators/classes.js.map +1 -0
  169. package/src/server/ui/node_modules/@babel/generator/lib/generators/deprecated.js +73 -0
  170. package/src/server/ui/node_modules/@babel/generator/lib/generators/deprecated.js.map +1 -0
  171. package/src/server/ui/node_modules/@babel/generator/lib/generators/expressions.js +309 -0
  172. package/src/server/ui/node_modules/@babel/generator/lib/generators/expressions.js.map +1 -0
  173. package/src/server/ui/node_modules/@babel/generator/lib/generators/flow.js +658 -0
  174. package/src/server/ui/node_modules/@babel/generator/lib/generators/flow.js.map +1 -0
  175. package/src/server/ui/node_modules/@babel/generator/lib/generators/index.js +128 -0
  176. package/src/server/ui/node_modules/@babel/generator/lib/generators/index.js.map +1 -0
  177. package/src/server/ui/node_modules/@babel/generator/lib/generators/jsx.js +124 -0
  178. package/src/server/ui/node_modules/@babel/generator/lib/generators/jsx.js.map +1 -0
  179. package/src/server/ui/node_modules/@babel/generator/lib/generators/methods.js +207 -0
  180. package/src/server/ui/node_modules/@babel/generator/lib/generators/methods.js.map +1 -0
  181. package/src/server/ui/node_modules/@babel/generator/lib/generators/modules.js +290 -0
  182. package/src/server/ui/node_modules/@babel/generator/lib/generators/modules.js.map +1 -0
  183. package/src/server/ui/node_modules/@babel/generator/lib/generators/statements.js +297 -0
  184. package/src/server/ui/node_modules/@babel/generator/lib/generators/statements.js.map +1 -0
  185. package/src/server/ui/node_modules/@babel/generator/lib/generators/template-literals.js +38 -0
  186. package/src/server/ui/node_modules/@babel/generator/lib/generators/template-literals.js.map +1 -0
  187. package/src/server/ui/node_modules/@babel/generator/lib/generators/types.js +183 -0
  188. package/src/server/ui/node_modules/@babel/generator/lib/generators/types.js.map +1 -0
  189. package/src/server/ui/node_modules/@babel/generator/lib/generators/typescript.js +726 -0
  190. package/src/server/ui/node_modules/@babel/generator/lib/generators/typescript.js.map +1 -0
  191. package/src/server/ui/node_modules/@babel/generator/lib/index.js +108 -0
  192. package/src/server/ui/node_modules/@babel/generator/lib/index.js.map +1 -0
  193. package/src/server/ui/node_modules/@babel/generator/lib/node/index.js +95 -0
  194. package/src/server/ui/node_modules/@babel/generator/lib/node/index.js.map +1 -0
  195. package/src/server/ui/node_modules/@babel/generator/lib/node/parentheses.js +298 -0
  196. package/src/server/ui/node_modules/@babel/generator/lib/node/parentheses.js.map +1 -0
  197. package/src/server/ui/node_modules/@babel/generator/lib/nodes.js +19 -0
  198. package/src/server/ui/node_modules/@babel/generator/lib/nodes.js.map +1 -0
  199. package/src/server/ui/node_modules/@babel/generator/lib/printer.js +783 -0
  200. package/src/server/ui/node_modules/@babel/generator/lib/printer.js.map +1 -0
  201. package/src/server/ui/node_modules/@babel/generator/lib/source-map.js +88 -0
  202. package/src/server/ui/node_modules/@babel/generator/lib/source-map.js.map +1 -0
  203. package/src/server/ui/node_modules/@babel/generator/lib/token-map.js +195 -0
  204. package/src/server/ui/node_modules/@babel/generator/lib/token-map.js.map +1 -0
  205. package/src/server/ui/node_modules/@babel/generator/package.json +39 -0
  206. package/src/server/ui/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
  207. package/src/server/ui/node_modules/@babel/helper-compilation-targets/README.md +19 -0
  208. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/debug.js +28 -0
  209. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/debug.js.map +1 -0
  210. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/filter-items.js +67 -0
  211. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/filter-items.js.map +1 -0
  212. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/index.js +229 -0
  213. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/index.js.map +1 -0
  214. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/options.js +24 -0
  215. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/options.js.map +1 -0
  216. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/pretty.js +40 -0
  217. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/pretty.js.map +1 -0
  218. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/targets.js +28 -0
  219. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/targets.js.map +1 -0
  220. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/utils.js +58 -0
  221. package/src/server/ui/node_modules/@babel/helper-compilation-targets/lib/utils.js.map +1 -0
  222. package/src/server/ui/node_modules/@babel/helper-compilation-targets/package.json +43 -0
  223. package/src/server/ui/node_modules/@babel/helper-globals/LICENSE +22 -0
  224. package/src/server/ui/node_modules/@babel/helper-globals/README.md +19 -0
  225. package/src/server/ui/node_modules/@babel/helper-globals/data/browser-upper.json +911 -0
  226. package/src/server/ui/node_modules/@babel/helper-globals/data/builtin-lower.json +15 -0
  227. package/src/server/ui/node_modules/@babel/helper-globals/data/builtin-upper.json +51 -0
  228. package/src/server/ui/node_modules/@babel/helper-globals/package.json +32 -0
  229. package/src/server/ui/node_modules/@babel/helper-module-imports/LICENSE +22 -0
  230. package/src/server/ui/node_modules/@babel/helper-module-imports/README.md +19 -0
  231. package/src/server/ui/node_modules/@babel/helper-module-imports/lib/import-builder.js +122 -0
  232. package/src/server/ui/node_modules/@babel/helper-module-imports/lib/import-builder.js.map +1 -0
  233. package/src/server/ui/node_modules/@babel/helper-module-imports/lib/import-injector.js +304 -0
  234. package/src/server/ui/node_modules/@babel/helper-module-imports/lib/import-injector.js.map +1 -0
  235. package/src/server/ui/node_modules/@babel/helper-module-imports/lib/index.js +37 -0
  236. package/src/server/ui/node_modules/@babel/helper-module-imports/lib/index.js.map +1 -0
  237. package/src/server/ui/node_modules/@babel/helper-module-imports/lib/is-module.js +11 -0
  238. package/src/server/ui/node_modules/@babel/helper-module-imports/lib/is-module.js.map +1 -0
  239. package/src/server/ui/node_modules/@babel/helper-module-imports/package.json +28 -0
  240. package/src/server/ui/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
  241. package/src/server/ui/node_modules/@babel/helper-module-transforms/README.md +19 -0
  242. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js +46 -0
  243. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js.map +1 -0
  244. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/get-module-name.js +46 -0
  245. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/get-module-name.js.map +1 -0
  246. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/index.js +396 -0
  247. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/index.js.map +1 -0
  248. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js +31 -0
  249. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js.map +1 -0
  250. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +362 -0
  251. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js.map +1 -0
  252. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +360 -0
  253. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js.map +1 -0
  254. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +22 -0
  255. package/src/server/ui/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js.map +1 -0
  256. package/src/server/ui/node_modules/@babel/helper-module-transforms/package.json +32 -0
  257. package/src/server/ui/node_modules/@babel/helper-plugin-utils/LICENSE +22 -0
  258. package/src/server/ui/node_modules/@babel/helper-plugin-utils/README.md +19 -0
  259. package/src/server/ui/node_modules/@babel/helper-plugin-utils/lib/index.js +74 -0
  260. package/src/server/ui/node_modules/@babel/helper-plugin-utils/lib/index.js.map +1 -0
  261. package/src/server/ui/node_modules/@babel/helper-plugin-utils/package.json +24 -0
  262. package/src/server/ui/node_modules/@babel/helper-string-parser/LICENSE +22 -0
  263. package/src/server/ui/node_modules/@babel/helper-string-parser/README.md +19 -0
  264. package/src/server/ui/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
  265. package/src/server/ui/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
  266. package/src/server/ui/node_modules/@babel/helper-string-parser/package.json +31 -0
  267. package/src/server/ui/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
  268. package/src/server/ui/node_modules/@babel/helper-validator-identifier/README.md +19 -0
  269. package/src/server/ui/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
  270. package/src/server/ui/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
  271. package/src/server/ui/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
  272. package/src/server/ui/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
  273. package/src/server/ui/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
  274. package/src/server/ui/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
  275. package/src/server/ui/node_modules/@babel/helper-validator-identifier/package.json +31 -0
  276. package/src/server/ui/node_modules/@babel/helper-validator-option/LICENSE +22 -0
  277. package/src/server/ui/node_modules/@babel/helper-validator-option/README.md +19 -0
  278. package/src/server/ui/node_modules/@babel/helper-validator-option/lib/find-suggestion.js +39 -0
  279. package/src/server/ui/node_modules/@babel/helper-validator-option/lib/find-suggestion.js.map +1 -0
  280. package/src/server/ui/node_modules/@babel/helper-validator-option/lib/index.js +21 -0
  281. package/src/server/ui/node_modules/@babel/helper-validator-option/lib/index.js.map +1 -0
  282. package/src/server/ui/node_modules/@babel/helper-validator-option/lib/validator.js +48 -0
  283. package/src/server/ui/node_modules/@babel/helper-validator-option/lib/validator.js.map +1 -0
  284. package/src/server/ui/node_modules/@babel/helper-validator-option/package.json +27 -0
  285. package/src/server/ui/node_modules/@babel/helpers/LICENSE +23 -0
  286. package/src/server/ui/node_modules/@babel/helpers/README.md +19 -0
  287. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/AwaitValue.js +11 -0
  288. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/AwaitValue.js.map +1 -0
  289. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/OverloadYield.js +12 -0
  290. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/OverloadYield.js.map +1 -0
  291. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecoratedDescriptor.js +31 -0
  292. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecoratedDescriptor.js.map +1 -0
  293. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs.js +459 -0
  294. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs.js.map +1 -0
  295. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js +363 -0
  296. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js.map +1 -0
  297. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js +376 -0
  298. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js.map +1 -0
  299. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js +421 -0
  300. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js.map +1 -0
  301. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js +235 -0
  302. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js.map +1 -0
  303. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs2311.js +236 -0
  304. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/applyDecs2311.js.map +1 -0
  305. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/arrayLikeToArray.js +13 -0
  306. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/arrayLikeToArray.js.map +1 -0
  307. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/arrayWithHoles.js +11 -0
  308. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/arrayWithHoles.js.map +1 -0
  309. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/arrayWithoutHoles.js +12 -0
  310. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/arrayWithoutHoles.js.map +1 -0
  311. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/assertClassBrand.js +14 -0
  312. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/assertClassBrand.js.map +1 -0
  313. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/assertThisInitialized.js +14 -0
  314. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/assertThisInitialized.js.map +1 -0
  315. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js +52 -0
  316. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js.map +1 -0
  317. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/asyncIterator.js +72 -0
  318. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/asyncIterator.js.map +1 -0
  319. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/asyncToGenerator.js +38 -0
  320. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/asyncToGenerator.js.map +1 -0
  321. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js +12 -0
  322. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js.map +1 -0
  323. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/callSuper.js +15 -0
  324. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/callSuper.js.map +1 -0
  325. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/checkInRHS.js +14 -0
  326. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/checkInRHS.js.map +1 -0
  327. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/checkPrivateRedeclaration.js +13 -0
  328. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/checkPrivateRedeclaration.js.map +1 -0
  329. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorDestructureSet.js +25 -0
  330. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorDestructureSet.js.map +1 -0
  331. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorGet.js +14 -0
  332. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorGet.js.map +1 -0
  333. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorSet.js +18 -0
  334. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorSet.js.map +1 -0
  335. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classCallCheck.js +13 -0
  336. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classCallCheck.js.map +1 -0
  337. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticAccess.js +12 -0
  338. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticAccess.js.map +1 -0
  339. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticFieldDescriptor.js +13 -0
  340. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticFieldDescriptor.js.map +1 -0
  341. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classExtractFieldDescriptor.js +12 -0
  342. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classExtractFieldDescriptor.js.map +1 -0
  343. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classNameTDZError.js +11 -0
  344. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classNameTDZError.js.map +1 -0
  345. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldDestructureSet.js +14 -0
  346. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldDestructureSet.js.map +1 -0
  347. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet.js +14 -0
  348. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet.js.map +1 -0
  349. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet2.js +12 -0
  350. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet2.js.map +1 -0
  351. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldInitSpec.js +13 -0
  352. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldInitSpec.js.map +1 -0
  353. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseBase.js +14 -0
  354. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseBase.js.map +1 -0
  355. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseKey.js +12 -0
  356. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseKey.js.map +1 -0
  357. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet.js +15 -0
  358. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet.js.map +1 -0
  359. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet2.js +13 -0
  360. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet2.js.map +1 -0
  361. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateGetter.js +12 -0
  362. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateGetter.js.map +1 -0
  363. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateMethodGet.js +13 -0
  364. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateMethodGet.js.map +1 -0
  365. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateMethodInitSpec.js +13 -0
  366. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateMethodInitSpec.js.map +1 -0
  367. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateMethodSet.js +11 -0
  368. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateMethodSet.js.map +1 -0
  369. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateSetter.js +13 -0
  370. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classPrivateSetter.js.map +1 -0
  371. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldDestructureSet.js +16 -0
  372. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldDestructureSet.js.map +1 -0
  373. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecGet.js +16 -0
  374. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecGet.js.map +1 -0
  375. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecSet.js +17 -0
  376. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecSet.js.map +1 -0
  377. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodGet.js +13 -0
  378. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodGet.js.map +1 -0
  379. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodSet.js +11 -0
  380. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodSet.js.map +1 -0
  381. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/construct.js +20 -0
  382. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/construct.js.map +1 -0
  383. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/createClass.js +26 -0
  384. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/createClass.js.map +1 -0
  385. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelper.js +64 -0
  386. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelper.js.map +1 -0
  387. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelperLoose.js +29 -0
  388. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelperLoose.js.map +1 -0
  389. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/createSuper.js +25 -0
  390. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/createSuper.js.map +1 -0
  391. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/decorate.js +350 -0
  392. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/decorate.js.map +1 -0
  393. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/defaults.js +18 -0
  394. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/defaults.js.map +1 -0
  395. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/defineAccessor.js +16 -0
  396. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/defineAccessor.js.map +1 -0
  397. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/defineEnumerableProperties.js +27 -0
  398. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/defineEnumerableProperties.js.map +1 -0
  399. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/defineProperty.js +23 -0
  400. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/defineProperty.js.map +1 -0
  401. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/dispose.js +47 -0
  402. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/dispose.js.map +1 -0
  403. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/extends.js +22 -0
  404. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/extends.js.map +1 -0
  405. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/get.js +25 -0
  406. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/get.js.map +1 -0
  407. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/getPrototypeOf.js +14 -0
  408. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/getPrototypeOf.js.map +1 -0
  409. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/identity.js +11 -0
  410. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/identity.js.map +1 -0
  411. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js +35 -0
  412. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js.map +1 -0
  413. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/inherits.js +25 -0
  414. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/inherits.js.map +1 -0
  415. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/inheritsLoose.js +14 -0
  416. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/inheritsLoose.js.map +1 -0
  417. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/initializerDefineProperty.js +17 -0
  418. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/initializerDefineProperty.js.map +1 -0
  419. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/initializerWarningHelper.js +11 -0
  420. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/initializerWarningHelper.js.map +1 -0
  421. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/instanceof.js +15 -0
  422. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/instanceof.js.map +1 -0
  423. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/interopRequireDefault.js +13 -0
  424. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/interopRequireDefault.js.map +1 -0
  425. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js +44 -0
  426. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js.map +1 -0
  427. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/isNativeFunction.js +15 -0
  428. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/isNativeFunction.js.map +1 -0
  429. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js +16 -0
  430. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js.map +1 -0
  431. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/iterableToArray.js +13 -0
  432. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/iterableToArray.js.map +1 -0
  433. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js +41 -0
  434. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js.map +1 -0
  435. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/jsx.js +47 -0
  436. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/jsx.js.map +1 -0
  437. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/maybeArrayLike.js +16 -0
  438. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/maybeArrayLike.js.map +1 -0
  439. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/newArrowCheck.js +13 -0
  440. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/newArrowCheck.js.map +1 -0
  441. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/nonIterableRest.js +11 -0
  442. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/nonIterableRest.js.map +1 -0
  443. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/nonIterableSpread.js +11 -0
  444. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/nonIterableSpread.js.map +1 -0
  445. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/nullishReceiverError.js +11 -0
  446. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/nullishReceiverError.js.map +1 -0
  447. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/objectDestructuringEmpty.js +11 -0
  448. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/objectDestructuringEmpty.js.map +1 -0
  449. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/objectSpread.js +24 -0
  450. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/objectSpread.js.map +1 -0
  451. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/objectSpread2.js +39 -0
  452. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/objectSpread2.js.map +1 -0
  453. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/objectWithoutProperties.js +24 -0
  454. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/objectWithoutProperties.js.map +1 -0
  455. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/objectWithoutPropertiesLoose.js +19 -0
  456. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/objectWithoutPropertiesLoose.js.map +1 -0
  457. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/possibleConstructorReturn.js +17 -0
  458. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/possibleConstructorReturn.js.map +1 -0
  459. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/readOnlyError.js +11 -0
  460. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/readOnlyError.js.map +1 -0
  461. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regenerator.js +188 -0
  462. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regenerator.js.map +1 -0
  463. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorAsync.js +15 -0
  464. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorAsync.js.map +1 -0
  465. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncGen.js +13 -0
  466. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncGen.js.map +1 -0
  467. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncIterator.js +49 -0
  468. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncIterator.js.map +1 -0
  469. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorDefine.js +40 -0
  470. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorDefine.js.map +1 -0
  471. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorKeys.js +28 -0
  472. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorKeys.js.map +1 -0
  473. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js +98 -0
  474. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js.map +1 -0
  475. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorValues.js +32 -0
  476. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/regeneratorValues.js.map +1 -0
  477. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/set.js +48 -0
  478. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/set.js.map +1 -0
  479. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/setFunctionName.js +21 -0
  480. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/setFunctionName.js.map +1 -0
  481. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/setPrototypeOf.js +15 -0
  482. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/setPrototypeOf.js.map +1 -0
  483. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/skipFirstGeneratorNext.js +15 -0
  484. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/skipFirstGeneratorNext.js.map +1 -0
  485. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/slicedToArray.js +15 -0
  486. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/slicedToArray.js.map +1 -0
  487. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/superPropBase.js +16 -0
  488. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/superPropBase.js.map +1 -0
  489. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/superPropGet.js +16 -0
  490. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/superPropGet.js.map +1 -0
  491. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/superPropSet.js +13 -0
  492. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/superPropSet.js.map +1 -0
  493. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteral.js +18 -0
  494. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteral.js.map +1 -0
  495. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteralLoose.js +15 -0
  496. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteralLoose.js.map +1 -0
  497. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/tdz.js +11 -0
  498. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/tdz.js.map +1 -0
  499. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/temporalRef.js +13 -0
  500. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/temporalRef.js.map +1 -0
  501. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/temporalUndefined.js +9 -0
  502. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/temporalUndefined.js.map +1 -0
  503. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/toArray.js +15 -0
  504. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/toArray.js.map +1 -0
  505. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/toConsumableArray.js +15 -0
  506. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/toConsumableArray.js.map +1 -0
  507. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/toPrimitive.js +18 -0
  508. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/toPrimitive.js.map +1 -0
  509. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js +13 -0
  510. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js.map +1 -0
  511. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/toSetter.js +18 -0
  512. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/toSetter.js.map +1 -0
  513. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/tsRewriteRelativeImportExtensions.js +16 -0
  514. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/tsRewriteRelativeImportExtensions.js.map +1 -0
  515. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/typeof.js +22 -0
  516. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/typeof.js.map +1 -0
  517. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/unsupportedIterableToArray.js +19 -0
  518. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/unsupportedIterableToArray.js.map +1 -0
  519. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/using.js +29 -0
  520. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/using.js.map +1 -0
  521. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/usingCtx.js +103 -0
  522. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/usingCtx.js.map +1 -0
  523. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/wrapAsyncGenerator.js +88 -0
  524. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/wrapAsyncGenerator.js.map +1 -0
  525. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/wrapNativeSuper.js +38 -0
  526. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/wrapNativeSuper.js.map +1 -0
  527. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js +72 -0
  528. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js.map +1 -0
  529. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/writeOnlyError.js +11 -0
  530. package/src/server/ui/node_modules/@babel/helpers/lib/helpers/writeOnlyError.js.map +1 -0
  531. package/src/server/ui/node_modules/@babel/helpers/lib/helpers-generated.js +1440 -0
  532. package/src/server/ui/node_modules/@babel/helpers/lib/helpers-generated.js.map +1 -0
  533. package/src/server/ui/node_modules/@babel/helpers/lib/index.js +122 -0
  534. package/src/server/ui/node_modules/@babel/helpers/lib/index.js.map +1 -0
  535. package/src/server/ui/node_modules/@babel/helpers/package.json +31 -0
  536. package/src/server/ui/node_modules/@babel/parser/CHANGELOG.md +1073 -0
  537. package/src/server/ui/node_modules/@babel/parser/LICENSE +19 -0
  538. package/src/server/ui/node_modules/@babel/parser/README.md +19 -0
  539. package/src/server/ui/node_modules/@babel/parser/bin/babel-parser.js +15 -0
  540. package/src/server/ui/node_modules/@babel/parser/lib/index.js +14611 -0
  541. package/src/server/ui/node_modules/@babel/parser/lib/index.js.map +1 -0
  542. package/src/server/ui/node_modules/@babel/parser/package.json +50 -0
  543. package/src/server/ui/node_modules/@babel/parser/typings/babel-parser.d.ts +262 -0
  544. package/src/server/ui/node_modules/@babel/plugin-transform-react-jsx-self/LICENSE +22 -0
  545. package/src/server/ui/node_modules/@babel/plugin-transform-react-jsx-self/README.md +19 -0
  546. package/src/server/ui/node_modules/@babel/plugin-transform-react-jsx-self/lib/index.js +61 -0
  547. package/src/server/ui/node_modules/@babel/plugin-transform-react-jsx-self/lib/index.js.map +1 -0
  548. package/src/server/ui/node_modules/@babel/plugin-transform-react-jsx-self/package.json +35 -0
  549. package/src/server/ui/node_modules/@babel/plugin-transform-react-jsx-source/LICENSE +22 -0
  550. package/src/server/ui/node_modules/@babel/plugin-transform-react-jsx-source/README.md +19 -0
  551. package/src/server/ui/node_modules/@babel/plugin-transform-react-jsx-source/lib/index.js +51 -0
  552. package/src/server/ui/node_modules/@babel/plugin-transform-react-jsx-source/lib/index.js.map +1 -0
  553. package/src/server/ui/node_modules/@babel/plugin-transform-react-jsx-source/package.json +35 -0
  554. package/src/server/ui/node_modules/@babel/template/LICENSE +22 -0
  555. package/src/server/ui/node_modules/@babel/template/README.md +19 -0
  556. package/src/server/ui/node_modules/@babel/template/lib/builder.js +69 -0
  557. package/src/server/ui/node_modules/@babel/template/lib/builder.js.map +1 -0
  558. package/src/server/ui/node_modules/@babel/template/lib/formatters.js +61 -0
  559. package/src/server/ui/node_modules/@babel/template/lib/formatters.js.map +1 -0
  560. package/src/server/ui/node_modules/@babel/template/lib/index.js +23 -0
  561. package/src/server/ui/node_modules/@babel/template/lib/index.js.map +1 -0
  562. package/src/server/ui/node_modules/@babel/template/lib/literal.js +69 -0
  563. package/src/server/ui/node_modules/@babel/template/lib/literal.js.map +1 -0
  564. package/src/server/ui/node_modules/@babel/template/lib/options.js +73 -0
  565. package/src/server/ui/node_modules/@babel/template/lib/options.js.map +1 -0
  566. package/src/server/ui/node_modules/@babel/template/lib/parse.js +163 -0
  567. package/src/server/ui/node_modules/@babel/template/lib/parse.js.map +1 -0
  568. package/src/server/ui/node_modules/@babel/template/lib/populate.js +138 -0
  569. package/src/server/ui/node_modules/@babel/template/lib/populate.js.map +1 -0
  570. package/src/server/ui/node_modules/@babel/template/lib/string.js +20 -0
  571. package/src/server/ui/node_modules/@babel/template/lib/string.js.map +1 -0
  572. package/src/server/ui/node_modules/@babel/template/package.json +27 -0
  573. package/src/server/ui/node_modules/@babel/traverse/LICENSE +22 -0
  574. package/src/server/ui/node_modules/@babel/traverse/README.md +19 -0
  575. package/src/server/ui/node_modules/@babel/traverse/lib/cache.js +37 -0
  576. package/src/server/ui/node_modules/@babel/traverse/lib/cache.js.map +1 -0
  577. package/src/server/ui/node_modules/@babel/traverse/lib/context.js +125 -0
  578. package/src/server/ui/node_modules/@babel/traverse/lib/context.js.map +1 -0
  579. package/src/server/ui/node_modules/@babel/traverse/lib/hub.js +19 -0
  580. package/src/server/ui/node_modules/@babel/traverse/lib/hub.js.map +1 -0
  581. package/src/server/ui/node_modules/@babel/traverse/lib/index.js +87 -0
  582. package/src/server/ui/node_modules/@babel/traverse/lib/index.js.map +1 -0
  583. package/src/server/ui/node_modules/@babel/traverse/lib/path/ancestry.js +139 -0
  584. package/src/server/ui/node_modules/@babel/traverse/lib/path/ancestry.js.map +1 -0
  585. package/src/server/ui/node_modules/@babel/traverse/lib/path/comments.js +52 -0
  586. package/src/server/ui/node_modules/@babel/traverse/lib/path/comments.js.map +1 -0
  587. package/src/server/ui/node_modules/@babel/traverse/lib/path/context.js +254 -0
  588. package/src/server/ui/node_modules/@babel/traverse/lib/path/context.js.map +1 -0
  589. package/src/server/ui/node_modules/@babel/traverse/lib/path/conversion.js +608 -0
  590. package/src/server/ui/node_modules/@babel/traverse/lib/path/conversion.js.map +1 -0
  591. package/src/server/ui/node_modules/@babel/traverse/lib/path/evaluation.js +373 -0
  592. package/src/server/ui/node_modules/@babel/traverse/lib/path/evaluation.js.map +1 -0
  593. package/src/server/ui/node_modules/@babel/traverse/lib/path/family.js +346 -0
  594. package/src/server/ui/node_modules/@babel/traverse/lib/path/family.js.map +1 -0
  595. package/src/server/ui/node_modules/@babel/traverse/lib/path/index.js +288 -0
  596. package/src/server/ui/node_modules/@babel/traverse/lib/path/index.js.map +1 -0
  597. package/src/server/ui/node_modules/@babel/traverse/lib/path/inference/index.js +149 -0
  598. package/src/server/ui/node_modules/@babel/traverse/lib/path/inference/index.js.map +1 -0
  599. package/src/server/ui/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +151 -0
  600. package/src/server/ui/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js.map +1 -0
  601. package/src/server/ui/node_modules/@babel/traverse/lib/path/inference/inferers.js +207 -0
  602. package/src/server/ui/node_modules/@babel/traverse/lib/path/inference/inferers.js.map +1 -0
  603. package/src/server/ui/node_modules/@babel/traverse/lib/path/inference/util.js +28 -0
  604. package/src/server/ui/node_modules/@babel/traverse/lib/path/inference/util.js.map +1 -0
  605. package/src/server/ui/node_modules/@babel/traverse/lib/path/introspection.js +395 -0
  606. package/src/server/ui/node_modules/@babel/traverse/lib/path/introspection.js.map +1 -0
  607. package/src/server/ui/node_modules/@babel/traverse/lib/path/lib/hoister.js +172 -0
  608. package/src/server/ui/node_modules/@babel/traverse/lib/path/lib/hoister.js.map +1 -0
  609. package/src/server/ui/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +38 -0
  610. package/src/server/ui/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js.map +1 -0
  611. package/src/server/ui/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +162 -0
  612. package/src/server/ui/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js.map +1 -0
  613. package/src/server/ui/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +26 -0
  614. package/src/server/ui/node_modules/@babel/traverse/lib/path/lib/virtual-types.js.map +1 -0
  615. package/src/server/ui/node_modules/@babel/traverse/lib/path/modification.js +229 -0
  616. package/src/server/ui/node_modules/@babel/traverse/lib/path/modification.js.map +1 -0
  617. package/src/server/ui/node_modules/@babel/traverse/lib/path/removal.js +67 -0
  618. package/src/server/ui/node_modules/@babel/traverse/lib/path/removal.js.map +1 -0
  619. package/src/server/ui/node_modules/@babel/traverse/lib/path/replacement.js +264 -0
  620. package/src/server/ui/node_modules/@babel/traverse/lib/path/replacement.js.map +1 -0
  621. package/src/server/ui/node_modules/@babel/traverse/lib/scope/binding.js +84 -0
  622. package/src/server/ui/node_modules/@babel/traverse/lib/scope/binding.js.map +1 -0
  623. package/src/server/ui/node_modules/@babel/traverse/lib/scope/index.js +1018 -0
  624. package/src/server/ui/node_modules/@babel/traverse/lib/scope/index.js.map +1 -0
  625. package/src/server/ui/node_modules/@babel/traverse/lib/scope/lib/renamer.js +132 -0
  626. package/src/server/ui/node_modules/@babel/traverse/lib/scope/lib/renamer.js.map +1 -0
  627. package/src/server/ui/node_modules/@babel/traverse/lib/scope/traverseForScope.js +66 -0
  628. package/src/server/ui/node_modules/@babel/traverse/lib/scope/traverseForScope.js.map +1 -0
  629. package/src/server/ui/node_modules/@babel/traverse/lib/traverse-node.js +137 -0
  630. package/src/server/ui/node_modules/@babel/traverse/lib/traverse-node.js.map +1 -0
  631. package/src/server/ui/node_modules/@babel/traverse/lib/types.js +3 -0
  632. package/src/server/ui/node_modules/@babel/traverse/lib/types.js.map +1 -0
  633. package/src/server/ui/node_modules/@babel/traverse/lib/visitors.js +252 -0
  634. package/src/server/ui/node_modules/@babel/traverse/lib/visitors.js.map +1 -0
  635. package/src/server/ui/node_modules/@babel/traverse/package.json +35 -0
  636. package/src/server/ui/node_modules/@babel/traverse/tsconfig.overrides.json +6 -0
  637. package/src/server/ui/node_modules/@babel/types/LICENSE +22 -0
  638. package/src/server/ui/node_modules/@babel/types/README.md +19 -0
  639. package/src/server/ui/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
  640. package/src/server/ui/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
  641. package/src/server/ui/node_modules/@babel/types/lib/asserts/generated/index.js +1251 -0
  642. package/src/server/ui/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
  643. package/src/server/ui/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
  644. package/src/server/ui/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
  645. package/src/server/ui/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
  646. package/src/server/ui/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
  647. package/src/server/ui/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +31 -0
  648. package/src/server/ui/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
  649. package/src/server/ui/node_modules/@babel/types/lib/builders/generated/index.js +29 -0
  650. package/src/server/ui/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
  651. package/src/server/ui/node_modules/@babel/types/lib/builders/generated/lowercase.js +2903 -0
  652. package/src/server/ui/node_modules/@babel/types/lib/builders/generated/lowercase.js.map +1 -0
  653. package/src/server/ui/node_modules/@babel/types/lib/builders/generated/uppercase.js +272 -0
  654. package/src/server/ui/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
  655. package/src/server/ui/node_modules/@babel/types/lib/builders/productions.js +12 -0
  656. package/src/server/ui/node_modules/@babel/types/lib/builders/productions.js.map +1 -0
  657. package/src/server/ui/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
  658. package/src/server/ui/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
  659. package/src/server/ui/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
  660. package/src/server/ui/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
  661. package/src/server/ui/node_modules/@babel/types/lib/builders/validateNode.js +21 -0
  662. package/src/server/ui/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
  663. package/src/server/ui/node_modules/@babel/types/lib/clone/clone.js +12 -0
  664. package/src/server/ui/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
  665. package/src/server/ui/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
  666. package/src/server/ui/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
  667. package/src/server/ui/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
  668. package/src/server/ui/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
  669. package/src/server/ui/node_modules/@babel/types/lib/clone/cloneNode.js +107 -0
  670. package/src/server/ui/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
  671. package/src/server/ui/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
  672. package/src/server/ui/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
  673. package/src/server/ui/node_modules/@babel/types/lib/comments/addComment.js +15 -0
  674. package/src/server/ui/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
  675. package/src/server/ui/node_modules/@babel/types/lib/comments/addComments.js +22 -0
  676. package/src/server/ui/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
  677. package/src/server/ui/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
  678. package/src/server/ui/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
  679. package/src/server/ui/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
  680. package/src/server/ui/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
  681. package/src/server/ui/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
  682. package/src/server/ui/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
  683. package/src/server/ui/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
  684. package/src/server/ui/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
  685. package/src/server/ui/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
  686. package/src/server/ui/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
  687. package/src/server/ui/node_modules/@babel/types/lib/constants/generated/index.js +60 -0
  688. package/src/server/ui/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
  689. package/src/server/ui/node_modules/@babel/types/lib/constants/index.js +31 -0
  690. package/src/server/ui/node_modules/@babel/types/lib/constants/index.js.map +1 -0
  691. package/src/server/ui/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
  692. package/src/server/ui/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
  693. package/src/server/ui/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +65 -0
  694. package/src/server/ui/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
  695. package/src/server/ui/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
  696. package/src/server/ui/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
  697. package/src/server/ui/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
  698. package/src/server/ui/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
  699. package/src/server/ui/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
  700. package/src/server/ui/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
  701. package/src/server/ui/node_modules/@babel/types/lib/converters/toExpression.js +28 -0
  702. package/src/server/ui/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
  703. package/src/server/ui/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
  704. package/src/server/ui/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
  705. package/src/server/ui/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
  706. package/src/server/ui/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
  707. package/src/server/ui/node_modules/@babel/types/lib/converters/toSequenceExpression.js +19 -0
  708. package/src/server/ui/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
  709. package/src/server/ui/node_modules/@babel/types/lib/converters/toStatement.js +39 -0
  710. package/src/server/ui/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
  711. package/src/server/ui/node_modules/@babel/types/lib/converters/valueToNode.js +89 -0
  712. package/src/server/ui/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
  713. package/src/server/ui/node_modules/@babel/types/lib/definitions/core.js +1735 -0
  714. package/src/server/ui/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
  715. package/src/server/ui/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +11 -0
  716. package/src/server/ui/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
  717. package/src/server/ui/node_modules/@babel/types/lib/definitions/experimental.js +124 -0
  718. package/src/server/ui/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
  719. package/src/server/ui/node_modules/@babel/types/lib/definitions/flow.js +495 -0
  720. package/src/server/ui/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
  721. package/src/server/ui/node_modules/@babel/types/lib/definitions/index.js +106 -0
  722. package/src/server/ui/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
  723. package/src/server/ui/node_modules/@babel/types/lib/definitions/jsx.js +157 -0
  724. package/src/server/ui/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
  725. package/src/server/ui/node_modules/@babel/types/lib/definitions/misc.js +31 -0
  726. package/src/server/ui/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
  727. package/src/server/ui/node_modules/@babel/types/lib/definitions/placeholders.js +27 -0
  728. package/src/server/ui/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
  729. package/src/server/ui/node_modules/@babel/types/lib/definitions/typescript.js +528 -0
  730. package/src/server/ui/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
  731. package/src/server/ui/node_modules/@babel/types/lib/definitions/utils.js +296 -0
  732. package/src/server/ui/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
  733. package/src/server/ui/node_modules/@babel/types/lib/index-legacy.d.ts +2796 -0
  734. package/src/server/ui/node_modules/@babel/types/lib/index.d.ts +3616 -0
  735. package/src/server/ui/node_modules/@babel/types/lib/index.js +582 -0
  736. package/src/server/ui/node_modules/@babel/types/lib/index.js.flow +2649 -0
  737. package/src/server/ui/node_modules/@babel/types/lib/index.js.map +1 -0
  738. package/src/server/ui/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
  739. package/src/server/ui/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
  740. package/src/server/ui/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
  741. package/src/server/ui/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
  742. package/src/server/ui/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
  743. package/src/server/ui/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
  744. package/src/server/ui/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
  745. package/src/server/ui/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
  746. package/src/server/ui/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
  747. package/src/server/ui/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
  748. package/src/server/ui/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
  749. package/src/server/ui/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
  750. package/src/server/ui/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +66 -0
  751. package/src/server/ui/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
  752. package/src/server/ui/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js +48 -0
  753. package/src/server/ui/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js.map +1 -0
  754. package/src/server/ui/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +102 -0
  755. package/src/server/ui/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
  756. package/src/server/ui/node_modules/@babel/types/lib/retrievers/getFunctionName.js +63 -0
  757. package/src/server/ui/node_modules/@babel/types/lib/retrievers/getFunctionName.js.map +1 -0
  758. package/src/server/ui/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +13 -0
  759. package/src/server/ui/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
  760. package/src/server/ui/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
  761. package/src/server/ui/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
  762. package/src/server/ui/node_modules/@babel/types/lib/traverse/traverseFast.js +40 -0
  763. package/src/server/ui/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
  764. package/src/server/ui/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
  765. package/src/server/ui/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
  766. package/src/server/ui/node_modules/@babel/types/lib/utils/inherit.js +13 -0
  767. package/src/server/ui/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
  768. package/src/server/ui/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
  769. package/src/server/ui/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
  770. package/src/server/ui/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
  771. package/src/server/ui/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
  772. package/src/server/ui/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
  773. package/src/server/ui/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
  774. package/src/server/ui/node_modules/@babel/types/lib/validators/generated/index.js +2797 -0
  775. package/src/server/ui/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
  776. package/src/server/ui/node_modules/@babel/types/lib/validators/is.js +27 -0
  777. package/src/server/ui/node_modules/@babel/types/lib/validators/is.js.map +1 -0
  778. package/src/server/ui/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
  779. package/src/server/ui/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
  780. package/src/server/ui/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
  781. package/src/server/ui/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
  782. package/src/server/ui/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
  783. package/src/server/ui/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
  784. package/src/server/ui/node_modules/@babel/types/lib/validators/isLet.js +13 -0
  785. package/src/server/ui/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
  786. package/src/server/ui/node_modules/@babel/types/lib/validators/isNode.js +12 -0
  787. package/src/server/ui/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
  788. package/src/server/ui/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
  789. package/src/server/ui/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
  790. package/src/server/ui/node_modules/@babel/types/lib/validators/isPlaceholderType.js +15 -0
  791. package/src/server/ui/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
  792. package/src/server/ui/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
  793. package/src/server/ui/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
  794. package/src/server/ui/node_modules/@babel/types/lib/validators/isScope.js +18 -0
  795. package/src/server/ui/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
  796. package/src/server/ui/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
  797. package/src/server/ui/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
  798. package/src/server/ui/node_modules/@babel/types/lib/validators/isType.js +17 -0
  799. package/src/server/ui/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
  800. package/src/server/ui/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
  801. package/src/server/ui/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
  802. package/src/server/ui/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
  803. package/src/server/ui/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
  804. package/src/server/ui/node_modules/@babel/types/lib/validators/isVar.js +15 -0
  805. package/src/server/ui/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
  806. package/src/server/ui/node_modules/@babel/types/lib/validators/matchesPattern.js +44 -0
  807. package/src/server/ui/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
  808. package/src/server/ui/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
  809. package/src/server/ui/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
  810. package/src/server/ui/node_modules/@babel/types/lib/validators/react/isReactComponent.js +11 -0
  811. package/src/server/ui/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
  812. package/src/server/ui/node_modules/@babel/types/lib/validators/validate.js +42 -0
  813. package/src/server/ui/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
  814. package/src/server/ui/node_modules/@babel/types/package.json +39 -0
  815. package/src/server/ui/node_modules/@esbuild/darwin-arm64/README.md +3 -0
  816. package/src/server/ui/node_modules/@esbuild/darwin-arm64/bin/esbuild +0 -0
  817. package/src/server/ui/node_modules/@esbuild/darwin-arm64/package.json +20 -0
  818. package/src/server/ui/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
  819. package/src/server/ui/node_modules/@jridgewell/gen-mapping/README.md +227 -0
  820. package/src/server/ui/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +292 -0
  821. package/src/server/ui/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +6 -0
  822. package/src/server/ui/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +358 -0
  823. package/src/server/ui/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +6 -0
  824. package/src/server/ui/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +88 -0
  825. package/src/server/ui/node_modules/@jridgewell/gen-mapping/dist/types/set-array.d.ts +32 -0
  826. package/src/server/ui/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
  827. package/src/server/ui/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +43 -0
  828. package/src/server/ui/node_modules/@jridgewell/gen-mapping/package.json +67 -0
  829. package/src/server/ui/node_modules/@jridgewell/gen-mapping/src/gen-mapping.ts +614 -0
  830. package/src/server/ui/node_modules/@jridgewell/gen-mapping/src/set-array.ts +82 -0
  831. package/src/server/ui/node_modules/@jridgewell/gen-mapping/src/sourcemap-segment.ts +16 -0
  832. package/src/server/ui/node_modules/@jridgewell/gen-mapping/src/types.ts +61 -0
  833. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.cts +89 -0
  834. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.cts.map +1 -0
  835. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts +89 -0
  836. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts.map +1 -0
  837. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/set-array.d.cts +33 -0
  838. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/set-array.d.cts.map +1 -0
  839. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/set-array.d.mts +33 -0
  840. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/set-array.d.mts.map +1 -0
  841. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.cts +13 -0
  842. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.cts.map +1 -0
  843. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts +13 -0
  844. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts.map +1 -0
  845. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/types.d.cts +44 -0
  846. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/types.d.cts.map +1 -0
  847. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/types.d.mts +44 -0
  848. package/src/server/ui/node_modules/@jridgewell/gen-mapping/types/types.d.mts.map +1 -0
  849. package/src/server/ui/node_modules/@jridgewell/remapping/LICENSE +19 -0
  850. package/src/server/ui/node_modules/@jridgewell/remapping/README.md +218 -0
  851. package/src/server/ui/node_modules/@jridgewell/remapping/dist/remapping.mjs +144 -0
  852. package/src/server/ui/node_modules/@jridgewell/remapping/dist/remapping.mjs.map +6 -0
  853. package/src/server/ui/node_modules/@jridgewell/remapping/dist/remapping.umd.js +212 -0
  854. package/src/server/ui/node_modules/@jridgewell/remapping/dist/remapping.umd.js.map +6 -0
  855. package/src/server/ui/node_modules/@jridgewell/remapping/package.json +71 -0
  856. package/src/server/ui/node_modules/@jridgewell/remapping/src/build-source-map-tree.ts +89 -0
  857. package/src/server/ui/node_modules/@jridgewell/remapping/src/remapping.ts +42 -0
  858. package/src/server/ui/node_modules/@jridgewell/remapping/src/source-map-tree.ts +172 -0
  859. package/src/server/ui/node_modules/@jridgewell/remapping/src/source-map.ts +38 -0
  860. package/src/server/ui/node_modules/@jridgewell/remapping/src/types.ts +27 -0
  861. package/src/server/ui/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.cts +15 -0
  862. package/src/server/ui/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.cts.map +1 -0
  863. package/src/server/ui/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.mts +15 -0
  864. package/src/server/ui/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.mts.map +1 -0
  865. package/src/server/ui/node_modules/@jridgewell/remapping/types/remapping.d.cts +21 -0
  866. package/src/server/ui/node_modules/@jridgewell/remapping/types/remapping.d.cts.map +1 -0
  867. package/src/server/ui/node_modules/@jridgewell/remapping/types/remapping.d.mts +21 -0
  868. package/src/server/ui/node_modules/@jridgewell/remapping/types/remapping.d.mts.map +1 -0
  869. package/src/server/ui/node_modules/@jridgewell/remapping/types/source-map-tree.d.cts +46 -0
  870. package/src/server/ui/node_modules/@jridgewell/remapping/types/source-map-tree.d.cts.map +1 -0
  871. package/src/server/ui/node_modules/@jridgewell/remapping/types/source-map-tree.d.mts +46 -0
  872. package/src/server/ui/node_modules/@jridgewell/remapping/types/source-map-tree.d.mts.map +1 -0
  873. package/src/server/ui/node_modules/@jridgewell/remapping/types/source-map.d.cts +19 -0
  874. package/src/server/ui/node_modules/@jridgewell/remapping/types/source-map.d.cts.map +1 -0
  875. package/src/server/ui/node_modules/@jridgewell/remapping/types/source-map.d.mts +19 -0
  876. package/src/server/ui/node_modules/@jridgewell/remapping/types/source-map.d.mts.map +1 -0
  877. package/src/server/ui/node_modules/@jridgewell/remapping/types/types.d.cts +16 -0
  878. package/src/server/ui/node_modules/@jridgewell/remapping/types/types.d.cts.map +1 -0
  879. package/src/server/ui/node_modules/@jridgewell/remapping/types/types.d.mts +16 -0
  880. package/src/server/ui/node_modules/@jridgewell/remapping/types/types.d.mts.map +1 -0
  881. package/src/server/ui/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
  882. package/src/server/ui/node_modules/@jridgewell/resolve-uri/README.md +40 -0
  883. package/src/server/ui/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +232 -0
  884. package/src/server/ui/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
  885. package/src/server/ui/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +240 -0
  886. package/src/server/ui/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
  887. package/src/server/ui/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
  888. package/src/server/ui/node_modules/@jridgewell/resolve-uri/package.json +69 -0
  889. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/LICENSE +19 -0
  890. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/README.md +264 -0
  891. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +467 -0
  892. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +6 -0
  893. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +508 -0
  894. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +6 -0
  895. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/package.json +64 -0
  896. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/src/range-mappings.ts +47 -0
  897. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/src/scopes.ts +365 -0
  898. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/src/sourcemap-codec.ts +127 -0
  899. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/src/strings.ts +65 -0
  900. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/src/vlq.ts +51 -0
  901. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/range-mappings.d.cts +5 -0
  902. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/range-mappings.d.cts.map +1 -0
  903. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/range-mappings.d.mts +5 -0
  904. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/range-mappings.d.mts.map +1 -0
  905. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.cts +50 -0
  906. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.cts.map +1 -0
  907. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.mts +50 -0
  908. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.mts.map +1 -0
  909. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.cts +11 -0
  910. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.cts.map +1 -0
  911. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.mts +11 -0
  912. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.mts.map +1 -0
  913. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/strings.d.cts +16 -0
  914. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/strings.d.cts.map +1 -0
  915. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/strings.d.mts +16 -0
  916. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/strings.d.mts.map +1 -0
  917. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.cts +9 -0
  918. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.cts.map +1 -0
  919. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.mts +9 -0
  920. package/src/server/ui/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.mts.map +1 -0
  921. package/src/server/ui/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
  922. package/src/server/ui/node_modules/@jridgewell/trace-mapping/README.md +348 -0
  923. package/src/server/ui/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +493 -0
  924. package/src/server/ui/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +6 -0
  925. package/src/server/ui/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +559 -0
  926. package/src/server/ui/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +6 -0
  927. package/src/server/ui/node_modules/@jridgewell/trace-mapping/package.json +67 -0
  928. package/src/server/ui/node_modules/@jridgewell/trace-mapping/src/binary-search.ts +115 -0
  929. package/src/server/ui/node_modules/@jridgewell/trace-mapping/src/by-source.ts +41 -0
  930. package/src/server/ui/node_modules/@jridgewell/trace-mapping/src/flatten-map.ts +192 -0
  931. package/src/server/ui/node_modules/@jridgewell/trace-mapping/src/resolve.ts +16 -0
  932. package/src/server/ui/node_modules/@jridgewell/trace-mapping/src/sort.ts +45 -0
  933. package/src/server/ui/node_modules/@jridgewell/trace-mapping/src/sourcemap-segment.ts +23 -0
  934. package/src/server/ui/node_modules/@jridgewell/trace-mapping/src/strip-filename.ts +8 -0
  935. package/src/server/ui/node_modules/@jridgewell/trace-mapping/src/trace-mapping.ts +502 -0
  936. package/src/server/ui/node_modules/@jridgewell/trace-mapping/src/types.ts +114 -0
  937. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/binary-search.d.cts +33 -0
  938. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/binary-search.d.cts.map +1 -0
  939. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/binary-search.d.mts +33 -0
  940. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/binary-search.d.mts.map +1 -0
  941. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/by-source.d.cts +4 -0
  942. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/by-source.d.cts.map +1 -0
  943. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/by-source.d.mts +4 -0
  944. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/by-source.d.mts.map +1 -0
  945. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.cts +9 -0
  946. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.cts.map +1 -0
  947. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts +9 -0
  948. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts.map +1 -0
  949. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/resolve.d.cts +4 -0
  950. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/resolve.d.cts.map +1 -0
  951. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/resolve.d.mts +4 -0
  952. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/resolve.d.mts.map +1 -0
  953. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/sort.d.cts +4 -0
  954. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/sort.d.cts.map +1 -0
  955. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/sort.d.mts +4 -0
  956. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/sort.d.mts.map +1 -0
  957. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.cts +17 -0
  958. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.cts.map +1 -0
  959. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts +17 -0
  960. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts.map +1 -0
  961. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.cts +5 -0
  962. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.cts.map +1 -0
  963. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.mts +5 -0
  964. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.mts.map +1 -0
  965. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.cts +80 -0
  966. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.cts.map +1 -0
  967. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts +80 -0
  968. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts.map +1 -0
  969. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/types.d.cts +107 -0
  970. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/types.d.cts.map +1 -0
  971. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/types.d.mts +107 -0
  972. package/src/server/ui/node_modules/@jridgewell/trace-mapping/types/types.d.mts.map +1 -0
  973. package/src/server/ui/node_modules/@rolldown/pluginutils/LICENSE +25 -0
  974. package/src/server/ui/node_modules/@rolldown/pluginutils/dist/index.cjs +271 -0
  975. package/src/server/ui/node_modules/@rolldown/pluginutils/dist/index.d.cts +157 -0
  976. package/src/server/ui/node_modules/@rolldown/pluginutils/dist/index.d.ts +157 -0
  977. package/src/server/ui/node_modules/@rolldown/pluginutils/dist/index.js +255 -0
  978. package/src/server/ui/node_modules/@rolldown/pluginutils/package.json +36 -0
  979. package/src/server/ui/node_modules/@rollup/rollup-darwin-arm64/README.md +3 -0
  980. package/src/server/ui/node_modules/@rollup/rollup-darwin-arm64/package.json +22 -0
  981. package/src/server/ui/node_modules/@rollup/rollup-darwin-arm64/rollup.darwin-arm64.node +0 -0
  982. package/src/server/ui/node_modules/@socket.io/component-emitter/LICENSE +24 -0
  983. package/src/server/ui/node_modules/@socket.io/component-emitter/Readme.md +79 -0
  984. package/src/server/ui/node_modules/@socket.io/component-emitter/lib/cjs/index.d.ts +179 -0
  985. package/src/server/ui/node_modules/@socket.io/component-emitter/lib/cjs/index.js +176 -0
  986. package/src/server/ui/node_modules/@socket.io/component-emitter/lib/cjs/package.json +4 -0
  987. package/src/server/ui/node_modules/@socket.io/component-emitter/lib/esm/index.d.ts +179 -0
  988. package/src/server/ui/node_modules/@socket.io/component-emitter/lib/esm/index.js +169 -0
  989. package/src/server/ui/node_modules/@socket.io/component-emitter/lib/esm/package.json +4 -0
  990. package/src/server/ui/node_modules/@socket.io/component-emitter/package.json +28 -0
  991. package/src/server/ui/node_modules/@types/babel__core/LICENSE +21 -0
  992. package/src/server/ui/node_modules/@types/babel__core/README.md +15 -0
  993. package/src/server/ui/node_modules/@types/babel__core/index.d.ts +831 -0
  994. package/src/server/ui/node_modules/@types/babel__core/package.json +51 -0
  995. package/src/server/ui/node_modules/@types/babel__generator/LICENSE +21 -0
  996. package/src/server/ui/node_modules/@types/babel__generator/README.md +15 -0
  997. package/src/server/ui/node_modules/@types/babel__generator/index.d.ts +210 -0
  998. package/src/server/ui/node_modules/@types/babel__generator/package.json +43 -0
  999. package/src/server/ui/node_modules/@types/babel__template/LICENSE +21 -0
  1000. package/src/server/ui/node_modules/@types/babel__template/README.md +15 -0
  1001. package/src/server/ui/node_modules/@types/babel__template/index.d.ts +92 -0
  1002. package/src/server/ui/node_modules/@types/babel__template/package.json +43 -0
  1003. package/src/server/ui/node_modules/@types/babel__traverse/LICENSE +21 -0
  1004. package/src/server/ui/node_modules/@types/babel__traverse/README.md +15 -0
  1005. package/src/server/ui/node_modules/@types/babel__traverse/index.d.ts +1506 -0
  1006. package/src/server/ui/node_modules/@types/babel__traverse/package.json +63 -0
  1007. package/src/server/ui/node_modules/@types/estree/LICENSE +21 -0
  1008. package/src/server/ui/node_modules/@types/estree/README.md +15 -0
  1009. package/src/server/ui/node_modules/@types/estree/flow.d.ts +167 -0
  1010. package/src/server/ui/node_modules/@types/estree/index.d.ts +694 -0
  1011. package/src/server/ui/node_modules/@types/estree/package.json +27 -0
  1012. package/src/server/ui/node_modules/@vitejs/plugin-react/LICENSE +21 -0
  1013. package/src/server/ui/node_modules/@vitejs/plugin-react/README.md +142 -0
  1014. package/src/server/ui/node_modules/@vitejs/plugin-react/dist/index.cjs +343 -0
  1015. package/src/server/ui/node_modules/@vitejs/plugin-react/dist/index.d.cts +67 -0
  1016. package/src/server/ui/node_modules/@vitejs/plugin-react/dist/index.d.ts +67 -0
  1017. package/src/server/ui/node_modules/@vitejs/plugin-react/dist/index.js +320 -0
  1018. package/src/server/ui/node_modules/@vitejs/plugin-react/dist/refresh-runtime.js +670 -0
  1019. package/src/server/ui/node_modules/@vitejs/plugin-react/package.json +70 -0
  1020. package/src/server/ui/node_modules/baseline-browser-mapping/LICENSE.txt +201 -0
  1021. package/src/server/ui/node_modules/baseline-browser-mapping/README.md +545 -0
  1022. package/src/server/ui/node_modules/baseline-browser-mapping/dist/cli.cjs +2 -0
  1023. package/src/server/ui/node_modules/baseline-browser-mapping/dist/index.cjs +1 -0
  1024. package/src/server/ui/node_modules/baseline-browser-mapping/dist/index.d.ts +28 -0
  1025. package/src/server/ui/node_modules/baseline-browser-mapping/dist/index.js +1 -0
  1026. package/src/server/ui/node_modules/baseline-browser-mapping/dist/types.d.ts +121 -0
  1027. package/src/server/ui/node_modules/baseline-browser-mapping/dist/utils.d.ts +1 -0
  1028. package/src/server/ui/node_modules/baseline-browser-mapping/package.json +68 -0
  1029. package/src/server/ui/node_modules/browserslist/LICENSE +20 -0
  1030. package/src/server/ui/node_modules/browserslist/README.md +66 -0
  1031. package/src/server/ui/node_modules/browserslist/browser.js +54 -0
  1032. package/src/server/ui/node_modules/browserslist/cli.js +156 -0
  1033. package/src/server/ui/node_modules/browserslist/error.d.ts +7 -0
  1034. package/src/server/ui/node_modules/browserslist/error.js +12 -0
  1035. package/src/server/ui/node_modules/browserslist/index.d.ts +224 -0
  1036. package/src/server/ui/node_modules/browserslist/index.js +1347 -0
  1037. package/src/server/ui/node_modules/browserslist/node.js +504 -0
  1038. package/src/server/ui/node_modules/browserslist/package.json +45 -0
  1039. package/src/server/ui/node_modules/browserslist/parse.js +136 -0
  1040. package/src/server/ui/node_modules/caniuse-lite/LICENSE +395 -0
  1041. package/src/server/ui/node_modules/caniuse-lite/README.md +3 -0
  1042. package/src/server/ui/node_modules/caniuse-lite/data/agents.js +1 -0
  1043. package/src/server/ui/node_modules/caniuse-lite/data/browserVersions.js +1 -0
  1044. package/src/server/ui/node_modules/caniuse-lite/data/browsers.js +1 -0
  1045. package/src/server/ui/node_modules/caniuse-lite/data/features/aac.js +1 -0
  1046. package/src/server/ui/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -0
  1047. package/src/server/ui/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -0
  1048. package/src/server/ui/node_modules/caniuse-lite/data/features/accelerometer.js +1 -0
  1049. package/src/server/ui/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -0
  1050. package/src/server/ui/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -0
  1051. package/src/server/ui/node_modules/caniuse-lite/data/features/ambient-light.js +1 -0
  1052. package/src/server/ui/node_modules/caniuse-lite/data/features/apng.js +1 -0
  1053. package/src/server/ui/node_modules/caniuse-lite/data/features/array-find-index.js +1 -0
  1054. package/src/server/ui/node_modules/caniuse-lite/data/features/array-find.js +1 -0
  1055. package/src/server/ui/node_modules/caniuse-lite/data/features/array-flat.js +1 -0
  1056. package/src/server/ui/node_modules/caniuse-lite/data/features/array-includes.js +1 -0
  1057. package/src/server/ui/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -0
  1058. package/src/server/ui/node_modules/caniuse-lite/data/features/asmjs.js +1 -0
  1059. package/src/server/ui/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -0
  1060. package/src/server/ui/node_modules/caniuse-lite/data/features/async-functions.js +1 -0
  1061. package/src/server/ui/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -0
  1062. package/src/server/ui/node_modules/caniuse-lite/data/features/audio-api.js +1 -0
  1063. package/src/server/ui/node_modules/caniuse-lite/data/features/audio.js +1 -0
  1064. package/src/server/ui/node_modules/caniuse-lite/data/features/audiotracks.js +1 -0
  1065. package/src/server/ui/node_modules/caniuse-lite/data/features/autofocus.js +1 -0
  1066. package/src/server/ui/node_modules/caniuse-lite/data/features/auxclick.js +1 -0
  1067. package/src/server/ui/node_modules/caniuse-lite/data/features/av1.js +1 -0
  1068. package/src/server/ui/node_modules/caniuse-lite/data/features/avif.js +1 -0
  1069. package/src/server/ui/node_modules/caniuse-lite/data/features/background-attachment.js +1 -0
  1070. package/src/server/ui/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -0
  1071. package/src/server/ui/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -0
  1072. package/src/server/ui/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -0
  1073. package/src/server/ui/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -0
  1074. package/src/server/ui/node_modules/caniuse-lite/data/features/background-sync.js +1 -0
  1075. package/src/server/ui/node_modules/caniuse-lite/data/features/battery-status.js +1 -0
  1076. package/src/server/ui/node_modules/caniuse-lite/data/features/beacon.js +1 -0
  1077. package/src/server/ui/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -0
  1078. package/src/server/ui/node_modules/caniuse-lite/data/features/bigint.js +1 -0
  1079. package/src/server/ui/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -0
  1080. package/src/server/ui/node_modules/caniuse-lite/data/features/bloburls.js +1 -0
  1081. package/src/server/ui/node_modules/caniuse-lite/data/features/border-image.js +1 -0
  1082. package/src/server/ui/node_modules/caniuse-lite/data/features/border-radius.js +1 -0
  1083. package/src/server/ui/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -0
  1084. package/src/server/ui/node_modules/caniuse-lite/data/features/brotli.js +1 -0
  1085. package/src/server/ui/node_modules/caniuse-lite/data/features/calc.js +1 -0
  1086. package/src/server/ui/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -0
  1087. package/src/server/ui/node_modules/caniuse-lite/data/features/canvas-text.js +1 -0
  1088. package/src/server/ui/node_modules/caniuse-lite/data/features/canvas.js +1 -0
  1089. package/src/server/ui/node_modules/caniuse-lite/data/features/ch-unit.js +1 -0
  1090. package/src/server/ui/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -0
  1091. package/src/server/ui/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -0
  1092. package/src/server/ui/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -0
  1093. package/src/server/ui/node_modules/caniuse-lite/data/features/classlist.js +1 -0
  1094. package/src/server/ui/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -0
  1095. package/src/server/ui/node_modules/caniuse-lite/data/features/clipboard.js +1 -0
  1096. package/src/server/ui/node_modules/caniuse-lite/data/features/colr-v1.js +1 -0
  1097. package/src/server/ui/node_modules/caniuse-lite/data/features/colr.js +1 -0
  1098. package/src/server/ui/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -0
  1099. package/src/server/ui/node_modules/caniuse-lite/data/features/console-basic.js +1 -0
  1100. package/src/server/ui/node_modules/caniuse-lite/data/features/console-time.js +1 -0
  1101. package/src/server/ui/node_modules/caniuse-lite/data/features/const.js +1 -0
  1102. package/src/server/ui/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -0
  1103. package/src/server/ui/node_modules/caniuse-lite/data/features/contenteditable.js +1 -0
  1104. package/src/server/ui/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -0
  1105. package/src/server/ui/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -0
  1106. package/src/server/ui/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -0
  1107. package/src/server/ui/node_modules/caniuse-lite/data/features/cors.js +1 -0
  1108. package/src/server/ui/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -0
  1109. package/src/server/ui/node_modules/caniuse-lite/data/features/credential-management.js +1 -0
  1110. package/src/server/ui/node_modules/caniuse-lite/data/features/cross-document-view-transitions.js +1 -0
  1111. package/src/server/ui/node_modules/caniuse-lite/data/features/cryptography.js +1 -0
  1112. package/src/server/ui/node_modules/caniuse-lite/data/features/css-all.js +1 -0
  1113. package/src/server/ui/node_modules/caniuse-lite/data/features/css-anchor-positioning.js +1 -0
  1114. package/src/server/ui/node_modules/caniuse-lite/data/features/css-animation.js +1 -0
  1115. package/src/server/ui/node_modules/caniuse-lite/data/features/css-any-link.js +1 -0
  1116. package/src/server/ui/node_modules/caniuse-lite/data/features/css-appearance.js +1 -0
  1117. package/src/server/ui/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -0
  1118. package/src/server/ui/node_modules/caniuse-lite/data/features/css-autofill.js +1 -0
  1119. package/src/server/ui/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -0
  1120. package/src/server/ui/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -0
  1121. package/src/server/ui/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -0
  1122. package/src/server/ui/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -0
  1123. package/src/server/ui/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -0
  1124. package/src/server/ui/node_modules/caniuse-lite/data/features/css-canvas.js +1 -0
  1125. package/src/server/ui/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -0
  1126. package/src/server/ui/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -0
  1127. package/src/server/ui/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -0
  1128. package/src/server/ui/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -0
  1129. package/src/server/ui/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -0
  1130. package/src/server/ui/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -0
  1131. package/src/server/ui/node_modules/caniuse-lite/data/features/css-color-function.js +1 -0
  1132. package/src/server/ui/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -0
  1133. package/src/server/ui/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -0
  1134. package/src/server/ui/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -0
  1135. package/src/server/ui/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -0
  1136. package/src/server/ui/node_modules/caniuse-lite/data/features/css-containment.js +1 -0
  1137. package/src/server/ui/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -0
  1138. package/src/server/ui/node_modules/caniuse-lite/data/features/css-counters.js +1 -0
  1139. package/src/server/ui/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -0
  1140. package/src/server/ui/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -0
  1141. package/src/server/ui/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -0
  1142. package/src/server/ui/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -0
  1143. package/src/server/ui/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -0
  1144. package/src/server/ui/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -0
  1145. package/src/server/ui/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -0
  1146. package/src/server/ui/node_modules/caniuse-lite/data/features/css-element-function.js +1 -0
  1147. package/src/server/ui/node_modules/caniuse-lite/data/features/css-env-function.js +1 -0
  1148. package/src/server/ui/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -0
  1149. package/src/server/ui/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -0
  1150. package/src/server/ui/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -0
  1151. package/src/server/ui/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -0
  1152. package/src/server/ui/node_modules/caniuse-lite/data/features/css-filters.js +1 -0
  1153. package/src/server/ui/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -0
  1154. package/src/server/ui/node_modules/caniuse-lite/data/features/css-first-line.js +1 -0
  1155. package/src/server/ui/node_modules/caniuse-lite/data/features/css-fixed.js +1 -0
  1156. package/src/server/ui/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -0
  1157. package/src/server/ui/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -0
  1158. package/src/server/ui/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -0
  1159. package/src/server/ui/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -0
  1160. package/src/server/ui/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -0
  1161. package/src/server/ui/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -0
  1162. package/src/server/ui/node_modules/caniuse-lite/data/features/css-gradients.js +1 -0
  1163. package/src/server/ui/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -0
  1164. package/src/server/ui/node_modules/caniuse-lite/data/features/css-grid-lanes.js +1 -0
  1165. package/src/server/ui/node_modules/caniuse-lite/data/features/css-grid.js +1 -0
  1166. package/src/server/ui/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -0
  1167. package/src/server/ui/node_modules/caniuse-lite/data/features/css-has.js +1 -0
  1168. package/src/server/ui/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -0
  1169. package/src/server/ui/node_modules/caniuse-lite/data/features/css-if.js +1 -0
  1170. package/src/server/ui/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -0
  1171. package/src/server/ui/node_modules/caniuse-lite/data/features/css-image-set.js +1 -0
  1172. package/src/server/ui/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -0
  1173. package/src/server/ui/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -0
  1174. package/src/server/ui/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -0
  1175. package/src/server/ui/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -0
  1176. package/src/server/ui/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -0
  1177. package/src/server/ui/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -0
  1178. package/src/server/ui/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -0
  1179. package/src/server/ui/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -0
  1180. package/src/server/ui/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -0
  1181. package/src/server/ui/node_modules/caniuse-lite/data/features/css-masks.js +1 -0
  1182. package/src/server/ui/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -0
  1183. package/src/server/ui/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -0
  1184. package/src/server/ui/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -0
  1185. package/src/server/ui/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -0
  1186. package/src/server/ui/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -0
  1187. package/src/server/ui/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -0
  1188. package/src/server/ui/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -0
  1189. package/src/server/ui/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -0
  1190. package/src/server/ui/node_modules/caniuse-lite/data/features/css-module-scripts.js +1 -0
  1191. package/src/server/ui/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -0
  1192. package/src/server/ui/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -0
  1193. package/src/server/ui/node_modules/caniuse-lite/data/features/css-nesting.js +1 -0
  1194. package/src/server/ui/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -0
  1195. package/src/server/ui/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -0
  1196. package/src/server/ui/node_modules/caniuse-lite/data/features/css-opacity.js +1 -0
  1197. package/src/server/ui/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -0
  1198. package/src/server/ui/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -0
  1199. package/src/server/ui/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -0
  1200. package/src/server/ui/node_modules/caniuse-lite/data/features/css-overflow.js +1 -0
  1201. package/src/server/ui/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -0
  1202. package/src/server/ui/node_modules/caniuse-lite/data/features/css-page-break.js +1 -0
  1203. package/src/server/ui/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -0
  1204. package/src/server/ui/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -0
  1205. package/src/server/ui/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -0
  1206. package/src/server/ui/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -0
  1207. package/src/server/ui/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -0
  1208. package/src/server/ui/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -0
  1209. package/src/server/ui/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -0
  1210. package/src/server/ui/node_modules/caniuse-lite/data/features/css-reflections.js +1 -0
  1211. package/src/server/ui/node_modules/caniuse-lite/data/features/css-regions.js +1 -0
  1212. package/src/server/ui/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -0
  1213. package/src/server/ui/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -0
  1214. package/src/server/ui/node_modules/caniuse-lite/data/features/css-resize.js +1 -0
  1215. package/src/server/ui/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -0
  1216. package/src/server/ui/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -0
  1217. package/src/server/ui/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -0
  1218. package/src/server/ui/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -0
  1219. package/src/server/ui/node_modules/caniuse-lite/data/features/css-sel2.js +1 -0
  1220. package/src/server/ui/node_modules/caniuse-lite/data/features/css-sel3.js +1 -0
  1221. package/src/server/ui/node_modules/caniuse-lite/data/features/css-selection.js +1 -0
  1222. package/src/server/ui/node_modules/caniuse-lite/data/features/css-shapes.js +1 -0
  1223. package/src/server/ui/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -0
  1224. package/src/server/ui/node_modules/caniuse-lite/data/features/css-sticky.js +1 -0
  1225. package/src/server/ui/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -0
  1226. package/src/server/ui/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -0
  1227. package/src/server/ui/node_modules/caniuse-lite/data/features/css-table.js +1 -0
  1228. package/src/server/ui/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -0
  1229. package/src/server/ui/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -0
  1230. package/src/server/ui/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -0
  1231. package/src/server/ui/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -0
  1232. package/src/server/ui/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -0
  1233. package/src/server/ui/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -0
  1234. package/src/server/ui/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -0
  1235. package/src/server/ui/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -0
  1236. package/src/server/ui/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -0
  1237. package/src/server/ui/node_modules/caniuse-lite/data/features/css-transitions.js +1 -0
  1238. package/src/server/ui/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -0
  1239. package/src/server/ui/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -0
  1240. package/src/server/ui/node_modules/caniuse-lite/data/features/css-variables.js +1 -0
  1241. package/src/server/ui/node_modules/caniuse-lite/data/features/css-when-else.js +1 -0
  1242. package/src/server/ui/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -0
  1243. package/src/server/ui/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -0
  1244. package/src/server/ui/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -0
  1245. package/src/server/ui/node_modules/caniuse-lite/data/features/css-zoom.js +1 -0
  1246. package/src/server/ui/node_modules/caniuse-lite/data/features/css3-attr.js +1 -0
  1247. package/src/server/ui/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -0
  1248. package/src/server/ui/node_modules/caniuse-lite/data/features/css3-colors.js +1 -0
  1249. package/src/server/ui/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -0
  1250. package/src/server/ui/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -0
  1251. package/src/server/ui/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -0
  1252. package/src/server/ui/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -0
  1253. package/src/server/ui/node_modules/caniuse-lite/data/features/currentcolor.js +1 -0
  1254. package/src/server/ui/node_modules/caniuse-lite/data/features/custom-elements.js +1 -0
  1255. package/src/server/ui/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -0
  1256. package/src/server/ui/node_modules/caniuse-lite/data/features/customevent.js +1 -0
  1257. package/src/server/ui/node_modules/caniuse-lite/data/features/customizable-select.js +1 -0
  1258. package/src/server/ui/node_modules/caniuse-lite/data/features/datalist.js +1 -0
  1259. package/src/server/ui/node_modules/caniuse-lite/data/features/dataset.js +1 -0
  1260. package/src/server/ui/node_modules/caniuse-lite/data/features/datauri.js +1 -0
  1261. package/src/server/ui/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -0
  1262. package/src/server/ui/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -0
  1263. package/src/server/ui/node_modules/caniuse-lite/data/features/decorators.js +1 -0
  1264. package/src/server/ui/node_modules/caniuse-lite/data/features/details.js +1 -0
  1265. package/src/server/ui/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -0
  1266. package/src/server/ui/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -0
  1267. package/src/server/ui/node_modules/caniuse-lite/data/features/dialog.js +1 -0
  1268. package/src/server/ui/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -0
  1269. package/src/server/ui/node_modules/caniuse-lite/data/features/dnssec.js +1 -0
  1270. package/src/server/ui/node_modules/caniuse-lite/data/features/do-not-track.js +1 -0
  1271. package/src/server/ui/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -0
  1272. package/src/server/ui/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -0
  1273. package/src/server/ui/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -0
  1274. package/src/server/ui/node_modules/caniuse-lite/data/features/document-policy.js +1 -0
  1275. package/src/server/ui/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -0
  1276. package/src/server/ui/node_modules/caniuse-lite/data/features/documenthead.js +1 -0
  1277. package/src/server/ui/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -0
  1278. package/src/server/ui/node_modules/caniuse-lite/data/features/dom-range.js +1 -0
  1279. package/src/server/ui/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -0
  1280. package/src/server/ui/node_modules/caniuse-lite/data/features/dommatrix.js +1 -0
  1281. package/src/server/ui/node_modules/caniuse-lite/data/features/download.js +1 -0
  1282. package/src/server/ui/node_modules/caniuse-lite/data/features/dragndrop.js +1 -0
  1283. package/src/server/ui/node_modules/caniuse-lite/data/features/element-closest.js +1 -0
  1284. package/src/server/ui/node_modules/caniuse-lite/data/features/element-from-point.js +1 -0
  1285. package/src/server/ui/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -0
  1286. package/src/server/ui/node_modules/caniuse-lite/data/features/eme.js +1 -0
  1287. package/src/server/ui/node_modules/caniuse-lite/data/features/eot.js +1 -0
  1288. package/src/server/ui/node_modules/caniuse-lite/data/features/es5.js +1 -0
  1289. package/src/server/ui/node_modules/caniuse-lite/data/features/es6-class.js +1 -0
  1290. package/src/server/ui/node_modules/caniuse-lite/data/features/es6-generators.js +1 -0
  1291. package/src/server/ui/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -0
  1292. package/src/server/ui/node_modules/caniuse-lite/data/features/es6-module.js +1 -0
  1293. package/src/server/ui/node_modules/caniuse-lite/data/features/es6-number.js +1 -0
  1294. package/src/server/ui/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -0
  1295. package/src/server/ui/node_modules/caniuse-lite/data/features/es6.js +1 -0
  1296. package/src/server/ui/node_modules/caniuse-lite/data/features/eventsource.js +1 -0
  1297. package/src/server/ui/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -0
  1298. package/src/server/ui/node_modules/caniuse-lite/data/features/feature-policy.js +1 -0
  1299. package/src/server/ui/node_modules/caniuse-lite/data/features/fetch.js +1 -0
  1300. package/src/server/ui/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -0
  1301. package/src/server/ui/node_modules/caniuse-lite/data/features/fileapi.js +1 -0
  1302. package/src/server/ui/node_modules/caniuse-lite/data/features/filereader.js +1 -0
  1303. package/src/server/ui/node_modules/caniuse-lite/data/features/filereadersync.js +1 -0
  1304. package/src/server/ui/node_modules/caniuse-lite/data/features/filesystem.js +1 -0
  1305. package/src/server/ui/node_modules/caniuse-lite/data/features/flac.js +1 -0
  1306. package/src/server/ui/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -0
  1307. package/src/server/ui/node_modules/caniuse-lite/data/features/flexbox.js +1 -0
  1308. package/src/server/ui/node_modules/caniuse-lite/data/features/flow-root.js +1 -0
  1309. package/src/server/ui/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -0
  1310. package/src/server/ui/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -0
  1311. package/src/server/ui/node_modules/caniuse-lite/data/features/font-feature.js +1 -0
  1312. package/src/server/ui/node_modules/caniuse-lite/data/features/font-kerning.js +1 -0
  1313. package/src/server/ui/node_modules/caniuse-lite/data/features/font-loading.js +1 -0
  1314. package/src/server/ui/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -0
  1315. package/src/server/ui/node_modules/caniuse-lite/data/features/font-smooth.js +1 -0
  1316. package/src/server/ui/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -0
  1317. package/src/server/ui/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -0
  1318. package/src/server/ui/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -0
  1319. package/src/server/ui/node_modules/caniuse-lite/data/features/fontface.js +1 -0
  1320. package/src/server/ui/node_modules/caniuse-lite/data/features/form-attribute.js +1 -0
  1321. package/src/server/ui/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -0
  1322. package/src/server/ui/node_modules/caniuse-lite/data/features/form-validation.js +1 -0
  1323. package/src/server/ui/node_modules/caniuse-lite/data/features/forms.js +1 -0
  1324. package/src/server/ui/node_modules/caniuse-lite/data/features/fullscreen.js +1 -0
  1325. package/src/server/ui/node_modules/caniuse-lite/data/features/gamepad.js +1 -0
  1326. package/src/server/ui/node_modules/caniuse-lite/data/features/geolocation.js +1 -0
  1327. package/src/server/ui/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -0
  1328. package/src/server/ui/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -0
  1329. package/src/server/ui/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -0
  1330. package/src/server/ui/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -0
  1331. package/src/server/ui/node_modules/caniuse-lite/data/features/gyroscope.js +1 -0
  1332. package/src/server/ui/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -0
  1333. package/src/server/ui/node_modules/caniuse-lite/data/features/hashchange.js +1 -0
  1334. package/src/server/ui/node_modules/caniuse-lite/data/features/heif.js +1 -0
  1335. package/src/server/ui/node_modules/caniuse-lite/data/features/hevc.js +1 -0
  1336. package/src/server/ui/node_modules/caniuse-lite/data/features/hidden.js +1 -0
  1337. package/src/server/ui/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -0
  1338. package/src/server/ui/node_modules/caniuse-lite/data/features/history.js +1 -0
  1339. package/src/server/ui/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -0
  1340. package/src/server/ui/node_modules/caniuse-lite/data/features/html5semantic.js +1 -0
  1341. package/src/server/ui/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -0
  1342. package/src/server/ui/node_modules/caniuse-lite/data/features/http2.js +1 -0
  1343. package/src/server/ui/node_modules/caniuse-lite/data/features/http3.js +1 -0
  1344. package/src/server/ui/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -0
  1345. package/src/server/ui/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -0
  1346. package/src/server/ui/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -0
  1347. package/src/server/ui/node_modules/caniuse-lite/data/features/imagecapture.js +1 -0
  1348. package/src/server/ui/node_modules/caniuse-lite/data/features/ime.js +1 -0
  1349. package/src/server/ui/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -0
  1350. package/src/server/ui/node_modules/caniuse-lite/data/features/import-maps.js +1 -0
  1351. package/src/server/ui/node_modules/caniuse-lite/data/features/imports.js +1 -0
  1352. package/src/server/ui/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -0
  1353. package/src/server/ui/node_modules/caniuse-lite/data/features/indexeddb.js +1 -0
  1354. package/src/server/ui/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -0
  1355. package/src/server/ui/node_modules/caniuse-lite/data/features/inline-block.js +1 -0
  1356. package/src/server/ui/node_modules/caniuse-lite/data/features/innertext.js +1 -0
  1357. package/src/server/ui/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -0
  1358. package/src/server/ui/node_modules/caniuse-lite/data/features/input-color.js +1 -0
  1359. package/src/server/ui/node_modules/caniuse-lite/data/features/input-datetime.js +1 -0
  1360. package/src/server/ui/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -0
  1361. package/src/server/ui/node_modules/caniuse-lite/data/features/input-event.js +1 -0
  1362. package/src/server/ui/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -0
  1363. package/src/server/ui/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -0
  1364. package/src/server/ui/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -0
  1365. package/src/server/ui/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -0
  1366. package/src/server/ui/node_modules/caniuse-lite/data/features/input-minlength.js +1 -0
  1367. package/src/server/ui/node_modules/caniuse-lite/data/features/input-number.js +1 -0
  1368. package/src/server/ui/node_modules/caniuse-lite/data/features/input-pattern.js +1 -0
  1369. package/src/server/ui/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -0
  1370. package/src/server/ui/node_modules/caniuse-lite/data/features/input-range.js +1 -0
  1371. package/src/server/ui/node_modules/caniuse-lite/data/features/input-search.js +1 -0
  1372. package/src/server/ui/node_modules/caniuse-lite/data/features/input-selection.js +1 -0
  1373. package/src/server/ui/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -0
  1374. package/src/server/ui/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -0
  1375. package/src/server/ui/node_modules/caniuse-lite/data/features/internationalization.js +1 -0
  1376. package/src/server/ui/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -0
  1377. package/src/server/ui/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -0
  1378. package/src/server/ui/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -0
  1379. package/src/server/ui/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -0
  1380. package/src/server/ui/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -0
  1381. package/src/server/ui/node_modules/caniuse-lite/data/features/jpegxl.js +1 -0
  1382. package/src/server/ui/node_modules/caniuse-lite/data/features/jpegxr.js +1 -0
  1383. package/src/server/ui/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -0
  1384. package/src/server/ui/node_modules/caniuse-lite/data/features/json.js +1 -0
  1385. package/src/server/ui/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -0
  1386. package/src/server/ui/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -0
  1387. package/src/server/ui/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -0
  1388. package/src/server/ui/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -0
  1389. package/src/server/ui/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -0
  1390. package/src/server/ui/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -0
  1391. package/src/server/ui/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -0
  1392. package/src/server/ui/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -0
  1393. package/src/server/ui/node_modules/caniuse-lite/data/features/lazyload.js +1 -0
  1394. package/src/server/ui/node_modules/caniuse-lite/data/features/let.js +1 -0
  1395. package/src/server/ui/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -0
  1396. package/src/server/ui/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -0
  1397. package/src/server/ui/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -0
  1398. package/src/server/ui/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -0
  1399. package/src/server/ui/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -0
  1400. package/src/server/ui/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -0
  1401. package/src/server/ui/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -0
  1402. package/src/server/ui/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -0
  1403. package/src/server/ui/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -0
  1404. package/src/server/ui/node_modules/caniuse-lite/data/features/loading-lazy-media.js +1 -0
  1405. package/src/server/ui/node_modules/caniuse-lite/data/features/localecompare.js +1 -0
  1406. package/src/server/ui/node_modules/caniuse-lite/data/features/magnetometer.js +1 -0
  1407. package/src/server/ui/node_modules/caniuse-lite/data/features/matchesselector.js +1 -0
  1408. package/src/server/ui/node_modules/caniuse-lite/data/features/matchmedia.js +1 -0
  1409. package/src/server/ui/node_modules/caniuse-lite/data/features/mathml.js +1 -0
  1410. package/src/server/ui/node_modules/caniuse-lite/data/features/maxlength.js +1 -0
  1411. package/src/server/ui/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js +1 -0
  1412. package/src/server/ui/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -0
  1413. package/src/server/ui/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -0
  1414. package/src/server/ui/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -0
  1415. package/src/server/ui/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -0
  1416. package/src/server/ui/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -0
  1417. package/src/server/ui/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -0
  1418. package/src/server/ui/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -0
  1419. package/src/server/ui/node_modules/caniuse-lite/data/features/media-fragments.js +1 -0
  1420. package/src/server/ui/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -0
  1421. package/src/server/ui/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -0
  1422. package/src/server/ui/node_modules/caniuse-lite/data/features/mediasource.js +1 -0
  1423. package/src/server/ui/node_modules/caniuse-lite/data/features/menu.js +1 -0
  1424. package/src/server/ui/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -0
  1425. package/src/server/ui/node_modules/caniuse-lite/data/features/meter.js +1 -0
  1426. package/src/server/ui/node_modules/caniuse-lite/data/features/midi.js +1 -0
  1427. package/src/server/ui/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -0
  1428. package/src/server/ui/node_modules/caniuse-lite/data/features/mp3.js +1 -0
  1429. package/src/server/ui/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -0
  1430. package/src/server/ui/node_modules/caniuse-lite/data/features/mpeg4.js +1 -0
  1431. package/src/server/ui/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -0
  1432. package/src/server/ui/node_modules/caniuse-lite/data/features/multicolumn.js +1 -0
  1433. package/src/server/ui/node_modules/caniuse-lite/data/features/mutation-events.js +1 -0
  1434. package/src/server/ui/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -0
  1435. package/src/server/ui/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -0
  1436. package/src/server/ui/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
  1437. package/src/server/ui/node_modules/caniuse-lite/data/features/nav-timing.js +1 -0
  1438. package/src/server/ui/node_modules/caniuse-lite/data/features/netinfo.js +1 -0
  1439. package/src/server/ui/node_modules/caniuse-lite/data/features/notifications.js +1 -0
  1440. package/src/server/ui/node_modules/caniuse-lite/data/features/object-entries.js +1 -0
  1441. package/src/server/ui/node_modules/caniuse-lite/data/features/object-fit.js +1 -0
  1442. package/src/server/ui/node_modules/caniuse-lite/data/features/object-observe.js +1 -0
  1443. package/src/server/ui/node_modules/caniuse-lite/data/features/object-values.js +1 -0
  1444. package/src/server/ui/node_modules/caniuse-lite/data/features/objectrtc.js +1 -0
  1445. package/src/server/ui/node_modules/caniuse-lite/data/features/offline-apps.js +1 -0
  1446. package/src/server/ui/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -0
  1447. package/src/server/ui/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -0
  1448. package/src/server/ui/node_modules/caniuse-lite/data/features/ogv.js +1 -0
  1449. package/src/server/ui/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -0
  1450. package/src/server/ui/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -0
  1451. package/src/server/ui/node_modules/caniuse-lite/data/features/online-status.js +1 -0
  1452. package/src/server/ui/node_modules/caniuse-lite/data/features/opus.js +1 -0
  1453. package/src/server/ui/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -0
  1454. package/src/server/ui/node_modules/caniuse-lite/data/features/outline.js +1 -0
  1455. package/src/server/ui/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -0
  1456. package/src/server/ui/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -0
  1457. package/src/server/ui/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -0
  1458. package/src/server/ui/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -0
  1459. package/src/server/ui/node_modules/caniuse-lite/data/features/passkeys.js +1 -0
  1460. package/src/server/ui/node_modules/caniuse-lite/data/features/passwordrules.js +1 -0
  1461. package/src/server/ui/node_modules/caniuse-lite/data/features/path2d.js +1 -0
  1462. package/src/server/ui/node_modules/caniuse-lite/data/features/payment-request.js +1 -0
  1463. package/src/server/ui/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -0
  1464. package/src/server/ui/node_modules/caniuse-lite/data/features/permissions-api.js +1 -0
  1465. package/src/server/ui/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -0
  1466. package/src/server/ui/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -0
  1467. package/src/server/ui/node_modules/caniuse-lite/data/features/picture.js +1 -0
  1468. package/src/server/ui/node_modules/caniuse-lite/data/features/ping.js +1 -0
  1469. package/src/server/ui/node_modules/caniuse-lite/data/features/png-alpha.js +1 -0
  1470. package/src/server/ui/node_modules/caniuse-lite/data/features/pointer-events.js +1 -0
  1471. package/src/server/ui/node_modules/caniuse-lite/data/features/pointer.js +1 -0
  1472. package/src/server/ui/node_modules/caniuse-lite/data/features/pointerlock.js +1 -0
  1473. package/src/server/ui/node_modules/caniuse-lite/data/features/portals.js +1 -0
  1474. package/src/server/ui/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -0
  1475. package/src/server/ui/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -0
  1476. package/src/server/ui/node_modules/caniuse-lite/data/features/progress.js +1 -0
  1477. package/src/server/ui/node_modules/caniuse-lite/data/features/promise-finally.js +1 -0
  1478. package/src/server/ui/node_modules/caniuse-lite/data/features/promises.js +1 -0
  1479. package/src/server/ui/node_modules/caniuse-lite/data/features/proximity.js +1 -0
  1480. package/src/server/ui/node_modules/caniuse-lite/data/features/proxy.js +1 -0
  1481. package/src/server/ui/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -0
  1482. package/src/server/ui/node_modules/caniuse-lite/data/features/push-api.js +1 -0
  1483. package/src/server/ui/node_modules/caniuse-lite/data/features/queryselector.js +1 -0
  1484. package/src/server/ui/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -0
  1485. package/src/server/ui/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -0
  1486. package/src/server/ui/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -0
  1487. package/src/server/ui/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -0
  1488. package/src/server/ui/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -0
  1489. package/src/server/ui/node_modules/caniuse-lite/data/features/rellist.js +1 -0
  1490. package/src/server/ui/node_modules/caniuse-lite/data/features/rem.js +1 -0
  1491. package/src/server/ui/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -0
  1492. package/src/server/ui/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -0
  1493. package/src/server/ui/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -0
  1494. package/src/server/ui/node_modules/caniuse-lite/data/features/resource-timing.js +1 -0
  1495. package/src/server/ui/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -0
  1496. package/src/server/ui/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -0
  1497. package/src/server/ui/node_modules/caniuse-lite/data/features/ruby.js +1 -0
  1498. package/src/server/ui/node_modules/caniuse-lite/data/features/run-in.js +1 -0
  1499. package/src/server/ui/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -0
  1500. package/src/server/ui/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -0
  1501. package/src/server/ui/node_modules/caniuse-lite/data/features/script-async.js +1 -0
  1502. package/src/server/ui/node_modules/caniuse-lite/data/features/script-defer.js +1 -0
  1503. package/src/server/ui/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -0
  1504. package/src/server/ui/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -0
  1505. package/src/server/ui/node_modules/caniuse-lite/data/features/sdch.js +1 -0
  1506. package/src/server/ui/node_modules/caniuse-lite/data/features/selection-api.js +1 -0
  1507. package/src/server/ui/node_modules/caniuse-lite/data/features/server-timing.js +1 -0
  1508. package/src/server/ui/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -0
  1509. package/src/server/ui/node_modules/caniuse-lite/data/features/setimmediate.js +1 -0
  1510. package/src/server/ui/node_modules/caniuse-lite/data/features/shadowdom.js +1 -0
  1511. package/src/server/ui/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -0
  1512. package/src/server/ui/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -0
  1513. package/src/server/ui/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -0
  1514. package/src/server/ui/node_modules/caniuse-lite/data/features/sni.js +1 -0
  1515. package/src/server/ui/node_modules/caniuse-lite/data/features/spdy.js +1 -0
  1516. package/src/server/ui/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -0
  1517. package/src/server/ui/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -0
  1518. package/src/server/ui/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -0
  1519. package/src/server/ui/node_modules/caniuse-lite/data/features/sql-storage.js +1 -0
  1520. package/src/server/ui/node_modules/caniuse-lite/data/features/srcset.js +1 -0
  1521. package/src/server/ui/node_modules/caniuse-lite/data/features/stream.js +1 -0
  1522. package/src/server/ui/node_modules/caniuse-lite/data/features/streams.js +1 -0
  1523. package/src/server/ui/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -0
  1524. package/src/server/ui/node_modules/caniuse-lite/data/features/style-scoped.js +1 -0
  1525. package/src/server/ui/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -0
  1526. package/src/server/ui/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -0
  1527. package/src/server/ui/node_modules/caniuse-lite/data/features/svg-css.js +1 -0
  1528. package/src/server/ui/node_modules/caniuse-lite/data/features/svg-filters.js +1 -0
  1529. package/src/server/ui/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -0
  1530. package/src/server/ui/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -0
  1531. package/src/server/ui/node_modules/caniuse-lite/data/features/svg-html.js +1 -0
  1532. package/src/server/ui/node_modules/caniuse-lite/data/features/svg-html5.js +1 -0
  1533. package/src/server/ui/node_modules/caniuse-lite/data/features/svg-img.js +1 -0
  1534. package/src/server/ui/node_modules/caniuse-lite/data/features/svg-smil.js +1 -0
  1535. package/src/server/ui/node_modules/caniuse-lite/data/features/svg.js +1 -0
  1536. package/src/server/ui/node_modules/caniuse-lite/data/features/sxg.js +1 -0
  1537. package/src/server/ui/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -0
  1538. package/src/server/ui/node_modules/caniuse-lite/data/features/template-literals.js +1 -0
  1539. package/src/server/ui/node_modules/caniuse-lite/data/features/template.js +1 -0
  1540. package/src/server/ui/node_modules/caniuse-lite/data/features/temporal.js +1 -0
  1541. package/src/server/ui/node_modules/caniuse-lite/data/features/testfeat.js +1 -0
  1542. package/src/server/ui/node_modules/caniuse-lite/data/features/text-decoration.js +1 -0
  1543. package/src/server/ui/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -0
  1544. package/src/server/ui/node_modules/caniuse-lite/data/features/text-overflow.js +1 -0
  1545. package/src/server/ui/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -0
  1546. package/src/server/ui/node_modules/caniuse-lite/data/features/text-stroke.js +1 -0
  1547. package/src/server/ui/node_modules/caniuse-lite/data/features/textcontent.js +1 -0
  1548. package/src/server/ui/node_modules/caniuse-lite/data/features/textencoder.js +1 -0
  1549. package/src/server/ui/node_modules/caniuse-lite/data/features/tls1-1.js +1 -0
  1550. package/src/server/ui/node_modules/caniuse-lite/data/features/tls1-2.js +1 -0
  1551. package/src/server/ui/node_modules/caniuse-lite/data/features/tls1-3.js +1 -0
  1552. package/src/server/ui/node_modules/caniuse-lite/data/features/touch.js +1 -0
  1553. package/src/server/ui/node_modules/caniuse-lite/data/features/transforms2d.js +1 -0
  1554. package/src/server/ui/node_modules/caniuse-lite/data/features/transforms3d.js +1 -0
  1555. package/src/server/ui/node_modules/caniuse-lite/data/features/trusted-types.js +1 -0
  1556. package/src/server/ui/node_modules/caniuse-lite/data/features/ttf.js +1 -0
  1557. package/src/server/ui/node_modules/caniuse-lite/data/features/typedarrays.js +1 -0
  1558. package/src/server/ui/node_modules/caniuse-lite/data/features/u2f.js +1 -0
  1559. package/src/server/ui/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -0
  1560. package/src/server/ui/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -0
  1561. package/src/server/ui/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -0
  1562. package/src/server/ui/node_modules/caniuse-lite/data/features/url.js +1 -0
  1563. package/src/server/ui/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -0
  1564. package/src/server/ui/node_modules/caniuse-lite/data/features/use-strict.js +1 -0
  1565. package/src/server/ui/node_modules/caniuse-lite/data/features/user-select-none.js +1 -0
  1566. package/src/server/ui/node_modules/caniuse-lite/data/features/user-timing.js +1 -0
  1567. package/src/server/ui/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -0
  1568. package/src/server/ui/node_modules/caniuse-lite/data/features/vector-effect.js +1 -0
  1569. package/src/server/ui/node_modules/caniuse-lite/data/features/vibration.js +1 -0
  1570. package/src/server/ui/node_modules/caniuse-lite/data/features/video.js +1 -0
  1571. package/src/server/ui/node_modules/caniuse-lite/data/features/videotracks.js +1 -0
  1572. package/src/server/ui/node_modules/caniuse-lite/data/features/view-transitions.js +1 -0
  1573. package/src/server/ui/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -0
  1574. package/src/server/ui/node_modules/caniuse-lite/data/features/viewport-units.js +1 -0
  1575. package/src/server/ui/node_modules/caniuse-lite/data/features/wai-aria.js +1 -0
  1576. package/src/server/ui/node_modules/caniuse-lite/data/features/wake-lock.js +1 -0
  1577. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-bigint.js +1 -0
  1578. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js +1 -0
  1579. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-extended-const.js +1 -0
  1580. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-gc.js +1 -0
  1581. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-multi-memory.js +1 -0
  1582. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-multi-value.js +1 -0
  1583. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js +1 -0
  1584. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js +1 -0
  1585. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-reference-types.js +1 -0
  1586. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js +1 -0
  1587. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-signext.js +1 -0
  1588. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-simd.js +1 -0
  1589. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-tail-calls.js +1 -0
  1590. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm-threads.js +1 -0
  1591. package/src/server/ui/node_modules/caniuse-lite/data/features/wasm.js +1 -0
  1592. package/src/server/ui/node_modules/caniuse-lite/data/features/wav.js +1 -0
  1593. package/src/server/ui/node_modules/caniuse-lite/data/features/wbr-element.js +1 -0
  1594. package/src/server/ui/node_modules/caniuse-lite/data/features/web-animation.js +1 -0
  1595. package/src/server/ui/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -0
  1596. package/src/server/ui/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -0
  1597. package/src/server/ui/node_modules/caniuse-lite/data/features/web-serial.js +1 -0
  1598. package/src/server/ui/node_modules/caniuse-lite/data/features/web-share.js +1 -0
  1599. package/src/server/ui/node_modules/caniuse-lite/data/features/webauthn.js +1 -0
  1600. package/src/server/ui/node_modules/caniuse-lite/data/features/webcodecs.js +1 -0
  1601. package/src/server/ui/node_modules/caniuse-lite/data/features/webgl.js +1 -0
  1602. package/src/server/ui/node_modules/caniuse-lite/data/features/webgl2.js +1 -0
  1603. package/src/server/ui/node_modules/caniuse-lite/data/features/webgpu.js +1 -0
  1604. package/src/server/ui/node_modules/caniuse-lite/data/features/webhid.js +1 -0
  1605. package/src/server/ui/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -0
  1606. package/src/server/ui/node_modules/caniuse-lite/data/features/webm.js +1 -0
  1607. package/src/server/ui/node_modules/caniuse-lite/data/features/webnfc.js +1 -0
  1608. package/src/server/ui/node_modules/caniuse-lite/data/features/webp.js +1 -0
  1609. package/src/server/ui/node_modules/caniuse-lite/data/features/websockets.js +1 -0
  1610. package/src/server/ui/node_modules/caniuse-lite/data/features/webtransport.js +1 -0
  1611. package/src/server/ui/node_modules/caniuse-lite/data/features/webusb.js +1 -0
  1612. package/src/server/ui/node_modules/caniuse-lite/data/features/webvr.js +1 -0
  1613. package/src/server/ui/node_modules/caniuse-lite/data/features/webvtt.js +1 -0
  1614. package/src/server/ui/node_modules/caniuse-lite/data/features/webworkers.js +1 -0
  1615. package/src/server/ui/node_modules/caniuse-lite/data/features/webxr.js +1 -0
  1616. package/src/server/ui/node_modules/caniuse-lite/data/features/will-change.js +1 -0
  1617. package/src/server/ui/node_modules/caniuse-lite/data/features/woff.js +1 -0
  1618. package/src/server/ui/node_modules/caniuse-lite/data/features/woff2.js +1 -0
  1619. package/src/server/ui/node_modules/caniuse-lite/data/features/word-break.js +1 -0
  1620. package/src/server/ui/node_modules/caniuse-lite/data/features/wordwrap.js +1 -0
  1621. package/src/server/ui/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -0
  1622. package/src/server/ui/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -0
  1623. package/src/server/ui/node_modules/caniuse-lite/data/features/xhr2.js +1 -0
  1624. package/src/server/ui/node_modules/caniuse-lite/data/features/xhtml.js +1 -0
  1625. package/src/server/ui/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -0
  1626. package/src/server/ui/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -0
  1627. package/src/server/ui/node_modules/caniuse-lite/data/features/zstd.js +1 -0
  1628. package/src/server/ui/node_modules/caniuse-lite/data/features.js +1 -0
  1629. package/src/server/ui/node_modules/caniuse-lite/data/regions/AD.js +1 -0
  1630. package/src/server/ui/node_modules/caniuse-lite/data/regions/AE.js +1 -0
  1631. package/src/server/ui/node_modules/caniuse-lite/data/regions/AF.js +1 -0
  1632. package/src/server/ui/node_modules/caniuse-lite/data/regions/AG.js +1 -0
  1633. package/src/server/ui/node_modules/caniuse-lite/data/regions/AI.js +1 -0
  1634. package/src/server/ui/node_modules/caniuse-lite/data/regions/AL.js +1 -0
  1635. package/src/server/ui/node_modules/caniuse-lite/data/regions/AM.js +1 -0
  1636. package/src/server/ui/node_modules/caniuse-lite/data/regions/AO.js +1 -0
  1637. package/src/server/ui/node_modules/caniuse-lite/data/regions/AR.js +1 -0
  1638. package/src/server/ui/node_modules/caniuse-lite/data/regions/AS.js +1 -0
  1639. package/src/server/ui/node_modules/caniuse-lite/data/regions/AT.js +1 -0
  1640. package/src/server/ui/node_modules/caniuse-lite/data/regions/AU.js +1 -0
  1641. package/src/server/ui/node_modules/caniuse-lite/data/regions/AW.js +1 -0
  1642. package/src/server/ui/node_modules/caniuse-lite/data/regions/AX.js +1 -0
  1643. package/src/server/ui/node_modules/caniuse-lite/data/regions/AZ.js +1 -0
  1644. package/src/server/ui/node_modules/caniuse-lite/data/regions/BA.js +1 -0
  1645. package/src/server/ui/node_modules/caniuse-lite/data/regions/BB.js +1 -0
  1646. package/src/server/ui/node_modules/caniuse-lite/data/regions/BD.js +1 -0
  1647. package/src/server/ui/node_modules/caniuse-lite/data/regions/BE.js +1 -0
  1648. package/src/server/ui/node_modules/caniuse-lite/data/regions/BF.js +1 -0
  1649. package/src/server/ui/node_modules/caniuse-lite/data/regions/BG.js +1 -0
  1650. package/src/server/ui/node_modules/caniuse-lite/data/regions/BH.js +1 -0
  1651. package/src/server/ui/node_modules/caniuse-lite/data/regions/BI.js +1 -0
  1652. package/src/server/ui/node_modules/caniuse-lite/data/regions/BJ.js +1 -0
  1653. package/src/server/ui/node_modules/caniuse-lite/data/regions/BM.js +1 -0
  1654. package/src/server/ui/node_modules/caniuse-lite/data/regions/BN.js +1 -0
  1655. package/src/server/ui/node_modules/caniuse-lite/data/regions/BO.js +1 -0
  1656. package/src/server/ui/node_modules/caniuse-lite/data/regions/BR.js +1 -0
  1657. package/src/server/ui/node_modules/caniuse-lite/data/regions/BS.js +1 -0
  1658. package/src/server/ui/node_modules/caniuse-lite/data/regions/BT.js +1 -0
  1659. package/src/server/ui/node_modules/caniuse-lite/data/regions/BW.js +1 -0
  1660. package/src/server/ui/node_modules/caniuse-lite/data/regions/BY.js +1 -0
  1661. package/src/server/ui/node_modules/caniuse-lite/data/regions/BZ.js +1 -0
  1662. package/src/server/ui/node_modules/caniuse-lite/data/regions/CA.js +1 -0
  1663. package/src/server/ui/node_modules/caniuse-lite/data/regions/CD.js +1 -0
  1664. package/src/server/ui/node_modules/caniuse-lite/data/regions/CF.js +1 -0
  1665. package/src/server/ui/node_modules/caniuse-lite/data/regions/CG.js +1 -0
  1666. package/src/server/ui/node_modules/caniuse-lite/data/regions/CH.js +1 -0
  1667. package/src/server/ui/node_modules/caniuse-lite/data/regions/CI.js +1 -0
  1668. package/src/server/ui/node_modules/caniuse-lite/data/regions/CK.js +1 -0
  1669. package/src/server/ui/node_modules/caniuse-lite/data/regions/CL.js +1 -0
  1670. package/src/server/ui/node_modules/caniuse-lite/data/regions/CM.js +1 -0
  1671. package/src/server/ui/node_modules/caniuse-lite/data/regions/CN.js +1 -0
  1672. package/src/server/ui/node_modules/caniuse-lite/data/regions/CO.js +1 -0
  1673. package/src/server/ui/node_modules/caniuse-lite/data/regions/CR.js +1 -0
  1674. package/src/server/ui/node_modules/caniuse-lite/data/regions/CU.js +1 -0
  1675. package/src/server/ui/node_modules/caniuse-lite/data/regions/CV.js +1 -0
  1676. package/src/server/ui/node_modules/caniuse-lite/data/regions/CX.js +1 -0
  1677. package/src/server/ui/node_modules/caniuse-lite/data/regions/CY.js +1 -0
  1678. package/src/server/ui/node_modules/caniuse-lite/data/regions/CZ.js +1 -0
  1679. package/src/server/ui/node_modules/caniuse-lite/data/regions/DE.js +1 -0
  1680. package/src/server/ui/node_modules/caniuse-lite/data/regions/DJ.js +1 -0
  1681. package/src/server/ui/node_modules/caniuse-lite/data/regions/DK.js +1 -0
  1682. package/src/server/ui/node_modules/caniuse-lite/data/regions/DM.js +1 -0
  1683. package/src/server/ui/node_modules/caniuse-lite/data/regions/DO.js +1 -0
  1684. package/src/server/ui/node_modules/caniuse-lite/data/regions/DZ.js +1 -0
  1685. package/src/server/ui/node_modules/caniuse-lite/data/regions/EC.js +1 -0
  1686. package/src/server/ui/node_modules/caniuse-lite/data/regions/EE.js +1 -0
  1687. package/src/server/ui/node_modules/caniuse-lite/data/regions/EG.js +1 -0
  1688. package/src/server/ui/node_modules/caniuse-lite/data/regions/ER.js +1 -0
  1689. package/src/server/ui/node_modules/caniuse-lite/data/regions/ES.js +1 -0
  1690. package/src/server/ui/node_modules/caniuse-lite/data/regions/ET.js +1 -0
  1691. package/src/server/ui/node_modules/caniuse-lite/data/regions/FI.js +1 -0
  1692. package/src/server/ui/node_modules/caniuse-lite/data/regions/FJ.js +1 -0
  1693. package/src/server/ui/node_modules/caniuse-lite/data/regions/FK.js +1 -0
  1694. package/src/server/ui/node_modules/caniuse-lite/data/regions/FM.js +1 -0
  1695. package/src/server/ui/node_modules/caniuse-lite/data/regions/FO.js +1 -0
  1696. package/src/server/ui/node_modules/caniuse-lite/data/regions/FR.js +1 -0
  1697. package/src/server/ui/node_modules/caniuse-lite/data/regions/GA.js +1 -0
  1698. package/src/server/ui/node_modules/caniuse-lite/data/regions/GB.js +1 -0
  1699. package/src/server/ui/node_modules/caniuse-lite/data/regions/GD.js +1 -0
  1700. package/src/server/ui/node_modules/caniuse-lite/data/regions/GE.js +1 -0
  1701. package/src/server/ui/node_modules/caniuse-lite/data/regions/GF.js +1 -0
  1702. package/src/server/ui/node_modules/caniuse-lite/data/regions/GG.js +1 -0
  1703. package/src/server/ui/node_modules/caniuse-lite/data/regions/GH.js +1 -0
  1704. package/src/server/ui/node_modules/caniuse-lite/data/regions/GI.js +1 -0
  1705. package/src/server/ui/node_modules/caniuse-lite/data/regions/GL.js +1 -0
  1706. package/src/server/ui/node_modules/caniuse-lite/data/regions/GM.js +1 -0
  1707. package/src/server/ui/node_modules/caniuse-lite/data/regions/GN.js +1 -0
  1708. package/src/server/ui/node_modules/caniuse-lite/data/regions/GP.js +1 -0
  1709. package/src/server/ui/node_modules/caniuse-lite/data/regions/GQ.js +1 -0
  1710. package/src/server/ui/node_modules/caniuse-lite/data/regions/GR.js +1 -0
  1711. package/src/server/ui/node_modules/caniuse-lite/data/regions/GT.js +1 -0
  1712. package/src/server/ui/node_modules/caniuse-lite/data/regions/GU.js +1 -0
  1713. package/src/server/ui/node_modules/caniuse-lite/data/regions/GW.js +1 -0
  1714. package/src/server/ui/node_modules/caniuse-lite/data/regions/GY.js +1 -0
  1715. package/src/server/ui/node_modules/caniuse-lite/data/regions/HK.js +1 -0
  1716. package/src/server/ui/node_modules/caniuse-lite/data/regions/HN.js +1 -0
  1717. package/src/server/ui/node_modules/caniuse-lite/data/regions/HR.js +1 -0
  1718. package/src/server/ui/node_modules/caniuse-lite/data/regions/HT.js +1 -0
  1719. package/src/server/ui/node_modules/caniuse-lite/data/regions/HU.js +1 -0
  1720. package/src/server/ui/node_modules/caniuse-lite/data/regions/ID.js +1 -0
  1721. package/src/server/ui/node_modules/caniuse-lite/data/regions/IE.js +1 -0
  1722. package/src/server/ui/node_modules/caniuse-lite/data/regions/IL.js +1 -0
  1723. package/src/server/ui/node_modules/caniuse-lite/data/regions/IM.js +1 -0
  1724. package/src/server/ui/node_modules/caniuse-lite/data/regions/IN.js +1 -0
  1725. package/src/server/ui/node_modules/caniuse-lite/data/regions/IQ.js +1 -0
  1726. package/src/server/ui/node_modules/caniuse-lite/data/regions/IR.js +1 -0
  1727. package/src/server/ui/node_modules/caniuse-lite/data/regions/IS.js +1 -0
  1728. package/src/server/ui/node_modules/caniuse-lite/data/regions/IT.js +1 -0
  1729. package/src/server/ui/node_modules/caniuse-lite/data/regions/JE.js +1 -0
  1730. package/src/server/ui/node_modules/caniuse-lite/data/regions/JM.js +1 -0
  1731. package/src/server/ui/node_modules/caniuse-lite/data/regions/JO.js +1 -0
  1732. package/src/server/ui/node_modules/caniuse-lite/data/regions/JP.js +1 -0
  1733. package/src/server/ui/node_modules/caniuse-lite/data/regions/KE.js +1 -0
  1734. package/src/server/ui/node_modules/caniuse-lite/data/regions/KG.js +1 -0
  1735. package/src/server/ui/node_modules/caniuse-lite/data/regions/KH.js +1 -0
  1736. package/src/server/ui/node_modules/caniuse-lite/data/regions/KI.js +1 -0
  1737. package/src/server/ui/node_modules/caniuse-lite/data/regions/KM.js +1 -0
  1738. package/src/server/ui/node_modules/caniuse-lite/data/regions/KN.js +1 -0
  1739. package/src/server/ui/node_modules/caniuse-lite/data/regions/KP.js +1 -0
  1740. package/src/server/ui/node_modules/caniuse-lite/data/regions/KR.js +1 -0
  1741. package/src/server/ui/node_modules/caniuse-lite/data/regions/KW.js +1 -0
  1742. package/src/server/ui/node_modules/caniuse-lite/data/regions/KY.js +1 -0
  1743. package/src/server/ui/node_modules/caniuse-lite/data/regions/KZ.js +1 -0
  1744. package/src/server/ui/node_modules/caniuse-lite/data/regions/LA.js +1 -0
  1745. package/src/server/ui/node_modules/caniuse-lite/data/regions/LB.js +1 -0
  1746. package/src/server/ui/node_modules/caniuse-lite/data/regions/LC.js +1 -0
  1747. package/src/server/ui/node_modules/caniuse-lite/data/regions/LI.js +1 -0
  1748. package/src/server/ui/node_modules/caniuse-lite/data/regions/LK.js +1 -0
  1749. package/src/server/ui/node_modules/caniuse-lite/data/regions/LR.js +1 -0
  1750. package/src/server/ui/node_modules/caniuse-lite/data/regions/LS.js +1 -0
  1751. package/src/server/ui/node_modules/caniuse-lite/data/regions/LT.js +1 -0
  1752. package/src/server/ui/node_modules/caniuse-lite/data/regions/LU.js +1 -0
  1753. package/src/server/ui/node_modules/caniuse-lite/data/regions/LV.js +1 -0
  1754. package/src/server/ui/node_modules/caniuse-lite/data/regions/LY.js +1 -0
  1755. package/src/server/ui/node_modules/caniuse-lite/data/regions/MA.js +1 -0
  1756. package/src/server/ui/node_modules/caniuse-lite/data/regions/MC.js +1 -0
  1757. package/src/server/ui/node_modules/caniuse-lite/data/regions/MD.js +1 -0
  1758. package/src/server/ui/node_modules/caniuse-lite/data/regions/ME.js +1 -0
  1759. package/src/server/ui/node_modules/caniuse-lite/data/regions/MG.js +1 -0
  1760. package/src/server/ui/node_modules/caniuse-lite/data/regions/MH.js +1 -0
  1761. package/src/server/ui/node_modules/caniuse-lite/data/regions/MK.js +1 -0
  1762. package/src/server/ui/node_modules/caniuse-lite/data/regions/ML.js +1 -0
  1763. package/src/server/ui/node_modules/caniuse-lite/data/regions/MM.js +1 -0
  1764. package/src/server/ui/node_modules/caniuse-lite/data/regions/MN.js +1 -0
  1765. package/src/server/ui/node_modules/caniuse-lite/data/regions/MO.js +1 -0
  1766. package/src/server/ui/node_modules/caniuse-lite/data/regions/MP.js +1 -0
  1767. package/src/server/ui/node_modules/caniuse-lite/data/regions/MQ.js +1 -0
  1768. package/src/server/ui/node_modules/caniuse-lite/data/regions/MR.js +1 -0
  1769. package/src/server/ui/node_modules/caniuse-lite/data/regions/MS.js +1 -0
  1770. package/src/server/ui/node_modules/caniuse-lite/data/regions/MT.js +1 -0
  1771. package/src/server/ui/node_modules/caniuse-lite/data/regions/MU.js +1 -0
  1772. package/src/server/ui/node_modules/caniuse-lite/data/regions/MV.js +1 -0
  1773. package/src/server/ui/node_modules/caniuse-lite/data/regions/MW.js +1 -0
  1774. package/src/server/ui/node_modules/caniuse-lite/data/regions/MX.js +1 -0
  1775. package/src/server/ui/node_modules/caniuse-lite/data/regions/MY.js +1 -0
  1776. package/src/server/ui/node_modules/caniuse-lite/data/regions/MZ.js +1 -0
  1777. package/src/server/ui/node_modules/caniuse-lite/data/regions/NA.js +1 -0
  1778. package/src/server/ui/node_modules/caniuse-lite/data/regions/NC.js +1 -0
  1779. package/src/server/ui/node_modules/caniuse-lite/data/regions/NE.js +1 -0
  1780. package/src/server/ui/node_modules/caniuse-lite/data/regions/NF.js +1 -0
  1781. package/src/server/ui/node_modules/caniuse-lite/data/regions/NG.js +1 -0
  1782. package/src/server/ui/node_modules/caniuse-lite/data/regions/NI.js +1 -0
  1783. package/src/server/ui/node_modules/caniuse-lite/data/regions/NL.js +1 -0
  1784. package/src/server/ui/node_modules/caniuse-lite/data/regions/NO.js +1 -0
  1785. package/src/server/ui/node_modules/caniuse-lite/data/regions/NP.js +1 -0
  1786. package/src/server/ui/node_modules/caniuse-lite/data/regions/NR.js +1 -0
  1787. package/src/server/ui/node_modules/caniuse-lite/data/regions/NU.js +1 -0
  1788. package/src/server/ui/node_modules/caniuse-lite/data/regions/NZ.js +1 -0
  1789. package/src/server/ui/node_modules/caniuse-lite/data/regions/OM.js +1 -0
  1790. package/src/server/ui/node_modules/caniuse-lite/data/regions/PA.js +1 -0
  1791. package/src/server/ui/node_modules/caniuse-lite/data/regions/PE.js +1 -0
  1792. package/src/server/ui/node_modules/caniuse-lite/data/regions/PF.js +1 -0
  1793. package/src/server/ui/node_modules/caniuse-lite/data/regions/PG.js +1 -0
  1794. package/src/server/ui/node_modules/caniuse-lite/data/regions/PH.js +1 -0
  1795. package/src/server/ui/node_modules/caniuse-lite/data/regions/PK.js +1 -0
  1796. package/src/server/ui/node_modules/caniuse-lite/data/regions/PL.js +1 -0
  1797. package/src/server/ui/node_modules/caniuse-lite/data/regions/PM.js +1 -0
  1798. package/src/server/ui/node_modules/caniuse-lite/data/regions/PN.js +1 -0
  1799. package/src/server/ui/node_modules/caniuse-lite/data/regions/PR.js +1 -0
  1800. package/src/server/ui/node_modules/caniuse-lite/data/regions/PS.js +1 -0
  1801. package/src/server/ui/node_modules/caniuse-lite/data/regions/PT.js +1 -0
  1802. package/src/server/ui/node_modules/caniuse-lite/data/regions/PW.js +1 -0
  1803. package/src/server/ui/node_modules/caniuse-lite/data/regions/PY.js +1 -0
  1804. package/src/server/ui/node_modules/caniuse-lite/data/regions/QA.js +1 -0
  1805. package/src/server/ui/node_modules/caniuse-lite/data/regions/RE.js +1 -0
  1806. package/src/server/ui/node_modules/caniuse-lite/data/regions/RO.js +1 -0
  1807. package/src/server/ui/node_modules/caniuse-lite/data/regions/RS.js +1 -0
  1808. package/src/server/ui/node_modules/caniuse-lite/data/regions/RU.js +1 -0
  1809. package/src/server/ui/node_modules/caniuse-lite/data/regions/RW.js +1 -0
  1810. package/src/server/ui/node_modules/caniuse-lite/data/regions/SA.js +1 -0
  1811. package/src/server/ui/node_modules/caniuse-lite/data/regions/SB.js +1 -0
  1812. package/src/server/ui/node_modules/caniuse-lite/data/regions/SC.js +1 -0
  1813. package/src/server/ui/node_modules/caniuse-lite/data/regions/SD.js +1 -0
  1814. package/src/server/ui/node_modules/caniuse-lite/data/regions/SE.js +1 -0
  1815. package/src/server/ui/node_modules/caniuse-lite/data/regions/SG.js +1 -0
  1816. package/src/server/ui/node_modules/caniuse-lite/data/regions/SH.js +1 -0
  1817. package/src/server/ui/node_modules/caniuse-lite/data/regions/SI.js +1 -0
  1818. package/src/server/ui/node_modules/caniuse-lite/data/regions/SK.js +1 -0
  1819. package/src/server/ui/node_modules/caniuse-lite/data/regions/SL.js +1 -0
  1820. package/src/server/ui/node_modules/caniuse-lite/data/regions/SM.js +1 -0
  1821. package/src/server/ui/node_modules/caniuse-lite/data/regions/SN.js +1 -0
  1822. package/src/server/ui/node_modules/caniuse-lite/data/regions/SO.js +1 -0
  1823. package/src/server/ui/node_modules/caniuse-lite/data/regions/SR.js +1 -0
  1824. package/src/server/ui/node_modules/caniuse-lite/data/regions/ST.js +1 -0
  1825. package/src/server/ui/node_modules/caniuse-lite/data/regions/SV.js +1 -0
  1826. package/src/server/ui/node_modules/caniuse-lite/data/regions/SY.js +1 -0
  1827. package/src/server/ui/node_modules/caniuse-lite/data/regions/SZ.js +1 -0
  1828. package/src/server/ui/node_modules/caniuse-lite/data/regions/TC.js +1 -0
  1829. package/src/server/ui/node_modules/caniuse-lite/data/regions/TD.js +1 -0
  1830. package/src/server/ui/node_modules/caniuse-lite/data/regions/TG.js +1 -0
  1831. package/src/server/ui/node_modules/caniuse-lite/data/regions/TH.js +1 -0
  1832. package/src/server/ui/node_modules/caniuse-lite/data/regions/TJ.js +1 -0
  1833. package/src/server/ui/node_modules/caniuse-lite/data/regions/TL.js +1 -0
  1834. package/src/server/ui/node_modules/caniuse-lite/data/regions/TM.js +1 -0
  1835. package/src/server/ui/node_modules/caniuse-lite/data/regions/TN.js +1 -0
  1836. package/src/server/ui/node_modules/caniuse-lite/data/regions/TO.js +1 -0
  1837. package/src/server/ui/node_modules/caniuse-lite/data/regions/TR.js +1 -0
  1838. package/src/server/ui/node_modules/caniuse-lite/data/regions/TT.js +1 -0
  1839. package/src/server/ui/node_modules/caniuse-lite/data/regions/TV.js +1 -0
  1840. package/src/server/ui/node_modules/caniuse-lite/data/regions/TW.js +1 -0
  1841. package/src/server/ui/node_modules/caniuse-lite/data/regions/TZ.js +1 -0
  1842. package/src/server/ui/node_modules/caniuse-lite/data/regions/UA.js +1 -0
  1843. package/src/server/ui/node_modules/caniuse-lite/data/regions/UG.js +1 -0
  1844. package/src/server/ui/node_modules/caniuse-lite/data/regions/US.js +1 -0
  1845. package/src/server/ui/node_modules/caniuse-lite/data/regions/UY.js +1 -0
  1846. package/src/server/ui/node_modules/caniuse-lite/data/regions/UZ.js +1 -0
  1847. package/src/server/ui/node_modules/caniuse-lite/data/regions/VA.js +1 -0
  1848. package/src/server/ui/node_modules/caniuse-lite/data/regions/VC.js +1 -0
  1849. package/src/server/ui/node_modules/caniuse-lite/data/regions/VE.js +1 -0
  1850. package/src/server/ui/node_modules/caniuse-lite/data/regions/VG.js +1 -0
  1851. package/src/server/ui/node_modules/caniuse-lite/data/regions/VI.js +1 -0
  1852. package/src/server/ui/node_modules/caniuse-lite/data/regions/VN.js +1 -0
  1853. package/src/server/ui/node_modules/caniuse-lite/data/regions/VU.js +1 -0
  1854. package/src/server/ui/node_modules/caniuse-lite/data/regions/WF.js +1 -0
  1855. package/src/server/ui/node_modules/caniuse-lite/data/regions/WS.js +1 -0
  1856. package/src/server/ui/node_modules/caniuse-lite/data/regions/YE.js +1 -0
  1857. package/src/server/ui/node_modules/caniuse-lite/data/regions/YT.js +1 -0
  1858. package/src/server/ui/node_modules/caniuse-lite/data/regions/ZA.js +1 -0
  1859. package/src/server/ui/node_modules/caniuse-lite/data/regions/ZM.js +1 -0
  1860. package/src/server/ui/node_modules/caniuse-lite/data/regions/ZW.js +1 -0
  1861. package/src/server/ui/node_modules/caniuse-lite/data/regions/alt-af.js +1 -0
  1862. package/src/server/ui/node_modules/caniuse-lite/data/regions/alt-an.js +1 -0
  1863. package/src/server/ui/node_modules/caniuse-lite/data/regions/alt-as.js +1 -0
  1864. package/src/server/ui/node_modules/caniuse-lite/data/regions/alt-eu.js +1 -0
  1865. package/src/server/ui/node_modules/caniuse-lite/data/regions/alt-na.js +1 -0
  1866. package/src/server/ui/node_modules/caniuse-lite/data/regions/alt-oc.js +1 -0
  1867. package/src/server/ui/node_modules/caniuse-lite/data/regions/alt-sa.js +1 -0
  1868. package/src/server/ui/node_modules/caniuse-lite/data/regions/alt-ww.js +1 -0
  1869. package/src/server/ui/node_modules/caniuse-lite/data/versionGroups.js +1 -0
  1870. package/src/server/ui/node_modules/caniuse-lite/dist/lib/statuses.js +9 -0
  1871. package/src/server/ui/node_modules/caniuse-lite/dist/lib/supported.js +9 -0
  1872. package/src/server/ui/node_modules/caniuse-lite/dist/unpacker/agents.js +47 -0
  1873. package/src/server/ui/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +1 -0
  1874. package/src/server/ui/node_modules/caniuse-lite/dist/unpacker/browsers.js +1 -0
  1875. package/src/server/ui/node_modules/caniuse-lite/dist/unpacker/feature.js +81 -0
  1876. package/src/server/ui/node_modules/caniuse-lite/dist/unpacker/features.js +6 -0
  1877. package/src/server/ui/node_modules/caniuse-lite/dist/unpacker/index.js +4 -0
  1878. package/src/server/ui/node_modules/caniuse-lite/dist/unpacker/region.js +22 -0
  1879. package/src/server/ui/node_modules/caniuse-lite/dist/unpacker/versionGroups.js +1 -0
  1880. package/src/server/ui/node_modules/caniuse-lite/package.json +34 -0
  1881. package/src/server/ui/node_modules/convert-source-map/LICENSE +23 -0
  1882. package/src/server/ui/node_modules/convert-source-map/README.md +206 -0
  1883. package/src/server/ui/node_modules/convert-source-map/index.js +233 -0
  1884. package/src/server/ui/node_modules/convert-source-map/package.json +38 -0
  1885. package/src/server/ui/node_modules/debug/LICENSE +20 -0
  1886. package/src/server/ui/node_modules/debug/README.md +481 -0
  1887. package/src/server/ui/node_modules/debug/package.json +64 -0
  1888. package/src/server/ui/node_modules/debug/src/browser.js +272 -0
  1889. package/src/server/ui/node_modules/debug/src/common.js +292 -0
  1890. package/src/server/ui/node_modules/debug/src/index.js +10 -0
  1891. package/src/server/ui/node_modules/debug/src/node.js +263 -0
  1892. package/src/server/ui/node_modules/electron-to-chromium/LICENSE +5 -0
  1893. package/src/server/ui/node_modules/electron-to-chromium/README.md +186 -0
  1894. package/src/server/ui/node_modules/electron-to-chromium/chromium-versions.js +92 -0
  1895. package/src/server/ui/node_modules/electron-to-chromium/chromium-versions.json +1 -0
  1896. package/src/server/ui/node_modules/electron-to-chromium/full-chromium-versions.js +2954 -0
  1897. package/src/server/ui/node_modules/electron-to-chromium/full-chromium-versions.json +1 -0
  1898. package/src/server/ui/node_modules/electron-to-chromium/full-versions.js +1872 -0
  1899. package/src/server/ui/node_modules/electron-to-chromium/full-versions.json +1 -0
  1900. package/src/server/ui/node_modules/electron-to-chromium/index.js +36 -0
  1901. package/src/server/ui/node_modules/electron-to-chromium/package.json +43 -0
  1902. package/src/server/ui/node_modules/electron-to-chromium/versions.js +273 -0
  1903. package/src/server/ui/node_modules/electron-to-chromium/versions.json +1 -0
  1904. package/src/server/ui/node_modules/engine.io-client/LICENSE +22 -0
  1905. package/src/server/ui/node_modules/engine.io-client/README.md +331 -0
  1906. package/src/server/ui/node_modules/engine.io-client/build/cjs/browser-entrypoint.d.ts +3 -0
  1907. package/src/server/ui/node_modules/engine.io-client/build/cjs/browser-entrypoint.js +4 -0
  1908. package/src/server/ui/node_modules/engine.io-client/build/cjs/contrib/has-cors.d.ts +1 -0
  1909. package/src/server/ui/node_modules/engine.io-client/build/cjs/contrib/has-cors.js +14 -0
  1910. package/src/server/ui/node_modules/engine.io-client/build/cjs/contrib/parseqs.d.ts +15 -0
  1911. package/src/server/ui/node_modules/engine.io-client/build/cjs/contrib/parseqs.js +38 -0
  1912. package/src/server/ui/node_modules/engine.io-client/build/cjs/contrib/parseuri.d.ts +1 -0
  1913. package/src/server/ui/node_modules/engine.io-client/build/cjs/contrib/parseuri.js +67 -0
  1914. package/src/server/ui/node_modules/engine.io-client/build/cjs/globals.d.ts +4 -0
  1915. package/src/server/ui/node_modules/engine.io-client/build/cjs/globals.js +26 -0
  1916. package/src/server/ui/node_modules/engine.io-client/build/cjs/globals.node.d.ts +21 -0
  1917. package/src/server/ui/node_modules/engine.io-client/build/cjs/globals.node.js +97 -0
  1918. package/src/server/ui/node_modules/engine.io-client/build/cjs/index.d.ts +15 -0
  1919. package/src/server/ui/node_modules/engine.io-client/build/cjs/index.js +32 -0
  1920. package/src/server/ui/node_modules/engine.io-client/build/cjs/package.json +10 -0
  1921. package/src/server/ui/node_modules/engine.io-client/build/cjs/socket.d.ts +482 -0
  1922. package/src/server/ui/node_modules/engine.io-client/build/cjs/socket.js +766 -0
  1923. package/src/server/ui/node_modules/engine.io-client/build/cjs/transport.d.ts +106 -0
  1924. package/src/server/ui/node_modules/engine.io-client/build/cjs/transport.js +153 -0
  1925. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/index.d.ts +8 -0
  1926. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/index.js +11 -0
  1927. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/polling-fetch.d.ts +15 -0
  1928. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/polling-fetch.js +60 -0
  1929. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/polling-xhr.d.ts +108 -0
  1930. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/polling-xhr.js +285 -0
  1931. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.d.ts +11 -0
  1932. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.js +44 -0
  1933. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/polling.d.ts +52 -0
  1934. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/polling.js +165 -0
  1935. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/websocket.d.ts +36 -0
  1936. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/websocket.js +136 -0
  1937. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/websocket.node.d.ts +14 -0
  1938. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/websocket.node.js +68 -0
  1939. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/webtransport.d.ts +18 -0
  1940. package/src/server/ui/node_modules/engine.io-client/build/cjs/transports/webtransport.js +94 -0
  1941. package/src/server/ui/node_modules/engine.io-client/build/cjs/util.d.ts +7 -0
  1942. package/src/server/ui/node_modules/engine.io-client/build/cjs/util.js +65 -0
  1943. package/src/server/ui/node_modules/engine.io-client/build/esm/browser-entrypoint.d.ts +3 -0
  1944. package/src/server/ui/node_modules/engine.io-client/build/esm/browser-entrypoint.js +2 -0
  1945. package/src/server/ui/node_modules/engine.io-client/build/esm/contrib/has-cors.d.ts +1 -0
  1946. package/src/server/ui/node_modules/engine.io-client/build/esm/contrib/has-cors.js +11 -0
  1947. package/src/server/ui/node_modules/engine.io-client/build/esm/contrib/parseqs.d.ts +15 -0
  1948. package/src/server/ui/node_modules/engine.io-client/build/esm/contrib/parseqs.js +34 -0
  1949. package/src/server/ui/node_modules/engine.io-client/build/esm/contrib/parseuri.d.ts +1 -0
  1950. package/src/server/ui/node_modules/engine.io-client/build/esm/contrib/parseuri.js +64 -0
  1951. package/src/server/ui/node_modules/engine.io-client/build/esm/globals.d.ts +4 -0
  1952. package/src/server/ui/node_modules/engine.io-client/build/esm/globals.js +22 -0
  1953. package/src/server/ui/node_modules/engine.io-client/build/esm/globals.node.d.ts +21 -0
  1954. package/src/server/ui/node_modules/engine.io-client/build/esm/globals.node.js +91 -0
  1955. package/src/server/ui/node_modules/engine.io-client/build/esm/index.d.ts +15 -0
  1956. package/src/server/ui/node_modules/engine.io-client/build/esm/index.js +15 -0
  1957. package/src/server/ui/node_modules/engine.io-client/build/esm/package.json +10 -0
  1958. package/src/server/ui/node_modules/engine.io-client/build/esm/socket.d.ts +482 -0
  1959. package/src/server/ui/node_modules/engine.io-client/build/esm/socket.js +728 -0
  1960. package/src/server/ui/node_modules/engine.io-client/build/esm/transport.d.ts +106 -0
  1961. package/src/server/ui/node_modules/engine.io-client/build/esm/transport.js +142 -0
  1962. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/index.d.ts +8 -0
  1963. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/index.js +8 -0
  1964. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/polling-fetch.d.ts +15 -0
  1965. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/polling-fetch.js +56 -0
  1966. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/polling-xhr.d.ts +108 -0
  1967. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/polling-xhr.js +271 -0
  1968. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.d.ts +11 -0
  1969. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.js +17 -0
  1970. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/polling.d.ts +52 -0
  1971. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/polling.js +145 -0
  1972. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/websocket.d.ts +36 -0
  1973. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/websocket.js +125 -0
  1974. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/websocket.node.d.ts +14 -0
  1975. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/websocket.node.js +41 -0
  1976. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/webtransport.d.ts +18 -0
  1977. package/src/server/ui/node_modules/engine.io-client/build/esm/transports/webtransport.js +80 -0
  1978. package/src/server/ui/node_modules/engine.io-client/build/esm/util.d.ts +7 -0
  1979. package/src/server/ui/node_modules/engine.io-client/build/esm/util.js +59 -0
  1980. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.d.ts +3 -0
  1981. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.js +2 -0
  1982. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.d.ts +1 -0
  1983. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.js +11 -0
  1984. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.d.ts +15 -0
  1985. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.js +34 -0
  1986. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.d.ts +1 -0
  1987. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.js +64 -0
  1988. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/globals.d.ts +4 -0
  1989. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/globals.js +22 -0
  1990. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/globals.node.d.ts +21 -0
  1991. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/globals.node.js +91 -0
  1992. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/index.d.ts +15 -0
  1993. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/index.js +15 -0
  1994. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/package.json +10 -0
  1995. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/socket.d.ts +482 -0
  1996. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/socket.js +757 -0
  1997. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transport.d.ts +106 -0
  1998. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transport.js +145 -0
  1999. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/index.d.ts +8 -0
  2000. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/index.js +8 -0
  2001. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.d.ts +15 -0
  2002. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.js +56 -0
  2003. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.d.ts +108 -0
  2004. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.js +276 -0
  2005. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.d.ts +11 -0
  2006. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.js +17 -0
  2007. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/polling.d.ts +52 -0
  2008. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/polling.js +158 -0
  2009. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/websocket.d.ts +36 -0
  2010. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/websocket.js +128 -0
  2011. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.d.ts +14 -0
  2012. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.js +41 -0
  2013. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/webtransport.d.ts +18 -0
  2014. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/transports/webtransport.js +87 -0
  2015. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/util.d.ts +7 -0
  2016. package/src/server/ui/node_modules/engine.io-client/build/esm-debug/util.js +59 -0
  2017. package/src/server/ui/node_modules/engine.io-client/dist/engine.io.esm.min.js +7 -0
  2018. package/src/server/ui/node_modules/engine.io-client/dist/engine.io.esm.min.js.map +1 -0
  2019. package/src/server/ui/node_modules/engine.io-client/dist/engine.io.js +3094 -0
  2020. package/src/server/ui/node_modules/engine.io-client/dist/engine.io.js.map +1 -0
  2021. package/src/server/ui/node_modules/engine.io-client/dist/engine.io.min.js +7 -0
  2022. package/src/server/ui/node_modules/engine.io-client/dist/engine.io.min.js.map +1 -0
  2023. package/src/server/ui/node_modules/engine.io-client/package.json +95 -0
  2024. package/src/server/ui/node_modules/engine.io-parser/LICENSE +22 -0
  2025. package/src/server/ui/node_modules/engine.io-parser/Readme.md +158 -0
  2026. package/src/server/ui/node_modules/engine.io-parser/build/cjs/commons.d.ts +14 -0
  2027. package/src/server/ui/node_modules/engine.io-parser/build/cjs/commons.js +19 -0
  2028. package/src/server/ui/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.d.ts +2 -0
  2029. package/src/server/ui/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.js +48 -0
  2030. package/src/server/ui/node_modules/engine.io-parser/build/cjs/decodePacket.browser.d.ts +2 -0
  2031. package/src/server/ui/node_modules/engine.io-parser/build/cjs/decodePacket.browser.js +66 -0
  2032. package/src/server/ui/node_modules/engine.io-parser/build/cjs/decodePacket.d.ts +2 -0
  2033. package/src/server/ui/node_modules/engine.io-parser/build/cjs/decodePacket.js +59 -0
  2034. package/src/server/ui/node_modules/engine.io-parser/build/cjs/encodePacket.browser.d.ts +4 -0
  2035. package/src/server/ui/node_modules/engine.io-parser/build/cjs/encodePacket.browser.js +72 -0
  2036. package/src/server/ui/node_modules/engine.io-parser/build/cjs/encodePacket.d.ts +3 -0
  2037. package/src/server/ui/node_modules/engine.io-parser/build/cjs/encodePacket.js +38 -0
  2038. package/src/server/ui/node_modules/engine.io-parser/build/cjs/index.d.ts +9 -0
  2039. package/src/server/ui/node_modules/engine.io-parser/build/cjs/index.js +164 -0
  2040. package/src/server/ui/node_modules/engine.io-parser/build/cjs/package.json +8 -0
  2041. package/src/server/ui/node_modules/engine.io-parser/build/esm/commons.d.ts +14 -0
  2042. package/src/server/ui/node_modules/engine.io-parser/build/esm/commons.js +14 -0
  2043. package/src/server/ui/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.d.ts +2 -0
  2044. package/src/server/ui/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js +43 -0
  2045. package/src/server/ui/node_modules/engine.io-parser/build/esm/decodePacket.browser.d.ts +2 -0
  2046. package/src/server/ui/node_modules/engine.io-parser/build/esm/decodePacket.browser.js +62 -0
  2047. package/src/server/ui/node_modules/engine.io-parser/build/esm/decodePacket.d.ts +2 -0
  2048. package/src/server/ui/node_modules/engine.io-parser/build/esm/decodePacket.js +55 -0
  2049. package/src/server/ui/node_modules/engine.io-parser/build/esm/encodePacket.browser.d.ts +4 -0
  2050. package/src/server/ui/node_modules/engine.io-parser/build/esm/encodePacket.browser.js +68 -0
  2051. package/src/server/ui/node_modules/engine.io-parser/build/esm/encodePacket.d.ts +3 -0
  2052. package/src/server/ui/node_modules/engine.io-parser/build/esm/encodePacket.js +33 -0
  2053. package/src/server/ui/node_modules/engine.io-parser/build/esm/index.d.ts +9 -0
  2054. package/src/server/ui/node_modules/engine.io-parser/build/esm/index.js +156 -0
  2055. package/src/server/ui/node_modules/engine.io-parser/build/esm/package.json +8 -0
  2056. package/src/server/ui/node_modules/engine.io-parser/package.json +46 -0
  2057. package/src/server/ui/node_modules/esbuild/LICENSE.md +21 -0
  2058. package/src/server/ui/node_modules/esbuild/README.md +3 -0
  2059. package/src/server/ui/node_modules/esbuild/bin/esbuild +220 -0
  2060. package/src/server/ui/node_modules/esbuild/install.js +285 -0
  2061. package/src/server/ui/node_modules/esbuild/lib/main.d.ts +705 -0
  2062. package/src/server/ui/node_modules/esbuild/lib/main.js +2239 -0
  2063. package/src/server/ui/node_modules/esbuild/package.json +46 -0
  2064. package/src/server/ui/node_modules/escalade/dist/index.js +22 -0
  2065. package/src/server/ui/node_modules/escalade/dist/index.mjs +22 -0
  2066. package/src/server/ui/node_modules/escalade/index.d.mts +11 -0
  2067. package/src/server/ui/node_modules/escalade/index.d.ts +15 -0
  2068. package/src/server/ui/node_modules/escalade/license +9 -0
  2069. package/src/server/ui/node_modules/escalade/package.json +74 -0
  2070. package/src/server/ui/node_modules/escalade/readme.md +211 -0
  2071. package/src/server/ui/node_modules/escalade/sync/index.d.mts +9 -0
  2072. package/src/server/ui/node_modules/escalade/sync/index.d.ts +13 -0
  2073. package/src/server/ui/node_modules/escalade/sync/index.js +18 -0
  2074. package/src/server/ui/node_modules/escalade/sync/index.mjs +18 -0
  2075. package/src/server/ui/node_modules/fsevents/LICENSE +22 -0
  2076. package/src/server/ui/node_modules/fsevents/README.md +89 -0
  2077. package/src/server/ui/node_modules/fsevents/fsevents.d.ts +46 -0
  2078. package/src/server/ui/node_modules/fsevents/fsevents.js +83 -0
  2079. package/src/server/ui/node_modules/fsevents/fsevents.node +0 -0
  2080. package/src/server/ui/node_modules/fsevents/package.json +62 -0
  2081. package/src/server/ui/node_modules/gensync/LICENSE +7 -0
  2082. package/src/server/ui/node_modules/gensync/README.md +196 -0
  2083. package/src/server/ui/node_modules/gensync/index.js +373 -0
  2084. package/src/server/ui/node_modules/gensync/index.js.flow +32 -0
  2085. package/src/server/ui/node_modules/gensync/package.json +37 -0
  2086. package/src/server/ui/node_modules/gensync/test/.babelrc +5 -0
  2087. package/src/server/ui/node_modules/gensync/test/index.test.js +489 -0
  2088. package/src/server/ui/node_modules/js-tokens/CHANGELOG.md +151 -0
  2089. package/src/server/ui/node_modules/js-tokens/LICENSE +21 -0
  2090. package/src/server/ui/node_modules/js-tokens/README.md +240 -0
  2091. package/src/server/ui/node_modules/js-tokens/index.js +23 -0
  2092. package/src/server/ui/node_modules/js-tokens/package.json +30 -0
  2093. package/src/server/ui/node_modules/jsesc/LICENSE-MIT.txt +20 -0
  2094. package/src/server/ui/node_modules/jsesc/README.md +422 -0
  2095. package/src/server/ui/node_modules/jsesc/bin/jsesc +148 -0
  2096. package/src/server/ui/node_modules/jsesc/jsesc.js +337 -0
  2097. package/src/server/ui/node_modules/jsesc/man/jsesc.1 +94 -0
  2098. package/src/server/ui/node_modules/jsesc/package.json +56 -0
  2099. package/src/server/ui/node_modules/json5/LICENSE.md +23 -0
  2100. package/src/server/ui/node_modules/json5/README.md +282 -0
  2101. package/src/server/ui/node_modules/json5/dist/index.js +1737 -0
  2102. package/src/server/ui/node_modules/json5/dist/index.min.js +1 -0
  2103. package/src/server/ui/node_modules/json5/dist/index.min.mjs +1 -0
  2104. package/src/server/ui/node_modules/json5/dist/index.mjs +1426 -0
  2105. package/src/server/ui/node_modules/json5/lib/cli.js +152 -0
  2106. package/src/server/ui/node_modules/json5/lib/index.d.ts +4 -0
  2107. package/src/server/ui/node_modules/json5/lib/index.js +9 -0
  2108. package/src/server/ui/node_modules/json5/lib/parse.d.ts +15 -0
  2109. package/src/server/ui/node_modules/json5/lib/parse.js +1114 -0
  2110. package/src/server/ui/node_modules/json5/lib/register.js +13 -0
  2111. package/src/server/ui/node_modules/json5/lib/require.js +4 -0
  2112. package/src/server/ui/node_modules/json5/lib/stringify.d.ts +89 -0
  2113. package/src/server/ui/node_modules/json5/lib/stringify.js +261 -0
  2114. package/src/server/ui/node_modules/json5/lib/unicode.d.ts +3 -0
  2115. package/src/server/ui/node_modules/json5/lib/unicode.js +4 -0
  2116. package/src/server/ui/node_modules/json5/lib/util.d.ts +5 -0
  2117. package/src/server/ui/node_modules/json5/lib/util.js +35 -0
  2118. package/src/server/ui/node_modules/json5/package.json +72 -0
  2119. package/src/server/ui/node_modules/loose-envify/LICENSE +21 -0
  2120. package/src/server/ui/node_modules/loose-envify/README.md +45 -0
  2121. package/src/server/ui/node_modules/loose-envify/cli.js +16 -0
  2122. package/src/server/ui/node_modules/loose-envify/custom.js +4 -0
  2123. package/src/server/ui/node_modules/loose-envify/index.js +3 -0
  2124. package/src/server/ui/node_modules/loose-envify/loose-envify.js +36 -0
  2125. package/src/server/ui/node_modules/loose-envify/package.json +36 -0
  2126. package/src/server/ui/node_modules/loose-envify/replace.js +65 -0
  2127. package/src/server/ui/node_modules/lru-cache/LICENSE +15 -0
  2128. package/src/server/ui/node_modules/lru-cache/README.md +166 -0
  2129. package/src/server/ui/node_modules/lru-cache/index.js +334 -0
  2130. package/src/server/ui/node_modules/lru-cache/package.json +32 -0
  2131. package/src/server/ui/node_modules/ms/index.js +162 -0
  2132. package/src/server/ui/node_modules/ms/license.md +21 -0
  2133. package/src/server/ui/node_modules/ms/package.json +38 -0
  2134. package/src/server/ui/node_modules/ms/readme.md +59 -0
  2135. package/src/server/ui/node_modules/nanoid/LICENSE +20 -0
  2136. package/src/server/ui/node_modules/nanoid/README.md +39 -0
  2137. package/src/server/ui/node_modules/nanoid/async/index.browser.cjs +43 -0
  2138. package/src/server/ui/node_modules/nanoid/async/index.browser.js +43 -0
  2139. package/src/server/ui/node_modules/nanoid/async/index.cjs +47 -0
  2140. package/src/server/ui/node_modules/nanoid/async/index.d.ts +56 -0
  2141. package/src/server/ui/node_modules/nanoid/async/index.js +47 -0
  2142. package/src/server/ui/node_modules/nanoid/async/index.native.js +38 -0
  2143. package/src/server/ui/node_modules/nanoid/async/package.json +12 -0
  2144. package/src/server/ui/node_modules/nanoid/bin/nanoid.cjs +55 -0
  2145. package/src/server/ui/node_modules/nanoid/index.browser.cjs +45 -0
  2146. package/src/server/ui/node_modules/nanoid/index.browser.js +45 -0
  2147. package/src/server/ui/node_modules/nanoid/index.cjs +58 -0
  2148. package/src/server/ui/node_modules/nanoid/index.d.cts +91 -0
  2149. package/src/server/ui/node_modules/nanoid/index.d.ts +91 -0
  2150. package/src/server/ui/node_modules/nanoid/index.js +63 -0
  2151. package/src/server/ui/node_modules/nanoid/nanoid.js +1 -0
  2152. package/src/server/ui/node_modules/nanoid/non-secure/index.cjs +24 -0
  2153. package/src/server/ui/node_modules/nanoid/non-secure/index.d.ts +33 -0
  2154. package/src/server/ui/node_modules/nanoid/non-secure/index.js +24 -0
  2155. package/src/server/ui/node_modules/nanoid/non-secure/package.json +6 -0
  2156. package/src/server/ui/node_modules/nanoid/package.json +89 -0
  2157. package/src/server/ui/node_modules/nanoid/url-alphabet/index.cjs +4 -0
  2158. package/src/server/ui/node_modules/nanoid/url-alphabet/index.js +4 -0
  2159. package/src/server/ui/node_modules/nanoid/url-alphabet/package.json +6 -0
  2160. package/src/server/ui/node_modules/node-releases/LICENSE +21 -0
  2161. package/src/server/ui/node_modules/node-releases/README.md +32 -0
  2162. package/src/server/ui/node_modules/node-releases/data/processed/envs.json +3010 -0
  2163. package/src/server/ui/node_modules/node-releases/data/release-schedule/release-schedule.json +160 -0
  2164. package/src/server/ui/node_modules/node-releases/package.json +28 -0
  2165. package/src/server/ui/node_modules/picocolors/LICENSE +15 -0
  2166. package/src/server/ui/node_modules/picocolors/README.md +21 -0
  2167. package/src/server/ui/node_modules/picocolors/package.json +25 -0
  2168. package/src/server/ui/node_modules/picocolors/picocolors.browser.js +4 -0
  2169. package/src/server/ui/node_modules/picocolors/picocolors.d.ts +5 -0
  2170. package/src/server/ui/node_modules/picocolors/picocolors.js +75 -0
  2171. package/src/server/ui/node_modules/picocolors/types.d.ts +51 -0
  2172. package/src/server/ui/node_modules/postcss/LICENSE +20 -0
  2173. package/src/server/ui/node_modules/postcss/README.md +27 -0
  2174. package/src/server/ui/node_modules/postcss/lib/at-rule.d.ts +139 -0
  2175. package/src/server/ui/node_modules/postcss/lib/at-rule.js +25 -0
  2176. package/src/server/ui/node_modules/postcss/lib/comment.d.ts +67 -0
  2177. package/src/server/ui/node_modules/postcss/lib/comment.js +13 -0
  2178. package/src/server/ui/node_modules/postcss/lib/container.d.ts +478 -0
  2179. package/src/server/ui/node_modules/postcss/lib/container.js +494 -0
  2180. package/src/server/ui/node_modules/postcss/lib/css-syntax-error.d.ts +247 -0
  2181. package/src/server/ui/node_modules/postcss/lib/css-syntax-error.js +133 -0
  2182. package/src/server/ui/node_modules/postcss/lib/declaration.d.ts +150 -0
  2183. package/src/server/ui/node_modules/postcss/lib/declaration.js +24 -0
  2184. package/src/server/ui/node_modules/postcss/lib/document.d.ts +68 -0
  2185. package/src/server/ui/node_modules/postcss/lib/document.js +33 -0
  2186. package/src/server/ui/node_modules/postcss/lib/fromJSON.d.ts +9 -0
  2187. package/src/server/ui/node_modules/postcss/lib/fromJSON.js +107 -0
  2188. package/src/server/ui/node_modules/postcss/lib/input.d.ts +226 -0
  2189. package/src/server/ui/node_modules/postcss/lib/input.js +282 -0
  2190. package/src/server/ui/node_modules/postcss/lib/lazy-result.d.ts +189 -0
  2191. package/src/server/ui/node_modules/postcss/lib/lazy-result.js +626 -0
  2192. package/src/server/ui/node_modules/postcss/lib/list.d.ts +60 -0
  2193. package/src/server/ui/node_modules/postcss/lib/list.js +59 -0
  2194. package/src/server/ui/node_modules/postcss/lib/map-generator.js +376 -0
  2195. package/src/server/ui/node_modules/postcss/lib/no-work-result.d.ts +45 -0
  2196. package/src/server/ui/node_modules/postcss/lib/no-work-result.js +137 -0
  2197. package/src/server/ui/node_modules/postcss/lib/node.d.ts +555 -0
  2198. package/src/server/ui/node_modules/postcss/lib/node.js +494 -0
  2199. package/src/server/ui/node_modules/postcss/lib/parse.d.ts +9 -0
  2200. package/src/server/ui/node_modules/postcss/lib/parse.js +42 -0
  2201. package/src/server/ui/node_modules/postcss/lib/parser.js +618 -0
  2202. package/src/server/ui/node_modules/postcss/lib/postcss.d.mts +66 -0
  2203. package/src/server/ui/node_modules/postcss/lib/postcss.d.ts +464 -0
  2204. package/src/server/ui/node_modules/postcss/lib/postcss.js +101 -0
  2205. package/src/server/ui/node_modules/postcss/lib/postcss.mjs +30 -0
  2206. package/src/server/ui/node_modules/postcss/lib/previous-map.d.ts +80 -0
  2207. package/src/server/ui/node_modules/postcss/lib/previous-map.js +176 -0
  2208. package/src/server/ui/node_modules/postcss/lib/processor.d.ts +114 -0
  2209. package/src/server/ui/node_modules/postcss/lib/processor.js +67 -0
  2210. package/src/server/ui/node_modules/postcss/lib/result.d.ts +204 -0
  2211. package/src/server/ui/node_modules/postcss/lib/result.js +42 -0
  2212. package/src/server/ui/node_modules/postcss/lib/root.d.ts +86 -0
  2213. package/src/server/ui/node_modules/postcss/lib/root.js +76 -0
  2214. package/src/server/ui/node_modules/postcss/lib/rule.d.ts +126 -0
  2215. package/src/server/ui/node_modules/postcss/lib/rule.js +27 -0
  2216. package/src/server/ui/node_modules/postcss/lib/stringifier.d.ts +45 -0
  2217. package/src/server/ui/node_modules/postcss/lib/stringifier.js +461 -0
  2218. package/src/server/ui/node_modules/postcss/lib/stringify.d.ts +9 -0
  2219. package/src/server/ui/node_modules/postcss/lib/stringify.js +11 -0
  2220. package/src/server/ui/node_modules/postcss/lib/symbols.js +5 -0
  2221. package/src/server/ui/node_modules/postcss/lib/terminal-highlight.js +70 -0
  2222. package/src/server/ui/node_modules/postcss/lib/tokenize.js +270 -0
  2223. package/src/server/ui/node_modules/postcss/lib/warn-once.js +13 -0
  2224. package/src/server/ui/node_modules/postcss/lib/warning.d.ts +146 -0
  2225. package/src/server/ui/node_modules/postcss/lib/warning.js +47 -0
  2226. package/src/server/ui/node_modules/postcss/package.json +88 -0
  2227. package/src/server/ui/node_modules/react/LICENSE +21 -0
  2228. package/src/server/ui/node_modules/react/README.md +37 -0
  2229. package/src/server/ui/node_modules/react/cjs/react-jsx-dev-runtime.development.js +1315 -0
  2230. package/src/server/ui/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +10 -0
  2231. package/src/server/ui/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +10 -0
  2232. package/src/server/ui/node_modules/react/cjs/react-jsx-runtime.development.js +1333 -0
  2233. package/src/server/ui/node_modules/react/cjs/react-jsx-runtime.production.min.js +11 -0
  2234. package/src/server/ui/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +11 -0
  2235. package/src/server/ui/node_modules/react/cjs/react.development.js +2740 -0
  2236. package/src/server/ui/node_modules/react/cjs/react.production.min.js +26 -0
  2237. package/src/server/ui/node_modules/react/cjs/react.shared-subset.development.js +20 -0
  2238. package/src/server/ui/node_modules/react/cjs/react.shared-subset.production.min.js +10 -0
  2239. package/src/server/ui/node_modules/react/index.js +7 -0
  2240. package/src/server/ui/node_modules/react/jsx-dev-runtime.js +7 -0
  2241. package/src/server/ui/node_modules/react/jsx-runtime.js +7 -0
  2242. package/src/server/ui/node_modules/react/package.json +47 -0
  2243. package/src/server/ui/node_modules/react/react.shared-subset.js +7 -0
  2244. package/src/server/ui/node_modules/react/umd/react.development.js +3343 -0
  2245. package/src/server/ui/node_modules/react/umd/react.production.min.js +31 -0
  2246. package/src/server/ui/node_modules/react/umd/react.profiling.min.js +31 -0
  2247. package/src/server/ui/node_modules/react-dom/LICENSE +21 -0
  2248. package/src/server/ui/node_modules/react-dom/README.md +60 -0
  2249. package/src/server/ui/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +7029 -0
  2250. package/src/server/ui/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.min.js +93 -0
  2251. package/src/server/ui/node_modules/react-dom/cjs/react-dom-server-legacy.node.development.js +7093 -0
  2252. package/src/server/ui/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.min.js +101 -0
  2253. package/src/server/ui/node_modules/react-dom/cjs/react-dom-server.browser.development.js +7014 -0
  2254. package/src/server/ui/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js +96 -0
  2255. package/src/server/ui/node_modules/react-dom/cjs/react-dom-server.node.development.js +7070 -0
  2256. package/src/server/ui/node_modules/react-dom/cjs/react-dom-server.node.production.min.js +102 -0
  2257. package/src/server/ui/node_modules/react-dom/cjs/react-dom-test-utils.development.js +1763 -0
  2258. package/src/server/ui/node_modules/react-dom/cjs/react-dom-test-utils.production.min.js +40 -0
  2259. package/src/server/ui/node_modules/react-dom/cjs/react-dom.development.js +29923 -0
  2260. package/src/server/ui/node_modules/react-dom/cjs/react-dom.production.min.js +322 -0
  2261. package/src/server/ui/node_modules/react-dom/cjs/react-dom.profiling.min.js +366 -0
  2262. package/src/server/ui/node_modules/react-dom/client.js +25 -0
  2263. package/src/server/ui/node_modules/react-dom/index.js +38 -0
  2264. package/src/server/ui/node_modules/react-dom/package.json +62 -0
  2265. package/src/server/ui/node_modules/react-dom/profiling.js +38 -0
  2266. package/src/server/ui/node_modules/react-dom/server.browser.js +17 -0
  2267. package/src/server/ui/node_modules/react-dom/server.js +3 -0
  2268. package/src/server/ui/node_modules/react-dom/server.node.js +17 -0
  2269. package/src/server/ui/node_modules/react-dom/test-utils.js +7 -0
  2270. package/src/server/ui/node_modules/react-dom/umd/react-dom-server-legacy.browser.development.js +7026 -0
  2271. package/src/server/ui/node_modules/react-dom/umd/react-dom-server-legacy.browser.production.min.js +75 -0
  2272. package/src/server/ui/node_modules/react-dom/umd/react-dom-server.browser.development.js +7011 -0
  2273. package/src/server/ui/node_modules/react-dom/umd/react-dom-server.browser.production.min.js +76 -0
  2274. package/src/server/ui/node_modules/react-dom/umd/react-dom-test-utils.development.js +1759 -0
  2275. package/src/server/ui/node_modules/react-dom/umd/react-dom-test-utils.production.min.js +33 -0
  2276. package/src/server/ui/node_modules/react-dom/umd/react-dom.development.js +29924 -0
  2277. package/src/server/ui/node_modules/react-dom/umd/react-dom.production.min.js +267 -0
  2278. package/src/server/ui/node_modules/react-dom/umd/react-dom.profiling.min.js +285 -0
  2279. package/src/server/ui/node_modules/react-refresh/LICENSE +21 -0
  2280. package/src/server/ui/node_modules/react-refresh/README.md +5 -0
  2281. package/src/server/ui/node_modules/react-refresh/babel.js +7 -0
  2282. package/src/server/ui/node_modules/react-refresh/cjs/react-refresh-babel.development.js +601 -0
  2283. package/src/server/ui/node_modules/react-refresh/cjs/react-refresh-babel.production.js +586 -0
  2284. package/src/server/ui/node_modules/react-refresh/cjs/react-refresh-runtime.development.js +338 -0
  2285. package/src/server/ui/node_modules/react-refresh/cjs/react-refresh-runtime.production.js +14 -0
  2286. package/src/server/ui/node_modules/react-refresh/package.json +38 -0
  2287. package/src/server/ui/node_modules/react-refresh/runtime.js +7 -0
  2288. package/src/server/ui/node_modules/rollup/LICENSE.md +679 -0
  2289. package/src/server/ui/node_modules/rollup/README.md +134 -0
  2290. package/src/server/ui/node_modules/rollup/dist/bin/rollup +1908 -0
  2291. package/src/server/ui/node_modules/rollup/dist/es/getLogFilter.js +65 -0
  2292. package/src/server/ui/node_modules/rollup/dist/es/package.json +1 -0
  2293. package/src/server/ui/node_modules/rollup/dist/es/parseAst.js +12 -0
  2294. package/src/server/ui/node_modules/rollup/dist/es/rollup.js +17 -0
  2295. package/src/server/ui/node_modules/rollup/dist/es/shared/node-entry.js +24361 -0
  2296. package/src/server/ui/node_modules/rollup/dist/es/shared/parseAst.js +2124 -0
  2297. package/src/server/ui/node_modules/rollup/dist/es/shared/watch.js +9909 -0
  2298. package/src/server/ui/node_modules/rollup/dist/getLogFilter.d.ts +5 -0
  2299. package/src/server/ui/node_modules/rollup/dist/getLogFilter.js +70 -0
  2300. package/src/server/ui/node_modules/rollup/dist/loadConfigFile.d.ts +20 -0
  2301. package/src/server/ui/node_modules/rollup/dist/loadConfigFile.js +29 -0
  2302. package/src/server/ui/node_modules/rollup/dist/native.js +167 -0
  2303. package/src/server/ui/node_modules/rollup/dist/parseAst.d.ts +4 -0
  2304. package/src/server/ui/node_modules/rollup/dist/parseAst.js +22 -0
  2305. package/src/server/ui/node_modules/rollup/dist/rollup.d.ts +1208 -0
  2306. package/src/server/ui/node_modules/rollup/dist/rollup.js +129 -0
  2307. package/src/server/ui/node_modules/rollup/dist/shared/fsevents-importer.js +37 -0
  2308. package/src/server/ui/node_modules/rollup/dist/shared/index.js +9615 -0
  2309. package/src/server/ui/node_modules/rollup/dist/shared/loadConfigFile.js +572 -0
  2310. package/src/server/ui/node_modules/rollup/dist/shared/parseAst.js +2361 -0
  2311. package/src/server/ui/node_modules/rollup/dist/shared/rollup.js +24281 -0
  2312. package/src/server/ui/node_modules/rollup/dist/shared/watch-cli.js +542 -0
  2313. package/src/server/ui/node_modules/rollup/dist/shared/watch.js +324 -0
  2314. package/src/server/ui/node_modules/rollup/package.json +298 -0
  2315. package/src/server/ui/node_modules/scheduler/LICENSE +21 -0
  2316. package/src/server/ui/node_modules/scheduler/README.md +9 -0
  2317. package/src/server/ui/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +700 -0
  2318. package/src/server/ui/node_modules/scheduler/cjs/scheduler-unstable_mock.production.min.js +20 -0
  2319. package/src/server/ui/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +207 -0
  2320. package/src/server/ui/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.min.js +14 -0
  2321. package/src/server/ui/node_modules/scheduler/cjs/scheduler.development.js +634 -0
  2322. package/src/server/ui/node_modules/scheduler/cjs/scheduler.production.min.js +19 -0
  2323. package/src/server/ui/node_modules/scheduler/index.js +7 -0
  2324. package/src/server/ui/node_modules/scheduler/package.json +36 -0
  2325. package/src/server/ui/node_modules/scheduler/umd/scheduler-unstable_mock.development.js +699 -0
  2326. package/src/server/ui/node_modules/scheduler/umd/scheduler-unstable_mock.production.min.js +19 -0
  2327. package/src/server/ui/node_modules/scheduler/umd/scheduler.development.js +152 -0
  2328. package/src/server/ui/node_modules/scheduler/umd/scheduler.production.min.js +146 -0
  2329. package/src/server/ui/node_modules/scheduler/umd/scheduler.profiling.min.js +146 -0
  2330. package/src/server/ui/node_modules/scheduler/unstable_mock.js +7 -0
  2331. package/src/server/ui/node_modules/scheduler/unstable_post_task.js +7 -0
  2332. package/src/server/ui/node_modules/semver/LICENSE +15 -0
  2333. package/src/server/ui/node_modules/semver/README.md +443 -0
  2334. package/src/server/ui/node_modules/semver/bin/semver.js +174 -0
  2335. package/src/server/ui/node_modules/semver/package.json +38 -0
  2336. package/src/server/ui/node_modules/semver/range.bnf +16 -0
  2337. package/src/server/ui/node_modules/semver/semver.js +1643 -0
  2338. package/src/server/ui/node_modules/socket.io-client/LICENSE +21 -0
  2339. package/src/server/ui/node_modules/socket.io-client/README.md +29 -0
  2340. package/src/server/ui/node_modules/socket.io-client/build/cjs/browser-entrypoint.d.ts +2 -0
  2341. package/src/server/ui/node_modules/socket.io-client/build/cjs/browser-entrypoint.js +4 -0
  2342. package/src/server/ui/node_modules/socket.io-client/build/cjs/contrib/backo2.d.ts +12 -0
  2343. package/src/server/ui/node_modules/socket.io-client/build/cjs/contrib/backo2.js +69 -0
  2344. package/src/server/ui/node_modules/socket.io-client/build/cjs/index.d.ts +29 -0
  2345. package/src/server/ui/node_modules/socket.io-client/build/cjs/index.js +76 -0
  2346. package/src/server/ui/node_modules/socket.io-client/build/cjs/manager.d.ts +295 -0
  2347. package/src/server/ui/node_modules/socket.io-client/build/cjs/manager.js +416 -0
  2348. package/src/server/ui/node_modules/socket.io-client/build/cjs/on.d.ts +2 -0
  2349. package/src/server/ui/node_modules/socket.io-client/build/cjs/on.js +9 -0
  2350. package/src/server/ui/node_modules/socket.io-client/build/cjs/socket.d.ts +593 -0
  2351. package/src/server/ui/node_modules/socket.io-client/build/cjs/socket.js +909 -0
  2352. package/src/server/ui/node_modules/socket.io-client/build/cjs/url.d.ts +33 -0
  2353. package/src/server/ui/node_modules/socket.io-client/build/cjs/url.js +69 -0
  2354. package/src/server/ui/node_modules/socket.io-client/build/esm/browser-entrypoint.d.ts +2 -0
  2355. package/src/server/ui/node_modules/socket.io-client/build/esm/browser-entrypoint.js +2 -0
  2356. package/src/server/ui/node_modules/socket.io-client/build/esm/contrib/backo2.d.ts +12 -0
  2357. package/src/server/ui/node_modules/socket.io-client/build/esm/contrib/backo2.js +66 -0
  2358. package/src/server/ui/node_modules/socket.io-client/build/esm/index.d.ts +29 -0
  2359. package/src/server/ui/node_modules/socket.io-client/build/esm/index.js +58 -0
  2360. package/src/server/ui/node_modules/socket.io-client/build/esm/manager.d.ts +295 -0
  2361. package/src/server/ui/node_modules/socket.io-client/build/esm/manager.js +367 -0
  2362. package/src/server/ui/node_modules/socket.io-client/build/esm/on.d.ts +2 -0
  2363. package/src/server/ui/node_modules/socket.io-client/build/esm/on.js +6 -0
  2364. package/src/server/ui/node_modules/socket.io-client/build/esm/package.json +5 -0
  2365. package/src/server/ui/node_modules/socket.io-client/build/esm/socket.d.ts +593 -0
  2366. package/src/server/ui/node_modules/socket.io-client/build/esm/socket.js +880 -0
  2367. package/src/server/ui/node_modules/socket.io-client/build/esm/url.d.ts +33 -0
  2368. package/src/server/ui/node_modules/socket.io-client/build/esm/url.js +59 -0
  2369. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.d.ts +2 -0
  2370. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.js +2 -0
  2371. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/contrib/backo2.d.ts +12 -0
  2372. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/contrib/backo2.js +66 -0
  2373. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/index.d.ts +29 -0
  2374. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/index.js +62 -0
  2375. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/manager.d.ts +295 -0
  2376. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/manager.js +386 -0
  2377. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/on.d.ts +2 -0
  2378. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/on.js +6 -0
  2379. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/package.json +5 -0
  2380. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/socket.d.ts +593 -0
  2381. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/socket.js +902 -0
  2382. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/url.d.ts +33 -0
  2383. package/src/server/ui/node_modules/socket.io-client/build/esm-debug/url.js +63 -0
  2384. package/src/server/ui/node_modules/socket.io-client/dist/socket.io.esm.min.js +7 -0
  2385. package/src/server/ui/node_modules/socket.io-client/dist/socket.io.esm.min.js.map +1 -0
  2386. package/src/server/ui/node_modules/socket.io-client/dist/socket.io.js +4955 -0
  2387. package/src/server/ui/node_modules/socket.io-client/dist/socket.io.js.map +1 -0
  2388. package/src/server/ui/node_modules/socket.io-client/dist/socket.io.min.js +7 -0
  2389. package/src/server/ui/node_modules/socket.io-client/dist/socket.io.min.js.map +1 -0
  2390. package/src/server/ui/node_modules/socket.io-client/dist/socket.io.msgpack.min.js +7 -0
  2391. package/src/server/ui/node_modules/socket.io-client/dist/socket.io.msgpack.min.js.map +1 -0
  2392. package/src/server/ui/node_modules/socket.io-client/package.json +101 -0
  2393. package/src/server/ui/node_modules/socket.io-parser/LICENSE +20 -0
  2394. package/src/server/ui/node_modules/socket.io-parser/Readme.md +81 -0
  2395. package/src/server/ui/node_modules/socket.io-parser/build/cjs/binary.d.ts +20 -0
  2396. package/src/server/ui/node_modules/socket.io-parser/build/cjs/binary.js +90 -0
  2397. package/src/server/ui/node_modules/socket.io-parser/build/cjs/index.d.ts +101 -0
  2398. package/src/server/ui/node_modules/socket.io-parser/build/cjs/index.js +366 -0
  2399. package/src/server/ui/node_modules/socket.io-parser/build/cjs/is-binary.d.ts +7 -0
  2400. package/src/server/ui/node_modules/socket.io-parser/build/cjs/is-binary.js +54 -0
  2401. package/src/server/ui/node_modules/socket.io-parser/build/cjs/package.json +3 -0
  2402. package/src/server/ui/node_modules/socket.io-parser/build/esm/binary.d.ts +20 -0
  2403. package/src/server/ui/node_modules/socket.io-parser/build/esm/binary.js +86 -0
  2404. package/src/server/ui/node_modules/socket.io-parser/build/esm/index.d.ts +101 -0
  2405. package/src/server/ui/node_modules/socket.io-parser/build/esm/index.js +352 -0
  2406. package/src/server/ui/node_modules/socket.io-parser/build/esm/is-binary.d.ts +7 -0
  2407. package/src/server/ui/node_modules/socket.io-parser/build/esm/is-binary.js +50 -0
  2408. package/src/server/ui/node_modules/socket.io-parser/build/esm/package.json +3 -0
  2409. package/src/server/ui/node_modules/socket.io-parser/build/esm-debug/binary.d.ts +20 -0
  2410. package/src/server/ui/node_modules/socket.io-parser/build/esm-debug/binary.js +86 -0
  2411. package/src/server/ui/node_modules/socket.io-parser/build/esm-debug/index.d.ts +101 -0
  2412. package/src/server/ui/node_modules/socket.io-parser/build/esm-debug/index.js +357 -0
  2413. package/src/server/ui/node_modules/socket.io-parser/build/esm-debug/is-binary.d.ts +7 -0
  2414. package/src/server/ui/node_modules/socket.io-parser/build/esm-debug/is-binary.js +50 -0
  2415. package/src/server/ui/node_modules/socket.io-parser/build/esm-debug/package.json +3 -0
  2416. package/src/server/ui/node_modules/socket.io-parser/package.json +44 -0
  2417. package/src/server/ui/node_modules/source-map-js/LICENSE +28 -0
  2418. package/src/server/ui/node_modules/source-map-js/README.md +765 -0
  2419. package/src/server/ui/node_modules/source-map-js/lib/array-set.js +121 -0
  2420. package/src/server/ui/node_modules/source-map-js/lib/base64-vlq.js +140 -0
  2421. package/src/server/ui/node_modules/source-map-js/lib/base64.js +67 -0
  2422. package/src/server/ui/node_modules/source-map-js/lib/binary-search.js +111 -0
  2423. package/src/server/ui/node_modules/source-map-js/lib/mapping-list.js +79 -0
  2424. package/src/server/ui/node_modules/source-map-js/lib/quick-sort.js +132 -0
  2425. package/src/server/ui/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
  2426. package/src/server/ui/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
  2427. package/src/server/ui/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
  2428. package/src/server/ui/node_modules/source-map-js/lib/source-map-generator.js +444 -0
  2429. package/src/server/ui/node_modules/source-map-js/lib/source-node.d.ts +1 -0
  2430. package/src/server/ui/node_modules/source-map-js/lib/source-node.js +413 -0
  2431. package/src/server/ui/node_modules/source-map-js/lib/util.js +594 -0
  2432. package/src/server/ui/node_modules/source-map-js/package.json +71 -0
  2433. package/src/server/ui/node_modules/source-map-js/source-map.d.ts +104 -0
  2434. package/src/server/ui/node_modules/source-map-js/source-map.js +8 -0
  2435. package/src/server/ui/node_modules/update-browserslist-db/LICENSE +20 -0
  2436. package/src/server/ui/node_modules/update-browserslist-db/README.md +41 -0
  2437. package/src/server/ui/node_modules/update-browserslist-db/check-npm-version.js +20 -0
  2438. package/src/server/ui/node_modules/update-browserslist-db/cli.js +42 -0
  2439. package/src/server/ui/node_modules/update-browserslist-db/index.d.ts +6 -0
  2440. package/src/server/ui/node_modules/update-browserslist-db/index.js +423 -0
  2441. package/src/server/ui/node_modules/update-browserslist-db/package.json +40 -0
  2442. package/src/server/ui/node_modules/update-browserslist-db/utils.js +25 -0
  2443. package/src/server/ui/node_modules/vite/LICENSE.md +3423 -0
  2444. package/src/server/ui/node_modules/vite/README.md +20 -0
  2445. package/src/server/ui/node_modules/vite/bin/openChrome.applescript +95 -0
  2446. package/src/server/ui/node_modules/vite/bin/vite.js +61 -0
  2447. package/src/server/ui/node_modules/vite/client.d.ts +256 -0
  2448. package/src/server/ui/node_modules/vite/dist/client/client.mjs +829 -0
  2449. package/src/server/ui/node_modules/vite/dist/client/env.mjs +24 -0
  2450. package/src/server/ui/node_modules/vite/dist/node/chunks/dep-BB45zftN.js +993 -0
  2451. package/src/server/ui/node_modules/vite/dist/node/chunks/dep-BK3b2jBa.js +67048 -0
  2452. package/src/server/ui/node_modules/vite/dist/node/chunks/dep-D-7KCb9p.js +7960 -0
  2453. package/src/server/ui/node_modules/vite/dist/node/chunks/dep-Dnp7gl8U.js +7004 -0
  2454. package/src/server/ui/node_modules/vite/dist/node/chunks/dep-IQS-Za7F.js +561 -0
  2455. package/src/server/ui/node_modules/vite/dist/node/cli.js +917 -0
  2456. package/src/server/ui/node_modules/vite/dist/node/constants.js +113 -0
  2457. package/src/server/ui/node_modules/vite/dist/node/index.d.ts +3627 -0
  2458. package/src/server/ui/node_modules/vite/dist/node/index.js +261 -0
  2459. package/src/server/ui/node_modules/vite/dist/node/runtime.d.ts +63 -0
  2460. package/src/server/ui/node_modules/vite/dist/node/runtime.js +1066 -0
  2461. package/src/server/ui/node_modules/vite/dist/node/types.d-aGj9QkWt.d.ts +281 -0
  2462. package/src/server/ui/node_modules/vite/dist/node-cjs/publicUtils.cjs +6172 -0
  2463. package/src/server/ui/node_modules/vite/index.cjs +60 -0
  2464. package/src/server/ui/node_modules/vite/index.d.cts +6 -0
  2465. package/src/server/ui/node_modules/vite/package.json +191 -0
  2466. package/src/server/ui/node_modules/vite/types/customEvent.d.ts +39 -0
  2467. package/src/server/ui/node_modules/vite/types/hmrPayload.d.ts +65 -0
  2468. package/src/server/ui/node_modules/vite/types/hot.d.ts +36 -0
  2469. package/src/server/ui/node_modules/vite/types/import-meta.d.ts +5 -0
  2470. package/src/server/ui/node_modules/vite/types/importGlob.d.ts +75 -0
  2471. package/src/server/ui/node_modules/vite/types/importMeta.d.ts +22 -0
  2472. package/src/server/ui/node_modules/vite/types/metadata.d.ts +10 -0
  2473. package/src/server/ui/node_modules/vite/types/package.json +4 -0
  2474. package/src/server/ui/node_modules/ws/LICENSE +20 -0
  2475. package/src/server/ui/node_modules/ws/README.md +548 -0
  2476. package/src/server/ui/node_modules/ws/browser.js +8 -0
  2477. package/src/server/ui/node_modules/ws/index.js +22 -0
  2478. package/src/server/ui/node_modules/ws/lib/buffer-util.js +131 -0
  2479. package/src/server/ui/node_modules/ws/lib/constants.js +19 -0
  2480. package/src/server/ui/node_modules/ws/lib/event-target.js +292 -0
  2481. package/src/server/ui/node_modules/ws/lib/extension.js +203 -0
  2482. package/src/server/ui/node_modules/ws/lib/limiter.js +55 -0
  2483. package/src/server/ui/node_modules/ws/lib/permessage-deflate.js +530 -0
  2484. package/src/server/ui/node_modules/ws/lib/receiver.js +743 -0
  2485. package/src/server/ui/node_modules/ws/lib/sender.js +607 -0
  2486. package/src/server/ui/node_modules/ws/lib/stream.js +161 -0
  2487. package/src/server/ui/node_modules/ws/lib/subprotocol.js +62 -0
  2488. package/src/server/ui/node_modules/ws/lib/validation.js +152 -0
  2489. package/src/server/ui/node_modules/ws/lib/websocket-server.js +562 -0
  2490. package/src/server/ui/node_modules/ws/lib/websocket.js +1407 -0
  2491. package/src/server/ui/node_modules/ws/package.json +74 -0
  2492. package/src/server/ui/node_modules/ws/wrapper.mjs +21 -0
  2493. package/src/server/ui/node_modules/xmlhttprequest-ssl/LICENSE +22 -0
  2494. package/src/server/ui/node_modules/xmlhttprequest-ssl/README.md +67 -0
  2495. package/src/server/ui/node_modules/xmlhttprequest-ssl/lib/XMLHttpRequest.js +689 -0
  2496. package/src/server/ui/node_modules/xmlhttprequest-ssl/package.json +40 -0
  2497. package/src/server/ui/node_modules/yallist/LICENSE +15 -0
  2498. package/src/server/ui/node_modules/yallist/README.md +204 -0
  2499. package/src/server/ui/node_modules/yallist/iterator.js +8 -0
  2500. package/src/server/ui/node_modules/yallist/package.json +29 -0
  2501. package/src/server/ui/node_modules/yallist/yallist.js +426 -0
  2502. package/src/server/ui/package-lock.json +1824 -0
  2503. package/src/server/ui/src/App.jsx +323 -0
  2504. package/src/server/ui/src/components/ApprovalQueue.jsx +127 -0
  2505. package/src/server/ui/src/components/BudgetPanel.jsx +117 -0
  2506. package/src/server/ui/src/components/NewRunModal.jsx +128 -0
  2507. package/src/server/ui/src/components/PluginPanel.jsx +33 -0
  2508. package/src/server/ui/src/components/RunList.jsx +58 -0
  2509. package/src/server/ui/src/components/ThoughtLog.jsx +50 -0
@@ -0,0 +1,3423 @@
1
+ # Vite core license
2
+ Vite is released under the MIT license:
3
+
4
+ MIT License
5
+
6
+ Copyright (c) 2019-present, VoidZero Inc. and Vite contributors
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in all
16
+ copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ SOFTWARE.
25
+
26
+ # Licenses of bundled dependencies
27
+ The published Vite artifact additionally contains code with the following licenses:
28
+ Apache-2.0, BSD-2-Clause, BlueOak-1.0.0, CC0-1.0, ISC, MIT
29
+
30
+ # Bundled dependencies:
31
+ ## @ampproject/remapping
32
+ License: Apache-2.0
33
+ By: Justin Ridgewell
34
+ Repository: git+https://github.com/ampproject/remapping.git
35
+
36
+ > Apache License
37
+ > Version 2.0, January 2004
38
+ > http://www.apache.org/licenses/
39
+ >
40
+ > TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
41
+ >
42
+ > 1. Definitions.
43
+ >
44
+ > "License" shall mean the terms and conditions for use, reproduction,
45
+ > and distribution as defined by Sections 1 through 9 of this document.
46
+ >
47
+ > "Licensor" shall mean the copyright owner or entity authorized by
48
+ > the copyright owner that is granting the License.
49
+ >
50
+ > "Legal Entity" shall mean the union of the acting entity and all
51
+ > other entities that control, are controlled by, or are under common
52
+ > control with that entity. For the purposes of this definition,
53
+ > "control" means (i) the power, direct or indirect, to cause the
54
+ > direction or management of such entity, whether by contract or
55
+ > otherwise, or (ii) ownership of fifty percent (50%) or more of the
56
+ > outstanding shares, or (iii) beneficial ownership of such entity.
57
+ >
58
+ > "You" (or "Your") shall mean an individual or Legal Entity
59
+ > exercising permissions granted by this License.
60
+ >
61
+ > "Source" form shall mean the preferred form for making modifications,
62
+ > including but not limited to software source code, documentation
63
+ > source, and configuration files.
64
+ >
65
+ > "Object" form shall mean any form resulting from mechanical
66
+ > transformation or translation of a Source form, including but
67
+ > not limited to compiled object code, generated documentation,
68
+ > and conversions to other media types.
69
+ >
70
+ > "Work" shall mean the work of authorship, whether in Source or
71
+ > Object form, made available under the License, as indicated by a
72
+ > copyright notice that is included in or attached to the work
73
+ > (an example is provided in the Appendix below).
74
+ >
75
+ > "Derivative Works" shall mean any work, whether in Source or Object
76
+ > form, that is based on (or derived from) the Work and for which the
77
+ > editorial revisions, annotations, elaborations, or other modifications
78
+ > represent, as a whole, an original work of authorship. For the purposes
79
+ > of this License, Derivative Works shall not include works that remain
80
+ > separable from, or merely link (or bind by name) to the interfaces of,
81
+ > the Work and Derivative Works thereof.
82
+ >
83
+ > "Contribution" shall mean any work of authorship, including
84
+ > the original version of the Work and any modifications or additions
85
+ > to that Work or Derivative Works thereof, that is intentionally
86
+ > submitted to Licensor for inclusion in the Work by the copyright owner
87
+ > or by an individual or Legal Entity authorized to submit on behalf of
88
+ > the copyright owner. For the purposes of this definition, "submitted"
89
+ > means any form of electronic, verbal, or written communication sent
90
+ > to the Licensor or its representatives, including but not limited to
91
+ > communication on electronic mailing lists, source code control systems,
92
+ > and issue tracking systems that are managed by, or on behalf of, the
93
+ > Licensor for the purpose of discussing and improving the Work, but
94
+ > excluding communication that is conspicuously marked or otherwise
95
+ > designated in writing by the copyright owner as "Not a Contribution."
96
+ >
97
+ > "Contributor" shall mean Licensor and any individual or Legal Entity
98
+ > on behalf of whom a Contribution has been received by Licensor and
99
+ > subsequently incorporated within the Work.
100
+ >
101
+ > 2. Grant of Copyright License. Subject to the terms and conditions of
102
+ > this License, each Contributor hereby grants to You a perpetual,
103
+ > worldwide, non-exclusive, no-charge, royalty-free, irrevocable
104
+ > copyright license to reproduce, prepare Derivative Works of,
105
+ > publicly display, publicly perform, sublicense, and distribute the
106
+ > Work and such Derivative Works in Source or Object form.
107
+ >
108
+ > 3. Grant of Patent License. Subject to the terms and conditions of
109
+ > this License, each Contributor hereby grants to You a perpetual,
110
+ > worldwide, non-exclusive, no-charge, royalty-free, irrevocable
111
+ > (except as stated in this section) patent license to make, have made,
112
+ > use, offer to sell, sell, import, and otherwise transfer the Work,
113
+ > where such license applies only to those patent claims licensable
114
+ > by such Contributor that are necessarily infringed by their
115
+ > Contribution(s) alone or by combination of their Contribution(s)
116
+ > with the Work to which such Contribution(s) was submitted. If You
117
+ > institute patent litigation against any entity (including a
118
+ > cross-claim or counterclaim in a lawsuit) alleging that the Work
119
+ > or a Contribution incorporated within the Work constitutes direct
120
+ > or contributory patent infringement, then any patent licenses
121
+ > granted to You under this License for that Work shall terminate
122
+ > as of the date such litigation is filed.
123
+ >
124
+ > 4. Redistribution. You may reproduce and distribute copies of the
125
+ > Work or Derivative Works thereof in any medium, with or without
126
+ > modifications, and in Source or Object form, provided that You
127
+ > meet the following conditions:
128
+ >
129
+ > (a) You must give any other recipients of the Work or
130
+ > Derivative Works a copy of this License; and
131
+ >
132
+ > (b) You must cause any modified files to carry prominent notices
133
+ > stating that You changed the files; and
134
+ >
135
+ > (c) You must retain, in the Source form of any Derivative Works
136
+ > that You distribute, all copyright, patent, trademark, and
137
+ > attribution notices from the Source form of the Work,
138
+ > excluding those notices that do not pertain to any part of
139
+ > the Derivative Works; and
140
+ >
141
+ > (d) If the Work includes a "NOTICE" text file as part of its
142
+ > distribution, then any Derivative Works that You distribute must
143
+ > include a readable copy of the attribution notices contained
144
+ > within such NOTICE file, excluding those notices that do not
145
+ > pertain to any part of the Derivative Works, in at least one
146
+ > of the following places: within a NOTICE text file distributed
147
+ > as part of the Derivative Works; within the Source form or
148
+ > documentation, if provided along with the Derivative Works; or,
149
+ > within a display generated by the Derivative Works, if and
150
+ > wherever such third-party notices normally appear. The contents
151
+ > of the NOTICE file are for informational purposes only and
152
+ > do not modify the License. You may add Your own attribution
153
+ > notices within Derivative Works that You distribute, alongside
154
+ > or as an addendum to the NOTICE text from the Work, provided
155
+ > that such additional attribution notices cannot be construed
156
+ > as modifying the License.
157
+ >
158
+ > You may add Your own copyright statement to Your modifications and
159
+ > may provide additional or different license terms and conditions
160
+ > for use, reproduction, or distribution of Your modifications, or
161
+ > for any such Derivative Works as a whole, provided Your use,
162
+ > reproduction, and distribution of the Work otherwise complies with
163
+ > the conditions stated in this License.
164
+ >
165
+ > 5. Submission of Contributions. Unless You explicitly state otherwise,
166
+ > any Contribution intentionally submitted for inclusion in the Work
167
+ > by You to the Licensor shall be under the terms and conditions of
168
+ > this License, without any additional terms or conditions.
169
+ > Notwithstanding the above, nothing herein shall supersede or modify
170
+ > the terms of any separate license agreement you may have executed
171
+ > with Licensor regarding such Contributions.
172
+ >
173
+ > 6. Trademarks. This License does not grant permission to use the trade
174
+ > names, trademarks, service marks, or product names of the Licensor,
175
+ > except as required for reasonable and customary use in describing the
176
+ > origin of the Work and reproducing the content of the NOTICE file.
177
+ >
178
+ > 7. Disclaimer of Warranty. Unless required by applicable law or
179
+ > agreed to in writing, Licensor provides the Work (and each
180
+ > Contributor provides its Contributions) on an "AS IS" BASIS,
181
+ > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
182
+ > implied, including, without limitation, any warranties or conditions
183
+ > of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
184
+ > PARTICULAR PURPOSE. You are solely responsible for determining the
185
+ > appropriateness of using or redistributing the Work and assume any
186
+ > risks associated with Your exercise of permissions under this License.
187
+ >
188
+ > 8. Limitation of Liability. In no event and under no legal theory,
189
+ > whether in tort (including negligence), contract, or otherwise,
190
+ > unless required by applicable law (such as deliberate and grossly
191
+ > negligent acts) or agreed to in writing, shall any Contributor be
192
+ > liable to You for damages, including any direct, indirect, special,
193
+ > incidental, or consequential damages of any character arising as a
194
+ > result of this License or out of the use or inability to use the
195
+ > Work (including but not limited to damages for loss of goodwill,
196
+ > work stoppage, computer failure or malfunction, or any and all
197
+ > other commercial damages or losses), even if such Contributor
198
+ > has been advised of the possibility of such damages.
199
+ >
200
+ > 9. Accepting Warranty or Additional Liability. While redistributing
201
+ > the Work or Derivative Works thereof, You may choose to offer,
202
+ > and charge a fee for, acceptance of support, warranty, indemnity,
203
+ > or other liability obligations and/or rights consistent with this
204
+ > License. However, in accepting such obligations, You may act only
205
+ > on Your own behalf and on Your sole responsibility, not on behalf
206
+ > of any other Contributor, and only if You agree to indemnify,
207
+ > defend, and hold each Contributor harmless for any liability
208
+ > incurred by, or claims asserted against, such Contributor by reason
209
+ > of your accepting any such warranty or additional liability.
210
+ >
211
+ > END OF TERMS AND CONDITIONS
212
+ >
213
+ > APPENDIX: How to apply the Apache License to your work.
214
+ >
215
+ > To apply the Apache License to your work, attach the following
216
+ > boilerplate notice, with the fields enclosed by brackets "[]"
217
+ > replaced with your own identifying information. (Don't include
218
+ > the brackets!) The text should be enclosed in the appropriate
219
+ > comment syntax for the file format. We also recommend that a
220
+ > file or class name and description of purpose be included on the
221
+ > same "printed page" as the copyright notice for easier
222
+ > identification within third-party archives.
223
+ >
224
+ > Copyright [yyyy] [name of copyright owner]
225
+ >
226
+ > Licensed under the Apache License, Version 2.0 (the "License");
227
+ > you may not use this file except in compliance with the License.
228
+ > You may obtain a copy of the License at
229
+ >
230
+ > http://www.apache.org/licenses/LICENSE-2.0
231
+ >
232
+ > Unless required by applicable law or agreed to in writing, software
233
+ > distributed under the License is distributed on an "AS IS" BASIS,
234
+ > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
235
+ > See the License for the specific language governing permissions and
236
+ > limitations under the License.
237
+
238
+ ---------------------------------------
239
+
240
+ ## @jridgewell/gen-mapping
241
+ License: MIT
242
+ By: Justin Ridgewell
243
+ Repository: https://github.com/jridgewell/gen-mapping
244
+
245
+ > Copyright 2022 Justin Ridgewell <jridgewell@google.com>
246
+ >
247
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
248
+ > of this software and associated documentation files (the "Software"), to deal
249
+ > in the Software without restriction, including without limitation the rights
250
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
251
+ > copies of the Software, and to permit persons to whom the Software is
252
+ > furnished to do so, subject to the following conditions:
253
+ >
254
+ > The above copyright notice and this permission notice shall be included in
255
+ > all copies or substantial portions of the Software.
256
+ >
257
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
258
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
259
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
260
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
261
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
262
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
263
+ > SOFTWARE.
264
+
265
+ ---------------------------------------
266
+
267
+ ## @jridgewell/resolve-uri
268
+ License: MIT
269
+ By: Justin Ridgewell
270
+ Repository: https://github.com/jridgewell/resolve-uri
271
+
272
+ > Copyright 2019 Justin Ridgewell <jridgewell@google.com>
273
+ >
274
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
275
+ > of this software and associated documentation files (the "Software"), to deal
276
+ > in the Software without restriction, including without limitation the rights
277
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
278
+ > copies of the Software, and to permit persons to whom the Software is
279
+ > furnished to do so, subject to the following conditions:
280
+ >
281
+ > The above copyright notice and this permission notice shall be included in
282
+ > all copies or substantial portions of the Software.
283
+ >
284
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
285
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
286
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
287
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
288
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
289
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
290
+ > SOFTWARE.
291
+
292
+ ---------------------------------------
293
+
294
+ ## @jridgewell/set-array
295
+ License: MIT
296
+ By: Justin Ridgewell
297
+ Repository: https://github.com/jridgewell/set-array
298
+
299
+ > Copyright 2022 Justin Ridgewell <jridgewell@google.com>
300
+ >
301
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
302
+ > of this software and associated documentation files (the "Software"), to deal
303
+ > in the Software without restriction, including without limitation the rights
304
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
305
+ > copies of the Software, and to permit persons to whom the Software is
306
+ > furnished to do so, subject to the following conditions:
307
+ >
308
+ > The above copyright notice and this permission notice shall be included in
309
+ > all copies or substantial portions of the Software.
310
+ >
311
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
312
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
313
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
314
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
315
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
316
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
317
+ > SOFTWARE.
318
+
319
+ ---------------------------------------
320
+
321
+ ## @jridgewell/sourcemap-codec
322
+ License: MIT
323
+ By: Rich Harris
324
+ Repository: git+https://github.com/jridgewell/sourcemap-codec.git
325
+
326
+ > The MIT License
327
+ >
328
+ > Copyright (c) 2015 Rich Harris
329
+ >
330
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
331
+ > of this software and associated documentation files (the "Software"), to deal
332
+ > in the Software without restriction, including without limitation the rights
333
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
334
+ > copies of the Software, and to permit persons to whom the Software is
335
+ > furnished to do so, subject to the following conditions:
336
+ >
337
+ > The above copyright notice and this permission notice shall be included in
338
+ > all copies or substantial portions of the Software.
339
+ >
340
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
341
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
342
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
343
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
344
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
345
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
346
+ > THE SOFTWARE.
347
+
348
+ ---------------------------------------
349
+
350
+ ## @jridgewell/trace-mapping
351
+ License: MIT
352
+ By: Justin Ridgewell
353
+ Repository: git+https://github.com/jridgewell/trace-mapping.git
354
+
355
+ > Copyright 2022 Justin Ridgewell <justin@ridgewell.name>
356
+ >
357
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
358
+ > of this software and associated documentation files (the "Software"), to deal
359
+ > in the Software without restriction, including without limitation the rights
360
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
361
+ > copies of the Software, and to permit persons to whom the Software is
362
+ > furnished to do so, subject to the following conditions:
363
+ >
364
+ > The above copyright notice and this permission notice shall be included in
365
+ > all copies or substantial portions of the Software.
366
+ >
367
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
368
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
369
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
370
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
371
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
372
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
373
+ > SOFTWARE.
374
+
375
+ ---------------------------------------
376
+
377
+ ## @nodelib/fs.scandir
378
+ License: MIT
379
+ Repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir
380
+
381
+ > The MIT License (MIT)
382
+ >
383
+ > Copyright (c) Denis Malinochkin
384
+ >
385
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
386
+ > of this software and associated documentation files (the "Software"), to deal
387
+ > in the Software without restriction, including without limitation the rights
388
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
389
+ > copies of the Software, and to permit persons to whom the Software is
390
+ > furnished to do so, subject to the following conditions:
391
+ >
392
+ > The above copyright notice and this permission notice shall be included in all
393
+ > copies or substantial portions of the Software.
394
+ >
395
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
396
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
397
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
398
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
399
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
400
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
401
+ > SOFTWARE.
402
+
403
+ ---------------------------------------
404
+
405
+ ## @nodelib/fs.stat
406
+ License: MIT
407
+ Repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat
408
+
409
+ > The MIT License (MIT)
410
+ >
411
+ > Copyright (c) Denis Malinochkin
412
+ >
413
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
414
+ > of this software and associated documentation files (the "Software"), to deal
415
+ > in the Software without restriction, including without limitation the rights
416
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
417
+ > copies of the Software, and to permit persons to whom the Software is
418
+ > furnished to do so, subject to the following conditions:
419
+ >
420
+ > The above copyright notice and this permission notice shall be included in all
421
+ > copies or substantial portions of the Software.
422
+ >
423
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
424
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
425
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
426
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
427
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
428
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
429
+ > SOFTWARE.
430
+
431
+ ---------------------------------------
432
+
433
+ ## @nodelib/fs.walk
434
+ License: MIT
435
+ Repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk
436
+
437
+ > The MIT License (MIT)
438
+ >
439
+ > Copyright (c) Denis Malinochkin
440
+ >
441
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
442
+ > of this software and associated documentation files (the "Software"), to deal
443
+ > in the Software without restriction, including without limitation the rights
444
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
445
+ > copies of the Software, and to permit persons to whom the Software is
446
+ > furnished to do so, subject to the following conditions:
447
+ >
448
+ > The above copyright notice and this permission notice shall be included in all
449
+ > copies or substantial portions of the Software.
450
+ >
451
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
452
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
453
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
454
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
455
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
456
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
457
+ > SOFTWARE.
458
+
459
+ ---------------------------------------
460
+
461
+ ## @polka/compression
462
+ License: MIT
463
+ Repository: lukeed/polka
464
+
465
+ ---------------------------------------
466
+
467
+ ## @polka/url
468
+ License: MIT
469
+ By: Luke Edwards
470
+ Repository: lukeed/polka
471
+
472
+ ---------------------------------------
473
+
474
+ ## @rollup/plugin-alias
475
+ License: MIT
476
+ By: Johannes Stein
477
+ Repository: rollup/plugins
478
+
479
+ > The MIT License (MIT)
480
+ >
481
+ > Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
482
+ >
483
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
484
+ > of this software and associated documentation files (the "Software"), to deal
485
+ > in the Software without restriction, including without limitation the rights
486
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
487
+ > copies of the Software, and to permit persons to whom the Software is
488
+ > furnished to do so, subject to the following conditions:
489
+ >
490
+ > The above copyright notice and this permission notice shall be included in
491
+ > all copies or substantial portions of the Software.
492
+ >
493
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
494
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
495
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
496
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
497
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
498
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
499
+ > THE SOFTWARE.
500
+
501
+ ---------------------------------------
502
+
503
+ ## @rollup/plugin-commonjs
504
+ License: MIT
505
+ By: Rich Harris
506
+ Repository: rollup/plugins
507
+
508
+ > The MIT License (MIT)
509
+ >
510
+ > Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
511
+ >
512
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
513
+ > of this software and associated documentation files (the "Software"), to deal
514
+ > in the Software without restriction, including without limitation the rights
515
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
516
+ > copies of the Software, and to permit persons to whom the Software is
517
+ > furnished to do so, subject to the following conditions:
518
+ >
519
+ > The above copyright notice and this permission notice shall be included in
520
+ > all copies or substantial portions of the Software.
521
+ >
522
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
523
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
524
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
525
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
526
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
527
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
528
+ > THE SOFTWARE.
529
+
530
+ ---------------------------------------
531
+
532
+ ## @rollup/plugin-dynamic-import-vars
533
+ License: MIT
534
+ By: LarsDenBakker
535
+ Repository: rollup/plugins
536
+
537
+ > The MIT License (MIT)
538
+ >
539
+ > Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
540
+ >
541
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
542
+ > of this software and associated documentation files (the "Software"), to deal
543
+ > in the Software without restriction, including without limitation the rights
544
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
545
+ > copies of the Software, and to permit persons to whom the Software is
546
+ > furnished to do so, subject to the following conditions:
547
+ >
548
+ > The above copyright notice and this permission notice shall be included in
549
+ > all copies or substantial portions of the Software.
550
+ >
551
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
552
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
553
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
554
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
555
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
556
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
557
+ > THE SOFTWARE.
558
+
559
+ ---------------------------------------
560
+
561
+ ## @rollup/pluginutils
562
+ License: MIT
563
+ By: Rich Harris
564
+ Repository: rollup/plugins
565
+
566
+ > The MIT License (MIT)
567
+ >
568
+ > Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
569
+ >
570
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
571
+ > of this software and associated documentation files (the "Software"), to deal
572
+ > in the Software without restriction, including without limitation the rights
573
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
574
+ > copies of the Software, and to permit persons to whom the Software is
575
+ > furnished to do so, subject to the following conditions:
576
+ >
577
+ > The above copyright notice and this permission notice shall be included in
578
+ > all copies or substantial portions of the Software.
579
+ >
580
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
581
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
582
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
583
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
584
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
585
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
586
+ > THE SOFTWARE.
587
+
588
+ ---------------------------------------
589
+
590
+ ## ansi-regex
591
+ License: MIT
592
+ By: Sindre Sorhus
593
+ Repository: chalk/ansi-regex
594
+
595
+ > MIT License
596
+ >
597
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
598
+ >
599
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
600
+ >
601
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
602
+ >
603
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
604
+
605
+ ---------------------------------------
606
+
607
+ ## anymatch
608
+ License: ISC
609
+ By: Elan Shanker
610
+ Repository: https://github.com/micromatch/anymatch
611
+
612
+ > The ISC License
613
+ >
614
+ > Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)
615
+ >
616
+ > Permission to use, copy, modify, and/or distribute this software for any
617
+ > purpose with or without fee is hereby granted, provided that the above
618
+ > copyright notice and this permission notice appear in all copies.
619
+ >
620
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
621
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
622
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
623
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
624
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
625
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
626
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
627
+
628
+ ---------------------------------------
629
+
630
+ ## artichokie
631
+ License: MIT
632
+ By: sapphi-red, Evan You
633
+ Repository: git+https://github.com/sapphi-red/artichokie.git
634
+
635
+ > MIT License
636
+ >
637
+ > Copyright (c) 2020-present, Yuxi (Evan) You
638
+ > Copyright (c) 2023-present, sapphi-red
639
+ >
640
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
641
+ > of this software and associated documentation files (the "Software"), to deal
642
+ > in the Software without restriction, including without limitation the rights
643
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
644
+ > copies of the Software, and to permit persons to whom the Software is
645
+ > furnished to do so, subject to the following conditions:
646
+ >
647
+ > The above copyright notice and this permission notice shall be included in all
648
+ > copies or substantial portions of the Software.
649
+ >
650
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
651
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
652
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
653
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
654
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
655
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
656
+ > SOFTWARE.
657
+
658
+ ---------------------------------------
659
+
660
+ ## astring
661
+ License: MIT
662
+ By: David Bonnet
663
+ Repository: https://github.com/davidbonnet/astring.git
664
+
665
+ > Copyright (c) 2015, David Bonnet <david@bonnet.cc>
666
+ >
667
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
668
+ > of this software and associated documentation files (the "Software"), to deal
669
+ > in the Software without restriction, including without limitation the rights
670
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
671
+ > copies of the Software, and to permit persons to whom the Software is
672
+ > furnished to do so, subject to the following conditions:
673
+ >
674
+ > The above copyright notice and this permission notice shall be included in
675
+ > all copies or substantial portions of the Software.
676
+ >
677
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
678
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
679
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
680
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
681
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
682
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
683
+ > THE SOFTWARE.
684
+
685
+ ---------------------------------------
686
+
687
+ ## balanced-match
688
+ License: MIT
689
+ By: Julian Gruber
690
+ Repository: git://github.com/juliangruber/balanced-match.git
691
+
692
+ > (MIT)
693
+ >
694
+ > Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
695
+ >
696
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
697
+ > this software and associated documentation files (the "Software"), to deal in
698
+ > the Software without restriction, including without limitation the rights to
699
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
700
+ > of the Software, and to permit persons to whom the Software is furnished to do
701
+ > so, subject to the following conditions:
702
+ >
703
+ > The above copyright notice and this permission notice shall be included in all
704
+ > copies or substantial portions of the Software.
705
+ >
706
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
707
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
708
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
709
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
710
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
711
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
712
+ > SOFTWARE.
713
+
714
+ ---------------------------------------
715
+
716
+ ## binary-extensions
717
+ License: MIT
718
+ By: Sindre Sorhus
719
+ Repository: sindresorhus/binary-extensions
720
+
721
+ > MIT License
722
+ >
723
+ > Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
724
+ >
725
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
726
+ >
727
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
728
+ >
729
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
730
+
731
+ ---------------------------------------
732
+
733
+ ## brace-expansion
734
+ License: MIT
735
+ By: Julian Gruber
736
+ Repository: git://github.com/juliangruber/brace-expansion.git
737
+
738
+ > MIT License
739
+ >
740
+ > Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
741
+ >
742
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
743
+ > of this software and associated documentation files (the "Software"), to deal
744
+ > in the Software without restriction, including without limitation the rights
745
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
746
+ > copies of the Software, and to permit persons to whom the Software is
747
+ > furnished to do so, subject to the following conditions:
748
+ >
749
+ > The above copyright notice and this permission notice shall be included in all
750
+ > copies or substantial portions of the Software.
751
+ >
752
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
753
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
754
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
755
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
756
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
757
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
758
+ > SOFTWARE.
759
+
760
+ ---------------------------------------
761
+
762
+ ## braces
763
+ License: MIT
764
+ By: Jon Schlinkert, Brian Woodward, Elan Shanker, Eugene Sharygin, hemanth.hm
765
+ Repository: micromatch/braces
766
+
767
+ > The MIT License (MIT)
768
+ >
769
+ > Copyright (c) 2014-present, Jon Schlinkert.
770
+ >
771
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
772
+ > of this software and associated documentation files (the "Software"), to deal
773
+ > in the Software without restriction, including without limitation the rights
774
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
775
+ > copies of the Software, and to permit persons to whom the Software is
776
+ > furnished to do so, subject to the following conditions:
777
+ >
778
+ > The above copyright notice and this permission notice shall be included in
779
+ > all copies or substantial portions of the Software.
780
+ >
781
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
782
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
783
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
784
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
785
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
786
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
787
+ > THE SOFTWARE.
788
+
789
+ ---------------------------------------
790
+
791
+ ## cac
792
+ License: MIT
793
+ By: egoist
794
+ Repository: egoist/cac
795
+
796
+ > The MIT License (MIT)
797
+ >
798
+ > Copyright (c) EGOIST <0x142857@gmail.com> (https://github.com/egoist)
799
+ >
800
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
801
+ > of this software and associated documentation files (the "Software"), to deal
802
+ > in the Software without restriction, including without limitation the rights
803
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
804
+ > copies of the Software, and to permit persons to whom the Software is
805
+ > furnished to do so, subject to the following conditions:
806
+ >
807
+ > The above copyright notice and this permission notice shall be included in
808
+ > all copies or substantial portions of the Software.
809
+ >
810
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
811
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
812
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
813
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
814
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
815
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
816
+ > THE SOFTWARE.
817
+
818
+ ---------------------------------------
819
+
820
+ ## chokidar
821
+ License: MIT
822
+ By: Paul Miller, Elan Shanker
823
+ Repository: git+https://github.com/paulmillr/chokidar.git
824
+
825
+ > The MIT License (MIT)
826
+ >
827
+ > Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
828
+ >
829
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
830
+ > of this software and associated documentation files (the “Software”), to deal
831
+ > in the Software without restriction, including without limitation the rights
832
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
833
+ > copies of the Software, and to permit persons to whom the Software is
834
+ > furnished to do so, subject to the following conditions:
835
+ >
836
+ > The above copyright notice and this permission notice shall be included in
837
+ > all copies or substantial portions of the Software.
838
+ >
839
+ > THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
840
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
841
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
842
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
843
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
844
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
845
+ > THE SOFTWARE.
846
+
847
+ ---------------------------------------
848
+
849
+ ## commondir
850
+ License: MIT
851
+ By: James Halliday
852
+ Repository: http://github.com/substack/node-commondir.git
853
+
854
+ > The MIT License
855
+ >
856
+ > Copyright (c) 2013 James Halliday (mail@substack.net)
857
+ >
858
+ > Permission is hereby granted, free of charge,
859
+ > to any person obtaining a copy of this software and
860
+ > associated documentation files (the "Software"), to
861
+ > deal in the Software without restriction, including
862
+ > without limitation the rights to use, copy, modify,
863
+ > merge, publish, distribute, sublicense, and/or sell
864
+ > copies of the Software, and to permit persons to whom
865
+ > the Software is furnished to do so,
866
+ > subject to the following conditions:
867
+ >
868
+ > The above copyright notice and this permission notice
869
+ > shall be included in all copies or substantial portions of the Software.
870
+ >
871
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
872
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
873
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
874
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
875
+ > ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
876
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
877
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
878
+
879
+ ---------------------------------------
880
+
881
+ ## connect
882
+ License: MIT
883
+ By: TJ Holowaychuk, Douglas Christopher Wilson, Jonathan Ong, Tim Caswell
884
+ Repository: senchalabs/connect
885
+
886
+ > (The MIT License)
887
+ >
888
+ > Copyright (c) 2010 Sencha Inc.
889
+ > Copyright (c) 2011 LearnBoost
890
+ > Copyright (c) 2011-2014 TJ Holowaychuk
891
+ > Copyright (c) 2015 Douglas Christopher Wilson
892
+ >
893
+ > Permission is hereby granted, free of charge, to any person obtaining
894
+ > a copy of this software and associated documentation files (the
895
+ > 'Software'), to deal in the Software without restriction, including
896
+ > without limitation the rights to use, copy, modify, merge, publish,
897
+ > distribute, sublicense, and/or sell copies of the Software, and to
898
+ > permit persons to whom the Software is furnished to do so, subject to
899
+ > the following conditions:
900
+ >
901
+ > The above copyright notice and this permission notice shall be
902
+ > included in all copies or substantial portions of the Software.
903
+ >
904
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
905
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
906
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
907
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
908
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
909
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
910
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
911
+
912
+ ---------------------------------------
913
+
914
+ ## convert-source-map
915
+ License: MIT
916
+ By: Thorsten Lorenz
917
+ Repository: git://github.com/thlorenz/convert-source-map.git
918
+
919
+ > Copyright 2013 Thorsten Lorenz.
920
+ > All rights reserved.
921
+ >
922
+ > Permission is hereby granted, free of charge, to any person
923
+ > obtaining a copy of this software and associated documentation
924
+ > files (the "Software"), to deal in the Software without
925
+ > restriction, including without limitation the rights to use,
926
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
927
+ > copies of the Software, and to permit persons to whom the
928
+ > Software is furnished to do so, subject to the following
929
+ > conditions:
930
+ >
931
+ > The above copyright notice and this permission notice shall be
932
+ > included in all copies or substantial portions of the Software.
933
+ >
934
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
935
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
936
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
937
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
938
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
939
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
940
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
941
+ > OTHER DEALINGS IN THE SOFTWARE.
942
+
943
+ ---------------------------------------
944
+
945
+ ## cors
946
+ License: MIT
947
+ By: Troy Goode
948
+ Repository: expressjs/cors
949
+
950
+ > (The MIT License)
951
+ >
952
+ > Copyright (c) 2013 Troy Goode <troygoode@gmail.com>
953
+ >
954
+ > Permission is hereby granted, free of charge, to any person obtaining
955
+ > a copy of this software and associated documentation files (the
956
+ > 'Software'), to deal in the Software without restriction, including
957
+ > without limitation the rights to use, copy, modify, merge, publish,
958
+ > distribute, sublicense, and/or sell copies of the Software, and to
959
+ > permit persons to whom the Software is furnished to do so, subject to
960
+ > the following conditions:
961
+ >
962
+ > The above copyright notice and this permission notice shall be
963
+ > included in all copies or substantial portions of the Software.
964
+ >
965
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
966
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
967
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
968
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
969
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
970
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
971
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
972
+
973
+ ---------------------------------------
974
+
975
+ ## cross-spawn
976
+ License: MIT
977
+ By: André Cruz
978
+ Repository: git@github.com:moxystudio/node-cross-spawn.git
979
+
980
+ > The MIT License (MIT)
981
+ >
982
+ > Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
983
+ >
984
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
985
+ > of this software and associated documentation files (the "Software"), to deal
986
+ > in the Software without restriction, including without limitation the rights
987
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
988
+ > copies of the Software, and to permit persons to whom the Software is
989
+ > furnished to do so, subject to the following conditions:
990
+ >
991
+ > The above copyright notice and this permission notice shall be included in
992
+ > all copies or substantial portions of the Software.
993
+ >
994
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
995
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
996
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
997
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
998
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
999
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1000
+ > THE SOFTWARE.
1001
+
1002
+ ---------------------------------------
1003
+
1004
+ ## cssesc
1005
+ License: MIT
1006
+ By: Mathias Bynens
1007
+ Repository: https://github.com/mathiasbynens/cssesc.git
1008
+
1009
+ > Copyright Mathias Bynens <https://mathiasbynens.be/>
1010
+ >
1011
+ > Permission is hereby granted, free of charge, to any person obtaining
1012
+ > a copy of this software and associated documentation files (the
1013
+ > "Software"), to deal in the Software without restriction, including
1014
+ > without limitation the rights to use, copy, modify, merge, publish,
1015
+ > distribute, sublicense, and/or sell copies of the Software, and to
1016
+ > permit persons to whom the Software is furnished to do so, subject to
1017
+ > the following conditions:
1018
+ >
1019
+ > The above copyright notice and this permission notice shall be
1020
+ > included in all copies or substantial portions of the Software.
1021
+ >
1022
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1023
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1024
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1025
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1026
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1027
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1028
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1029
+
1030
+ ---------------------------------------
1031
+
1032
+ ## debug
1033
+ License: MIT
1034
+ By: Josh Junon, TJ Holowaychuk, Nathan Rajlich, Andrew Rhyne
1035
+ Repository: git://github.com/debug-js/debug.git
1036
+
1037
+ > (The MIT License)
1038
+ >
1039
+ > Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
1040
+ > Copyright (c) 2018-2021 Josh Junon
1041
+ >
1042
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software
1043
+ > and associated documentation files (the 'Software'), to deal in the Software without restriction,
1044
+ > including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
1045
+ > and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
1046
+ > subject to the following conditions:
1047
+ >
1048
+ > The above copyright notice and this permission notice shall be included in all copies or substantial
1049
+ > portions of the Software.
1050
+ >
1051
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
1052
+ > LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1053
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1054
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1055
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1056
+
1057
+ ---------------------------------------
1058
+
1059
+ ## define-lazy-prop
1060
+ License: MIT
1061
+ By: Sindre Sorhus
1062
+ Repository: sindresorhus/define-lazy-prop
1063
+
1064
+ > MIT License
1065
+ >
1066
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1067
+ >
1068
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1069
+ >
1070
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1071
+ >
1072
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1073
+
1074
+ ---------------------------------------
1075
+
1076
+ ## dotenv
1077
+ License: BSD-2-Clause
1078
+ Repository: git://github.com/motdotla/dotenv.git
1079
+
1080
+ > Copyright (c) 2015, Scott Motte
1081
+ > All rights reserved.
1082
+ >
1083
+ > Redistribution and use in source and binary forms, with or without
1084
+ > modification, are permitted provided that the following conditions are met:
1085
+ >
1086
+ > * Redistributions of source code must retain the above copyright notice, this
1087
+ > list of conditions and the following disclaimer.
1088
+ >
1089
+ > * Redistributions in binary form must reproduce the above copyright notice,
1090
+ > this list of conditions and the following disclaimer in the documentation
1091
+ > and/or other materials provided with the distribution.
1092
+ >
1093
+ > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1094
+ > AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1095
+ > IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1096
+ > DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1097
+ > FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1098
+ > DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1099
+ > SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1100
+ > CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1101
+ > OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1102
+ > OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1103
+
1104
+ ---------------------------------------
1105
+
1106
+ ## dotenv-expand
1107
+ License: BSD-2-Clause
1108
+ By: motdotla
1109
+ Repository: https://github.com/motdotla/dotenv-expand
1110
+
1111
+ > Copyright (c) 2016, Scott Motte
1112
+ > All rights reserved.
1113
+ >
1114
+ > Redistribution and use in source and binary forms, with or without
1115
+ > modification, are permitted provided that the following conditions are met:
1116
+ >
1117
+ > * Redistributions of source code must retain the above copyright notice, this
1118
+ > list of conditions and the following disclaimer.
1119
+ >
1120
+ > * Redistributions in binary form must reproduce the above copyright notice,
1121
+ > this list of conditions and the following disclaimer in the documentation
1122
+ > and/or other materials provided with the distribution.
1123
+ >
1124
+ > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1125
+ > AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1126
+ > IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1127
+ > DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1128
+ > FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1129
+ > DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1130
+ > SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1131
+ > CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1132
+ > OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1133
+ > OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1134
+
1135
+ ---------------------------------------
1136
+
1137
+ ## ee-first
1138
+ License: MIT
1139
+ By: Jonathan Ong, Douglas Christopher Wilson
1140
+ Repository: jonathanong/ee-first
1141
+
1142
+ > The MIT License (MIT)
1143
+ >
1144
+ > Copyright (c) 2014 Jonathan Ong me@jongleberry.com
1145
+ >
1146
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1147
+ > of this software and associated documentation files (the "Software"), to deal
1148
+ > in the Software without restriction, including without limitation the rights
1149
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1150
+ > copies of the Software, and to permit persons to whom the Software is
1151
+ > furnished to do so, subject to the following conditions:
1152
+ >
1153
+ > The above copyright notice and this permission notice shall be included in
1154
+ > all copies or substantial portions of the Software.
1155
+ >
1156
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1157
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1158
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1159
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1160
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1161
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1162
+ > THE SOFTWARE.
1163
+
1164
+ ---------------------------------------
1165
+
1166
+ ## encodeurl
1167
+ License: MIT
1168
+ By: Douglas Christopher Wilson
1169
+ Repository: pillarjs/encodeurl
1170
+
1171
+ > (The MIT License)
1172
+ >
1173
+ > Copyright (c) 2016 Douglas Christopher Wilson
1174
+ >
1175
+ > Permission is hereby granted, free of charge, to any person obtaining
1176
+ > a copy of this software and associated documentation files (the
1177
+ > 'Software'), to deal in the Software without restriction, including
1178
+ > without limitation the rights to use, copy, modify, merge, publish,
1179
+ > distribute, sublicense, and/or sell copies of the Software, and to
1180
+ > permit persons to whom the Software is furnished to do so, subject to
1181
+ > the following conditions:
1182
+ >
1183
+ > The above copyright notice and this permission notice shall be
1184
+ > included in all copies or substantial portions of the Software.
1185
+ >
1186
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1187
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1188
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1189
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1190
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1191
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1192
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1193
+
1194
+ ---------------------------------------
1195
+
1196
+ ## entities
1197
+ License: BSD-2-Clause
1198
+ By: Felix Boehm
1199
+ Repository: git://github.com/fb55/entities.git
1200
+
1201
+ > Copyright (c) Felix Böhm
1202
+ > All rights reserved.
1203
+ >
1204
+ > Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1205
+ >
1206
+ > Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1207
+ >
1208
+ > Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1209
+ >
1210
+ > THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
1211
+ > EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1212
+
1213
+ ---------------------------------------
1214
+
1215
+ ## es-module-lexer
1216
+ License: MIT
1217
+ By: Guy Bedford
1218
+ Repository: git+https://github.com/guybedford/es-module-lexer.git
1219
+
1220
+ > MIT License
1221
+ > -----------
1222
+ >
1223
+ > Copyright (C) 2018-2022 Guy Bedford
1224
+ >
1225
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1226
+ >
1227
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1228
+ >
1229
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1230
+
1231
+ ---------------------------------------
1232
+
1233
+ ## escape-html
1234
+ License: MIT
1235
+ Repository: component/escape-html
1236
+
1237
+ > (The MIT License)
1238
+ >
1239
+ > Copyright (c) 2012-2013 TJ Holowaychuk
1240
+ > Copyright (c) 2015 Andreas Lubbe
1241
+ > Copyright (c) 2015 Tiancheng "Timothy" Gu
1242
+ >
1243
+ > Permission is hereby granted, free of charge, to any person obtaining
1244
+ > a copy of this software and associated documentation files (the
1245
+ > 'Software'), to deal in the Software without restriction, including
1246
+ > without limitation the rights to use, copy, modify, merge, publish,
1247
+ > distribute, sublicense, and/or sell copies of the Software, and to
1248
+ > permit persons to whom the Software is furnished to do so, subject to
1249
+ > the following conditions:
1250
+ >
1251
+ > The above copyright notice and this permission notice shall be
1252
+ > included in all copies or substantial portions of the Software.
1253
+ >
1254
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1255
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1256
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1257
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1258
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1259
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1260
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1261
+
1262
+ ---------------------------------------
1263
+
1264
+ ## estree-walker
1265
+ License: MIT
1266
+ By: Rich Harris
1267
+ Repository: https://github.com/Rich-Harris/estree-walker
1268
+
1269
+ > Copyright (c) 2015-20 [these people](https://github.com/Rich-Harris/estree-walker/graphs/contributors)
1270
+ >
1271
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1272
+ >
1273
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1274
+ >
1275
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1276
+
1277
+ ---------------------------------------
1278
+
1279
+ ## etag
1280
+ License: MIT
1281
+ By: Douglas Christopher Wilson, David Björklund
1282
+ Repository: jshttp/etag
1283
+
1284
+ > (The MIT License)
1285
+ >
1286
+ > Copyright (c) 2014-2016 Douglas Christopher Wilson
1287
+ >
1288
+ > Permission is hereby granted, free of charge, to any person obtaining
1289
+ > a copy of this software and associated documentation files (the
1290
+ > 'Software'), to deal in the Software without restriction, including
1291
+ > without limitation the rights to use, copy, modify, merge, publish,
1292
+ > distribute, sublicense, and/or sell copies of the Software, and to
1293
+ > permit persons to whom the Software is furnished to do so, subject to
1294
+ > the following conditions:
1295
+ >
1296
+ > The above copyright notice and this permission notice shall be
1297
+ > included in all copies or substantial portions of the Software.
1298
+ >
1299
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1300
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1301
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1302
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1303
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1304
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1305
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1306
+
1307
+ ---------------------------------------
1308
+
1309
+ ## eventemitter3
1310
+ License: MIT
1311
+ By: Arnout Kazemier
1312
+ Repository: git://github.com/primus/eventemitter3.git
1313
+
1314
+ > The MIT License (MIT)
1315
+ >
1316
+ > Copyright (c) 2014 Arnout Kazemier
1317
+ >
1318
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1319
+ > of this software and associated documentation files (the "Software"), to deal
1320
+ > in the Software without restriction, including without limitation the rights
1321
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1322
+ > copies of the Software, and to permit persons to whom the Software is
1323
+ > furnished to do so, subject to the following conditions:
1324
+ >
1325
+ > The above copyright notice and this permission notice shall be included in all
1326
+ > copies or substantial portions of the Software.
1327
+ >
1328
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1329
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1330
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1331
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1332
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1333
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1334
+ > SOFTWARE.
1335
+
1336
+ ---------------------------------------
1337
+
1338
+ ## fast-glob
1339
+ License: MIT
1340
+ By: Denis Malinochkin
1341
+ Repository: mrmlnc/fast-glob
1342
+
1343
+ > The MIT License (MIT)
1344
+ >
1345
+ > Copyright (c) Denis Malinochkin
1346
+ >
1347
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1348
+ > of this software and associated documentation files (the "Software"), to deal
1349
+ > in the Software without restriction, including without limitation the rights
1350
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1351
+ > copies of the Software, and to permit persons to whom the Software is
1352
+ > furnished to do so, subject to the following conditions:
1353
+ >
1354
+ > The above copyright notice and this permission notice shall be included in all
1355
+ > copies or substantial portions of the Software.
1356
+ >
1357
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1358
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1359
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1360
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1361
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1362
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1363
+ > SOFTWARE.
1364
+
1365
+ ---------------------------------------
1366
+
1367
+ ## fastq
1368
+ License: ISC
1369
+ By: Matteo Collina
1370
+ Repository: git+https://github.com/mcollina/fastq.git
1371
+
1372
+ > Copyright (c) 2015-2020, Matteo Collina <matteo.collina@gmail.com>
1373
+ >
1374
+ > Permission to use, copy, modify, and/or distribute this software for any
1375
+ > purpose with or without fee is hereby granted, provided that the above
1376
+ > copyright notice and this permission notice appear in all copies.
1377
+ >
1378
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1379
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1380
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1381
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1382
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1383
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1384
+ > OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1385
+
1386
+ ---------------------------------------
1387
+
1388
+ ## fill-range
1389
+ License: MIT
1390
+ By: Jon Schlinkert, Edo Rivai, Paul Miller, Rouven Weßling
1391
+ Repository: jonschlinkert/fill-range
1392
+
1393
+ > The MIT License (MIT)
1394
+ >
1395
+ > Copyright (c) 2014-present, Jon Schlinkert.
1396
+ >
1397
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1398
+ > of this software and associated documentation files (the "Software"), to deal
1399
+ > in the Software without restriction, including without limitation the rights
1400
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1401
+ > copies of the Software, and to permit persons to whom the Software is
1402
+ > furnished to do so, subject to the following conditions:
1403
+ >
1404
+ > The above copyright notice and this permission notice shall be included in
1405
+ > all copies or substantial portions of the Software.
1406
+ >
1407
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1408
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1409
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1410
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1411
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1412
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1413
+ > THE SOFTWARE.
1414
+
1415
+ ---------------------------------------
1416
+
1417
+ ## finalhandler
1418
+ License: MIT
1419
+ By: Douglas Christopher Wilson
1420
+ Repository: pillarjs/finalhandler
1421
+
1422
+ > (The MIT License)
1423
+ >
1424
+ > Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
1425
+ >
1426
+ > Permission is hereby granted, free of charge, to any person obtaining
1427
+ > a copy of this software and associated documentation files (the
1428
+ > 'Software'), to deal in the Software without restriction, including
1429
+ > without limitation the rights to use, copy, modify, merge, publish,
1430
+ > distribute, sublicense, and/or sell copies of the Software, and to
1431
+ > permit persons to whom the Software is furnished to do so, subject to
1432
+ > the following conditions:
1433
+ >
1434
+ > The above copyright notice and this permission notice shall be
1435
+ > included in all copies or substantial portions of the Software.
1436
+ >
1437
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1438
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1439
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1440
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1441
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1442
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1443
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1444
+
1445
+ ---------------------------------------
1446
+
1447
+ ## follow-redirects
1448
+ License: MIT
1449
+ By: Ruben Verborgh, Olivier Lalonde, James Talmage
1450
+ Repository: git@github.com:follow-redirects/follow-redirects.git
1451
+
1452
+ > Copyright 2014–present Olivier Lalonde <olalonde@gmail.com>, James Talmage <james@talmage.io>, Ruben Verborgh
1453
+ >
1454
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
1455
+ > this software and associated documentation files (the "Software"), to deal in
1456
+ > the Software without restriction, including without limitation the rights to
1457
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1458
+ > of the Software, and to permit persons to whom the Software is furnished to do
1459
+ > so, subject to the following conditions:
1460
+ >
1461
+ > The above copyright notice and this permission notice shall be included in all
1462
+ > copies or substantial portions of the Software.
1463
+ >
1464
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1465
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1466
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1467
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1468
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
1469
+ > IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1470
+
1471
+ ---------------------------------------
1472
+
1473
+ ## generic-names
1474
+ License: MIT
1475
+ By: Alexey Litvinov
1476
+ Repository: git+https://github.com/css-modules/generic-names.git
1477
+
1478
+ > The MIT License (MIT)
1479
+ >
1480
+ > Copyright (c) 2015 Alexey Litvinov
1481
+ >
1482
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1483
+ > of this software and associated documentation files (the "Software"), to deal
1484
+ > in the Software without restriction, including without limitation the rights
1485
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1486
+ > copies of the Software, and to permit persons to whom the Software is
1487
+ > furnished to do so, subject to the following conditions:
1488
+ >
1489
+ > The above copyright notice and this permission notice shall be included in all
1490
+ > copies or substantial portions of the Software.
1491
+ >
1492
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1493
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1494
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1495
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1496
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1497
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1498
+ > SOFTWARE.
1499
+
1500
+ ---------------------------------------
1501
+
1502
+ ## glob
1503
+ License: ISC
1504
+ By: Isaac Z. Schlueter
1505
+ Repository: git://github.com/isaacs/node-glob.git
1506
+
1507
+ > The ISC License
1508
+ >
1509
+ > Copyright (c) 2009-2023 Isaac Z. Schlueter and Contributors
1510
+ >
1511
+ > Permission to use, copy, modify, and/or distribute this software for any
1512
+ > purpose with or without fee is hereby granted, provided that the above
1513
+ > copyright notice and this permission notice appear in all copies.
1514
+ >
1515
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1516
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1517
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1518
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1519
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1520
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1521
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1522
+
1523
+ ---------------------------------------
1524
+
1525
+ ## glob-parent
1526
+ License: ISC
1527
+ By: Gulp Team, Elan Shanker, Blaine Bublitz
1528
+ Repository: gulpjs/glob-parent
1529
+
1530
+ > The ISC License
1531
+ >
1532
+ > Copyright (c) 2015, 2019 Elan Shanker
1533
+ >
1534
+ > Permission to use, copy, modify, and/or distribute this software for any
1535
+ > purpose with or without fee is hereby granted, provided that the above
1536
+ > copyright notice and this permission notice appear in all copies.
1537
+ >
1538
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1539
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1540
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1541
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1542
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1543
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1544
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1545
+
1546
+ ---------------------------------------
1547
+
1548
+ ## http-proxy
1549
+ License: MIT
1550
+ By: Charlie Robbins, jcrugzz <jcrugzz@gmail.com>
1551
+ Repository: https://github.com/http-party/node-http-proxy.git
1552
+
1553
+ > node-http-proxy
1554
+ >
1555
+ > Copyright (c) 2010-2016 Charlie Robbins, Jarrett Cruger & the Contributors.
1556
+ >
1557
+ > Permission is hereby granted, free of charge, to any person obtaining
1558
+ > a copy of this software and associated documentation files (the
1559
+ > "Software"), to deal in the Software without restriction, including
1560
+ > without limitation the rights to use, copy, modify, merge, publish,
1561
+ > distribute, sublicense, and/or sell copies of the Software, and to
1562
+ > permit persons to whom the Software is furnished to do so, subject to
1563
+ > the following conditions:
1564
+ >
1565
+ > The above copyright notice and this permission notice shall be
1566
+ > included in all copies or substantial portions of the Software.
1567
+ >
1568
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1569
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1570
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1571
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1572
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1573
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1574
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1575
+
1576
+ ---------------------------------------
1577
+
1578
+ ## icss-utils
1579
+ License: ISC
1580
+ By: Glen Maddern
1581
+ Repository: git+https://github.com/css-modules/icss-utils.git
1582
+
1583
+ > ISC License (ISC)
1584
+ > Copyright 2018 Glen Maddern
1585
+ >
1586
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
1587
+ >
1588
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1589
+
1590
+ ---------------------------------------
1591
+
1592
+ ## is-binary-path
1593
+ License: MIT
1594
+ By: Sindre Sorhus
1595
+ Repository: sindresorhus/is-binary-path
1596
+
1597
+ > MIT License
1598
+ >
1599
+ > Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
1600
+ >
1601
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1602
+ >
1603
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1604
+ >
1605
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1606
+
1607
+ ---------------------------------------
1608
+
1609
+ ## is-docker
1610
+ License: MIT
1611
+ By: Sindre Sorhus
1612
+ Repository: sindresorhus/is-docker
1613
+
1614
+ > MIT License
1615
+ >
1616
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1617
+ >
1618
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1619
+ >
1620
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1621
+ >
1622
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1623
+
1624
+ ---------------------------------------
1625
+
1626
+ ## is-extglob
1627
+ License: MIT
1628
+ By: Jon Schlinkert
1629
+ Repository: jonschlinkert/is-extglob
1630
+
1631
+ > The MIT License (MIT)
1632
+ >
1633
+ > Copyright (c) 2014-2016, Jon Schlinkert
1634
+ >
1635
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1636
+ > of this software and associated documentation files (the "Software"), to deal
1637
+ > in the Software without restriction, including without limitation the rights
1638
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1639
+ > copies of the Software, and to permit persons to whom the Software is
1640
+ > furnished to do so, subject to the following conditions:
1641
+ >
1642
+ > The above copyright notice and this permission notice shall be included in
1643
+ > all copies or substantial portions of the Software.
1644
+ >
1645
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1646
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1647
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1648
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1649
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1650
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1651
+ > THE SOFTWARE.
1652
+
1653
+ ---------------------------------------
1654
+
1655
+ ## is-glob
1656
+ License: MIT
1657
+ By: Jon Schlinkert, Brian Woodward, Daniel Perez
1658
+ Repository: micromatch/is-glob
1659
+
1660
+ > The MIT License (MIT)
1661
+ >
1662
+ > Copyright (c) 2014-2017, Jon Schlinkert.
1663
+ >
1664
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1665
+ > of this software and associated documentation files (the "Software"), to deal
1666
+ > in the Software without restriction, including without limitation the rights
1667
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1668
+ > copies of the Software, and to permit persons to whom the Software is
1669
+ > furnished to do so, subject to the following conditions:
1670
+ >
1671
+ > The above copyright notice and this permission notice shall be included in
1672
+ > all copies or substantial portions of the Software.
1673
+ >
1674
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1675
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1676
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1677
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1678
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1679
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1680
+ > THE SOFTWARE.
1681
+
1682
+ ---------------------------------------
1683
+
1684
+ ## is-number
1685
+ License: MIT
1686
+ By: Jon Schlinkert, Olsten Larck, Rouven Weßling
1687
+ Repository: jonschlinkert/is-number
1688
+
1689
+ > The MIT License (MIT)
1690
+ >
1691
+ > Copyright (c) 2014-present, Jon Schlinkert.
1692
+ >
1693
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1694
+ > of this software and associated documentation files (the "Software"), to deal
1695
+ > in the Software without restriction, including without limitation the rights
1696
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1697
+ > copies of the Software, and to permit persons to whom the Software is
1698
+ > furnished to do so, subject to the following conditions:
1699
+ >
1700
+ > The above copyright notice and this permission notice shall be included in
1701
+ > all copies or substantial portions of the Software.
1702
+ >
1703
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1704
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1705
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1706
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1707
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1708
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1709
+ > THE SOFTWARE.
1710
+
1711
+ ---------------------------------------
1712
+
1713
+ ## is-reference
1714
+ License: MIT
1715
+ By: Rich Harris
1716
+ Repository: git+https://github.com/Rich-Harris/is-reference.git
1717
+
1718
+ ---------------------------------------
1719
+
1720
+ ## is-wsl
1721
+ License: MIT
1722
+ By: Sindre Sorhus
1723
+ Repository: sindresorhus/is-wsl
1724
+
1725
+ > MIT License
1726
+ >
1727
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1728
+ >
1729
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1730
+ >
1731
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1732
+ >
1733
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1734
+
1735
+ ---------------------------------------
1736
+
1737
+ ## isexe
1738
+ License: ISC
1739
+ By: Isaac Z. Schlueter
1740
+ Repository: git+https://github.com/isaacs/isexe.git
1741
+
1742
+ > The ISC License
1743
+ >
1744
+ > Copyright (c) Isaac Z. Schlueter and Contributors
1745
+ >
1746
+ > Permission to use, copy, modify, and/or distribute this software for any
1747
+ > purpose with or without fee is hereby granted, provided that the above
1748
+ > copyright notice and this permission notice appear in all copies.
1749
+ >
1750
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1751
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1752
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1753
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1754
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1755
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1756
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1757
+
1758
+ ---------------------------------------
1759
+
1760
+ ## js-tokens
1761
+ License: MIT
1762
+ By: Simon Lydell
1763
+ Repository: lydell/js-tokens
1764
+
1765
+ > The MIT License (MIT)
1766
+ >
1767
+ > Copyright (c) 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Simon Lydell
1768
+ >
1769
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1770
+ > of this software and associated documentation files (the "Software"), to deal
1771
+ > in the Software without restriction, including without limitation the rights
1772
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1773
+ > copies of the Software, and to permit persons to whom the Software is
1774
+ > furnished to do so, subject to the following conditions:
1775
+ >
1776
+ > The above copyright notice and this permission notice shall be included in
1777
+ > all copies or substantial portions of the Software.
1778
+ >
1779
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1780
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1781
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1782
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1783
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1784
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1785
+ > THE SOFTWARE.
1786
+
1787
+ ---------------------------------------
1788
+
1789
+ ## launch-editor
1790
+ License: MIT
1791
+ By: Evan You
1792
+ Repository: git+https://github.com/yyx990803/launch-editor.git
1793
+
1794
+ > The MIT License (MIT)
1795
+ >
1796
+ > Copyright (c) 2017-present, Yuxi (Evan) You
1797
+ >
1798
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1799
+ > of this software and associated documentation files (the "Software"), to deal
1800
+ > in the Software without restriction, including without limitation the rights
1801
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1802
+ > copies of the Software, and to permit persons to whom the Software is
1803
+ > furnished to do so, subject to the following conditions:
1804
+ >
1805
+ > The above copyright notice and this permission notice shall be included in
1806
+ > all copies or substantial portions of the Software.
1807
+ >
1808
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1809
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1810
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1811
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1812
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1813
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1814
+ > THE SOFTWARE.
1815
+
1816
+ ---------------------------------------
1817
+
1818
+ ## launch-editor-middleware
1819
+ License: MIT
1820
+ By: Evan You
1821
+ Repository: git+https://github.com/yyx990803/launch-editor.git
1822
+
1823
+ > The MIT License (MIT)
1824
+ >
1825
+ > Copyright (c) 2017-present, Yuxi (Evan) You
1826
+ >
1827
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1828
+ > of this software and associated documentation files (the "Software"), to deal
1829
+ > in the Software without restriction, including without limitation the rights
1830
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1831
+ > copies of the Software, and to permit persons to whom the Software is
1832
+ > furnished to do so, subject to the following conditions:
1833
+ >
1834
+ > The above copyright notice and this permission notice shall be included in
1835
+ > all copies or substantial portions of the Software.
1836
+ >
1837
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1838
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1839
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1840
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1841
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1842
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1843
+ > THE SOFTWARE.
1844
+
1845
+ ---------------------------------------
1846
+
1847
+ ## lilconfig
1848
+ License: MIT
1849
+ By: antonk52
1850
+ Repository: https://github.com/antonk52/lilconfig
1851
+
1852
+ > MIT License
1853
+ >
1854
+ > Copyright (c) 2022 Anton Kastritskiy
1855
+ >
1856
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1857
+ > of this software and associated documentation files (the "Software"), to deal
1858
+ > in the Software without restriction, including without limitation the rights
1859
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1860
+ > copies of the Software, and to permit persons to whom the Software is
1861
+ > furnished to do so, subject to the following conditions:
1862
+ >
1863
+ > The above copyright notice and this permission notice shall be included in all
1864
+ > copies or substantial portions of the Software.
1865
+ >
1866
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1867
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1868
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1869
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1870
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1871
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1872
+ > SOFTWARE.
1873
+
1874
+ ---------------------------------------
1875
+
1876
+ ## loader-utils
1877
+ License: MIT
1878
+ By: Tobias Koppers @sokra
1879
+ Repository: https://github.com/webpack/loader-utils.git
1880
+
1881
+ > Copyright JS Foundation and other contributors
1882
+ >
1883
+ > Permission is hereby granted, free of charge, to any person obtaining
1884
+ > a copy of this software and associated documentation files (the
1885
+ > 'Software'), to deal in the Software without restriction, including
1886
+ > without limitation the rights to use, copy, modify, merge, publish,
1887
+ > distribute, sublicense, and/or sell copies of the Software, and to
1888
+ > permit persons to whom the Software is furnished to do so, subject to
1889
+ > the following conditions:
1890
+ >
1891
+ > The above copyright notice and this permission notice shall be
1892
+ > included in all copies or substantial portions of the Software.
1893
+ >
1894
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1895
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1896
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1897
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1898
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1899
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1900
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1901
+
1902
+ ---------------------------------------
1903
+
1904
+ ## lodash.camelcase
1905
+ License: MIT
1906
+ By: John-David Dalton, Blaine Bublitz, Mathias Bynens
1907
+ Repository: lodash/lodash
1908
+
1909
+ > Copyright jQuery Foundation and other contributors <https://jquery.org/>
1910
+ >
1911
+ > Based on Underscore.js, copyright Jeremy Ashkenas,
1912
+ > DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
1913
+ >
1914
+ > This software consists of voluntary contributions made by many
1915
+ > individuals. For exact contribution history, see the revision history
1916
+ > available at https://github.com/lodash/lodash
1917
+ >
1918
+ > The following license applies to all parts of this software except as
1919
+ > documented below:
1920
+ >
1921
+ > ====
1922
+ >
1923
+ > Permission is hereby granted, free of charge, to any person obtaining
1924
+ > a copy of this software and associated documentation files (the
1925
+ > "Software"), to deal in the Software without restriction, including
1926
+ > without limitation the rights to use, copy, modify, merge, publish,
1927
+ > distribute, sublicense, and/or sell copies of the Software, and to
1928
+ > permit persons to whom the Software is furnished to do so, subject to
1929
+ > the following conditions:
1930
+ >
1931
+ > The above copyright notice and this permission notice shall be
1932
+ > included in all copies or substantial portions of the Software.
1933
+ >
1934
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1935
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1936
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1937
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1938
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1939
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1940
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1941
+ >
1942
+ > ====
1943
+ >
1944
+ > Copyright and related rights for sample code are waived via CC0. Sample
1945
+ > code is defined as all source code displayed within the prose of the
1946
+ > documentation.
1947
+ >
1948
+ > CC0: http://creativecommons.org/publicdomain/zero/1.0/
1949
+ >
1950
+ > ====
1951
+ >
1952
+ > Files located in the node_modules and vendor directories are externally
1953
+ > maintained libraries used by this software which have their own
1954
+ > licenses; we recommend you read them, as their terms may differ from the
1955
+ > terms above.
1956
+
1957
+ ---------------------------------------
1958
+
1959
+ ## lru-cache
1960
+ License: ISC
1961
+ By: Isaac Z. Schlueter
1962
+ Repository: git://github.com/isaacs/node-lru-cache.git
1963
+
1964
+ > The ISC License
1965
+ >
1966
+ > Copyright (c) 2010-2023 Isaac Z. Schlueter and Contributors
1967
+ >
1968
+ > Permission to use, copy, modify, and/or distribute this software for any
1969
+ > purpose with or without fee is hereby granted, provided that the above
1970
+ > copyright notice and this permission notice appear in all copies.
1971
+ >
1972
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1973
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1974
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1975
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1976
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1977
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1978
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1979
+
1980
+ ---------------------------------------
1981
+
1982
+ ## magic-string
1983
+ License: MIT
1984
+ By: Rich Harris
1985
+ Repository: https://github.com/rich-harris/magic-string
1986
+
1987
+ > Copyright 2018 Rich Harris
1988
+ >
1989
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1990
+ >
1991
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1992
+ >
1993
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1994
+
1995
+ ---------------------------------------
1996
+
1997
+ ## merge2
1998
+ License: MIT
1999
+ Repository: git@github.com:teambition/merge2.git
2000
+
2001
+ > The MIT License (MIT)
2002
+ >
2003
+ > Copyright (c) 2014-2020 Teambition
2004
+ >
2005
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2006
+ > of this software and associated documentation files (the "Software"), to deal
2007
+ > in the Software without restriction, including without limitation the rights
2008
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2009
+ > copies of the Software, and to permit persons to whom the Software is
2010
+ > furnished to do so, subject to the following conditions:
2011
+ >
2012
+ > The above copyright notice and this permission notice shall be included in all
2013
+ > copies or substantial portions of the Software.
2014
+ >
2015
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2016
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2017
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2018
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2019
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2021
+ > SOFTWARE.
2022
+
2023
+ ---------------------------------------
2024
+
2025
+ ## micromatch
2026
+ License: MIT
2027
+ By: Jon Schlinkert, Amila Welihinda, Bogdan Chadkin, Brian Woodward, Devon Govett, Elan Shanker, Fabrício Matté, Martin Kolárik, Olsten Larck, Paul Miller, Tom Byrer, Tyler Akins, Peter Bright, Kuba Juszczyk
2028
+ Repository: micromatch/micromatch
2029
+
2030
+ > The MIT License (MIT)
2031
+ >
2032
+ > Copyright (c) 2014-present, Jon Schlinkert.
2033
+ >
2034
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2035
+ > of this software and associated documentation files (the "Software"), to deal
2036
+ > in the Software without restriction, including without limitation the rights
2037
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2038
+ > copies of the Software, and to permit persons to whom the Software is
2039
+ > furnished to do so, subject to the following conditions:
2040
+ >
2041
+ > The above copyright notice and this permission notice shall be included in
2042
+ > all copies or substantial portions of the Software.
2043
+ >
2044
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2045
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2046
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2047
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2048
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2049
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2050
+ > THE SOFTWARE.
2051
+
2052
+ ---------------------------------------
2053
+
2054
+ ## minimatch
2055
+ License: ISC
2056
+ By: Isaac Z. Schlueter
2057
+ Repository: git://github.com/isaacs/minimatch.git
2058
+
2059
+ > The ISC License
2060
+ >
2061
+ > Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors
2062
+ >
2063
+ > Permission to use, copy, modify, and/or distribute this software for any
2064
+ > purpose with or without fee is hereby granted, provided that the above
2065
+ > copyright notice and this permission notice appear in all copies.
2066
+ >
2067
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2068
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2069
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2070
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2071
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2072
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2073
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2074
+
2075
+ ---------------------------------------
2076
+
2077
+ ## minipass
2078
+ License: ISC
2079
+ By: Isaac Z. Schlueter
2080
+ Repository: https://github.com/isaacs/minipass
2081
+
2082
+ > The ISC License
2083
+ >
2084
+ > Copyright (c) 2017-2023 npm, Inc., Isaac Z. Schlueter, and Contributors
2085
+ >
2086
+ > Permission to use, copy, modify, and/or distribute this software for any
2087
+ > purpose with or without fee is hereby granted, provided that the above
2088
+ > copyright notice and this permission notice appear in all copies.
2089
+ >
2090
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2091
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2092
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2093
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2094
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2095
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2096
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2097
+
2098
+ ---------------------------------------
2099
+
2100
+ ## mlly
2101
+ License: MIT
2102
+ Repository: unjs/mlly
2103
+
2104
+ > MIT License
2105
+ >
2106
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
2107
+ >
2108
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2109
+ > of this software and associated documentation files (the "Software"), to deal
2110
+ > in the Software without restriction, including without limitation the rights
2111
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2112
+ > copies of the Software, and to permit persons to whom the Software is
2113
+ > furnished to do so, subject to the following conditions:
2114
+ >
2115
+ > The above copyright notice and this permission notice shall be included in all
2116
+ > copies or substantial portions of the Software.
2117
+ >
2118
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2119
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2120
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2121
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2122
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2123
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2124
+ > SOFTWARE.
2125
+
2126
+ ---------------------------------------
2127
+
2128
+ ## mrmime
2129
+ License: MIT
2130
+ By: Luke Edwards
2131
+ Repository: lukeed/mrmime
2132
+
2133
+ > The MIT License (MIT)
2134
+ >
2135
+ > Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (https://lukeed.com)
2136
+ >
2137
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2138
+ > of this software and associated documentation files (the "Software"), to deal
2139
+ > in the Software without restriction, including without limitation the rights
2140
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2141
+ > copies of the Software, and to permit persons to whom the Software is
2142
+ > furnished to do so, subject to the following conditions:
2143
+ >
2144
+ > The above copyright notice and this permission notice shall be included in
2145
+ > all copies or substantial portions of the Software.
2146
+ >
2147
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2148
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2149
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2150
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2151
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2152
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2153
+ > THE SOFTWARE.
2154
+
2155
+ ---------------------------------------
2156
+
2157
+ ## ms
2158
+ License: MIT
2159
+ Repository: zeit/ms
2160
+
2161
+ > The MIT License (MIT)
2162
+ >
2163
+ > Copyright (c) 2016 Zeit, Inc.
2164
+ >
2165
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2166
+ > of this software and associated documentation files (the "Software"), to deal
2167
+ > in the Software without restriction, including without limitation the rights
2168
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2169
+ > copies of the Software, and to permit persons to whom the Software is
2170
+ > furnished to do so, subject to the following conditions:
2171
+ >
2172
+ > The above copyright notice and this permission notice shall be included in all
2173
+ > copies or substantial portions of the Software.
2174
+ >
2175
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2176
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2177
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2178
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2179
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2180
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2181
+ > SOFTWARE.
2182
+
2183
+ ---------------------------------------
2184
+
2185
+ ## normalize-path
2186
+ License: MIT
2187
+ By: Jon Schlinkert, Blaine Bublitz
2188
+ Repository: jonschlinkert/normalize-path
2189
+
2190
+ > The MIT License (MIT)
2191
+ >
2192
+ > Copyright (c) 2014-2018, Jon Schlinkert.
2193
+ >
2194
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2195
+ > of this software and associated documentation files (the "Software"), to deal
2196
+ > in the Software without restriction, including without limitation the rights
2197
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2198
+ > copies of the Software, and to permit persons to whom the Software is
2199
+ > furnished to do so, subject to the following conditions:
2200
+ >
2201
+ > The above copyright notice and this permission notice shall be included in
2202
+ > all copies or substantial portions of the Software.
2203
+ >
2204
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2205
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2206
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2207
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2208
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2209
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2210
+ > THE SOFTWARE.
2211
+
2212
+ ---------------------------------------
2213
+
2214
+ ## object-assign
2215
+ License: MIT
2216
+ By: Sindre Sorhus
2217
+ Repository: sindresorhus/object-assign
2218
+
2219
+ > The MIT License (MIT)
2220
+ >
2221
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2222
+ >
2223
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2224
+ > of this software and associated documentation files (the "Software"), to deal
2225
+ > in the Software without restriction, including without limitation the rights
2226
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2227
+ > copies of the Software, and to permit persons to whom the Software is
2228
+ > furnished to do so, subject to the following conditions:
2229
+ >
2230
+ > The above copyright notice and this permission notice shall be included in
2231
+ > all copies or substantial portions of the Software.
2232
+ >
2233
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2234
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2235
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2236
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2237
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2238
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2239
+ > THE SOFTWARE.
2240
+
2241
+ ---------------------------------------
2242
+
2243
+ ## on-finished
2244
+ License: MIT
2245
+ By: Douglas Christopher Wilson, Jonathan Ong
2246
+ Repository: jshttp/on-finished
2247
+
2248
+ > (The MIT License)
2249
+ >
2250
+ > Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
2251
+ > Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>
2252
+ >
2253
+ > Permission is hereby granted, free of charge, to any person obtaining
2254
+ > a copy of this software and associated documentation files (the
2255
+ > 'Software'), to deal in the Software without restriction, including
2256
+ > without limitation the rights to use, copy, modify, merge, publish,
2257
+ > distribute, sublicense, and/or sell copies of the Software, and to
2258
+ > permit persons to whom the Software is furnished to do so, subject to
2259
+ > the following conditions:
2260
+ >
2261
+ > The above copyright notice and this permission notice shall be
2262
+ > included in all copies or substantial portions of the Software.
2263
+ >
2264
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2265
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2266
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2267
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2268
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2269
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2270
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2271
+
2272
+ ---------------------------------------
2273
+
2274
+ ## open
2275
+ License: MIT
2276
+ By: Sindre Sorhus
2277
+ Repository: sindresorhus/open
2278
+
2279
+ > MIT License
2280
+ >
2281
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2282
+ >
2283
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2284
+ >
2285
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2286
+ >
2287
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2288
+
2289
+ ---------------------------------------
2290
+
2291
+ ## parse5
2292
+ License: MIT
2293
+ By: Ivan Nikulin, https://github.com/inikulin/parse5/graphs/contributors
2294
+ Repository: git://github.com/inikulin/parse5.git
2295
+
2296
+ > Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)
2297
+ >
2298
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2299
+ > of this software and associated documentation files (the "Software"), to deal
2300
+ > in the Software without restriction, including without limitation the rights
2301
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2302
+ > copies of the Software, and to permit persons to whom the Software is
2303
+ > furnished to do so, subject to the following conditions:
2304
+ >
2305
+ > The above copyright notice and this permission notice shall be included in
2306
+ > all copies or substantial portions of the Software.
2307
+ >
2308
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2309
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2310
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2311
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2312
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2313
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2314
+ > THE SOFTWARE.
2315
+
2316
+ ---------------------------------------
2317
+
2318
+ ## parseurl
2319
+ License: MIT
2320
+ By: Douglas Christopher Wilson, Jonathan Ong
2321
+ Repository: pillarjs/parseurl
2322
+
2323
+ > (The MIT License)
2324
+ >
2325
+ > Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
2326
+ > Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
2327
+ >
2328
+ > Permission is hereby granted, free of charge, to any person obtaining
2329
+ > a copy of this software and associated documentation files (the
2330
+ > 'Software'), to deal in the Software without restriction, including
2331
+ > without limitation the rights to use, copy, modify, merge, publish,
2332
+ > distribute, sublicense, and/or sell copies of the Software, and to
2333
+ > permit persons to whom the Software is furnished to do so, subject to
2334
+ > the following conditions:
2335
+ >
2336
+ > The above copyright notice and this permission notice shall be
2337
+ > included in all copies or substantial portions of the Software.
2338
+ >
2339
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2340
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2341
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2342
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2343
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2344
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2345
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2346
+
2347
+ ---------------------------------------
2348
+
2349
+ ## path-key
2350
+ License: MIT
2351
+ By: Sindre Sorhus
2352
+ Repository: sindresorhus/path-key
2353
+
2354
+ > MIT License
2355
+ >
2356
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2357
+ >
2358
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2359
+ >
2360
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2361
+ >
2362
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2363
+
2364
+ ---------------------------------------
2365
+
2366
+ ## path-scurry
2367
+ License: BlueOak-1.0.0
2368
+ By: Isaac Z. Schlueter
2369
+ Repository: git+https://github.com/isaacs/path-scurry
2370
+
2371
+ > # Blue Oak Model License
2372
+ >
2373
+ > Version 1.0.0
2374
+ >
2375
+ > ## Purpose
2376
+ >
2377
+ > This license gives everyone as much permission to work with
2378
+ > this software as possible, while protecting contributors
2379
+ > from liability.
2380
+ >
2381
+ > ## Acceptance
2382
+ >
2383
+ > In order to receive this license, you must agree to its
2384
+ > rules. The rules of this license are both obligations
2385
+ > under that agreement and conditions to your license.
2386
+ > You must not do anything with this software that triggers
2387
+ > a rule that you cannot or will not follow.
2388
+ >
2389
+ > ## Copyright
2390
+ >
2391
+ > Each contributor licenses you to do everything with this
2392
+ > software that would otherwise infringe that contributor's
2393
+ > copyright in it.
2394
+ >
2395
+ > ## Notices
2396
+ >
2397
+ > You must ensure that everyone who gets a copy of
2398
+ > any part of this software from you, with or without
2399
+ > changes, also gets the text of this license or a link to
2400
+ > <https://blueoakcouncil.org/license/1.0.0>.
2401
+ >
2402
+ > ## Excuse
2403
+ >
2404
+ > If anyone notifies you in writing that you have not
2405
+ > complied with [Notices](#notices), you can keep your
2406
+ > license by taking all practical steps to comply within 30
2407
+ > days after the notice. If you do not do so, your license
2408
+ > ends immediately.
2409
+ >
2410
+ > ## Patent
2411
+ >
2412
+ > Each contributor licenses you to do everything with this
2413
+ > software that would otherwise infringe any patent claims
2414
+ > they can license or become able to license.
2415
+ >
2416
+ > ## Reliability
2417
+ >
2418
+ > No contributor can revoke this license.
2419
+ >
2420
+ > ## No Liability
2421
+ >
2422
+ > ***As far as the law allows, this software comes as is,
2423
+ > without any warranty or condition, and no contributor
2424
+ > will be liable to anyone for any damages related to this
2425
+ > software or this license, under any kind of legal claim.***
2426
+
2427
+ ---------------------------------------
2428
+
2429
+ ## periscopic
2430
+ License: MIT
2431
+ Repository: Rich-Harris/periscopic
2432
+
2433
+ > Copyright (c) 2019 Rich Harris
2434
+ >
2435
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2436
+ >
2437
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2438
+ >
2439
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2440
+
2441
+ ---------------------------------------
2442
+
2443
+ ## picocolors
2444
+ License: ISC
2445
+ By: Alexey Raspopov
2446
+ Repository: alexeyraspopov/picocolors
2447
+
2448
+ > ISC License
2449
+ >
2450
+ > Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov
2451
+ >
2452
+ > Permission to use, copy, modify, and/or distribute this software for any
2453
+ > purpose with or without fee is hereby granted, provided that the above
2454
+ > copyright notice and this permission notice appear in all copies.
2455
+ >
2456
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2457
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2458
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2459
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2460
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2461
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2462
+ > OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2463
+
2464
+ ---------------------------------------
2465
+
2466
+ ## picomatch
2467
+ License: MIT
2468
+ By: Jon Schlinkert
2469
+ Repository: micromatch/picomatch
2470
+
2471
+ > The MIT License (MIT)
2472
+ >
2473
+ > Copyright (c) 2017-present, Jon Schlinkert.
2474
+ >
2475
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2476
+ > of this software and associated documentation files (the "Software"), to deal
2477
+ > in the Software without restriction, including without limitation the rights
2478
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2479
+ > copies of the Software, and to permit persons to whom the Software is
2480
+ > furnished to do so, subject to the following conditions:
2481
+ >
2482
+ > The above copyright notice and this permission notice shall be included in
2483
+ > all copies or substantial portions of the Software.
2484
+ >
2485
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2486
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2487
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2488
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2489
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2490
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2491
+ > THE SOFTWARE.
2492
+
2493
+ ---------------------------------------
2494
+
2495
+ ## pify
2496
+ License: MIT
2497
+ By: Sindre Sorhus
2498
+ Repository: sindresorhus/pify
2499
+
2500
+ > The MIT License (MIT)
2501
+ >
2502
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2503
+ >
2504
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2505
+ > of this software and associated documentation files (the "Software"), to deal
2506
+ > in the Software without restriction, including without limitation the rights
2507
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2508
+ > copies of the Software, and to permit persons to whom the Software is
2509
+ > furnished to do so, subject to the following conditions:
2510
+ >
2511
+ > The above copyright notice and this permission notice shall be included in
2512
+ > all copies or substantial portions of the Software.
2513
+ >
2514
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2515
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2516
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2517
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2518
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2519
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2520
+ > THE SOFTWARE.
2521
+
2522
+ ---------------------------------------
2523
+
2524
+ ## postcss-import
2525
+ License: MIT
2526
+ By: Maxime Thirouin
2527
+ Repository: https://github.com/postcss/postcss-import.git
2528
+
2529
+ > The MIT License (MIT)
2530
+ >
2531
+ > Copyright (c) 2014 Maxime Thirouin, Jason Campbell & Kevin Mårtensson
2532
+ >
2533
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2534
+ > this software and associated documentation files (the "Software"), to deal in
2535
+ > the Software without restriction, including without limitation the rights to
2536
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2537
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2538
+ > subject to the following conditions:
2539
+ >
2540
+ > The above copyright notice and this permission notice shall be included in all
2541
+ > copies or substantial portions of the Software.
2542
+ >
2543
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2544
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2545
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2546
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2547
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2548
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2549
+
2550
+ ---------------------------------------
2551
+
2552
+ ## postcss-load-config
2553
+ License: MIT
2554
+ By: Michael Ciniawky, Ryan Dunckel, Mateusz Derks, Dalton Santos, Patrick Gilday, François Wouts
2555
+ Repository: postcss/postcss-load-config
2556
+
2557
+ > The MIT License (MIT)
2558
+ >
2559
+ > Copyright Michael Ciniawsky <michael.ciniawsky@gmail.com>
2560
+ >
2561
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2562
+ > this software and associated documentation files (the "Software"), to deal in
2563
+ > the Software without restriction, including without limitation the rights to
2564
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2565
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2566
+ > subject to the following conditions:
2567
+ >
2568
+ > The above copyright notice and this permission notice shall be included in all
2569
+ > copies or substantial portions of the Software.
2570
+ >
2571
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2572
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2573
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2574
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2575
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2576
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2577
+
2578
+ ---------------------------------------
2579
+
2580
+ ## postcss-modules
2581
+ License: MIT
2582
+ By: Alexander Madyankin
2583
+ Repository: https://github.com/css-modules/postcss-modules.git
2584
+
2585
+ > The MIT License (MIT)
2586
+ >
2587
+ > Copyright 2015-present Alexander Madyankin <alexander@madyankin.name>
2588
+ >
2589
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2590
+ > this software and associated documentation files (the "Software"), to deal in
2591
+ > the Software without restriction, including without limitation the rights to
2592
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2593
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2594
+ > subject to the following conditions:
2595
+ >
2596
+ > The above copyright notice and this permission notice shall be included in all
2597
+ > copies or substantial portions of the Software.
2598
+ >
2599
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2600
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2601
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2602
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2603
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2604
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2605
+
2606
+ ---------------------------------------
2607
+
2608
+ ## postcss-modules-extract-imports
2609
+ License: ISC
2610
+ By: Glen Maddern
2611
+ Repository: https://github.com/css-modules/postcss-modules-extract-imports.git
2612
+
2613
+ > Copyright 2015 Glen Maddern
2614
+ >
2615
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
2616
+ >
2617
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2618
+
2619
+ ---------------------------------------
2620
+
2621
+ ## postcss-modules-local-by-default
2622
+ License: MIT
2623
+ By: Mark Dalgleish
2624
+ Repository: https://github.com/css-modules/postcss-modules-local-by-default.git
2625
+
2626
+ > The MIT License (MIT)
2627
+ >
2628
+ > Copyright 2015 Mark Dalgleish <mark.john.dalgleish@gmail.com>
2629
+ >
2630
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2631
+ > this software and associated documentation files (the "Software"), to deal in
2632
+ > the Software without restriction, including without limitation the rights to
2633
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2634
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2635
+ > subject to the following conditions:
2636
+ >
2637
+ > The above copyright notice and this permission notice shall be included in all
2638
+ > copies or substantial portions of the Software.
2639
+ >
2640
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2641
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2642
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2643
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2644
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2645
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2646
+
2647
+ ---------------------------------------
2648
+
2649
+ ## postcss-modules-scope
2650
+ License: ISC
2651
+ By: Glen Maddern
2652
+ Repository: https://github.com/css-modules/postcss-modules-scope.git
2653
+
2654
+ > ISC License (ISC)
2655
+ >
2656
+ > Copyright (c) 2015, Glen Maddern
2657
+ >
2658
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
2659
+ >
2660
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2661
+
2662
+ ---------------------------------------
2663
+
2664
+ ## postcss-modules-values
2665
+ License: ISC
2666
+ By: Glen Maddern
2667
+ Repository: git+https://github.com/css-modules/postcss-modules-values.git
2668
+
2669
+ > ISC License (ISC)
2670
+ >
2671
+ > Copyright (c) 2015, Glen Maddern
2672
+ >
2673
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
2674
+ >
2675
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2676
+
2677
+ ---------------------------------------
2678
+
2679
+ ## postcss-selector-parser
2680
+ License: MIT
2681
+ By: Ben Briggs, Chris Eppstein
2682
+ Repository: postcss/postcss-selector-parser
2683
+
2684
+ > Copyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
2685
+ >
2686
+ > Permission is hereby granted, free of charge, to any person
2687
+ > obtaining a copy of this software and associated documentation
2688
+ > files (the "Software"), to deal in the Software without
2689
+ > restriction, including without limitation the rights to use,
2690
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
2691
+ > copies of the Software, and to permit persons to whom the
2692
+ > Software is furnished to do so, subject to the following
2693
+ > conditions:
2694
+ >
2695
+ > The above copyright notice and this permission notice shall be
2696
+ > included in all copies or substantial portions of the Software.
2697
+ >
2698
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2699
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2700
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2701
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2702
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2703
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2704
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2705
+ > OTHER DEALINGS IN THE SOFTWARE.
2706
+
2707
+ ---------------------------------------
2708
+
2709
+ ## postcss-value-parser
2710
+ License: MIT
2711
+ By: Bogdan Chadkin
2712
+ Repository: https://github.com/TrySound/postcss-value-parser.git
2713
+
2714
+ > Copyright (c) Bogdan Chadkin <trysound@yandex.ru>
2715
+ >
2716
+ > Permission is hereby granted, free of charge, to any person
2717
+ > obtaining a copy of this software and associated documentation
2718
+ > files (the "Software"), to deal in the Software without
2719
+ > restriction, including without limitation the rights to use,
2720
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
2721
+ > copies of the Software, and to permit persons to whom the
2722
+ > Software is furnished to do so, subject to the following
2723
+ > conditions:
2724
+ >
2725
+ > The above copyright notice and this permission notice shall be
2726
+ > included in all copies or substantial portions of the Software.
2727
+ >
2728
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2729
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2730
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2731
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2732
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2733
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2734
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2735
+ > OTHER DEALINGS IN THE SOFTWARE.
2736
+
2737
+ ---------------------------------------
2738
+
2739
+ ## queue-microtask
2740
+ License: MIT
2741
+ By: Feross Aboukhadijeh
2742
+ Repository: git://github.com/feross/queue-microtask.git
2743
+
2744
+ > The MIT License (MIT)
2745
+ >
2746
+ > Copyright (c) Feross Aboukhadijeh
2747
+ >
2748
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2749
+ > this software and associated documentation files (the "Software"), to deal in
2750
+ > the Software without restriction, including without limitation the rights to
2751
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2752
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2753
+ > subject to the following conditions:
2754
+ >
2755
+ > The above copyright notice and this permission notice shall be included in all
2756
+ > copies or substantial portions of the Software.
2757
+ >
2758
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2759
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2760
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2761
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2762
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2763
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2764
+
2765
+ ---------------------------------------
2766
+
2767
+ ## read-cache
2768
+ License: MIT
2769
+ By: Bogdan Chadkin
2770
+ Repository: git+https://github.com/TrySound/read-cache.git
2771
+
2772
+ > The MIT License (MIT)
2773
+ >
2774
+ > Copyright 2016 Bogdan Chadkin <trysound@yandex.ru>
2775
+ >
2776
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2777
+ > this software and associated documentation files (the "Software"), to deal in
2778
+ > the Software without restriction, including without limitation the rights to
2779
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2780
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2781
+ > subject to the following conditions:
2782
+ >
2783
+ > The above copyright notice and this permission notice shall be included in all
2784
+ > copies or substantial portions of the Software.
2785
+ >
2786
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2787
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2788
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2789
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2790
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2791
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2792
+
2793
+ ---------------------------------------
2794
+
2795
+ ## readdirp
2796
+ License: MIT
2797
+ By: Thorsten Lorenz, Paul Miller
2798
+ Repository: git://github.com/paulmillr/readdirp.git
2799
+
2800
+ > MIT License
2801
+ >
2802
+ > Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)
2803
+ >
2804
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2805
+ > of this software and associated documentation files (the "Software"), to deal
2806
+ > in the Software without restriction, including without limitation the rights
2807
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2808
+ > copies of the Software, and to permit persons to whom the Software is
2809
+ > furnished to do so, subject to the following conditions:
2810
+ >
2811
+ > The above copyright notice and this permission notice shall be included in all
2812
+ > copies or substantial portions of the Software.
2813
+ >
2814
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2815
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2816
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2817
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2818
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2819
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2820
+ > SOFTWARE.
2821
+
2822
+ ---------------------------------------
2823
+
2824
+ ## requires-port
2825
+ License: MIT
2826
+ By: Arnout Kazemier
2827
+ Repository: https://github.com/unshiftio/requires-port
2828
+
2829
+ > The MIT License (MIT)
2830
+ >
2831
+ > Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.
2832
+ >
2833
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2834
+ > of this software and associated documentation files (the "Software"), to deal
2835
+ > in the Software without restriction, including without limitation the rights
2836
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2837
+ > copies of the Software, and to permit persons to whom the Software is
2838
+ > furnished to do so, subject to the following conditions:
2839
+ >
2840
+ > The above copyright notice and this permission notice shall be included in all
2841
+ > copies or substantial portions of the Software.
2842
+ >
2843
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2844
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2845
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2846
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2847
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2848
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2849
+ > SOFTWARE.
2850
+
2851
+ ---------------------------------------
2852
+
2853
+ ## resolve.exports
2854
+ License: MIT
2855
+ By: Luke Edwards
2856
+ Repository: lukeed/resolve.exports
2857
+
2858
+ > The MIT License (MIT)
2859
+ >
2860
+ > Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
2861
+ >
2862
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2863
+ > of this software and associated documentation files (the "Software"), to deal
2864
+ > in the Software without restriction, including without limitation the rights
2865
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2866
+ > copies of the Software, and to permit persons to whom the Software is
2867
+ > furnished to do so, subject to the following conditions:
2868
+ >
2869
+ > The above copyright notice and this permission notice shall be included in
2870
+ > all copies or substantial portions of the Software.
2871
+ >
2872
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2873
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2874
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2875
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2876
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2877
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2878
+ > THE SOFTWARE.
2879
+
2880
+ ---------------------------------------
2881
+
2882
+ ## reusify
2883
+ License: MIT
2884
+ By: Matteo Collina
2885
+ Repository: git+https://github.com/mcollina/reusify.git
2886
+
2887
+ > The MIT License (MIT)
2888
+ >
2889
+ > Copyright (c) 2015 Matteo Collina
2890
+ >
2891
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2892
+ > of this software and associated documentation files (the "Software"), to deal
2893
+ > in the Software without restriction, including without limitation the rights
2894
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2895
+ > copies of the Software, and to permit persons to whom the Software is
2896
+ > furnished to do so, subject to the following conditions:
2897
+ >
2898
+ > The above copyright notice and this permission notice shall be included in all
2899
+ > copies or substantial portions of the Software.
2900
+ >
2901
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2902
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2903
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2904
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2905
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2906
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2907
+ > SOFTWARE.
2908
+
2909
+ ---------------------------------------
2910
+
2911
+ ## run-parallel
2912
+ License: MIT
2913
+ By: Feross Aboukhadijeh
2914
+ Repository: git://github.com/feross/run-parallel.git
2915
+
2916
+ > The MIT License (MIT)
2917
+ >
2918
+ > Copyright (c) Feross Aboukhadijeh
2919
+ >
2920
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2921
+ > this software and associated documentation files (the "Software"), to deal in
2922
+ > the Software without restriction, including without limitation the rights to
2923
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2924
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2925
+ > subject to the following conditions:
2926
+ >
2927
+ > The above copyright notice and this permission notice shall be included in all
2928
+ > copies or substantial portions of the Software.
2929
+ >
2930
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2931
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2932
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2933
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2934
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2935
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2936
+
2937
+ ---------------------------------------
2938
+
2939
+ ## shebang-command
2940
+ License: MIT
2941
+ By: Kevin Mårtensson
2942
+ Repository: kevva/shebang-command
2943
+
2944
+ > MIT License
2945
+ >
2946
+ > Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
2947
+ >
2948
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2949
+ >
2950
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2951
+ >
2952
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2953
+
2954
+ ---------------------------------------
2955
+
2956
+ ## shebang-regex
2957
+ License: MIT
2958
+ By: Sindre Sorhus
2959
+ Repository: sindresorhus/shebang-regex
2960
+
2961
+ > MIT License
2962
+ >
2963
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2964
+ >
2965
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2966
+ >
2967
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2968
+ >
2969
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2970
+
2971
+ ---------------------------------------
2972
+
2973
+ ## shell-quote
2974
+ License: MIT
2975
+ By: James Halliday
2976
+ Repository: http://github.com/ljharb/shell-quote.git
2977
+
2978
+ > The MIT License
2979
+ >
2980
+ > Copyright (c) 2013 James Halliday (mail@substack.net)
2981
+ >
2982
+ > Permission is hereby granted, free of charge,
2983
+ > to any person obtaining a copy of this software and
2984
+ > associated documentation files (the "Software"), to
2985
+ > deal in the Software without restriction, including
2986
+ > without limitation the rights to use, copy, modify,
2987
+ > merge, publish, distribute, sublicense, and/or sell
2988
+ > copies of the Software, and to permit persons to whom
2989
+ > the Software is furnished to do so,
2990
+ > subject to the following conditions:
2991
+ >
2992
+ > The above copyright notice and this permission notice
2993
+ > shall be included in all copies or substantial portions of the Software.
2994
+ >
2995
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2996
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2997
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2998
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
2999
+ > ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3000
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3001
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3002
+
3003
+ ---------------------------------------
3004
+
3005
+ ## sirv
3006
+ License: MIT
3007
+ By: Luke Edwards
3008
+ Repository: lukeed/sirv
3009
+
3010
+ ---------------------------------------
3011
+
3012
+ ## statuses
3013
+ License: MIT
3014
+ By: Douglas Christopher Wilson, Jonathan Ong
3015
+ Repository: jshttp/statuses
3016
+
3017
+ > The MIT License (MIT)
3018
+ >
3019
+ > Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
3020
+ > Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
3021
+ >
3022
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3023
+ > of this software and associated documentation files (the "Software"), to deal
3024
+ > in the Software without restriction, including without limitation the rights
3025
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3026
+ > copies of the Software, and to permit persons to whom the Software is
3027
+ > furnished to do so, subject to the following conditions:
3028
+ >
3029
+ > The above copyright notice and this permission notice shall be included in
3030
+ > all copies or substantial portions of the Software.
3031
+ >
3032
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3033
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3034
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3035
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3036
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3037
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3038
+ > THE SOFTWARE.
3039
+
3040
+ ---------------------------------------
3041
+
3042
+ ## string-hash
3043
+ License: CC0-1.0
3044
+ By: The Dark Sky Company
3045
+ Repository: git://github.com/darkskyapp/string-hash.git
3046
+
3047
+ ---------------------------------------
3048
+
3049
+ ## strip-ansi
3050
+ License: MIT
3051
+ By: Sindre Sorhus
3052
+ Repository: chalk/strip-ansi
3053
+
3054
+ > MIT License
3055
+ >
3056
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3057
+ >
3058
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3059
+ >
3060
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3061
+ >
3062
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3063
+
3064
+ ---------------------------------------
3065
+
3066
+ ## strip-literal
3067
+ License: MIT
3068
+ By: Anthony Fu
3069
+ Repository: git+https://github.com/antfu/strip-literal.git
3070
+
3071
+ > MIT License
3072
+ >
3073
+ > Copyright (c) 2022 Anthony Fu <https://github.com/antfu>
3074
+ >
3075
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3076
+ > of this software and associated documentation files (the "Software"), to deal
3077
+ > in the Software without restriction, including without limitation the rights
3078
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3079
+ > copies of the Software, and to permit persons to whom the Software is
3080
+ > furnished to do so, subject to the following conditions:
3081
+ >
3082
+ > The above copyright notice and this permission notice shall be included in all
3083
+ > copies or substantial portions of the Software.
3084
+ >
3085
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3086
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3087
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3088
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3089
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3090
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3091
+ > SOFTWARE.
3092
+
3093
+ ---------------------------------------
3094
+
3095
+ ## to-regex-range
3096
+ License: MIT
3097
+ By: Jon Schlinkert, Rouven Weßling
3098
+ Repository: micromatch/to-regex-range
3099
+
3100
+ > The MIT License (MIT)
3101
+ >
3102
+ > Copyright (c) 2015-present, Jon Schlinkert.
3103
+ >
3104
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3105
+ > of this software and associated documentation files (the "Software"), to deal
3106
+ > in the Software without restriction, including without limitation the rights
3107
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3108
+ > copies of the Software, and to permit persons to whom the Software is
3109
+ > furnished to do so, subject to the following conditions:
3110
+ >
3111
+ > The above copyright notice and this permission notice shall be included in
3112
+ > all copies or substantial portions of the Software.
3113
+ >
3114
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3115
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3116
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3117
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3118
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3119
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3120
+ > THE SOFTWARE.
3121
+
3122
+ ---------------------------------------
3123
+
3124
+ ## totalist
3125
+ License: MIT
3126
+ By: Luke Edwards
3127
+ Repository: lukeed/totalist
3128
+
3129
+ > The MIT License (MIT)
3130
+ >
3131
+ > Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
3132
+ >
3133
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3134
+ > of this software and associated documentation files (the "Software"), to deal
3135
+ > in the Software without restriction, including without limitation the rights
3136
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3137
+ > copies of the Software, and to permit persons to whom the Software is
3138
+ > furnished to do so, subject to the following conditions:
3139
+ >
3140
+ > The above copyright notice and this permission notice shall be included in
3141
+ > all copies or substantial portions of the Software.
3142
+ >
3143
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3144
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3145
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3146
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3147
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3148
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3149
+ > THE SOFTWARE.
3150
+
3151
+ ---------------------------------------
3152
+
3153
+ ## tsconfck
3154
+ License: MIT
3155
+ By: dominikg
3156
+ Repository: git+https://github.com/dominikg/tsconfck.git
3157
+
3158
+ > MIT License
3159
+ >
3160
+ > Copyright (c) 2021-present dominikg and [contributors](https://github.com/dominikg/tsconfck/graphs/contributors)
3161
+ >
3162
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3163
+ > of this software and associated documentation files (the "Software"), to deal
3164
+ > in the Software without restriction, including without limitation the rights
3165
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3166
+ > copies of the Software, and to permit persons to whom the Software is
3167
+ > furnished to do so, subject to the following conditions:
3168
+ >
3169
+ > The above copyright notice and this permission notice shall be included in all
3170
+ > copies or substantial portions of the Software.
3171
+ >
3172
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3173
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3174
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3175
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3176
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3177
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3178
+ > SOFTWARE.
3179
+ >
3180
+ > -- Licenses for 3rd-party code included in tsconfck --
3181
+ >
3182
+ > # strip-bom and strip-json-comments
3183
+ > MIT License
3184
+ >
3185
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3186
+ >
3187
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3188
+ > of this software and associated documentation files (the "Software"), to deal
3189
+ > in the Software without restriction, including without limitation the rights
3190
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3191
+ > copies of the Software, and to permit persons to whom the Software is
3192
+ > furnished to do so, subject to the following conditions:
3193
+ >
3194
+ > The above copyright notice and this permission notice shall be included in all
3195
+ > copies or substantial portions of the Software.
3196
+ >
3197
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3198
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3199
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3200
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3201
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3202
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3203
+ > SOFTWARE.
3204
+
3205
+ ---------------------------------------
3206
+
3207
+ ## ufo
3208
+ License: MIT
3209
+ Repository: unjs/ufo
3210
+
3211
+ > MIT License
3212
+ >
3213
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
3214
+ >
3215
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3216
+ > of this software and associated documentation files (the "Software"), to deal
3217
+ > in the Software without restriction, including without limitation the rights
3218
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3219
+ > copies of the Software, and to permit persons to whom the Software is
3220
+ > furnished to do so, subject to the following conditions:
3221
+ >
3222
+ > The above copyright notice and this permission notice shall be included in all
3223
+ > copies or substantial portions of the Software.
3224
+ >
3225
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3226
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3227
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3228
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3229
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3230
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3231
+ > SOFTWARE.
3232
+
3233
+ ---------------------------------------
3234
+
3235
+ ## unpipe
3236
+ License: MIT
3237
+ By: Douglas Christopher Wilson
3238
+ Repository: stream-utils/unpipe
3239
+
3240
+ > (The MIT License)
3241
+ >
3242
+ > Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
3243
+ >
3244
+ > Permission is hereby granted, free of charge, to any person obtaining
3245
+ > a copy of this software and associated documentation files (the
3246
+ > 'Software'), to deal in the Software without restriction, including
3247
+ > without limitation the rights to use, copy, modify, merge, publish,
3248
+ > distribute, sublicense, and/or sell copies of the Software, and to
3249
+ > permit persons to whom the Software is furnished to do so, subject to
3250
+ > the following conditions:
3251
+ >
3252
+ > The above copyright notice and this permission notice shall be
3253
+ > included in all copies or substantial portions of the Software.
3254
+ >
3255
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3256
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3257
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3258
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3259
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3260
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3261
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3262
+
3263
+ ---------------------------------------
3264
+
3265
+ ## util-deprecate
3266
+ License: MIT
3267
+ By: Nathan Rajlich
3268
+ Repository: git://github.com/TooTallNate/util-deprecate.git
3269
+
3270
+ > (The MIT License)
3271
+ >
3272
+ > Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
3273
+ >
3274
+ > Permission is hereby granted, free of charge, to any person
3275
+ > obtaining a copy of this software and associated documentation
3276
+ > files (the "Software"), to deal in the Software without
3277
+ > restriction, including without limitation the rights to use,
3278
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
3279
+ > copies of the Software, and to permit persons to whom the
3280
+ > Software is furnished to do so, subject to the following
3281
+ > conditions:
3282
+ >
3283
+ > The above copyright notice and this permission notice shall be
3284
+ > included in all copies or substantial portions of the Software.
3285
+ >
3286
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
3287
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
3288
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3289
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
3290
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
3291
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
3292
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
3293
+ > OTHER DEALINGS IN THE SOFTWARE.
3294
+
3295
+ ---------------------------------------
3296
+
3297
+ ## utils-merge
3298
+ License: MIT
3299
+ By: Jared Hanson
3300
+ Repository: git://github.com/jaredhanson/utils-merge.git
3301
+
3302
+ > The MIT License (MIT)
3303
+ >
3304
+ > Copyright (c) 2013-2017 Jared Hanson
3305
+ >
3306
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
3307
+ > this software and associated documentation files (the "Software"), to deal in
3308
+ > the Software without restriction, including without limitation the rights to
3309
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3310
+ > the Software, and to permit persons to whom the Software is furnished to do so,
3311
+ > subject to the following conditions:
3312
+ >
3313
+ > The above copyright notice and this permission notice shall be included in all
3314
+ > copies or substantial portions of the Software.
3315
+ >
3316
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3317
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3318
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3319
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3320
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3321
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3322
+
3323
+ ---------------------------------------
3324
+
3325
+ ## vary
3326
+ License: MIT
3327
+ By: Douglas Christopher Wilson
3328
+ Repository: jshttp/vary
3329
+
3330
+ > (The MIT License)
3331
+ >
3332
+ > Copyright (c) 2014-2017 Douglas Christopher Wilson
3333
+ >
3334
+ > Permission is hereby granted, free of charge, to any person obtaining
3335
+ > a copy of this software and associated documentation files (the
3336
+ > 'Software'), to deal in the Software without restriction, including
3337
+ > without limitation the rights to use, copy, modify, merge, publish,
3338
+ > distribute, sublicense, and/or sell copies of the Software, and to
3339
+ > permit persons to whom the Software is furnished to do so, subject to
3340
+ > the following conditions:
3341
+ >
3342
+ > The above copyright notice and this permission notice shall be
3343
+ > included in all copies or substantial portions of the Software.
3344
+ >
3345
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3346
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3347
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3348
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3349
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3350
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3351
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3352
+
3353
+ ---------------------------------------
3354
+
3355
+ ## which
3356
+ License: ISC
3357
+ By: Isaac Z. Schlueter
3358
+ Repository: git://github.com/isaacs/node-which.git
3359
+
3360
+ > The ISC License
3361
+ >
3362
+ > Copyright (c) Isaac Z. Schlueter and Contributors
3363
+ >
3364
+ > Permission to use, copy, modify, and/or distribute this software for any
3365
+ > purpose with or without fee is hereby granted, provided that the above
3366
+ > copyright notice and this permission notice appear in all copies.
3367
+ >
3368
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3369
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3370
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3371
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3372
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3373
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3374
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3375
+
3376
+ ---------------------------------------
3377
+
3378
+ ## ws
3379
+ License: MIT
3380
+ By: Einar Otto Stangvik
3381
+ Repository: git+https://github.com/websockets/ws.git
3382
+
3383
+ > Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
3384
+ > Copyright (c) 2013 Arnout Kazemier and contributors
3385
+ > Copyright (c) 2016 Luigi Pinca and contributors
3386
+ >
3387
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
3388
+ > this software and associated documentation files (the "Software"), to deal in
3389
+ > the Software without restriction, including without limitation the rights to
3390
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3391
+ > the Software, and to permit persons to whom the Software is furnished to do so,
3392
+ > subject to the following conditions:
3393
+ >
3394
+ > The above copyright notice and this permission notice shall be included in all
3395
+ > copies or substantial portions of the Software.
3396
+ >
3397
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3398
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3399
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3400
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3401
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3402
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3403
+
3404
+ ---------------------------------------
3405
+
3406
+ ## yaml
3407
+ License: ISC
3408
+ By: Eemeli Aro
3409
+ Repository: github:eemeli/yaml
3410
+
3411
+ > Copyright Eemeli Aro <eemeli@gmail.com>
3412
+ >
3413
+ > Permission to use, copy, modify, and/or distribute this software for any purpose
3414
+ > with or without fee is hereby granted, provided that the above copyright notice
3415
+ > and this permission notice appear in all copies.
3416
+ >
3417
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
3418
+ > REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
3419
+ > FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
3420
+ > INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
3421
+ > OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
3422
+ > TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
3423
+ > THIS SOFTWARE.