nitro-nightly 3.0.1-alpha.2 → 3.0.260415-beta

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 (297) hide show
  1. package/LICENSE +6 -0
  2. package/README.md +2 -2
  3. package/dist/THIRD-PARTY-LICENSES.md +1646 -0
  4. package/dist/_build/common.mjs +7259 -3815
  5. package/dist/_build/rolldown.mjs +32 -42
  6. package/dist/_build/rollup.mjs +28 -48
  7. package/dist/_build/vite.build.mjs +10 -10
  8. package/dist/_chunks/nitro.mjs +102 -327
  9. package/dist/_chunks/nitro2.mjs +8 -9
  10. package/dist/_chunks/nitro3.mjs +136 -0
  11. package/dist/_chunks/nitro4.mjs +127 -0
  12. package/dist/_chunks/utils.mjs +40 -29
  13. package/dist/_common.mjs +13 -25
  14. package/dist/_dev.d.mts +0 -3
  15. package/dist/{_chunks/dev.mjs → _dev.mjs} +132 -330
  16. package/dist/_libs/_.mjs +2 -0
  17. package/dist/_libs/_2.mjs +2 -0
  18. package/dist/_libs/_3.mjs +2 -0
  19. package/dist/_libs/_4.mjs +2 -0
  20. package/dist/_libs/_5.mjs +2 -0
  21. package/dist/_libs/_6.mjs +2 -0
  22. package/dist/_libs/_7.mjs +2 -0
  23. package/dist/_libs/c12+rc9.mjs +814 -0
  24. package/dist/_libs/{c12+giget+readdirp+chokidar.d.mts → c12+readdirp+chokidar.d.mts} +49 -40
  25. package/dist/_libs/citty.mjs +142 -41
  26. package/dist/_libs/commondir+is-reference.mjs +60 -56
  27. package/dist/_libs/compatx.d.mts +0 -2
  28. package/dist/_libs/compatx.mjs +1 -4
  29. package/dist/_libs/esbuild.d.mts +0 -1
  30. package/dist/_libs/escape-string-regexp.mjs +1 -4
  31. package/dist/_libs/{pluginutils+plugin-commonjs.d.mts → estree+pluginutils.d.mts} +0 -5
  32. package/dist/_libs/estree-walker.mjs +4 -92
  33. package/dist/_libs/exsolve.d.mts +1 -0
  34. package/dist/_libs/hasown+resolve+deepmerge.mjs +160 -246
  35. package/dist/_libs/httpxy.d.mts +20 -13
  36. package/dist/_libs/httpxy.mjs +519 -95
  37. package/dist/_libs/js-tokens.d.mts +1 -0
  38. package/dist/_libs/klona.mjs +1 -4
  39. package/dist/_libs/magic-string.d.mts +0 -2
  40. package/dist/_libs/mlly.d.mts +0 -2
  41. package/dist/_libs/nypm+tinyexec.mjs +822 -0
  42. package/dist/_libs/perfect-debounce.mjs +68 -0
  43. package/dist/_libs/pkg-types.d.mts +0 -3
  44. package/dist/_libs/plugin-alias.mjs +1 -5
  45. package/dist/_libs/plugin-inject.mjs +1 -7
  46. package/dist/_libs/plugin-json.mjs +1 -5
  47. package/dist/_libs/pluginutils.mjs +3 -35
  48. package/dist/_libs/readdirp+chokidar.mjs +187 -365
  49. package/dist/_libs/remapping.mjs +1 -5
  50. package/dist/_libs/resolve-uri+gen-mapping.mjs +15 -53
  51. package/dist/_libs/rou3.d.mts +1 -4
  52. package/dist/_libs/rou3.mjs +223 -78
  53. package/dist/_libs/std-env.d.mts +8 -2
  54. package/dist/_libs/strip-literal.d.mts +1 -0
  55. package/dist/_libs/tsconfck.mjs +21 -334
  56. package/dist/_libs/ultrahtml.mjs +3 -16
  57. package/dist/_libs/unimport+unplugin.mjs +244 -388
  58. package/dist/_libs/unplugin+unimport.d.mts +5 -15
  59. package/dist/_libs/unwasm.d.mts +0 -3
  60. package/dist/_presets.mjs +575 -488
  61. package/dist/builder.d.mts +5 -25
  62. package/dist/builder.mjs +3 -8
  63. package/dist/cli/_chunks/build.mjs +22 -25
  64. package/dist/cli/_chunks/common.mjs +1 -4
  65. package/dist/cli/_chunks/deploy.mjs +37 -0
  66. package/dist/cli/_chunks/dev.mjs +6 -11
  67. package/dist/cli/_chunks/docs.mjs +28 -0
  68. package/dist/cli/_chunks/list.mjs +4 -8
  69. package/dist/cli/_chunks/prepare.mjs +2 -6
  70. package/dist/cli/_chunks/preview.mjs +48 -0
  71. package/dist/cli/_chunks/run.mjs +7 -11
  72. package/dist/cli/_chunks/task.mjs +1 -5
  73. package/dist/cli/index.mjs +5 -6
  74. package/dist/docs/0.docs/0.index/index.md +56 -0
  75. package/dist/docs/0.docs/1.quick-start.md +110 -0
  76. package/dist/docs/0.docs/10.lifecycle.md +204 -0
  77. package/dist/docs/0.docs/11.openapi.md +291 -0
  78. package/dist/docs/0.docs/12.plugins.md +164 -0
  79. package/dist/docs/0.docs/13.tasks.md +277 -0
  80. package/dist/docs/0.docs/14.websocket.md +386 -0
  81. package/dist/docs/0.docs/15.migration.md +213 -0
  82. package/dist/docs/0.docs/16.nightly.md +31 -0
  83. package/dist/docs/0.docs/2.renderer.md +322 -0
  84. package/dist/docs/0.docs/3.routing.md +711 -0
  85. package/dist/docs/0.docs/4.server-entry.md +239 -0
  86. package/dist/docs/0.docs/5.cache.md +408 -0
  87. package/dist/docs/0.docs/6.storage.md +261 -0
  88. package/dist/docs/0.docs/7.assets.md +166 -0
  89. package/dist/docs/0.docs/8.configuration.md +256 -0
  90. package/dist/docs/0.docs/9.database.md +185 -0
  91. package/dist/docs/1.deploy/0.index/index.md +64 -0
  92. package/dist/docs/1.deploy/1.runtimes/0.node.md +63 -0
  93. package/dist/docs/1.deploy/1.runtimes/1.bun.md +15 -0
  94. package/dist/docs/1.deploy/1.runtimes/2.deno.md +19 -0
  95. package/dist/docs/1.deploy/2.providers/0.alwaysdata.md +50 -0
  96. package/dist/docs/1.deploy/2.providers/1.aws.md +47 -0
  97. package/dist/docs/1.deploy/2.providers/10.flightcontrol.md +67 -0
  98. package/dist/docs/1.deploy/2.providers/11.genezio.md +67 -0
  99. package/dist/docs/1.deploy/2.providers/12.github-pages.md +68 -0
  100. package/dist/docs/1.deploy/2.providers/13.gitlab-pages.md +37 -0
  101. package/dist/docs/1.deploy/2.providers/14.heroku.md +84 -0
  102. package/dist/docs/1.deploy/2.providers/15.iis.md +38 -0
  103. package/dist/docs/1.deploy/2.providers/16.koyeb.md +109 -0
  104. package/dist/docs/1.deploy/2.providers/17.netlify.md +47 -0
  105. package/dist/docs/1.deploy/2.providers/18.platform-sh.md +37 -0
  106. package/dist/docs/1.deploy/2.providers/19.render.md +37 -0
  107. package/dist/docs/1.deploy/2.providers/2.aws-amplify.md +81 -0
  108. package/dist/docs/1.deploy/2.providers/20.stormkit.md +24 -0
  109. package/dist/docs/1.deploy/2.providers/21.vercel.md +270 -0
  110. package/dist/docs/1.deploy/2.providers/22.zeabur.md +19 -0
  111. package/dist/docs/1.deploy/2.providers/23.zephyr.md +99 -0
  112. package/dist/docs/1.deploy/2.providers/24.zerops.md +102 -0
  113. package/dist/docs/1.deploy/2.providers/3.azure.md +72 -0
  114. package/dist/docs/1.deploy/2.providers/4.cleavr.md +33 -0
  115. package/dist/docs/1.deploy/2.providers/5.cloudflare.md +369 -0
  116. package/dist/docs/1.deploy/2.providers/6.deno-deploy.md +66 -0
  117. package/dist/docs/1.deploy/2.providers/7.digitalocean.md +46 -0
  118. package/dist/docs/1.deploy/2.providers/8.edgeone.md +20 -0
  119. package/dist/docs/1.deploy/2.providers/9.firebase.md +32 -0
  120. package/dist/docs/2.config/0.index/index.md +1221 -0
  121. package/dist/docs/3.examples/0.index/index.md +3 -0
  122. package/dist/docs/3.examples/1.api-routes.md +145 -0
  123. package/dist/docs/3.examples/10.hono.md +74 -0
  124. package/dist/docs/3.examples/11.import-alias.md +97 -0
  125. package/dist/docs/3.examples/12.middleware.md +91 -0
  126. package/dist/docs/3.examples/13.mono-jsx.md +68 -0
  127. package/dist/docs/3.examples/14.nano-jsx.md +70 -0
  128. package/dist/docs/3.examples/15.plugins.md +91 -0
  129. package/dist/docs/3.examples/16.renderer.md +113 -0
  130. package/dist/docs/3.examples/17.runtime-config.md +97 -0
  131. package/dist/docs/3.examples/18.server-fetch.md +87 -0
  132. package/dist/docs/3.examples/19.shiki.md +198 -0
  133. package/dist/docs/3.examples/2.auto-imports.md +92 -0
  134. package/dist/docs/3.examples/20.virtual-routes.md +74 -0
  135. package/dist/docs/3.examples/21.vite-nitro-plugin.md +79 -0
  136. package/dist/docs/3.examples/22.vite-rsc.md +1041 -0
  137. package/dist/docs/3.examples/23.vite-ssr-html.md +217 -0
  138. package/dist/docs/3.examples/24.vite-ssr-preact.md +247 -0
  139. package/dist/docs/3.examples/25.vite-ssr-react.md +226 -0
  140. package/dist/docs/3.examples/26.vite-ssr-solid.md +256 -0
  141. package/dist/docs/3.examples/27.vite-ssr-tsr-react.md +442 -0
  142. package/dist/docs/3.examples/28.vite-ssr-tss-react.md +444 -0
  143. package/dist/docs/3.examples/29.vite-ssr-vue-router.md +617 -0
  144. package/dist/docs/3.examples/3.cached-handler.md +81 -0
  145. package/dist/docs/3.examples/30.vite-trpc.md +335 -0
  146. package/dist/docs/3.examples/31.websocket.md +282 -0
  147. package/dist/docs/3.examples/4.custom-error-handler.md +98 -0
  148. package/dist/docs/3.examples/5.database.md +157 -0
  149. package/dist/docs/3.examples/6.elysia.md +70 -0
  150. package/dist/docs/3.examples/7.express.md +78 -0
  151. package/dist/docs/3.examples/8.fastify.md +79 -0
  152. package/dist/docs/3.examples/9.hello-world.md +68 -0
  153. package/dist/docs/README.md +86 -0
  154. package/dist/docs/index.md +121 -0
  155. package/dist/node_modules/@poppinss/dumper/build/formatters/html/main.js +8 -0
  156. package/dist/node_modules/@poppinss/dumper/package.json +1 -1
  157. package/dist/node_modules/@speed-highlight/core/dist/index.js +4 -4
  158. package/dist/node_modules/@speed-highlight/core/dist/terminal.js +2 -2
  159. package/dist/node_modules/@speed-highlight/core/package.json +1 -1
  160. package/dist/node_modules/cookie-es/dist/index.mjs +299 -250
  161. package/dist/node_modules/cookie-es/package.json +26 -23
  162. package/dist/node_modules/croner/dist/croner.js +1 -1
  163. package/dist/node_modules/croner/package.json +11 -1
  164. package/dist/node_modules/defu/dist/defu.mjs +2 -2
  165. package/dist/node_modules/defu/package.json +33 -28
  166. package/dist/node_modules/rendu/dist/_chunks/libs/cookie-es.mjs +151 -0
  167. package/dist/node_modules/rendu/dist/index.mjs +5 -112
  168. package/dist/node_modules/rendu/package.json +25 -24
  169. package/dist/node_modules/youch/build/helpers-B9BQYaS6.js +23 -0
  170. package/dist/node_modules/youch/build/index.js +204 -351
  171. package/dist/node_modules/youch/build/public/error_info/script.js +1 -1
  172. package/dist/node_modules/youch/build/public_dir-C5bujZKB.js +25 -0
  173. package/dist/node_modules/youch/build/src/templates/error_cause/main.js +44 -0
  174. package/dist/node_modules/youch/build/src/templates/error_info/main.js +72 -0
  175. package/dist/node_modules/youch/build/src/templates/error_metadata/main.js +65 -0
  176. package/dist/node_modules/youch/build/src/templates/error_stack/main.js +152 -0
  177. package/dist/node_modules/youch/build/src/templates/error_stack_source/main.js +46 -0
  178. package/dist/node_modules/youch/build/src/templates/header/main.js +24 -0
  179. package/dist/node_modules/youch/build/src/templates/layout/main.js +27 -0
  180. package/dist/node_modules/youch/package.json +35 -32
  181. package/dist/presets/_nitro/runtime/nitro-dev.mjs +12 -57
  182. package/dist/presets/_nitro/runtime/nitro-prerenderer.mjs +1 -0
  183. package/dist/presets/_nitro/runtime/service-worker.mjs +1 -2
  184. package/dist/presets/aws-lambda/runtime/_utils.mjs +6 -6
  185. package/dist/presets/aws-lambda/runtime/aws-lambda-streaming.mjs +3 -1
  186. package/dist/presets/azure/runtime/_utils.mjs +5 -5
  187. package/dist/presets/azure/runtime/azure-swa.mjs +5 -5
  188. package/dist/presets/bun/runtime/bun.mjs +9 -6
  189. package/dist/presets/cloudflare/runtime/_module-handler.mjs +1 -1
  190. package/dist/presets/cloudflare/runtime/cloudflare-durable.mjs +4 -4
  191. package/dist/presets/cloudflare/runtime/cloudflare-module.mjs +3 -3
  192. package/dist/presets/cloudflare/runtime/cloudflare-pages.mjs +2 -2
  193. package/dist/presets/cloudflare/runtime/plugin.dev.mjs +10 -21
  194. package/dist/presets/deno/runtime/deno-deploy.mjs +4 -4
  195. package/dist/presets/deno/runtime/deno-server.mjs +9 -6
  196. package/dist/presets/edgeone/runtime/edgeone.mjs +10 -0
  197. package/dist/presets/netlify/runtime/netlify-edge.mjs +2 -3
  198. package/dist/presets/netlify/runtime/netlify.mjs +1 -1
  199. package/dist/presets/node/runtime/node-cluster.mjs +5 -4
  200. package/dist/presets/node/runtime/node-middleware.mjs +1 -1
  201. package/dist/presets/node/runtime/node-server.mjs +8 -5
  202. package/dist/presets/stormkit/runtime/stormkit.mjs +1 -2
  203. package/dist/presets/vercel/runtime/cron-handler.mjs +25 -0
  204. package/dist/presets/vercel/runtime/queue-handler.mjs +21 -0
  205. package/dist/presets/vercel/runtime/vercel.node.mjs +3 -3
  206. package/dist/presets/vercel/runtime/vercel.web.mjs +3 -5
  207. package/dist/presets/winterjs/runtime/winterjs.mjs +10 -10
  208. package/dist/presets/zephyr/runtime/server.mjs +3 -0
  209. package/dist/runtime/internal/app.mjs +12 -11
  210. package/dist/runtime/internal/cache.d.mts +0 -4
  211. package/dist/runtime/internal/cache.mjs +32 -256
  212. package/dist/runtime/internal/context.d.mts +3 -1
  213. package/dist/runtime/internal/context.mjs +1 -9
  214. package/dist/runtime/internal/error/dev.d.mts +5 -4
  215. package/dist/runtime/internal/error/dev.mjs +47 -49
  216. package/dist/runtime/internal/error/hooks.d.mts +1 -1
  217. package/dist/runtime/internal/error/prod.d.mts +2 -5
  218. package/dist/runtime/internal/error/prod.mjs +19 -33
  219. package/dist/runtime/internal/error/utils.d.mts +4 -4
  220. package/dist/runtime/internal/meta.d.mts +1 -1
  221. package/dist/runtime/internal/plugin.d.mts +2 -2
  222. package/dist/runtime/internal/route-rules.d.mts +11 -4
  223. package/dist/runtime/internal/route-rules.mjs +15 -5
  224. package/dist/runtime/internal/routes/dev-tasks.d.mts +3 -2
  225. package/dist/runtime/internal/routes/dev-tasks.mjs +15 -10
  226. package/dist/runtime/internal/routes/openapi.mjs +2 -2
  227. package/dist/runtime/internal/routes/renderer-template.d.mts +1 -1
  228. package/dist/runtime/internal/routes/renderer-template.dev.d.mts +2 -1
  229. package/dist/runtime/internal/routes/scalar.mjs +3 -3
  230. package/dist/runtime/internal/routes/swagger.mjs +7 -4
  231. package/dist/runtime/internal/runtime-config.d.mts +1 -1
  232. package/dist/runtime/internal/runtime-config.mjs +2 -2
  233. package/dist/runtime/internal/static.mjs +5 -4
  234. package/dist/runtime/internal/task.d.mts +3 -1
  235. package/dist/runtime/internal/task.mjs +7 -7
  236. package/dist/runtime/internal/vite/dev-entry.mjs +6 -3
  237. package/dist/runtime/internal/vite/dev-worker.mjs +264 -0
  238. package/dist/runtime/meta.d.mts +1 -0
  239. package/dist/runtime/meta.mjs +2 -0
  240. package/dist/runtime/nitro.d.mts +2 -0
  241. package/dist/runtime/nitro.mjs +4 -2
  242. package/dist/runtime/virtual/error-handler.mjs +1 -1
  243. package/dist/runtime/virtual/renderer-template.mjs +1 -1
  244. package/dist/runtime/virtual/server-assets.d.mts +2 -1
  245. package/dist/runtime/virtual/tracing.d.mts +5 -0
  246. package/dist/runtime/virtual/tracing.mjs +1 -0
  247. package/dist/runtime/vite.d.mts +1 -1
  248. package/dist/types/index.d.mts +215 -195
  249. package/dist/types/index.mjs +1 -11
  250. package/dist/vite.d.mts +3 -8
  251. package/dist/vite.mjs +285 -253
  252. package/lib/tsconfig.json +3 -5
  253. package/package.json +97 -80
  254. package/dist/_libs/confbox.mjs +0 -2509
  255. package/dist/_libs/nypm+giget+tinyexec.mjs +0 -3603
  256. package/dist/_libs/rc9+c12+dotenv.mjs +0 -972
  257. package/dist/node_modules/hookable/dist/index.mjs +0 -266
  258. package/dist/node_modules/hookable/package.json +0 -52
  259. package/dist/node_modules/youch/build/chunk-4L7RY2JA.js +0 -42
  260. package/dist/node_modules/youch/build/chunk-7QV3D5YX.js +0 -83
  261. package/dist/node_modules/youch/build/chunk-AUGPHE32.js +0 -39
  262. package/dist/node_modules/youch/build/chunk-CM7DWJNZ.js +0 -44
  263. package/dist/node_modules/youch/build/chunk-EJH674NB.js +0 -223
  264. package/dist/node_modules/youch/build/chunk-OIJ3WD7L.js +0 -81
  265. package/dist/node_modules/youch/build/chunk-P36L72PL.js +0 -87
  266. package/dist/node_modules/youch/build/chunk-PE3GG3TN.js +0 -65
  267. package/dist/node_modules/youch/build/chunk-X53OIOJH.js +0 -70
  268. package/dist/presets/_nitro/runtime/nitro-dev.d.mts +0 -2
  269. package/dist/presets/_nitro/runtime/nitro-prerenderer.d.mts +0 -3
  270. package/dist/presets/_nitro/runtime/service-worker.d.mts +0 -2
  271. package/dist/presets/aws-amplify/runtime/aws-amplify.d.mts +0 -2
  272. package/dist/presets/aws-lambda/runtime/_utils.d.mts +0 -8
  273. package/dist/presets/aws-lambda/runtime/aws-lambda-streaming.d.mts +0 -2
  274. package/dist/presets/aws-lambda/runtime/aws-lambda.d.mts +0 -3
  275. package/dist/presets/azure/runtime/_utils.d.mts +0 -2
  276. package/dist/presets/azure/runtime/azure-swa.d.mts +0 -5
  277. package/dist/presets/bun/runtime/bun.d.mts +0 -3
  278. package/dist/presets/cloudflare/runtime/_module-handler.d.mts +0 -16
  279. package/dist/presets/cloudflare/runtime/cloudflare-durable.d.mts +0 -11
  280. package/dist/presets/cloudflare/runtime/cloudflare-module.d.mts +0 -3
  281. package/dist/presets/cloudflare/runtime/cloudflare-pages.d.mts +0 -20
  282. package/dist/presets/cloudflare/runtime/plugin.dev.d.mts +0 -3
  283. package/dist/presets/deno/runtime/deno-deploy.d.mts +0 -5
  284. package/dist/presets/deno/runtime/deno-server.d.mts +0 -3
  285. package/dist/presets/netlify/runtime/netlify-edge.d.mts +0 -3
  286. package/dist/presets/netlify/runtime/netlify.d.mts +0 -4
  287. package/dist/presets/node/runtime/node-cluster.d.mts +0 -3
  288. package/dist/presets/node/runtime/node-middleware.d.mts +0 -3
  289. package/dist/presets/node/runtime/node-server.d.mts +0 -3
  290. package/dist/presets/standard/runtime/server.d.mts +0 -3
  291. package/dist/presets/stormkit/runtime/stormkit.d.mts +0 -21
  292. package/dist/presets/vercel/runtime/isr.d.mts +0 -2
  293. package/dist/presets/vercel/runtime/vercel.node.d.mts +0 -3
  294. package/dist/presets/vercel/runtime/vercel.web.d.mts +0 -8
  295. package/dist/presets/winterjs/runtime/winterjs.d.mts +0 -2
  296. package/dist/presets/zeabur/runtime/zeabur.d.mts +0 -3
  297. package/dist/runtime/internal/vite/node-runner.mjs +0 -359
@@ -0,0 +1,1646 @@
1
+ # Licenses of Bundled Dependencies
2
+
3
+ The published artifact additionally contains code with the following licenses:
4
+ MIT
5
+
6
+ # Bundled Dependencies
7
+
8
+ ## @hiogawa/vite-plugin-fullstack
9
+
10
+ License: MIT
11
+ Repository: https://github.com/hi-ogawa/vite-plugin-fullstack
12
+
13
+ > MIT License
14
+ >
15
+ > Copyright (c) 2024 Hiroshi Ogawa
16
+ >
17
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
18
+ > of this software and associated documentation files (the "Software"), to deal
19
+ > in the Software without restriction, including without limitation the rights
20
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
21
+ > copies of the Software, and to permit persons to whom the Software is
22
+ > furnished to do so, subject to the following conditions:
23
+ >
24
+ > The above copyright notice and this permission notice shall be included in all
25
+ > copies or substantial portions of the Software.
26
+ >
27
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
30
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33
+ > SOFTWARE.
34
+
35
+ ---------------------------------------
36
+
37
+ ## @jridgewell/gen-mapping, @jridgewell/remapping, @jridgewell/sourcemap-codec, @jridgewell/trace-mapping
38
+
39
+ License: MIT
40
+ By: Justin Ridgewell
41
+ Repositories: https://github.com/jridgewell/sourcemaps, https://github.com/jridgewell/sourcemaps, https://github.com/jridgewell/sourcemaps, https://github.com/jridgewell/sourcemaps
42
+
43
+ > Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
44
+ >
45
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
46
+ > of this software and associated documentation files (the "Software"), to deal
47
+ > in the Software without restriction, including without limitation the rights
48
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
49
+ > copies of the Software, and to permit persons to whom the Software is
50
+ > furnished to do so, subject to the following conditions:
51
+ >
52
+ > The above copyright notice and this permission notice shall be included in
53
+ > all copies or substantial portions of the Software.
54
+ >
55
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
56
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
57
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
58
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
59
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
60
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
61
+ > SOFTWARE.
62
+
63
+ ---------------------------------------
64
+
65
+ ## @jridgewell/resolve-uri
66
+
67
+ License: MIT
68
+ By: Justin Ridgewell
69
+ Repository: https://github.com/jridgewell/resolve-uri
70
+
71
+ > Copyright 2019 Justin Ridgewell <jridgewell@google.com>
72
+ >
73
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
74
+ > of this software and associated documentation files (the "Software"), to deal
75
+ > in the Software without restriction, including without limitation the rights
76
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
77
+ > copies of the Software, and to permit persons to whom the Software is
78
+ > furnished to do so, subject to the following conditions:
79
+ >
80
+ > The above copyright notice and this permission notice shall be included in
81
+ > all copies or substantial portions of the Software.
82
+ >
83
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
84
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
85
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
86
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
87
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
88
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
89
+ > SOFTWARE.
90
+
91
+ ---------------------------------------
92
+
93
+ ## @rolldown/pluginutils
94
+
95
+ License: MIT
96
+ Repository: https://github.com/rolldown/rolldown
97
+
98
+ > MIT License
99
+ >
100
+ > Copyright (c) 2024-present VoidZero Inc. & Contributors
101
+ >
102
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
103
+ > of this software and associated documentation files (the "Software"), to deal
104
+ > in the Software without restriction, including without limitation the rights
105
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
106
+ > copies of the Software, and to permit persons to whom the Software is
107
+ > furnished to do so, subject to the following conditions:
108
+ >
109
+ > The above copyright notice and this permission notice shall be included in all
110
+ > copies or substantial portions of the Software.
111
+ >
112
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
113
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
114
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
115
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
116
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
117
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
118
+ > SOFTWARE.
119
+ >
120
+ > end of terms and conditions
121
+ >
122
+ > The licenses of externally maintained libraries from which parts of the Software is derived are listed [here](https://github.com/rolldown/rolldown/blob/main/THIRD-PARTY-LICENSE).
123
+
124
+ ---------------------------------------
125
+
126
+ ## @rollup/plugin-alias, @rollup/plugin-commonjs, @rollup/plugin-json, @rollup/plugin-node-resolve, @rollup/plugin-replace, @rollup/pluginutils
127
+
128
+ License: MIT
129
+ By: Johannes Stein
130
+ Repository: https://github.com/rollup/plugins
131
+
132
+ License: MIT
133
+ By: Rich Harris
134
+ Repository: https://github.com/rollup/plugins
135
+
136
+ License: MIT
137
+ By: rollup
138
+ Repository: https://github.com/rollup/plugins
139
+
140
+ License: MIT
141
+ By: Rich Harris
142
+ Repository: https://github.com/rollup/plugins
143
+
144
+ License: MIT
145
+ By: Rich Harris
146
+ Repository: https://github.com/rollup/plugins
147
+
148
+ License: MIT
149
+ By: Rich Harris
150
+ Repository: https://github.com/rollup/plugins
151
+
152
+ > The MIT License (MIT)
153
+ >
154
+ > Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
155
+ >
156
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
157
+ > of this software and associated documentation files (the "Software"), to deal
158
+ > in the Software without restriction, including without limitation the rights
159
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
160
+ > copies of the Software, and to permit persons to whom the Software is
161
+ > furnished to do so, subject to the following conditions:
162
+ >
163
+ > The above copyright notice and this permission notice shall be included in
164
+ > all copies or substantial portions of the Software.
165
+ >
166
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
167
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
168
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
169
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
170
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
171
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
172
+ > THE SOFTWARE.
173
+
174
+ ---------------------------------------
175
+
176
+ ## @rollup/plugin-inject
177
+
178
+ License: MIT
179
+ By: Rich Harris
180
+ Repository: https://github.com/rollup/plugins
181
+
182
+ ---------------------------------------
183
+
184
+ ## acorn
185
+
186
+ License: MIT
187
+ By: Marijn Haverbeke, Ingvar Stepanyan, Adrian Heine
188
+ Repository: https://github.com/acornjs/acorn
189
+
190
+ > MIT License
191
+ >
192
+ > Copyright (C) 2012-2022 by various contributors (see AUTHORS)
193
+ >
194
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
195
+ > of this software and associated documentation files (the "Software"), to deal
196
+ > in the Software without restriction, including without limitation the rights
197
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
198
+ > copies of the Software, and to permit persons to whom the Software is
199
+ > furnished to do so, subject to the following conditions:
200
+ >
201
+ > The above copyright notice and this permission notice shall be included in
202
+ > all copies or substantial portions of the Software.
203
+ >
204
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
205
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
206
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
207
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
208
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
209
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
210
+ > THE SOFTWARE.
211
+
212
+ ---------------------------------------
213
+
214
+ ## c12, citty, compatx, mlly, nypm, perfect-debounce, rou3, unwasm
215
+
216
+ License: MIT
217
+ Repositories: https://github.com/unjs/c12, https://github.com/unjs/citty, https://github.com/unjs/compatx, https://github.com/unjs/mlly, https://github.com/unjs/nypm, https://github.com/unjs/perfect-debounce, https://github.com/h3js/rou3, https://github.com/unjs/unwasm
218
+
219
+ > MIT License
220
+ >
221
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
222
+ >
223
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
224
+ > of this software and associated documentation files (the "Software"), to deal
225
+ > in the Software without restriction, including without limitation the rights
226
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
227
+ > copies of the Software, and to permit persons to whom the Software is
228
+ > furnished to do so, subject to the following conditions:
229
+ >
230
+ > The above copyright notice and this permission notice shall be included in all
231
+ > copies or substantial portions of the Software.
232
+ >
233
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
234
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
235
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
236
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
237
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
238
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
239
+ > SOFTWARE.
240
+
241
+ ---------------------------------------
242
+
243
+ ## chokidar
244
+
245
+ License: MIT
246
+ By: Paul Miller
247
+ Repository: https://github.com/paulmillr/chokidar
248
+
249
+ > The MIT License (MIT)
250
+ >
251
+ > Copyright (c) 2012 Paul Miller (https://paulmillr.com), Elan Shanker
252
+ >
253
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
254
+ > of this software and associated documentation files (the “Software”), to deal
255
+ > in the Software without restriction, including without limitation the rights
256
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
257
+ > copies of the Software, and to permit persons to whom the Software is
258
+ > furnished to do so, subject to the following conditions:
259
+ >
260
+ > The above copyright notice and this permission notice shall be included in
261
+ > all copies or substantial portions of the Software.
262
+ >
263
+ > THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
264
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
265
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
266
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
267
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
268
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
269
+ > THE SOFTWARE.
270
+
271
+ ---------------------------------------
272
+
273
+ ## commondir
274
+
275
+ License: MIT
276
+ By: James Halliday
277
+ Repository: http://github.com/substack/node-commondir
278
+
279
+ > The MIT License
280
+ >
281
+ > Copyright (c) 2013 James Halliday (mail@substack.net)
282
+ >
283
+ > Permission is hereby granted, free of charge,
284
+ > to any person obtaining a copy of this software and
285
+ > associated documentation files (the "Software"), to
286
+ > deal in the Software without restriction, including
287
+ > without limitation the rights to use, copy, modify,
288
+ > merge, publish, distribute, sublicense, and/or sell
289
+ > copies of the Software, and to permit persons to whom
290
+ > the Software is furnished to do so,
291
+ > subject to the following conditions:
292
+ >
293
+ > The above copyright notice and this permission notice
294
+ > shall be included in all copies or substantial portions of the Software.
295
+ >
296
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
297
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
298
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
299
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
300
+ > ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
301
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
302
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
303
+
304
+ ---------------------------------------
305
+
306
+ ## confbox
307
+
308
+ License: MIT
309
+ Repository: https://github.com/unjs/confbox
310
+
311
+ > MIT License
312
+ >
313
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
314
+ >
315
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
316
+ > of this software and associated documentation files (the "Software"), to deal
317
+ > in the Software without restriction, including without limitation the rights
318
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
319
+ > copies of the Software, and to permit persons to whom the Software is
320
+ > furnished to do so, subject to the following conditions:
321
+ >
322
+ > The above copyright notice and this permission notice shall be included in all
323
+ > copies or substantial portions of the Software.
324
+ >
325
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
326
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
327
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
328
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
329
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
330
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
331
+ > SOFTWARE.
332
+ >
333
+ > ## Third-Party Licenses
334
+ >
335
+ > This software includes bundled third-party dependencies. The licenses and
336
+ > copyright notices for these dependencies are available in
337
+ > `dist/THIRD-PARTY-LICENSES.md` within the distributed package.
338
+
339
+ ---------------------------------------
340
+
341
+ ## deepmerge
342
+
343
+ License: MIT
344
+ Repository: https://github.com/TehShrike/deepmerge
345
+
346
+ > The MIT License (MIT)
347
+ >
348
+ > Copyright (c) 2012 James Halliday, Josh Duff, and other contributors
349
+ >
350
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
351
+ > of this software and associated documentation files (the "Software"), to deal
352
+ > in the Software without restriction, including without limitation the rights
353
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
354
+ > copies of the Software, and to permit persons to whom the Software is
355
+ > furnished to do so, subject to the following conditions:
356
+ >
357
+ > The above copyright notice and this permission notice shall be included in
358
+ > all copies or substantial portions of the Software.
359
+ >
360
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
361
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
362
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
363
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
364
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
365
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
366
+ > THE SOFTWARE.
367
+
368
+ ---------------------------------------
369
+
370
+ ## dot-prop, escape-string-regexp, gzip-size, pretty-bytes
371
+
372
+ License: MIT
373
+ By: Sindre Sorhus
374
+ Repositories: https://github.com/sindresorhus/dot-prop, https://github.com/sindresorhus/escape-string-regexp, https://github.com/sindresorhus/gzip-size, https://github.com/sindresorhus/pretty-bytes
375
+
376
+ > MIT License
377
+ >
378
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
379
+ >
380
+ > 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:
381
+ >
382
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
383
+ >
384
+ > 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.
385
+
386
+ ---------------------------------------
387
+
388
+ ## duplexer
389
+
390
+ License: MIT
391
+ By: Raynos, Jake Verbaten
392
+ Repository: https://github.com/Raynos/duplexer
393
+
394
+ > Copyright (c) 2012 Raynos.
395
+ >
396
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
397
+ > of this software and associated documentation files (the "Software"), to deal
398
+ > in the Software without restriction, including without limitation the rights
399
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
400
+ > copies of the Software, and to permit persons to whom the Software is
401
+ > furnished to do so, subject to the following conditions:
402
+ >
403
+ > The above copyright notice and this permission notice shall be included in
404
+ > all copies or substantial portions of the Software.
405
+ >
406
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
407
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
408
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
409
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
410
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
411
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
412
+ > THE SOFTWARE.
413
+
414
+ ---------------------------------------
415
+
416
+ ## esbuild
417
+
418
+ License: MIT
419
+ Repository: https://github.com/evanw/esbuild
420
+
421
+ > MIT License
422
+ >
423
+ > Copyright (c) 2020 Evan Wallace
424
+ >
425
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
426
+ > of this software and associated documentation files (the "Software"), to deal
427
+ > in the Software without restriction, including without limitation the rights
428
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
429
+ > copies of the Software, and to permit persons to whom the Software is
430
+ > furnished to do so, subject to the following conditions:
431
+ >
432
+ > The above copyright notice and this permission notice shall be included in all
433
+ > copies or substantial portions of the Software.
434
+ >
435
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
436
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
437
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
438
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
439
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
440
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
441
+ > SOFTWARE.
442
+
443
+ ---------------------------------------
444
+
445
+ ## estree-walker
446
+
447
+ License: MIT
448
+ By: Rich Harris
449
+ Repository: https://github.com/Rich-Harris/estree-walker
450
+
451
+ > Copyright (c) 2015-20 [these people](https://github.com/Rich-Harris/estree-walker/graphs/contributors)
452
+ >
453
+ > 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:
454
+ >
455
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
456
+ >
457
+ > 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.
458
+
459
+ ---------------------------------------
460
+
461
+ ## etag
462
+
463
+ License: MIT
464
+ By: Douglas Christopher Wilson, David Björklund
465
+ Repository: https://github.com/jshttp/etag
466
+
467
+ > (The MIT License)
468
+ >
469
+ > Copyright (c) 2014-2016 Douglas Christopher Wilson
470
+ >
471
+ > Permission is hereby granted, free of charge, to any person obtaining
472
+ > a copy of this software and associated documentation files (the
473
+ > 'Software'), to deal in the Software without restriction, including
474
+ > without limitation the rights to use, copy, modify, merge, publish,
475
+ > distribute, sublicense, and/or sell copies of the Software, and to
476
+ > permit persons to whom the Software is furnished to do so, subject to
477
+ > the following conditions:
478
+ >
479
+ > The above copyright notice and this permission notice shall be
480
+ > included in all copies or substantial portions of the Software.
481
+ >
482
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
483
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
484
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
485
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
486
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
487
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
488
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
489
+
490
+ ---------------------------------------
491
+
492
+ ## exsolve
493
+
494
+ License: MIT
495
+ Repository: https://github.com/unjs/exsolve
496
+
497
+ > MIT License
498
+ >
499
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
500
+ >
501
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
502
+ > of this software and associated documentation files (the "Software"), to deal
503
+ > in the Software without restriction, including without limitation the rights
504
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
505
+ > copies of the Software, and to permit persons to whom the Software is
506
+ > furnished to do so, subject to the following conditions:
507
+ >
508
+ > The above copyright notice and this permission notice shall be included in all
509
+ > copies or substantial portions of the Software.
510
+ >
511
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
512
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
513
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
514
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
515
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
516
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
517
+ > SOFTWARE.
518
+ >
519
+ > ---
520
+ >
521
+ > This is a derivative work based on:
522
+ > <https://github.com/unjs/mlly>.
523
+ >
524
+ > ---
525
+ >
526
+ > This is a derivative work based on:
527
+ > <https://github.com/wooorm/import-meta-resolve>.
528
+ >
529
+ > Which is licensed:
530
+ >
531
+ > """
532
+ > (The MIT License)
533
+ >
534
+ > Copyright (c) 2021 Titus Wormer <mailto:tituswormer@gmail.com>
535
+ >
536
+ > Permission is hereby granted, free of charge, to any person obtaining
537
+ > a copy of this software and associated documentation files (the
538
+ > 'Software'), to deal in the Software without restriction, including
539
+ > without limitation the rights to use, copy, modify, merge, publish,
540
+ > distribute, sublicense, and/or sell copies of the Software, and to
541
+ > permit persons to whom the Software is furnished to do so, subject to
542
+ > the following conditions:
543
+ >
544
+ > The above copyright notice and this permission notice shall be
545
+ > included in all copies or substantial portions of the Software.
546
+ >
547
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
548
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
549
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
550
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
551
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
552
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
553
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
554
+ > """
555
+ >
556
+ > ---
557
+ >
558
+ > This is a derivative work based on:
559
+ > <https://github.com/nodejs/node>.
560
+ >
561
+ > Which is licensed:
562
+ >
563
+ > """
564
+ > Copyright Node.js contributors. All rights reserved.
565
+ >
566
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
567
+ > of this software and associated documentation files (the "Software"), to
568
+ > deal in the Software without restriction, including without limitation the
569
+ > rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
570
+ > sell copies of the Software, and to permit persons to whom the Software is
571
+ > furnished to do so, subject to the following conditions:
572
+ >
573
+ > The above copyright notice and this permission notice shall be included in
574
+ > all copies or substantial portions of the Software.
575
+ >
576
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
577
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
578
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
579
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
580
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
581
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
582
+ > IN THE SOFTWARE.
583
+ > """
584
+ >
585
+ > This license applies to parts of Node.js originating from the
586
+ > https://github.com/joyent/node repository:
587
+ >
588
+ > """
589
+ > Copyright Joyent, Inc. and other Node contributors. All rights reserved.
590
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
591
+ > of this software and associated documentation files (the "Software"), to
592
+ > deal in the Software without restriction, including without limitation the
593
+ > rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
594
+ > sell copies of the Software, and to permit persons to whom the Software is
595
+ > furnished to do so, subject to the following conditions:
596
+ >
597
+ > The above copyright notice and this permission notice shall be included in
598
+ > all copies or substantial portions of the Software.
599
+ >
600
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
601
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
602
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
603
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
604
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
605
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
606
+ > IN THE SOFTWARE.
607
+ > """
608
+
609
+ ---------------------------------------
610
+
611
+ ## fdir
612
+
613
+ License: MIT
614
+ By: thecodrr
615
+ Repository: https://github.com/thecodrr/fdir
616
+
617
+ > Copyright 2023 Abdullah Atta
618
+ >
619
+ > 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:
620
+ >
621
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
622
+ >
623
+ > 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.
624
+
625
+ ---------------------------------------
626
+
627
+ ## function-bind
628
+
629
+ License: MIT
630
+ By: Raynos, Jordan Harband
631
+ Repository: https://github.com/Raynos/function-bind
632
+
633
+ > Copyright (c) 2013 Raynos.
634
+ >
635
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
636
+ > of this software and associated documentation files (the "Software"), to deal
637
+ > in the Software without restriction, including without limitation the rights
638
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
639
+ > copies of the Software, and to permit persons to whom the Software is
640
+ > furnished to do so, subject to the following conditions:
641
+ >
642
+ > The above copyright notice and this permission notice shall be included in
643
+ > all copies or substantial portions of the Software.
644
+ >
645
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
646
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
647
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
648
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
649
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
650
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
651
+ > THE SOFTWARE.
652
+
653
+ ---------------------------------------
654
+
655
+ ## hasown
656
+
657
+ License: MIT
658
+ By: Jordan Harband
659
+ Repository: https://github.com/inspect-js/hasOwn
660
+
661
+ > MIT License
662
+ >
663
+ > Copyright (c) Jordan Harband and contributors
664
+ >
665
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
666
+ > of this software and associated documentation files (the "Software"), to deal
667
+ > in the Software without restriction, including without limitation the rights
668
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
669
+ > copies of the Software, and to permit persons to whom the Software is
670
+ > furnished to do so, subject to the following conditions:
671
+ >
672
+ > The above copyright notice and this permission notice shall be included in all
673
+ > copies or substantial portions of the Software.
674
+ >
675
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
676
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
677
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
678
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
679
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
680
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
681
+ > SOFTWARE.
682
+
683
+ ---------------------------------------
684
+
685
+ ## httpxy
686
+
687
+ License: MIT
688
+ Repository: https://github.com/unjs/httpxy
689
+
690
+ > MIT License
691
+ >
692
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
693
+ >
694
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
695
+ > of this software and associated documentation files (the "Software"), to deal
696
+ > in the Software without restriction, including without limitation the rights
697
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
698
+ > copies of the Software, and to permit persons to whom the Software is
699
+ > furnished to do so, subject to the following conditions:
700
+ >
701
+ > The above copyright notice and this permission notice shall be included in all
702
+ > copies or substantial portions of the Software.
703
+ >
704
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
705
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
706
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
707
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
708
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
709
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
710
+ > SOFTWARE.
711
+ >
712
+ > ----
713
+ >
714
+ > Based on http-party/node-http-proxy (9b96cd7)
715
+ >
716
+ > Copyright (c) 2010-2016 Charlie Robbins, Jarrett Cruger & the Contributors.
717
+ >
718
+ > Permission is hereby granted, free of charge, to any person obtaining
719
+ > a copy of this software and associated documentation files (the
720
+ > "Software"), to deal in the Software without restriction, including
721
+ > without limitation the rights to use, copy, modify, merge, publish,
722
+ > distribute, sublicense, and/or sell copies of the Software, and to
723
+ > permit persons to whom the Software is furnished to do so, subject to
724
+ > the following conditions:
725
+ >
726
+ > The above copyright notice and this permission notice shall be
727
+ > included in all copies or substantial portions of the Software.
728
+ >
729
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
730
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
731
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
732
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
733
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
734
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
735
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
736
+
737
+ ---------------------------------------
738
+
739
+ ## is-core-module
740
+
741
+ License: MIT
742
+ By: Jordan Harband
743
+ Repository: https://github.com/inspect-js/is-core-module
744
+
745
+ > The MIT License (MIT)
746
+ >
747
+ > Copyright (c) 2014 Dave Justice
748
+ >
749
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
750
+ > this software and associated documentation files (the "Software"), to deal in
751
+ > the Software without restriction, including without limitation the rights to
752
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
753
+ > the Software, and to permit persons to whom the Software is furnished to do so,
754
+ > subject to the following conditions:
755
+ >
756
+ > The above copyright notice and this permission notice shall be included in all
757
+ > copies or substantial portions of the Software.
758
+ >
759
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
760
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
761
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
762
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
763
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
764
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
765
+
766
+ ---------------------------------------
767
+
768
+ ## is-module
769
+
770
+ License: MIT
771
+ By: Jonathan Ong
772
+ Repository: https://github.com/component/is-module
773
+
774
+ ---------------------------------------
775
+
776
+ ## is-reference
777
+
778
+ License: MIT
779
+ By: Rich Harris
780
+ Repository: https://github.com/Rich-Harris/is-reference
781
+
782
+ ---------------------------------------
783
+
784
+ ## js-tokens
785
+
786
+ License: MIT
787
+ By: Simon Lydell
788
+ Repository: https://github.com/lydell/js-tokens
789
+
790
+ > The MIT License (MIT)
791
+ >
792
+ > Copyright (c) 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Simon Lydell
793
+ >
794
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
795
+ > of this software and associated documentation files (the "Software"), to deal
796
+ > in the Software without restriction, including without limitation the rights
797
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
798
+ > copies of the Software, and to permit persons to whom the Software is
799
+ > furnished to do so, subject to the following conditions:
800
+ >
801
+ > The above copyright notice and this permission notice shall be included in
802
+ > all copies or substantial portions of the Software.
803
+ >
804
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
805
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
806
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
807
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
808
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
809
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
810
+ > THE SOFTWARE.
811
+
812
+ ---------------------------------------
813
+
814
+ ## klona
815
+
816
+ License: MIT
817
+ By: Luke Edwards
818
+ Repository: https://github.com/lukeed/klona
819
+
820
+ > MIT License
821
+ >
822
+ > Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
823
+ >
824
+ > 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:
825
+ >
826
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
827
+ >
828
+ > 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.
829
+
830
+ ---------------------------------------
831
+
832
+ ## knitwork
833
+
834
+ License: MIT
835
+ Repository: https://github.com/unjs/knitwork
836
+
837
+ > MIT License
838
+ >
839
+ > Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
840
+ >
841
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
842
+ > of this software and associated documentation files (the "Software"), to deal
843
+ > in the Software without restriction, including without limitation the rights
844
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
845
+ > copies of the Software, and to permit persons to whom the Software is
846
+ > furnished to do so, subject to the following conditions:
847
+ >
848
+ > The above copyright notice and this permission notice shall be included in all
849
+ > copies or substantial portions of the Software.
850
+ >
851
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
852
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
853
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
854
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
855
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
856
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
857
+ > SOFTWARE.
858
+
859
+ ---------------------------------------
860
+
861
+ ## local-pkg
862
+
863
+ License: MIT
864
+ By: Anthony Fu
865
+ Repository: https://github.com/antfu-collective/local-pkg
866
+
867
+ > MIT License
868
+ >
869
+ > Copyright (c) 2021 Anthony Fu <https://github.com/antfu>
870
+ >
871
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
872
+ > of this software and associated documentation files (the "Software"), to deal
873
+ > in the Software without restriction, including without limitation the rights
874
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
875
+ > copies of the Software, and to permit persons to whom the Software is
876
+ > furnished to do so, subject to the following conditions:
877
+ >
878
+ > The above copyright notice and this permission notice shall be included in all
879
+ > copies or substantial portions of the Software.
880
+ >
881
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
882
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
883
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
884
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
885
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
886
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
887
+ > SOFTWARE.
888
+
889
+ ---------------------------------------
890
+
891
+ ## magic-string
892
+
893
+ License: MIT
894
+ By: Rich Harris
895
+ Repository: https://github.com/Rich-Harris/magic-string
896
+
897
+ > Copyright 2018 Rich Harris
898
+ >
899
+ > 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:
900
+ >
901
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
902
+ >
903
+ > 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.
904
+
905
+ ---------------------------------------
906
+
907
+ ## mime
908
+
909
+ License: MIT
910
+ By: Robert Kieffer
911
+ Repository: https://github.com/broofa/mime
912
+
913
+ > MIT License
914
+ >
915
+ > Copyright (c) 2023 Robert Kieffer
916
+ >
917
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
918
+ > of this software and associated documentation files (the "Software"), to deal
919
+ > in the Software without restriction, including without limitation the rights
920
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
921
+ > copies of the Software, and to permit persons to whom the Software is
922
+ > furnished to do so, subject to the following conditions:
923
+ >
924
+ > The above copyright notice and this permission notice shall be included in all
925
+ > copies or substantial portions of the Software.
926
+ >
927
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
928
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
929
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
930
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
931
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
932
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
933
+ > SOFTWARE.
934
+
935
+ ---------------------------------------
936
+
937
+ ## path-parse
938
+
939
+ License: MIT
940
+ By: Javier Blanco
941
+ Repository: https://github.com/jbgutierrez/path-parse
942
+
943
+ > The MIT License (MIT)
944
+ >
945
+ > Copyright (c) 2015 Javier Blanco
946
+ >
947
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
948
+ > of this software and associated documentation files (the "Software"), to deal
949
+ > in the Software without restriction, including without limitation the rights
950
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
951
+ > copies of the Software, and to permit persons to whom the Software is
952
+ > furnished to do so, subject to the following conditions:
953
+ >
954
+ > The above copyright notice and this permission notice shall be included in all
955
+ > copies or substantial portions of the Software.
956
+ >
957
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
958
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
959
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
960
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
961
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
962
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
963
+ > SOFTWARE.
964
+
965
+ ---------------------------------------
966
+
967
+ ## pathe
968
+
969
+ License: MIT
970
+ Repository: https://github.com/unjs/pathe
971
+
972
+ > MIT License
973
+ >
974
+ > Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
975
+ >
976
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
977
+ > of this software and associated documentation files (the "Software"), to deal
978
+ > in the Software without restriction, including without limitation the rights
979
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
980
+ > copies of the Software, and to permit persons to whom the Software is
981
+ > furnished to do so, subject to the following conditions:
982
+ >
983
+ > The above copyright notice and this permission notice shall be included in all
984
+ > copies or substantial portions of the Software.
985
+ >
986
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
987
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
988
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
989
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
990
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
991
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
992
+ > SOFTWARE.
993
+ >
994
+ > ---
995
+ >
996
+ > Copyright Joyent, Inc. and other Node contributors.
997
+ >
998
+ > Permission is hereby granted, free of charge, to any person obtaining a
999
+ > copy of this software and associated documentation files (the
1000
+ > "Software"), to deal in the Software without restriction, including
1001
+ > without limitation the rights to use, copy, modify, merge, publish,
1002
+ > distribute, sublicense, and/or sell copies of the Software, and to permit
1003
+ > persons to whom the Software is furnished to do so, subject to the
1004
+ > following conditions:
1005
+ >
1006
+ > The above copyright notice and this permission notice shall be included
1007
+ > in all copies or substantial portions of the Software.
1008
+ >
1009
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
1010
+ > OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1011
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
1012
+ > NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
1013
+ > DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
1014
+ > OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
1015
+ > USE OR OTHER DEALINGS IN THE SOFTWARE.
1016
+ >
1017
+ > ---
1018
+ >
1019
+ > Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
1020
+ >
1021
+ > The MIT License (MIT)
1022
+ >
1023
+ > Copyright (c) 2023-present Fabio Spampinato
1024
+ >
1025
+ > Permission is hereby granted, free of charge, to any person obtaining a
1026
+ > copy of this software and associated documentation files (the "Software"),
1027
+ > to deal in the Software without restriction, including without limitation
1028
+ > the rights to use, copy, modify, merge, publish, distribute, sublicense,
1029
+ > and/or sell copies of the Software, and to permit persons to whom the
1030
+ > Software is furnished to do so, subject to the following conditions:
1031
+ >
1032
+ > The above copyright notice and this permission notice shall be included in
1033
+ > all copies or substantial portions of the Software.
1034
+ >
1035
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1036
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1037
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1038
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1039
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1040
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1041
+ > DEALINGS IN THE SOFTWARE.
1042
+
1043
+ ---------------------------------------
1044
+
1045
+ ## picomatch
1046
+
1047
+ License: MIT
1048
+ By: Jon Schlinkert
1049
+ Repository: https://github.com/micromatch/picomatch
1050
+
1051
+ > The MIT License (MIT)
1052
+ >
1053
+ > Copyright (c) 2017-present, Jon Schlinkert.
1054
+ >
1055
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1056
+ > of this software and associated documentation files (the "Software"), to deal
1057
+ > in the Software without restriction, including without limitation the rights
1058
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1059
+ > copies of the Software, and to permit persons to whom the Software is
1060
+ > furnished to do so, subject to the following conditions:
1061
+ >
1062
+ > The above copyright notice and this permission notice shall be included in
1063
+ > all copies or substantial portions of the Software.
1064
+ >
1065
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1066
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1067
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1068
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1069
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1070
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1071
+ > THE SOFTWARE.
1072
+
1073
+ ---------------------------------------
1074
+
1075
+ ## pkg-types
1076
+
1077
+ License: MIT
1078
+ Repository: https://github.com/unjs/pkg-types
1079
+
1080
+ > MIT License
1081
+ >
1082
+ > Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
1083
+ >
1084
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1085
+ > of this software and associated documentation files (the "Software"), to deal
1086
+ > in the Software without restriction, including without limitation the rights
1087
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1088
+ > copies of the Software, and to permit persons to whom the Software is
1089
+ > furnished to do so, subject to the following conditions:
1090
+ >
1091
+ > The above copyright notice and this permission notice shall be included in all
1092
+ > copies or substantial portions of the Software.
1093
+ >
1094
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1095
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1096
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1097
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1098
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1099
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1100
+ > SOFTWARE.
1101
+ >
1102
+ > --------------------------------------------------------------------------------
1103
+ >
1104
+ > Copyright Joyent, Inc. and other Node contributors.
1105
+ >
1106
+ > Permission is hereby granted, free of charge, to any person obtaining a
1107
+ > copy of this software and associated documentation files (the
1108
+ > "Software"), to deal in the Software without restriction, including
1109
+ > without limitation the rights to use, copy, modify, merge, publish,
1110
+ > distribute, sublicense, and/or sell copies of the Software, and to permit
1111
+ > persons to whom the Software is furnished to do so, subject to the
1112
+ > following conditions:
1113
+ >
1114
+ > The above copyright notice and this permission notice shall be included
1115
+ > in all copies or substantial portions of the Software.
1116
+ >
1117
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
1118
+ > OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1119
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
1120
+ > NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
1121
+ > DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
1122
+ > OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
1123
+ > USE OR OTHER DEALINGS IN THE SOFTWARE.
1124
+
1125
+ ---------------------------------------
1126
+
1127
+ ## quansync
1128
+
1129
+ License: MIT
1130
+ By: Anthony Fu, 三咲智子 Kevin Deng
1131
+ Repository: https://github.com/quansync-dev/quansync
1132
+
1133
+ > MIT License
1134
+ >
1135
+ > Copyright (c) 2025-PRESENT Anthony Fu <https://github.com/antfu> and Kevin Deng <https://github.com/sxzz>
1136
+ >
1137
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1138
+ > of this software and associated documentation files (the "Software"), to deal
1139
+ > in the Software without restriction, including without limitation the rights
1140
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1141
+ > copies of the Software, and to permit persons to whom the Software is
1142
+ > furnished to do so, subject to the following conditions:
1143
+ >
1144
+ > The above copyright notice and this permission notice shall be included in all
1145
+ > copies or substantial portions of the Software.
1146
+ >
1147
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1148
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1149
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1150
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1151
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1152
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1153
+ > SOFTWARE.
1154
+
1155
+ ---------------------------------------
1156
+
1157
+ ## rc9
1158
+
1159
+ License: MIT
1160
+ Repository: https://github.com/unjs/rc9
1161
+
1162
+ > MIT License
1163
+ >
1164
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
1165
+ >
1166
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1167
+ > of this software and associated documentation files (the "Software"), to deal
1168
+ > in the Software without restriction, including without limitation the rights
1169
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1170
+ > copies of the Software, and to permit persons to whom the Software is
1171
+ > furnished to do so, subject to the following conditions:
1172
+ >
1173
+ > The above copyright notice and this permission notice shall be included in all
1174
+ > copies or substantial portions of the Software.
1175
+ >
1176
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1177
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1178
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1179
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1180
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1181
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1182
+ > SOFTWARE.
1183
+ >
1184
+ >
1185
+ > -----
1186
+ >
1187
+ > Bundled with https://github.com/hughsk/flat
1188
+ >
1189
+ > Copyright (c) 2014, Hugh Kennedy
1190
+ > All rights reserved.
1191
+ >
1192
+ > Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1193
+ >
1194
+ > 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1195
+ >
1196
+ > 2. 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.
1197
+ >
1198
+ > 3. Neither the name of the nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1199
+ >
1200
+ > THIS SOFTWARE 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1201
+
1202
+ ---------------------------------------
1203
+
1204
+ ## readdirp
1205
+
1206
+ License: MIT
1207
+ By: Thorsten Lorenz, Paul Miller
1208
+ Repository: https://github.com/paulmillr/readdirp
1209
+
1210
+ > MIT License
1211
+ >
1212
+ > Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)
1213
+ >
1214
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1215
+ > of this software and associated documentation files (the "Software"), to deal
1216
+ > in the Software without restriction, including without limitation the rights
1217
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1218
+ > copies of the Software, and to permit persons to whom the Software is
1219
+ > furnished to do so, subject to the following conditions:
1220
+ >
1221
+ > The above copyright notice and this permission notice shall be included in all
1222
+ > copies or substantial portions of the Software.
1223
+ >
1224
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1225
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1226
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1227
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1228
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1229
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1230
+ > SOFTWARE.
1231
+
1232
+ ---------------------------------------
1233
+
1234
+ ## resolve
1235
+
1236
+ License: MIT
1237
+ By: James Halliday
1238
+ Repository: https://github.com/browserify/resolve
1239
+
1240
+ > MIT License
1241
+ >
1242
+ > Copyright (c) 2012 James Halliday
1243
+ >
1244
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1245
+ > of this software and associated documentation files (the "Software"), to deal
1246
+ > in the Software without restriction, including without limitation the rights
1247
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1248
+ > copies of the Software, and to permit persons to whom the Software is
1249
+ > furnished to do so, subject to the following conditions:
1250
+ >
1251
+ > The above copyright notice and this permission notice shall be included in all
1252
+ > copies or substantial portions of the Software.
1253
+ >
1254
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1255
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1256
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1257
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1258
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1259
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1260
+ > SOFTWARE.
1261
+
1262
+ ---------------------------------------
1263
+
1264
+ ## std-env
1265
+
1266
+ License: MIT
1267
+ Repository: https://github.com/unjs/std-env
1268
+
1269
+ > MIT License
1270
+ >
1271
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
1272
+ >
1273
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1274
+ > of this software and associated documentation files (the "Software"), to deal
1275
+ > in the Software without restriction, including without limitation the rights
1276
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1277
+ > copies of the Software, and to permit persons to whom the Software is
1278
+ > furnished to do so, subject to the following conditions:
1279
+ >
1280
+ > The above copyright notice and this permission notice shall be included in all
1281
+ > copies or substantial portions of the Software.
1282
+ >
1283
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1284
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1285
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1286
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1287
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1288
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1289
+ > SOFTWARE.
1290
+
1291
+ ---------------------------------------
1292
+
1293
+ ## strip-literal
1294
+
1295
+ License: MIT
1296
+ By: Anthony Fu
1297
+ Repository: https://github.com/antfu/strip-literal
1298
+
1299
+ > MIT License
1300
+ >
1301
+ > Copyright (c) 2022 Anthony Fu <https://github.com/antfu>
1302
+ >
1303
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1304
+ > of this software and associated documentation files (the "Software"), to deal
1305
+ > in the Software without restriction, including without limitation the rights
1306
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1307
+ > copies of the Software, and to permit persons to whom the Software is
1308
+ > furnished to do so, subject to the following conditions:
1309
+ >
1310
+ > The above copyright notice and this permission notice shall be included in all
1311
+ > copies or substantial portions of the Software.
1312
+ >
1313
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1314
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1315
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1316
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1317
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1318
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1319
+ > SOFTWARE.
1320
+
1321
+ ---------------------------------------
1322
+
1323
+ ## tinyexec
1324
+
1325
+ License: MIT
1326
+ By: James Garbutt
1327
+ Repository: https://github.com/tinylibs/tinyexec
1328
+
1329
+ > MIT License
1330
+ >
1331
+ > Copyright (c) 2024 Tinylibs
1332
+ >
1333
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1334
+ > of this software and associated documentation files (the "Software"), to deal
1335
+ > in the Software without restriction, including without limitation the rights
1336
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1337
+ > copies of the Software, and to permit persons to whom the Software is
1338
+ > furnished to do so, subject to the following conditions:
1339
+ >
1340
+ > The above copyright notice and this permission notice shall be included in all
1341
+ > copies or substantial portions of the Software.
1342
+ >
1343
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1344
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1345
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1346
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1347
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1348
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1349
+ > SOFTWARE.
1350
+
1351
+ ---------------------------------------
1352
+
1353
+ ## tinyglobby
1354
+
1355
+ License: MIT
1356
+ By: Superchupu
1357
+ Repository: https://github.com/SuperchupuDev/tinyglobby
1358
+
1359
+ > MIT License
1360
+ >
1361
+ > Copyright (c) 2024 Madeline Gurriarán
1362
+ >
1363
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1364
+ > of this software and associated documentation files (the "Software"), to deal
1365
+ > in the Software without restriction, including without limitation the rights
1366
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1367
+ > copies of the Software, and to permit persons to whom the Software is
1368
+ > furnished to do so, subject to the following conditions:
1369
+ >
1370
+ > The above copyright notice and this permission notice shall be included in all
1371
+ > copies or substantial portions of the Software.
1372
+ >
1373
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1374
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1375
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1376
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1377
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1378
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1379
+ > SOFTWARE.
1380
+
1381
+ ---------------------------------------
1382
+
1383
+ ## tsconfck
1384
+
1385
+ License: MIT
1386
+ By: dominikg
1387
+ Repository: https://github.com/dominikg/tsconfck
1388
+
1389
+ > MIT License
1390
+ >
1391
+ > Copyright (c) 2021-present dominikg and [contributors](https://github.com/dominikg/tsconfck/graphs/contributors)
1392
+ >
1393
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1394
+ > of this software and associated documentation files (the "Software"), to deal
1395
+ > in the Software without restriction, including without limitation the rights
1396
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1397
+ > copies of the Software, and to permit persons to whom the Software is
1398
+ > furnished to do so, subject to the following conditions:
1399
+ >
1400
+ > The above copyright notice and this permission notice shall be included in all
1401
+ > copies or substantial portions of the Software.
1402
+ >
1403
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1404
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1405
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1406
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1407
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1408
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1409
+ > SOFTWARE.
1410
+ >
1411
+ > -- Licenses for 3rd-party code included in tsconfck --
1412
+ >
1413
+ > # strip-bom and strip-json-comments
1414
+ > MIT License
1415
+ >
1416
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1417
+ >
1418
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1419
+ > of this software and associated documentation files (the "Software"), to deal
1420
+ > in the Software without restriction, including without limitation the rights
1421
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1422
+ > copies of the Software, and to permit persons to whom the Software is
1423
+ > furnished to do so, subject to the following conditions:
1424
+ >
1425
+ > The above copyright notice and this permission notice shall be included in all
1426
+ > copies or substantial portions of the Software.
1427
+ >
1428
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1429
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1430
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1431
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1432
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1433
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1434
+ > SOFTWARE.
1435
+
1436
+ ---------------------------------------
1437
+
1438
+ ## ultrahtml
1439
+
1440
+ License: MIT
1441
+ By: Nate Moore
1442
+ Repository: https://github.com/natemoo-re/ultrahtml
1443
+
1444
+ > MIT License Copyright (c) 2022 Nate Moore
1445
+ >
1446
+ > Permission is hereby granted, free of
1447
+ > charge, to any person obtaining a copy of this software and associated
1448
+ > documentation files (the "Software"), to deal in the Software without
1449
+ > restriction, including without limitation the rights to use, copy, modify, merge,
1450
+ > publish, distribute, sublicense, and/or sell copies of the Software, and to
1451
+ > permit persons to whom the Software is furnished to do so, subject to the
1452
+ > following conditions:
1453
+ >
1454
+ > The above copyright notice and this permission notice
1455
+ > (including the next paragraph) shall be included in all copies or substantial
1456
+ > portions of the Software.
1457
+ >
1458
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
1459
+ > ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1460
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
1461
+ > EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
1462
+ > OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1463
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1464
+ > THE SOFTWARE.
1465
+ >
1466
+ > ---
1467
+ >
1468
+ > Portions of this code were borrowed from https://github.com/developit/htmlParser
1469
+ >
1470
+ > The MIT License (MIT)
1471
+ >
1472
+ > Copyright (c) 2013 Jason Miller
1473
+ >
1474
+ > 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:
1475
+ >
1476
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1477
+ >
1478
+ > 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.
1479
+
1480
+ ---------------------------------------
1481
+
1482
+ ## unimport
1483
+
1484
+ License: MIT
1485
+ Repository: https://github.com/unjs/unimport
1486
+
1487
+ > MIT License
1488
+ >
1489
+ > Copyright (c) 2022 - UnJS
1490
+ >
1491
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1492
+ > of this software and associated documentation files (the "Software"), to deal
1493
+ > in the Software without restriction, including without limitation the rights
1494
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1495
+ > copies of the Software, and to permit persons to whom the Software is
1496
+ > furnished to do so, subject to the following conditions:
1497
+ >
1498
+ > The above copyright notice and this permission notice shall be included in all
1499
+ > copies or substantial portions of the Software.
1500
+ >
1501
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1502
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1503
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1504
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1505
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1506
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1507
+ > SOFTWARE.
1508
+
1509
+ ---------------------------------------
1510
+
1511
+ ## unplugin
1512
+
1513
+ License: MIT
1514
+ Repository: https://github.com/unjs/unplugin
1515
+
1516
+ > MIT License
1517
+ >
1518
+ > Copyright (c) 2021-PRESENT Nuxt Contrib
1519
+ >
1520
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1521
+ > of this software and associated documentation files (the "Software"), to deal
1522
+ > in the Software without restriction, including without limitation the rights
1523
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1524
+ > copies of the Software, and to permit persons to whom the Software is
1525
+ > furnished to do so, subject to the following conditions:
1526
+ >
1527
+ > The above copyright notice and this permission notice shall be included in all
1528
+ > copies or substantial portions of the Software.
1529
+ >
1530
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1531
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1532
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1533
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1534
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1535
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1536
+ > SOFTWARE.
1537
+
1538
+ ---------------------------------------
1539
+
1540
+ ## unplugin-utils
1541
+
1542
+ License: MIT
1543
+ By: Kevin Deng
1544
+ Repository: https://github.com/sxzz/unplugin-utils
1545
+
1546
+ > The MIT License (MIT)
1547
+ >
1548
+ > Copyright © 2025-PRESENT Kevin Deng (https://github.com/sxzz)
1549
+ >
1550
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1551
+ > of this software and associated documentation files (the "Software"), to deal
1552
+ > in the Software without restriction, including without limitation the rights
1553
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1554
+ > copies of the Software, and to permit persons to whom the Software is
1555
+ > furnished to do so, subject to the following conditions:
1556
+ >
1557
+ > The above copyright notice and this permission notice shall be included in all
1558
+ > copies or substantial portions of the Software.
1559
+ >
1560
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1561
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1562
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1563
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1564
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1565
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1566
+ > SOFTWARE.
1567
+ >
1568
+ > The MIT License (MIT)
1569
+ >
1570
+ > Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
1571
+ >
1572
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1573
+ > of this software and associated documentation files (the "Software"), to deal
1574
+ > in the Software without restriction, including without limitation the rights
1575
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1576
+ > copies of the Software, and to permit persons to whom the Software is
1577
+ > furnished to do so, subject to the following conditions:
1578
+ >
1579
+ > The above copyright notice and this permission notice shall be included in
1580
+ > all copies or substantial portions of the Software.
1581
+ >
1582
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1583
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1584
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1585
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1586
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1587
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1588
+ > THE SOFTWARE.
1589
+
1590
+ ---------------------------------------
1591
+
1592
+ ## untyped
1593
+
1594
+ License: MIT
1595
+ Repository: https://github.com/unjs/untyped
1596
+
1597
+ > MIT License
1598
+ >
1599
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
1600
+ >
1601
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1602
+ > of this software and associated documentation files (the "Software"), to deal
1603
+ > in the Software without restriction, including without limitation the rights
1604
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1605
+ > copies of the Software, and to permit persons to whom the Software is
1606
+ > furnished to do so, subject to the following conditions:
1607
+ >
1608
+ > The above copyright notice and this permission notice shall be included in all
1609
+ > copies or substantial portions of the Software.
1610
+ >
1611
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1612
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1613
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1614
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1615
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1616
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1617
+ > SOFTWARE.
1618
+ >
1619
+ > ---
1620
+ >
1621
+ > Third party library "@babel/types" bundled.
1622
+ >
1623
+ > """
1624
+ > MIT License
1625
+ >
1626
+ > Copyright (c) 2014-present Sebastian McKenzie and other contributors
1627
+ >
1628
+ > Permission is hereby granted, free of charge, to any person obtaining
1629
+ > a copy of this software and associated documentation files (the
1630
+ > "Software"), to deal in the Software without restriction, including
1631
+ > without limitation the rights to use, copy, modify, merge, publish,
1632
+ > distribute, sublicense, and/or sell copies of the Software, and to
1633
+ > permit persons to whom the Software is furnished to do so, subject to
1634
+ > the following conditions:
1635
+ >
1636
+ > The above copyright notice and this permission notice shall be
1637
+ > included in all copies or substantial portions of the Software.
1638
+ >
1639
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1640
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1641
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1642
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1643
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1644
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1645
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1646
+ > """