@depup/vite 7.3.1-depup.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/LICENSE.md +2120 -0
  2. package/README.md +20 -0
  3. package/bin/openChrome.js +68 -0
  4. package/bin/vite.js +79 -0
  5. package/client.d.ts +279 -0
  6. package/dist/client/client.mjs +1106 -0
  7. package/dist/client/env.mjs +19 -0
  8. package/dist/node/chunks/build.js +4 -0
  9. package/dist/node/chunks/build2.js +5538 -0
  10. package/dist/node/chunks/chunk.js +48 -0
  11. package/dist/node/chunks/config.js +35978 -0
  12. package/dist/node/chunks/config2.js +4 -0
  13. package/dist/node/chunks/dist.js +6758 -0
  14. package/dist/node/chunks/lib.js +377 -0
  15. package/dist/node/chunks/logger.js +329 -0
  16. package/dist/node/chunks/moduleRunnerTransport.d.ts +96 -0
  17. package/dist/node/chunks/optimizer.js +4 -0
  18. package/dist/node/chunks/postcss-import.js +479 -0
  19. package/dist/node/chunks/preview.js +4 -0
  20. package/dist/node/chunks/server.js +4 -0
  21. package/dist/node/cli.js +698 -0
  22. package/dist/node/index.d.ts +3713 -0
  23. package/dist/node/index.js +30 -0
  24. package/dist/node/module-runner.d.ts +311 -0
  25. package/dist/node/module-runner.js +1160 -0
  26. package/misc/false.js +1 -0
  27. package/misc/true.js +1 -0
  28. package/package.json +199 -0
  29. package/types/customEvent.d.ts +50 -0
  30. package/types/hmrPayload.d.ts +74 -0
  31. package/types/hot.d.ts +39 -0
  32. package/types/import-meta.d.ts +5 -0
  33. package/types/importGlob.d.ts +89 -0
  34. package/types/importMeta.d.ts +30 -0
  35. package/types/internal/cssPreprocessorOptions.d.ts +44 -0
  36. package/types/internal/lightningcssOptions.d.ts +18 -0
  37. package/types/internal/terserOptions.d.ts +11 -0
  38. package/types/metadata.d.ts +33 -0
  39. package/types/package.json +4 -0
package/LICENSE.md ADDED
@@ -0,0 +1,2120 @@
1
+ # Vite core license
2
+ Vite is released under the MIT license:
3
+
4
+ MIT License
5
+
6
+ Copyright (c) 2019-present, VoidZero Inc. and Vite contributors
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in all
16
+ copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ SOFTWARE.
25
+
26
+ # Licenses of bundled dependencies
27
+ The published Vite artifact additionally contains code with the following licenses:
28
+ BSD-2-Clause, CC0-1.0, ISC, MIT
29
+
30
+ # Bundled dependencies:
31
+ ## @jridgewell/gen-mapping, @jridgewell/remapping, @jridgewell/sourcemap-codec, @jridgewell/trace-mapping
32
+ License: MIT
33
+ By: Justin Ridgewell
34
+ Repositories: https://github.com/jridgewell/sourcemaps, https://github.com/jridgewell/sourcemaps, https://github.com/jridgewell/sourcemaps, https://github.com/jridgewell/sourcemaps
35
+
36
+ > Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
37
+ >
38
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
39
+ > of this software and associated documentation files (the "Software"), to deal
40
+ > in the Software without restriction, including without limitation the rights
41
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
42
+ > copies of the Software, and to permit persons to whom the Software is
43
+ > furnished to do so, subject to the following conditions:
44
+ >
45
+ > The above copyright notice and this permission notice shall be included in
46
+ > all copies or substantial portions of the Software.
47
+ >
48
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
49
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
50
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
51
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
52
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
53
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
54
+ > SOFTWARE.
55
+
56
+ ---------------------------------------
57
+
58
+ ## @jridgewell/resolve-uri
59
+ License: MIT
60
+ By: Justin Ridgewell
61
+ Repository: https://github.com/jridgewell/resolve-uri
62
+
63
+ > Copyright 2019 Justin Ridgewell <jridgewell@google.com>
64
+ >
65
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
66
+ > of this software and associated documentation files (the "Software"), to deal
67
+ > in the Software without restriction, including without limitation the rights
68
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
69
+ > copies of the Software, and to permit persons to whom the Software is
70
+ > furnished to do so, subject to the following conditions:
71
+ >
72
+ > The above copyright notice and this permission notice shall be included in
73
+ > all copies or substantial portions of the Software.
74
+ >
75
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
76
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
77
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
78
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
79
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
80
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
81
+ > SOFTWARE.
82
+
83
+ ---------------------------------------
84
+
85
+ ## @polka/compression
86
+ License: MIT
87
+ Repository: https://github.com/lukeed/polka
88
+
89
+ ---------------------------------------
90
+
91
+ ## @polka/url
92
+ License: MIT
93
+ By: Luke Edwards
94
+ Repository: https://github.com/lukeed/polka
95
+
96
+ ---------------------------------------
97
+
98
+ ## @rolldown/pluginutils
99
+ License: MIT
100
+ Repository: https://github.com/rolldown/rolldown
101
+
102
+ > MIT License
103
+ >
104
+ > Copyright (c) 2024-present VoidZero Inc. & Contributors
105
+ >
106
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
107
+ > of this software and associated documentation files (the "Software"), to deal
108
+ > in the Software without restriction, including without limitation the rights
109
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
110
+ > copies of the Software, and to permit persons to whom the Software is
111
+ > furnished to do so, subject to the following conditions:
112
+ >
113
+ > The above copyright notice and this permission notice shall be included in all
114
+ > copies or substantial portions of the Software.
115
+ >
116
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
117
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
118
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
119
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
120
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
121
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
122
+ > SOFTWARE.
123
+ >
124
+ > end of terms and conditions
125
+ >
126
+ > 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).
127
+
128
+ ---------------------------------------
129
+
130
+ ## @rollup/plugin-alias, @rollup/plugin-commonjs, @rollup/plugin-dynamic-import-vars, @rollup/pluginutils
131
+ License: MIT
132
+ By: Johannes Stein
133
+ Repository: https://github.com/rollup/plugins
134
+
135
+ License: MIT
136
+ By: Rich Harris
137
+ Repository: https://github.com/rollup/plugins
138
+
139
+ License: MIT
140
+ By: LarsDenBakker
141
+ Repository: https://github.com/rollup/plugins
142
+
143
+ License: MIT
144
+ By: Rich Harris
145
+ Repository: https://github.com/rollup/plugins
146
+
147
+ > The MIT License (MIT)
148
+ >
149
+ > Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
150
+ >
151
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
152
+ > of this software and associated documentation files (the "Software"), to deal
153
+ > in the Software without restriction, including without limitation the rights
154
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
155
+ > copies of the Software, and to permit persons to whom the Software is
156
+ > furnished to do so, subject to the following conditions:
157
+ >
158
+ > The above copyright notice and this permission notice shall be included in
159
+ > all copies or substantial portions of the Software.
160
+ >
161
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
162
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
163
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
164
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
165
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
166
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
167
+ > THE SOFTWARE.
168
+
169
+ ---------------------------------------
170
+
171
+ ## anymatch
172
+ License: ISC
173
+ By: Elan Shanker
174
+ Repository: https://github.com/micromatch/anymatch
175
+
176
+ > The ISC License
177
+ >
178
+ > Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)
179
+ >
180
+ > Permission to use, copy, modify, and/or distribute this software for any
181
+ > purpose with or without fee is hereby granted, provided that the above
182
+ > copyright notice and this permission notice appear in all copies.
183
+ >
184
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
185
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
186
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
187
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
188
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
189
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
190
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
191
+
192
+ ---------------------------------------
193
+
194
+ ## artichokie
195
+ License: MIT
196
+ By: sapphi-red, Evan You
197
+ Repository: https://github.com/sapphi-red/artichokie
198
+
199
+ > MIT License
200
+ >
201
+ > Copyright (c) 2020-present, Yuxi (Evan) You
202
+ > Copyright (c) 2023-present, sapphi-red
203
+ >
204
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
205
+ > of this software and associated documentation files (the "Software"), to deal
206
+ > in the Software without restriction, including without limitation the rights
207
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
208
+ > copies of the Software, and to permit persons to whom the Software is
209
+ > furnished to do so, subject to the following conditions:
210
+ >
211
+ > The above copyright notice and this permission notice shall be included in all
212
+ > copies or substantial portions of the Software.
213
+ >
214
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
215
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
216
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
217
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
218
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
219
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
220
+ > SOFTWARE.
221
+
222
+ ---------------------------------------
223
+
224
+ ## binary-extensions
225
+ License: MIT
226
+ By: Sindre Sorhus
227
+ Repository: https://github.com/sindresorhus/binary-extensions
228
+
229
+ > MIT License
230
+ >
231
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
232
+ > Copyright (c) Paul Miller (https://paulmillr.com)
233
+ >
234
+ > 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:
235
+ >
236
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
237
+ >
238
+ > 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.
239
+
240
+ ---------------------------------------
241
+
242
+ ## braces, fill-range, is-number
243
+ License: MIT
244
+ By: Jon Schlinkert, Brian Woodward, Elan Shanker, Eugene Sharygin, hemanth.hm
245
+ Repository: https://github.com/micromatch/braces
246
+
247
+ License: MIT
248
+ By: Jon Schlinkert, Edo Rivai, Paul Miller, Rouven Weßling
249
+ Repository: https://github.com/jonschlinkert/fill-range
250
+
251
+ License: MIT
252
+ By: Jon Schlinkert, Olsten Larck, Rouven Weßling
253
+ Repository: https://github.com/jonschlinkert/is-number
254
+
255
+ > The MIT License (MIT)
256
+ >
257
+ > Copyright (c) 2014-present, Jon Schlinkert.
258
+ >
259
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
260
+ > of this software and associated documentation files (the "Software"), to deal
261
+ > in the Software without restriction, including without limitation the rights
262
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
263
+ > copies of the Software, and to permit persons to whom the Software is
264
+ > furnished to do so, subject to the following conditions:
265
+ >
266
+ > The above copyright notice and this permission notice shall be included in
267
+ > all copies or substantial portions of the Software.
268
+ >
269
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
270
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
271
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
272
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
273
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
274
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
275
+ > THE SOFTWARE.
276
+
277
+ ---------------------------------------
278
+
279
+ ## bundle-name, default-browser, default-browser-id, define-lazy-prop, is-docker, is-inside-container, is-wsl, open, run-applescript, wsl-utils
280
+ License: MIT
281
+ By: Sindre Sorhus
282
+ Repositories: https://github.com/sindresorhus/bundle-name, https://github.com/sindresorhus/default-browser, https://github.com/sindresorhus/default-browser-id, https://github.com/sindresorhus/define-lazy-prop, https://github.com/sindresorhus/is-docker, https://github.com/sindresorhus/is-inside-container, https://github.com/sindresorhus/is-wsl, https://github.com/sindresorhus/open, https://github.com/sindresorhus/run-applescript, https://github.com/sindresorhus/wsl-utils
283
+
284
+ > MIT License
285
+ >
286
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
287
+ >
288
+ > 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:
289
+ >
290
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
291
+ >
292
+ > 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.
293
+
294
+ ---------------------------------------
295
+
296
+ ## cac
297
+ License: MIT
298
+ By: egoist
299
+ Repository: https://github.com/egoist/cac
300
+
301
+ > The MIT License (MIT)
302
+ >
303
+ > Copyright (c) EGOIST <0x142857@gmail.com> (https://github.com/egoist)
304
+ >
305
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
306
+ > of this software and associated documentation files (the "Software"), to deal
307
+ > in the Software without restriction, including without limitation the rights
308
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
309
+ > copies of the Software, and to permit persons to whom the Software is
310
+ > furnished to do so, subject to the following conditions:
311
+ >
312
+ > The above copyright notice and this permission notice shall be included in
313
+ > all copies or substantial portions of the Software.
314
+ >
315
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
316
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
317
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
318
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
319
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
320
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
321
+ > THE SOFTWARE.
322
+
323
+ ---------------------------------------
324
+
325
+ ## chokidar
326
+ License: MIT
327
+ By: Paul Miller, Elan Shanker
328
+ Repository: https://github.com/paulmillr/chokidar
329
+
330
+ > The MIT License (MIT)
331
+ >
332
+ > Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
333
+ >
334
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
335
+ > of this software and associated documentation files (the “Software”), to deal
336
+ > in the Software without restriction, including without limitation the rights
337
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
338
+ > copies of the Software, and to permit persons to whom the Software is
339
+ > furnished to do so, subject to the following conditions:
340
+ >
341
+ > The above copyright notice and this permission notice shall be included in
342
+ > all copies or substantial portions of the Software.
343
+ >
344
+ > THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
345
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
346
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
347
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
348
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
349
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
350
+ > THE SOFTWARE.
351
+
352
+ ---------------------------------------
353
+
354
+ ## commondir, shell-quote
355
+ License: MIT
356
+ By: James Halliday
357
+ Repositories: http://github.com/substack/node-commondir, http://github.com/ljharb/shell-quote
358
+
359
+ > The MIT License
360
+ >
361
+ > Copyright (c) 2013 James Halliday (mail@substack.net)
362
+ >
363
+ > Permission is hereby granted, free of charge,
364
+ > to any person obtaining a copy of this software and
365
+ > associated documentation files (the "Software"), to
366
+ > deal in the Software without restriction, including
367
+ > without limitation the rights to use, copy, modify,
368
+ > merge, publish, distribute, sublicense, and/or sell
369
+ > copies of the Software, and to permit persons to whom
370
+ > the Software is furnished to do so,
371
+ > subject to the following conditions:
372
+ >
373
+ > The above copyright notice and this permission notice
374
+ > shall be included in all copies or substantial portions of the Software.
375
+ >
376
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
377
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
378
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
379
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
380
+ > ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
381
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
382
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
383
+
384
+ ---------------------------------------
385
+
386
+ ## connect
387
+ License: MIT
388
+ By: TJ Holowaychuk, Douglas Christopher Wilson, Jonathan Ong, Tim Caswell
389
+ Repository: https://github.com/senchalabs/connect
390
+
391
+ > (The MIT License)
392
+ >
393
+ > Copyright (c) 2010 Sencha Inc.
394
+ > Copyright (c) 2011 LearnBoost
395
+ > Copyright (c) 2011-2014 TJ Holowaychuk
396
+ > Copyright (c) 2015 Douglas Christopher Wilson
397
+ >
398
+ > Permission is hereby granted, free of charge, to any person obtaining
399
+ > a copy of this software and associated documentation files (the
400
+ > 'Software'), to deal in the Software without restriction, including
401
+ > without limitation the rights to use, copy, modify, merge, publish,
402
+ > distribute, sublicense, and/or sell copies of the Software, and to
403
+ > permit persons to whom the Software is furnished to do so, subject to
404
+ > the following conditions:
405
+ >
406
+ > The above copyright notice and this permission notice shall be
407
+ > included in all copies or substantial portions of the Software.
408
+ >
409
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
410
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
411
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
412
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
413
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
414
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
415
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
416
+
417
+ ---------------------------------------
418
+
419
+ ## convert-source-map
420
+ License: MIT
421
+ By: Thorsten Lorenz
422
+ Repository: https://github.com/thlorenz/convert-source-map
423
+
424
+ > Copyright 2013 Thorsten Lorenz.
425
+ > All rights reserved.
426
+ >
427
+ > Permission is hereby granted, free of charge, to any person
428
+ > obtaining a copy of this software and associated documentation
429
+ > files (the "Software"), to deal in the Software without
430
+ > restriction, including without limitation the rights to use,
431
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
432
+ > copies of the Software, and to permit persons to whom the
433
+ > Software is furnished to do so, subject to the following
434
+ > conditions:
435
+ >
436
+ > The above copyright notice and this permission notice shall be
437
+ > included in all copies or substantial portions of the Software.
438
+ >
439
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
440
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
441
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
442
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
443
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
444
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
445
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
446
+ > OTHER DEALINGS IN THE SOFTWARE.
447
+
448
+ ---------------------------------------
449
+
450
+ ## cors
451
+ License: MIT
452
+ By: Troy Goode
453
+ Repository: https://github.com/expressjs/cors
454
+
455
+ > (The MIT License)
456
+ >
457
+ > Copyright (c) 2013 Troy Goode <troygoode@gmail.com>
458
+ >
459
+ > Permission is hereby granted, free of charge, to any person obtaining
460
+ > a copy of this software and associated documentation files (the
461
+ > 'Software'), to deal in the Software without restriction, including
462
+ > without limitation the rights to use, copy, modify, merge, publish,
463
+ > distribute, sublicense, and/or sell copies of the Software, and to
464
+ > permit persons to whom the Software is furnished to do so, subject to
465
+ > the following conditions:
466
+ >
467
+ > The above copyright notice and this permission notice shall be
468
+ > included in all copies or substantial portions of the Software.
469
+ >
470
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
471
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
472
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
473
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
474
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
475
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
476
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
477
+
478
+ ---------------------------------------
479
+
480
+ ## cross-spawn
481
+ License: MIT
482
+ By: André Cruz
483
+ Repository: https://github.com/moxystudio/node-cross-spawn
484
+
485
+ > The MIT License (MIT)
486
+ >
487
+ > Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
488
+ >
489
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
490
+ > of this software and associated documentation files (the "Software"), to deal
491
+ > in the Software without restriction, including without limitation the rights
492
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
493
+ > copies of the Software, and to permit persons to whom the Software is
494
+ > furnished to do so, subject to the following conditions:
495
+ >
496
+ > The above copyright notice and this permission notice shall be included in
497
+ > all copies or substantial portions of the Software.
498
+ >
499
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
500
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
501
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
502
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
503
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
504
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
505
+ > THE SOFTWARE.
506
+
507
+ ---------------------------------------
508
+
509
+ ## cssesc
510
+ License: MIT
511
+ By: Mathias Bynens
512
+ Repository: https://github.com/mathiasbynens/cssesc
513
+
514
+ > Copyright Mathias Bynens <https://mathiasbynens.be/>
515
+ >
516
+ > Permission is hereby granted, free of charge, to any person obtaining
517
+ > a copy of this software and associated documentation files (the
518
+ > "Software"), to deal in the Software without restriction, including
519
+ > without limitation the rights to use, copy, modify, merge, publish,
520
+ > distribute, sublicense, and/or sell copies of the Software, and to
521
+ > permit persons to whom the Software is furnished to do so, subject to
522
+ > the following conditions:
523
+ >
524
+ > The above copyright notice and this permission notice shall be
525
+ > included in all copies or substantial portions of the Software.
526
+ >
527
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
528
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
529
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
530
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
531
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
532
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
533
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
534
+
535
+ ---------------------------------------
536
+
537
+ ## dotenv
538
+ License: BSD-2-Clause
539
+ Repository: https://github.com/motdotla/dotenv
540
+
541
+ > Copyright (c) 2015, Scott Motte
542
+ > All rights reserved.
543
+ >
544
+ > Redistribution and use in source and binary forms, with or without
545
+ > modification, are permitted provided that the following conditions are met:
546
+ >
547
+ > * Redistributions of source code must retain the above copyright notice, this
548
+ > list of conditions and the following disclaimer.
549
+ >
550
+ > * Redistributions in binary form must reproduce the above copyright notice,
551
+ > this list of conditions and the following disclaimer in the documentation
552
+ > and/or other materials provided with the distribution.
553
+ >
554
+ > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
555
+ > AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
556
+ > IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
557
+ > DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
558
+ > FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
559
+ > DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
560
+ > SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
561
+ > CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
562
+ > OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
563
+ > OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
564
+
565
+ ---------------------------------------
566
+
567
+ ## dotenv-expand
568
+ License: BSD-2-Clause
569
+ By: motdotla
570
+ Repository: https://github.com/motdotla/dotenv-expand
571
+
572
+ > Copyright (c) 2016, Scott Motte
573
+ > All rights reserved.
574
+ >
575
+ > Redistribution and use in source and binary forms, with or without
576
+ > modification, are permitted provided that the following conditions are met:
577
+ >
578
+ > * Redistributions of source code must retain the above copyright notice, this
579
+ > list of conditions and the following disclaimer.
580
+ >
581
+ > * Redistributions in binary form must reproduce the above copyright notice,
582
+ > this list of conditions and the following disclaimer in the documentation
583
+ > and/or other materials provided with the distribution.
584
+ >
585
+ > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
586
+ > AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
587
+ > IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
588
+ > DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
589
+ > FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
590
+ > DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
591
+ > SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
592
+ > CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
593
+ > OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
594
+ > OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
595
+
596
+ ---------------------------------------
597
+
598
+ ## ee-first
599
+ License: MIT
600
+ By: Jonathan Ong, Douglas Christopher Wilson
601
+ Repository: https://github.com/jonathanong/ee-first
602
+
603
+ > The MIT License (MIT)
604
+ >
605
+ > Copyright (c) 2014 Jonathan Ong me@jongleberry.com
606
+ >
607
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
608
+ > of this software and associated documentation files (the "Software"), to deal
609
+ > in the Software without restriction, including without limitation the rights
610
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
611
+ > copies of the Software, and to permit persons to whom the Software is
612
+ > furnished to do so, subject to the following conditions:
613
+ >
614
+ > The above copyright notice and this permission notice shall be included in
615
+ > all copies or substantial portions of the Software.
616
+ >
617
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
618
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
619
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
620
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
621
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
622
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
623
+ > THE SOFTWARE.
624
+
625
+ ---------------------------------------
626
+
627
+ ## encodeurl
628
+ License: MIT
629
+ By: Douglas Christopher Wilson
630
+ Repository: https://github.com/pillarjs/encodeurl
631
+
632
+ > (The MIT License)
633
+ >
634
+ > Copyright (c) 2016 Douglas Christopher Wilson
635
+ >
636
+ > Permission is hereby granted, free of charge, to any person obtaining
637
+ > a copy of this software and associated documentation files (the
638
+ > 'Software'), to deal in the Software without restriction, including
639
+ > without limitation the rights to use, copy, modify, merge, publish,
640
+ > distribute, sublicense, and/or sell copies of the Software, and to
641
+ > permit persons to whom the Software is furnished to do so, subject to
642
+ > the following conditions:
643
+ >
644
+ > The above copyright notice and this permission notice shall be
645
+ > included in all copies or substantial portions of the Software.
646
+ >
647
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
648
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
649
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
650
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
651
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
652
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
653
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
654
+
655
+ ---------------------------------------
656
+
657
+ ## entities
658
+ License: BSD-2-Clause
659
+ By: Felix Boehm
660
+ Repository: https://github.com/fb55/entities
661
+
662
+ > Copyright (c) Felix Böhm
663
+ > All rights reserved.
664
+ >
665
+ > Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
666
+ >
667
+ > Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
668
+ >
669
+ > 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.
670
+ >
671
+ > THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
672
+ > EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
673
+
674
+ ---------------------------------------
675
+
676
+ ## es-module-lexer
677
+ License: MIT
678
+ By: Guy Bedford
679
+ Repository: https://github.com/guybedford/es-module-lexer
680
+
681
+ > MIT License
682
+ > -----------
683
+ >
684
+ > Copyright (C) 2018-2022 Guy Bedford
685
+ >
686
+ > 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:
687
+ >
688
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
689
+ >
690
+ > 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.
691
+
692
+ ---------------------------------------
693
+
694
+ ## escape-html
695
+ License: MIT
696
+ Repository: https://github.com/component/escape-html
697
+
698
+ > (The MIT License)
699
+ >
700
+ > Copyright (c) 2012-2013 TJ Holowaychuk
701
+ > Copyright (c) 2015 Andreas Lubbe
702
+ > Copyright (c) 2015 Tiancheng "Timothy" Gu
703
+ >
704
+ > Permission is hereby granted, free of charge, to any person obtaining
705
+ > a copy of this software and associated documentation files (the
706
+ > 'Software'), to deal in the Software without restriction, including
707
+ > without limitation the rights to use, copy, modify, merge, publish,
708
+ > distribute, sublicense, and/or sell copies of the Software, and to
709
+ > permit persons to whom the Software is furnished to do so, subject to
710
+ > the following conditions:
711
+ >
712
+ > The above copyright notice and this permission notice shall be
713
+ > included in all copies or substantial portions of the Software.
714
+ >
715
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
716
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
717
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
718
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
719
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
720
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
721
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
722
+
723
+ ---------------------------------------
724
+
725
+ ## estree-walker
726
+ License: MIT
727
+ By: Rich Harris
728
+ Repository: https://github.com/Rich-Harris/estree-walker
729
+
730
+ > Copyright (c) 2015-20 [these people](https://github.com/Rich-Harris/estree-walker/graphs/contributors)
731
+ >
732
+ > 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:
733
+ >
734
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
735
+ >
736
+ > 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.
737
+
738
+ ---------------------------------------
739
+
740
+ ## etag
741
+ License: MIT
742
+ By: Douglas Christopher Wilson, David Björklund
743
+ Repository: https://github.com/jshttp/etag
744
+
745
+ > (The MIT License)
746
+ >
747
+ > Copyright (c) 2014-2016 Douglas Christopher Wilson
748
+ >
749
+ > Permission is hereby granted, free of charge, to any person obtaining
750
+ > a copy of this software and associated documentation files (the
751
+ > 'Software'), to deal in the Software without restriction, including
752
+ > without limitation the rights to use, copy, modify, merge, publish,
753
+ > distribute, sublicense, and/or sell copies of the Software, and to
754
+ > permit persons to whom the Software is furnished to do so, subject to
755
+ > the following conditions:
756
+ >
757
+ > The above copyright notice and this permission notice shall be
758
+ > included in all copies or substantial portions of the Software.
759
+ >
760
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
761
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
762
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
763
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
764
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
765
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
766
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
767
+
768
+ ---------------------------------------
769
+
770
+ ## finalhandler
771
+ License: MIT
772
+ By: Douglas Christopher Wilson
773
+ Repository: https://github.com/pillarjs/finalhandler
774
+
775
+ > (The MIT License)
776
+ >
777
+ > Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
778
+ >
779
+ > Permission is hereby granted, free of charge, to any person obtaining
780
+ > a copy of this software and associated documentation files (the
781
+ > 'Software'), to deal in the Software without restriction, including
782
+ > without limitation the rights to use, copy, modify, merge, publish,
783
+ > distribute, sublicense, and/or sell copies of the Software, and to
784
+ > permit persons to whom the Software is furnished to do so, subject to
785
+ > the following conditions:
786
+ >
787
+ > The above copyright notice and this permission notice shall be
788
+ > included in all copies or substantial portions of the Software.
789
+ >
790
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
791
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
792
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
793
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
794
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
795
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
796
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
797
+
798
+ ---------------------------------------
799
+
800
+ ## follow-redirects
801
+ License: MIT
802
+ By: Ruben Verborgh, Olivier Lalonde, James Talmage
803
+ Repository: https://github.com/follow-redirects/follow-redirects
804
+
805
+ > Copyright 2014–present Olivier Lalonde <olalonde@gmail.com>, James Talmage <james@talmage.io>, Ruben Verborgh
806
+ >
807
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
808
+ > this software and associated documentation files (the "Software"), to deal in
809
+ > the Software without restriction, including without limitation the rights to
810
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
811
+ > of the Software, and to permit persons to whom the Software is furnished to do
812
+ > so, subject to the following conditions:
813
+ >
814
+ > The above copyright notice and this permission notice shall be included in all
815
+ > copies or substantial portions of the Software.
816
+ >
817
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
818
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
819
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
820
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
821
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
822
+ > IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
823
+
824
+ ---------------------------------------
825
+
826
+ ## generic-names
827
+ License: MIT
828
+ By: Alexey Litvinov
829
+ Repository: https://github.com/css-modules/generic-names
830
+
831
+ > The MIT License (MIT)
832
+ >
833
+ > Copyright (c) 2015 Alexey Litvinov
834
+ >
835
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
836
+ > of this software and associated documentation files (the "Software"), to deal
837
+ > in the Software without restriction, including without limitation the rights
838
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
839
+ > copies of the Software, and to permit persons to whom the Software is
840
+ > furnished to do so, subject to the following conditions:
841
+ >
842
+ > The above copyright notice and this permission notice shall be included in all
843
+ > copies or substantial portions of the Software.
844
+ >
845
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
846
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
847
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
848
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
849
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
850
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
851
+ > SOFTWARE.
852
+
853
+ ---------------------------------------
854
+
855
+ ## glob-parent
856
+ License: ISC
857
+ By: Gulp Team, Elan Shanker, Blaine Bublitz
858
+ Repository: https://github.com/gulpjs/glob-parent
859
+
860
+ > The ISC License
861
+ >
862
+ > Copyright (c) 2015, 2019 Elan Shanker
863
+ >
864
+ > Permission to use, copy, modify, and/or distribute this software for any
865
+ > purpose with or without fee is hereby granted, provided that the above
866
+ > copyright notice and this permission notice appear in all copies.
867
+ >
868
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
869
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
870
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
871
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
872
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
873
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
874
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
875
+
876
+ ---------------------------------------
877
+
878
+ ## host-validation-middleware
879
+ License: MIT
880
+ By: sapphi-red
881
+ Repository: https://github.com/sapphi-red/host-validation-middleware
882
+
883
+ > MIT License
884
+ >
885
+ > Copyright (c) 2025 sapphi-red
886
+ >
887
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
888
+ > of this software and associated documentation files (the "Software"), to deal
889
+ > in the Software without restriction, including without limitation the rights
890
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
891
+ > copies of the Software, and to permit persons to whom the Software is
892
+ > furnished to do so, subject to the following conditions:
893
+ >
894
+ > The above copyright notice and this permission notice shall be included in all
895
+ > copies or substantial portions of the Software.
896
+ >
897
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
898
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
899
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
900
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
901
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
902
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
903
+ > SOFTWARE.
904
+
905
+ ---------------------------------------
906
+
907
+ ## http-proxy-3
908
+ License: MIT
909
+ By: William Stein, Charlie Robbins, Jimb Esser, jcrugzz
910
+ Repository: https://github.com/sagemathinc/http-proxy-3
911
+
912
+ > node-http-3
913
+ >
914
+ > Copyright (c) 2010-2025 William Stein, Charlie Robbins, Jarrett Cruger & the Contributors.
915
+ >
916
+ > Permission is hereby granted, free of charge, to any person obtaining
917
+ > a copy of this software and associated documentation files (the
918
+ > "Software"), to deal in the Software without restriction, including
919
+ > without limitation the rights to use, copy, modify, merge, publish,
920
+ > distribute, sublicense, and/or sell copies of the Software, and to
921
+ > permit persons to whom the Software is furnished to do so, subject to
922
+ > the following conditions:
923
+ >
924
+ > The above copyright notice and this permission notice shall be
925
+ > included in all copies or substantial portions of the Software.
926
+ >
927
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
928
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
929
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
930
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
931
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
932
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
933
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
934
+
935
+ ---------------------------------------
936
+
937
+ ## icss-utils
938
+ License: ISC
939
+ By: Glen Maddern
940
+ Repository: https://github.com/css-modules/icss-utils
941
+
942
+ > ISC License (ISC)
943
+ > Copyright 2018 Glen Maddern
944
+ >
945
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
946
+ >
947
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
948
+
949
+ ---------------------------------------
950
+
951
+ ## is-binary-path
952
+ License: MIT
953
+ By: Sindre Sorhus
954
+ Repository: https://github.com/sindresorhus/is-binary-path
955
+
956
+ > MIT License
957
+ >
958
+ > Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
959
+ >
960
+ > 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:
961
+ >
962
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
963
+ >
964
+ > 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.
965
+
966
+ ---------------------------------------
967
+
968
+ ## is-extglob
969
+ License: MIT
970
+ By: Jon Schlinkert
971
+ Repository: https://github.com/jonschlinkert/is-extglob
972
+
973
+ > The MIT License (MIT)
974
+ >
975
+ > Copyright (c) 2014-2016, Jon Schlinkert
976
+ >
977
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
978
+ > of this software and associated documentation files (the "Software"), to deal
979
+ > in the Software without restriction, including without limitation the rights
980
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
981
+ > copies of the Software, and to permit persons to whom the Software is
982
+ > furnished to do so, subject to the following conditions:
983
+ >
984
+ > The above copyright notice and this permission notice shall be included in
985
+ > all copies or substantial portions of the Software.
986
+ >
987
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
988
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
989
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
990
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
991
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
992
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
993
+ > THE SOFTWARE.
994
+
995
+ ---------------------------------------
996
+
997
+ ## is-glob
998
+ License: MIT
999
+ By: Jon Schlinkert, Brian Woodward, Daniel Perez
1000
+ Repository: https://github.com/micromatch/is-glob
1001
+
1002
+ > The MIT License (MIT)
1003
+ >
1004
+ > Copyright (c) 2014-2017, Jon Schlinkert.
1005
+ >
1006
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1007
+ > of this software and associated documentation files (the "Software"), to deal
1008
+ > in the Software without restriction, including without limitation the rights
1009
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1010
+ > copies of the Software, and to permit persons to whom the Software is
1011
+ > furnished to do so, subject to the following conditions:
1012
+ >
1013
+ > The above copyright notice and this permission notice shall be included in
1014
+ > all copies or substantial portions of the Software.
1015
+ >
1016
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1017
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1018
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1019
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1020
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1021
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1022
+ > THE SOFTWARE.
1023
+
1024
+ ---------------------------------------
1025
+
1026
+ ## is-reference
1027
+ License: MIT
1028
+ By: Rich Harris
1029
+ Repository: https://github.com/Rich-Harris/is-reference
1030
+
1031
+ ---------------------------------------
1032
+
1033
+ ## isexe, which
1034
+ License: ISC
1035
+ By: Isaac Z. Schlueter
1036
+ Repositories: https://github.com/isaacs/isexe, https://github.com/isaacs/node-which
1037
+
1038
+ > The ISC License
1039
+ >
1040
+ > Copyright (c) Isaac Z. Schlueter and Contributors
1041
+ >
1042
+ > Permission to use, copy, modify, and/or distribute this software for any
1043
+ > purpose with or without fee is hereby granted, provided that the above
1044
+ > copyright notice and this permission notice appear in all copies.
1045
+ >
1046
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1047
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1048
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1049
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1050
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1051
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1052
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1053
+
1054
+ ---------------------------------------
1055
+
1056
+ ## js-tokens
1057
+ License: MIT
1058
+ By: Simon Lydell
1059
+ Repository: https://github.com/lydell/js-tokens
1060
+
1061
+ > The MIT License (MIT)
1062
+ >
1063
+ > Copyright (c) 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Simon Lydell
1064
+ >
1065
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1066
+ > of this software and associated documentation files (the "Software"), to deal
1067
+ > in the Software without restriction, including without limitation the rights
1068
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1069
+ > copies of the Software, and to permit persons to whom the Software is
1070
+ > furnished to do so, subject to the following conditions:
1071
+ >
1072
+ > The above copyright notice and this permission notice shall be included in
1073
+ > all copies or substantial portions of the Software.
1074
+ >
1075
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1076
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1077
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1078
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1079
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1080
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1081
+ > THE SOFTWARE.
1082
+
1083
+ ---------------------------------------
1084
+
1085
+ ## launch-editor, launch-editor-middleware
1086
+ License: MIT
1087
+ By: Evan You
1088
+ Repositories: https://github.com/yyx990803/launch-editor, https://github.com/yyx990803/launch-editor
1089
+
1090
+ > The MIT License (MIT)
1091
+ >
1092
+ > Copyright (c) 2017-present, Yuxi (Evan) You
1093
+ >
1094
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1095
+ > of this software and associated documentation files (the "Software"), to deal
1096
+ > in the Software without restriction, including without limitation the rights
1097
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1098
+ > copies of the Software, and to permit persons to whom the Software is
1099
+ > furnished to do so, subject to the following conditions:
1100
+ >
1101
+ > The above copyright notice and this permission notice shall be included in
1102
+ > all copies or substantial portions of the Software.
1103
+ >
1104
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1105
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1106
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1107
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1108
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1109
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1110
+ > THE SOFTWARE.
1111
+
1112
+ ---------------------------------------
1113
+
1114
+ ## lilconfig
1115
+ License: MIT
1116
+ By: antonk52
1117
+ Repository: https://github.com/antonk52/lilconfig
1118
+
1119
+ > MIT License
1120
+ >
1121
+ > Copyright (c) 2022 Anton Kastritskiy
1122
+ >
1123
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1124
+ > of this software and associated documentation files (the "Software"), to deal
1125
+ > in the Software without restriction, including without limitation the rights
1126
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1127
+ > copies of the Software, and to permit persons to whom the Software is
1128
+ > furnished to do so, subject to the following conditions:
1129
+ >
1130
+ > The above copyright notice and this permission notice shall be included in all
1131
+ > copies or substantial portions of the Software.
1132
+ >
1133
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1134
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1135
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1136
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1137
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1138
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1139
+ > SOFTWARE.
1140
+
1141
+ ---------------------------------------
1142
+
1143
+ ## loader-utils
1144
+ License: MIT
1145
+ By: Tobias Koppers @sokra
1146
+ Repository: https://github.com/webpack/loader-utils
1147
+
1148
+ > Copyright JS Foundation and other contributors
1149
+ >
1150
+ > Permission is hereby granted, free of charge, to any person obtaining
1151
+ > a copy of this software and associated documentation files (the
1152
+ > 'Software'), to deal in the Software without restriction, including
1153
+ > without limitation the rights to use, copy, modify, merge, publish,
1154
+ > distribute, sublicense, and/or sell copies of the Software, and to
1155
+ > permit persons to whom the Software is furnished to do so, subject to
1156
+ > the following conditions:
1157
+ >
1158
+ > The above copyright notice and this permission notice shall be
1159
+ > included in all copies or substantial portions of the Software.
1160
+ >
1161
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1162
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1163
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1164
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1165
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1166
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1167
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1168
+
1169
+ ---------------------------------------
1170
+
1171
+ ## lodash.camelcase
1172
+ License: MIT
1173
+ By: John-David Dalton, Blaine Bublitz, Mathias Bynens
1174
+ Repository: https://github.com/lodash/lodash
1175
+
1176
+ > Copyright jQuery Foundation and other contributors <https://jquery.org/>
1177
+ >
1178
+ > Based on Underscore.js, copyright Jeremy Ashkenas,
1179
+ > DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
1180
+ >
1181
+ > This software consists of voluntary contributions made by many
1182
+ > individuals. For exact contribution history, see the revision history
1183
+ > available at https://github.com/lodash/lodash
1184
+ >
1185
+ > The following license applies to all parts of this software except as
1186
+ > documented below:
1187
+ >
1188
+ > ====
1189
+ >
1190
+ > Permission is hereby granted, free of charge, to any person obtaining
1191
+ > a copy of this software and associated documentation files (the
1192
+ > "Software"), to deal in the Software without restriction, including
1193
+ > without limitation the rights to use, copy, modify, merge, publish,
1194
+ > distribute, sublicense, and/or sell copies of the Software, and to
1195
+ > permit persons to whom the Software is furnished to do so, subject to
1196
+ > the following conditions:
1197
+ >
1198
+ > The above copyright notice and this permission notice shall be
1199
+ > included in all copies or substantial portions of the Software.
1200
+ >
1201
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1202
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1203
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1204
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1205
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1206
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1207
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1208
+ >
1209
+ > ====
1210
+ >
1211
+ > Copyright and related rights for sample code are waived via CC0. Sample
1212
+ > code is defined as all source code displayed within the prose of the
1213
+ > documentation.
1214
+ >
1215
+ > CC0: http://creativecommons.org/publicdomain/zero/1.0/
1216
+ >
1217
+ > ====
1218
+ >
1219
+ > Files located in the node_modules and vendor directories are externally
1220
+ > maintained libraries used by this software which have their own
1221
+ > licenses; we recommend you read them, as their terms may differ from the
1222
+ > terms above.
1223
+
1224
+ ---------------------------------------
1225
+
1226
+ ## magic-string
1227
+ License: MIT
1228
+ By: Rich Harris
1229
+ Repository: https://github.com/Rich-Harris/magic-string
1230
+
1231
+ > Copyright 2018 Rich Harris
1232
+ >
1233
+ > 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:
1234
+ >
1235
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1236
+ >
1237
+ > 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.
1238
+
1239
+ ---------------------------------------
1240
+
1241
+ ## mlly, ufo
1242
+ License: MIT
1243
+ Repositories: https://github.com/unjs/mlly, https://github.com/unjs/ufo
1244
+
1245
+ > MIT License
1246
+ >
1247
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
1248
+ >
1249
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1250
+ > of this software and associated documentation files (the "Software"), to deal
1251
+ > in the Software without restriction, including without limitation the rights
1252
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1253
+ > copies of the Software, and to permit persons to whom the Software is
1254
+ > furnished to do so, subject to the following conditions:
1255
+ >
1256
+ > The above copyright notice and this permission notice shall be included in all
1257
+ > copies or substantial portions of the Software.
1258
+ >
1259
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1260
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1261
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1262
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1263
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1264
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1265
+ > SOFTWARE.
1266
+
1267
+ ---------------------------------------
1268
+
1269
+ ## mrmime
1270
+ License: MIT
1271
+ By: Luke Edwards
1272
+ Repository: https://github.com/lukeed/mrmime
1273
+
1274
+ > The MIT License (MIT)
1275
+ >
1276
+ > Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (https://lukeed.com)
1277
+ >
1278
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1279
+ > of this software and associated documentation files (the "Software"), to deal
1280
+ > in the Software without restriction, including without limitation the rights
1281
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1282
+ > copies of the Software, and to permit persons to whom the Software is
1283
+ > furnished to do so, subject to the following conditions:
1284
+ >
1285
+ > The above copyright notice and this permission notice shall be included in
1286
+ > all copies or substantial portions of the Software.
1287
+ >
1288
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1289
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1290
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1291
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1292
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1293
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1294
+ > THE SOFTWARE.
1295
+
1296
+ ---------------------------------------
1297
+
1298
+ ## normalize-path
1299
+ License: MIT
1300
+ By: Jon Schlinkert, Blaine Bublitz
1301
+ Repository: https://github.com/jonschlinkert/normalize-path
1302
+
1303
+ > The MIT License (MIT)
1304
+ >
1305
+ > Copyright (c) 2014-2018, Jon Schlinkert.
1306
+ >
1307
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1308
+ > of this software and associated documentation files (the "Software"), to deal
1309
+ > in the Software without restriction, including without limitation the rights
1310
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1311
+ > copies of the Software, and to permit persons to whom the Software is
1312
+ > furnished to do so, subject to the following conditions:
1313
+ >
1314
+ > The above copyright notice and this permission notice shall be included in
1315
+ > all copies or substantial portions of the Software.
1316
+ >
1317
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1318
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1319
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1320
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1321
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1322
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1323
+ > THE SOFTWARE.
1324
+
1325
+ ---------------------------------------
1326
+
1327
+ ## object-assign
1328
+ License: MIT
1329
+ By: Sindre Sorhus
1330
+ Repository: https://github.com/sindresorhus/object-assign
1331
+
1332
+ > The MIT License (MIT)
1333
+ >
1334
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1335
+ >
1336
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1337
+ > of this software and associated documentation files (the "Software"), to deal
1338
+ > in the Software without restriction, including without limitation the rights
1339
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1340
+ > copies of the Software, and to permit persons to whom the Software is
1341
+ > furnished to do so, subject to the following conditions:
1342
+ >
1343
+ > The above copyright notice and this permission notice shall be included in
1344
+ > all copies or substantial portions of the Software.
1345
+ >
1346
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1347
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1348
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1349
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1350
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1351
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1352
+ > THE SOFTWARE.
1353
+
1354
+ ---------------------------------------
1355
+
1356
+ ## obug
1357
+ License: MIT
1358
+ By: Kevin Deng
1359
+ Repository: https://github.com/sxzz/obug
1360
+
1361
+ > The MIT License (MIT)
1362
+ >
1363
+ > Copyright © 2025-PRESENT Kevin Deng (https://github.com/sxzz)
1364
+ > Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
1365
+ > Copyright (c) 2018-2021 Josh Junon
1366
+ >
1367
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1368
+ > of this software and associated documentation files (the "Software"), to deal
1369
+ > in the Software without restriction, including without limitation the rights
1370
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1371
+ > copies of the Software, and to permit persons to whom the Software is
1372
+ > furnished to do so, subject to the following conditions:
1373
+ >
1374
+ > The above copyright notice and this permission notice shall be included in all
1375
+ > copies or substantial portions of the Software.
1376
+ >
1377
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1378
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1379
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1380
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1381
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1382
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1383
+ > SOFTWARE.
1384
+
1385
+ ---------------------------------------
1386
+
1387
+ ## on-finished
1388
+ License: MIT
1389
+ By: Douglas Christopher Wilson, Jonathan Ong
1390
+ Repository: https://github.com/jshttp/on-finished
1391
+
1392
+ > (The MIT License)
1393
+ >
1394
+ > Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
1395
+ > Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>
1396
+ >
1397
+ > Permission is hereby granted, free of charge, to any person obtaining
1398
+ > a copy of this software and associated documentation files (the
1399
+ > 'Software'), to deal in the Software without restriction, including
1400
+ > without limitation the rights to use, copy, modify, merge, publish,
1401
+ > distribute, sublicense, and/or sell copies of the Software, and to
1402
+ > permit persons to whom the Software is furnished to do so, subject to
1403
+ > the following conditions:
1404
+ >
1405
+ > The above copyright notice and this permission notice shall be
1406
+ > included in all copies or substantial portions of the Software.
1407
+ >
1408
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1409
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1410
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1411
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1412
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1413
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1414
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1415
+
1416
+ ---------------------------------------
1417
+
1418
+ ## parse5
1419
+ License: MIT
1420
+ By: Ivan Nikulin, https://github.com/inikulin/parse5/graphs/contributors
1421
+ Repository: https://github.com/inikulin/parse5
1422
+
1423
+ > Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)
1424
+ >
1425
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1426
+ > of this software and associated documentation files (the "Software"), to deal
1427
+ > in the Software without restriction, including without limitation the rights
1428
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1429
+ > copies of the Software, and to permit persons to whom the Software is
1430
+ > furnished to do so, subject to the following conditions:
1431
+ >
1432
+ > The above copyright notice and this permission notice shall be included in
1433
+ > all copies or substantial portions of the Software.
1434
+ >
1435
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1436
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1437
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1438
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1439
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1440
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1441
+ > THE SOFTWARE.
1442
+
1443
+ ---------------------------------------
1444
+
1445
+ ## parseurl
1446
+ License: MIT
1447
+ By: Douglas Christopher Wilson, Jonathan Ong
1448
+ Repository: https://github.com/pillarjs/parseurl
1449
+
1450
+ > (The MIT License)
1451
+ >
1452
+ > Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
1453
+ > Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
1454
+ >
1455
+ > Permission is hereby granted, free of charge, to any person obtaining
1456
+ > a copy of this software and associated documentation files (the
1457
+ > 'Software'), to deal in the Software without restriction, including
1458
+ > without limitation the rights to use, copy, modify, merge, publish,
1459
+ > distribute, sublicense, and/or sell copies of the Software, and to
1460
+ > permit persons to whom the Software is furnished to do so, subject to
1461
+ > the following conditions:
1462
+ >
1463
+ > The above copyright notice and this permission notice shall be
1464
+ > included in all copies or substantial portions of the Software.
1465
+ >
1466
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1467
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1468
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1469
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1470
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1471
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1472
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1473
+
1474
+ ---------------------------------------
1475
+
1476
+ ## path-key, shebang-regex
1477
+ License: MIT
1478
+ By: Sindre Sorhus
1479
+ Repositories: https://github.com/sindresorhus/path-key, https://github.com/sindresorhus/shebang-regex
1480
+
1481
+ > MIT License
1482
+ >
1483
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1484
+ >
1485
+ > 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:
1486
+ >
1487
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1488
+ >
1489
+ > 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.
1490
+
1491
+ ---------------------------------------
1492
+
1493
+ ## periscopic
1494
+ License: MIT
1495
+ Repository: https://github.com/Rich-Harris/periscopic
1496
+
1497
+ > Copyright (c) 2019 Rich Harris
1498
+ >
1499
+ > 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:
1500
+ >
1501
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1502
+ >
1503
+ > 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.
1504
+
1505
+ ---------------------------------------
1506
+
1507
+ ## picocolors
1508
+ License: ISC
1509
+ By: Alexey Raspopov
1510
+ Repository: https://github.com/alexeyraspopov/picocolors
1511
+
1512
+ > ISC License
1513
+ >
1514
+ > Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
1515
+ >
1516
+ > Permission to use, copy, modify, and/or distribute this software for any
1517
+ > purpose with or without fee is hereby granted, provided that the above
1518
+ > copyright notice and this permission notice appear in all copies.
1519
+ >
1520
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1521
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1522
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1523
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1524
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1525
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1526
+ > OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1527
+
1528
+ ---------------------------------------
1529
+
1530
+ ## postcss-import
1531
+ License: MIT
1532
+ By: Maxime Thirouin
1533
+ Repository: https://github.com/postcss/postcss-import
1534
+
1535
+ > The MIT License (MIT)
1536
+ >
1537
+ > Copyright (c) 2014 Maxime Thirouin, Jason Campbell & Kevin Mårtensson
1538
+ >
1539
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
1540
+ > this software and associated documentation files (the "Software"), to deal in
1541
+ > the Software without restriction, including without limitation the rights to
1542
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1543
+ > the Software, and to permit persons to whom the Software is furnished to do so,
1544
+ > subject to the following conditions:
1545
+ >
1546
+ > The above copyright notice and this permission notice shall be included in all
1547
+ > copies or substantial portions of the Software.
1548
+ >
1549
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1550
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1551
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1552
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1553
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1554
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1555
+
1556
+ ---------------------------------------
1557
+
1558
+ ## postcss-load-config
1559
+ License: MIT
1560
+ By: Michael Ciniawky, Ryan Dunckel, Mateusz Derks, Dalton Santos, Patrick Gilday, François Wouts
1561
+ Repository: https://github.com/postcss/postcss-load-config
1562
+
1563
+ > The MIT License (MIT)
1564
+ >
1565
+ > Copyright Michael Ciniawsky <michael.ciniawsky@gmail.com>
1566
+ >
1567
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
1568
+ > this software and associated documentation files (the "Software"), to deal in
1569
+ > the Software without restriction, including without limitation the rights to
1570
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1571
+ > the Software, and to permit persons to whom the Software is furnished to do so,
1572
+ > subject to the following conditions:
1573
+ >
1574
+ > The above copyright notice and this permission notice shall be included in all
1575
+ > copies or substantial portions of the Software.
1576
+ >
1577
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1578
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1579
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1580
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1581
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1582
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1583
+
1584
+ ---------------------------------------
1585
+
1586
+ ## postcss-modules
1587
+ License: MIT
1588
+ By: Alexander Madyankin
1589
+ Repository: https://github.com/css-modules/postcss-modules
1590
+
1591
+ > The MIT License (MIT)
1592
+ >
1593
+ > Copyright 2015-present Alexander Madyankin <alexander@madyankin.name>
1594
+ >
1595
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
1596
+ > this software and associated documentation files (the "Software"), to deal in
1597
+ > the Software without restriction, including without limitation the rights to
1598
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1599
+ > the Software, and to permit persons to whom the Software is furnished to do so,
1600
+ > subject to the following conditions:
1601
+ >
1602
+ > The above copyright notice and this permission notice shall be included in all
1603
+ > copies or substantial portions of the Software.
1604
+ >
1605
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1606
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1607
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1608
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1609
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1610
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1611
+
1612
+ ---------------------------------------
1613
+
1614
+ ## postcss-modules-extract-imports
1615
+ License: ISC
1616
+ By: Glen Maddern
1617
+ Repository: https://github.com/css-modules/postcss-modules-extract-imports
1618
+
1619
+ > Copyright 2015 Glen Maddern
1620
+ >
1621
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
1622
+ >
1623
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1624
+
1625
+ ---------------------------------------
1626
+
1627
+ ## postcss-modules-local-by-default
1628
+ License: MIT
1629
+ By: Mark Dalgleish
1630
+ Repository: https://github.com/css-modules/postcss-modules-local-by-default
1631
+
1632
+ > The MIT License (MIT)
1633
+ >
1634
+ > Copyright 2015 Mark Dalgleish <mark.john.dalgleish@gmail.com>
1635
+ >
1636
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
1637
+ > this software and associated documentation files (the "Software"), to deal in
1638
+ > the Software without restriction, including without limitation the rights to
1639
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1640
+ > the Software, and to permit persons to whom the Software is furnished to do so,
1641
+ > subject to the following conditions:
1642
+ >
1643
+ > The above copyright notice and this permission notice shall be included in all
1644
+ > copies or substantial portions of the Software.
1645
+ >
1646
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1647
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1648
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1649
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1650
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1651
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1652
+
1653
+ ---------------------------------------
1654
+
1655
+ ## postcss-modules-scope
1656
+ License: ISC
1657
+ By: Glen Maddern
1658
+ Repository: https://github.com/css-modules/postcss-modules-scope
1659
+
1660
+ > ISC License (ISC)
1661
+ >
1662
+ > Copyright (c) 2015, Glen Maddern
1663
+ >
1664
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
1665
+ >
1666
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1667
+
1668
+ ---------------------------------------
1669
+
1670
+ ## postcss-modules-values
1671
+ License: ISC
1672
+ By: Glen Maddern
1673
+ Repository: https://github.com/css-modules/postcss-modules-values
1674
+
1675
+ > ISC License (ISC)
1676
+ >
1677
+ > Copyright (c) 2015, Glen Maddern
1678
+ >
1679
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
1680
+ >
1681
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1682
+
1683
+ ---------------------------------------
1684
+
1685
+ ## postcss-selector-parser
1686
+ License: MIT
1687
+ By: Ben Briggs, Chris Eppstein
1688
+ Repository: https://github.com/postcss/postcss-selector-parser
1689
+
1690
+ > Copyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
1691
+ >
1692
+ > Permission is hereby granted, free of charge, to any person
1693
+ > obtaining a copy of this software and associated documentation
1694
+ > files (the "Software"), to deal in the Software without
1695
+ > restriction, including without limitation the rights to use,
1696
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
1697
+ > copies of the Software, and to permit persons to whom the
1698
+ > Software is furnished to do so, subject to the following
1699
+ > conditions:
1700
+ >
1701
+ > The above copyright notice and this permission notice shall be
1702
+ > included in all copies or substantial portions of the Software.
1703
+ >
1704
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1705
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1706
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1707
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1708
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1709
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1710
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1711
+ > OTHER DEALINGS IN THE SOFTWARE.
1712
+
1713
+ ---------------------------------------
1714
+
1715
+ ## postcss-value-parser
1716
+ License: MIT
1717
+ By: Bogdan Chadkin
1718
+ Repository: https://github.com/TrySound/postcss-value-parser
1719
+
1720
+ > Copyright (c) Bogdan Chadkin <trysound@yandex.ru>
1721
+ >
1722
+ > Permission is hereby granted, free of charge, to any person
1723
+ > obtaining a copy of this software and associated documentation
1724
+ > files (the "Software"), to deal in the Software without
1725
+ > restriction, including without limitation the rights to use,
1726
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
1727
+ > copies of the Software, and to permit persons to whom the
1728
+ > Software is furnished to do so, subject to the following
1729
+ > conditions:
1730
+ >
1731
+ > The above copyright notice and this permission notice shall be
1732
+ > included in all copies or substantial portions of the Software.
1733
+ >
1734
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1735
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1736
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1737
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1738
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1739
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1740
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1741
+ > OTHER DEALINGS IN THE SOFTWARE.
1742
+
1743
+ ---------------------------------------
1744
+
1745
+ ## readdirp
1746
+ License: MIT
1747
+ By: Thorsten Lorenz, Paul Miller
1748
+ Repository: https://github.com/paulmillr/readdirp
1749
+
1750
+ > MIT License
1751
+ >
1752
+ > Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)
1753
+ >
1754
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1755
+ > of this software and associated documentation files (the "Software"), to deal
1756
+ > in the Software without restriction, including without limitation the rights
1757
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1758
+ > copies of the Software, and to permit persons to whom the Software is
1759
+ > furnished to do so, subject to the following conditions:
1760
+ >
1761
+ > The above copyright notice and this permission notice shall be included in all
1762
+ > copies or substantial portions of the Software.
1763
+ >
1764
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1765
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1766
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1767
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1768
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1769
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1770
+ > SOFTWARE.
1771
+
1772
+ ---------------------------------------
1773
+
1774
+ ## resolve.exports, totalist
1775
+ License: MIT
1776
+ By: Luke Edwards
1777
+ Repositories: https://github.com/lukeed/resolve.exports, https://github.com/lukeed/totalist
1778
+
1779
+ > The MIT License (MIT)
1780
+ >
1781
+ > Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
1782
+ >
1783
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1784
+ > of this software and associated documentation files (the "Software"), to deal
1785
+ > in the Software without restriction, including without limitation the rights
1786
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1787
+ > copies of the Software, and to permit persons to whom the Software is
1788
+ > furnished to do so, subject to the following conditions:
1789
+ >
1790
+ > The above copyright notice and this permission notice shall be included in
1791
+ > all copies or substantial portions of the Software.
1792
+ >
1793
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1794
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1795
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1796
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1797
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1798
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1799
+ > THE SOFTWARE.
1800
+
1801
+ ---------------------------------------
1802
+
1803
+ ## shebang-command
1804
+ License: MIT
1805
+ By: Kevin Mårtensson
1806
+ Repository: https://github.com/kevva/shebang-command
1807
+
1808
+ > MIT License
1809
+ >
1810
+ > Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
1811
+ >
1812
+ > 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:
1813
+ >
1814
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1815
+ >
1816
+ > 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.
1817
+
1818
+ ---------------------------------------
1819
+
1820
+ ## sirv
1821
+ License: MIT
1822
+ By: Luke Edwards
1823
+ Repository: https://github.com/lukeed/sirv
1824
+
1825
+ ---------------------------------------
1826
+
1827
+ ## statuses
1828
+ License: MIT
1829
+ By: Douglas Christopher Wilson, Jonathan Ong
1830
+ Repository: https://github.com/jshttp/statuses
1831
+
1832
+ > The MIT License (MIT)
1833
+ >
1834
+ > Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
1835
+ > Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
1836
+ >
1837
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1838
+ > of this software and associated documentation files (the "Software"), to deal
1839
+ > in the Software without restriction, including without limitation the rights
1840
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1841
+ > copies of the Software, and to permit persons to whom the Software is
1842
+ > furnished to do so, subject to the following conditions:
1843
+ >
1844
+ > The above copyright notice and this permission notice shall be included in
1845
+ > all copies or substantial portions of the Software.
1846
+ >
1847
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1848
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1849
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1850
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1851
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1852
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1853
+ > THE SOFTWARE.
1854
+
1855
+ ---------------------------------------
1856
+
1857
+ ## string-hash
1858
+ License: CC0-1.0
1859
+ By: The Dark Sky Company
1860
+ Repository: https://github.com/darkskyapp/string-hash
1861
+
1862
+ ---------------------------------------
1863
+
1864
+ ## strip-literal
1865
+ License: MIT
1866
+ By: Anthony Fu
1867
+ Repository: https://github.com/antfu/strip-literal
1868
+
1869
+ > MIT License
1870
+ >
1871
+ > Copyright (c) 2022 Anthony Fu <https://github.com/antfu>
1872
+ >
1873
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1874
+ > of this software and associated documentation files (the "Software"), to deal
1875
+ > in the Software without restriction, including without limitation the rights
1876
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1877
+ > copies of the Software, and to permit persons to whom the Software is
1878
+ > furnished to do so, subject to the following conditions:
1879
+ >
1880
+ > The above copyright notice and this permission notice shall be included in all
1881
+ > copies or substantial portions of the Software.
1882
+ >
1883
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1884
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1885
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1886
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1887
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1888
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1889
+ > SOFTWARE.
1890
+
1891
+ ---------------------------------------
1892
+
1893
+ ## to-regex-range
1894
+ License: MIT
1895
+ By: Jon Schlinkert, Rouven Weßling
1896
+ Repository: https://github.com/micromatch/to-regex-range
1897
+
1898
+ > The MIT License (MIT)
1899
+ >
1900
+ > Copyright (c) 2015-present, Jon Schlinkert.
1901
+ >
1902
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1903
+ > of this software and associated documentation files (the "Software"), to deal
1904
+ > in the Software without restriction, including without limitation the rights
1905
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1906
+ > copies of the Software, and to permit persons to whom the Software is
1907
+ > furnished to do so, subject to the following conditions:
1908
+ >
1909
+ > The above copyright notice and this permission notice shall be included in
1910
+ > all copies or substantial portions of the Software.
1911
+ >
1912
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1913
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1914
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1915
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1916
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1917
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1918
+ > THE SOFTWARE.
1919
+
1920
+ ---------------------------------------
1921
+
1922
+ ## tsconfck
1923
+ License: MIT
1924
+ By: dominikg
1925
+ Repository: https://github.com/dominikg/tsconfck
1926
+
1927
+ > MIT License
1928
+ >
1929
+ > Copyright (c) 2021-present dominikg and [contributors](https://github.com/dominikg/tsconfck/graphs/contributors)
1930
+ >
1931
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1932
+ > of this software and associated documentation files (the "Software"), to deal
1933
+ > in the Software without restriction, including without limitation the rights
1934
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1935
+ > copies of the Software, and to permit persons to whom the Software is
1936
+ > furnished to do so, subject to the following conditions:
1937
+ >
1938
+ > The above copyright notice and this permission notice shall be included in all
1939
+ > copies or substantial portions of the Software.
1940
+ >
1941
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1942
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1943
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1944
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1945
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1946
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1947
+ > SOFTWARE.
1948
+ >
1949
+ > -- Licenses for 3rd-party code included in tsconfck --
1950
+ >
1951
+ > # strip-bom and strip-json-comments
1952
+ > MIT License
1953
+ >
1954
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1955
+ >
1956
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1957
+ > of this software and associated documentation files (the "Software"), to deal
1958
+ > in the Software without restriction, including without limitation the rights
1959
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1960
+ > copies of the Software, and to permit persons to whom the Software is
1961
+ > furnished to do so, subject to the following conditions:
1962
+ >
1963
+ > The above copyright notice and this permission notice shall be included in all
1964
+ > copies or substantial portions of the Software.
1965
+ >
1966
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1967
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1968
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1969
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1970
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1971
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1972
+ > SOFTWARE.
1973
+
1974
+ ---------------------------------------
1975
+
1976
+ ## unpipe
1977
+ License: MIT
1978
+ By: Douglas Christopher Wilson
1979
+ Repository: https://github.com/stream-utils/unpipe
1980
+
1981
+ > (The MIT License)
1982
+ >
1983
+ > Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
1984
+ >
1985
+ > Permission is hereby granted, free of charge, to any person obtaining
1986
+ > a copy of this software and associated documentation files (the
1987
+ > 'Software'), to deal in the Software without restriction, including
1988
+ > without limitation the rights to use, copy, modify, merge, publish,
1989
+ > distribute, sublicense, and/or sell copies of the Software, and to
1990
+ > permit persons to whom the Software is furnished to do so, subject to
1991
+ > the following conditions:
1992
+ >
1993
+ > The above copyright notice and this permission notice shall be
1994
+ > included in all copies or substantial portions of the Software.
1995
+ >
1996
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1997
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1998
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1999
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2000
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2001
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2002
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2003
+
2004
+ ---------------------------------------
2005
+
2006
+ ## util-deprecate
2007
+ License: MIT
2008
+ By: Nathan Rajlich
2009
+ Repository: https://github.com/TooTallNate/util-deprecate
2010
+
2011
+ > (The MIT License)
2012
+ >
2013
+ > Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
2014
+ >
2015
+ > Permission is hereby granted, free of charge, to any person
2016
+ > obtaining a copy of this software and associated documentation
2017
+ > files (the "Software"), to deal in the Software without
2018
+ > restriction, including without limitation the rights to use,
2019
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
2020
+ > copies of the Software, and to permit persons to whom the
2021
+ > Software is furnished to do so, subject to the following
2022
+ > conditions:
2023
+ >
2024
+ > The above copyright notice and this permission notice shall be
2025
+ > included in all copies or substantial portions of the Software.
2026
+ >
2027
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2028
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2029
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2030
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2031
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2032
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2033
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2034
+ > OTHER DEALINGS IN THE SOFTWARE.
2035
+
2036
+ ---------------------------------------
2037
+
2038
+ ## utils-merge
2039
+ License: MIT
2040
+ By: Jared Hanson
2041
+ Repository: https://github.com/jaredhanson/utils-merge
2042
+
2043
+ > The MIT License (MIT)
2044
+ >
2045
+ > Copyright (c) 2013-2017 Jared Hanson
2046
+ >
2047
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2048
+ > this software and associated documentation files (the "Software"), to deal in
2049
+ > the Software without restriction, including without limitation the rights to
2050
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2051
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2052
+ > subject to the following conditions:
2053
+ >
2054
+ > The above copyright notice and this permission notice shall be included in all
2055
+ > copies or substantial portions of the Software.
2056
+ >
2057
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2058
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2059
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2060
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2061
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2062
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2063
+
2064
+ ---------------------------------------
2065
+
2066
+ ## vary
2067
+ License: MIT
2068
+ By: Douglas Christopher Wilson
2069
+ Repository: https://github.com/jshttp/vary
2070
+
2071
+ > (The MIT License)
2072
+ >
2073
+ > Copyright (c) 2014-2017 Douglas Christopher Wilson
2074
+ >
2075
+ > Permission is hereby granted, free of charge, to any person obtaining
2076
+ > a copy of this software and associated documentation files (the
2077
+ > 'Software'), to deal in the Software without restriction, including
2078
+ > without limitation the rights to use, copy, modify, merge, publish,
2079
+ > distribute, sublicense, and/or sell copies of the Software, and to
2080
+ > permit persons to whom the Software is furnished to do so, subject to
2081
+ > the following conditions:
2082
+ >
2083
+ > The above copyright notice and this permission notice shall be
2084
+ > included in all copies or substantial portions of the Software.
2085
+ >
2086
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2087
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2088
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2089
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2090
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2091
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2092
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2093
+
2094
+ ---------------------------------------
2095
+
2096
+ ## ws
2097
+ License: MIT
2098
+ By: Einar Otto Stangvik
2099
+ Repository: https://github.com/websockets/ws
2100
+
2101
+ > Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
2102
+ > Copyright (c) 2013 Arnout Kazemier and contributors
2103
+ > Copyright (c) 2016 Luigi Pinca and contributors
2104
+ >
2105
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2106
+ > this software and associated documentation files (the "Software"), to deal in
2107
+ > the Software without restriction, including without limitation the rights to
2108
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2109
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2110
+ > subject to the following conditions:
2111
+ >
2112
+ > The above copyright notice and this permission notice shall be included in all
2113
+ > copies or substantial portions of the Software.
2114
+ >
2115
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2116
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2117
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2118
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2119
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2120
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.