@formthefog/stratus 2026.2.20 → 2026.3.19

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 (76) hide show
  1. package/.github/sentinel/action.yml +100 -0
  2. package/.github/sentinel/dist/codebase.d.ts +3 -0
  3. package/.github/sentinel/dist/codebase.d.ts.map +1 -0
  4. package/.github/sentinel/dist/context.d.ts +6 -0
  5. package/.github/sentinel/dist/context.d.ts.map +1 -0
  6. package/.github/sentinel/dist/fixer.d.ts +6 -0
  7. package/.github/sentinel/dist/fixer.d.ts.map +1 -0
  8. package/.github/sentinel/dist/index.d.ts +1 -0
  9. package/.github/sentinel/dist/index.d.ts.map +1 -0
  10. package/.github/sentinel/dist/index.js +68808 -0
  11. package/.github/sentinel/dist/index.js.map +1 -0
  12. package/.github/sentinel/dist/licenses.txt +1152 -0
  13. package/.github/sentinel/dist/models/anthropic.d.ts +26 -0
  14. package/.github/sentinel/dist/models/anthropic.d.ts.map +1 -0
  15. package/.github/sentinel/dist/models/openai.d.ts +26 -0
  16. package/.github/sentinel/dist/models/openai.d.ts.map +1 -0
  17. package/.github/sentinel/dist/models/openrouter.d.ts +31 -0
  18. package/.github/sentinel/dist/models/openrouter.d.ts.map +1 -0
  19. package/.github/sentinel/dist/models/types.d.ts +37 -0
  20. package/.github/sentinel/dist/models/types.d.ts.map +1 -0
  21. package/.github/sentinel/dist/orchestrator.d.ts +3 -0
  22. package/.github/sentinel/dist/orchestrator.d.ts.map +1 -0
  23. package/.github/sentinel/dist/policy.d.ts +15 -0
  24. package/.github/sentinel/dist/policy.d.ts.map +1 -0
  25. package/.github/sentinel/dist/reporter.d.ts +8 -0
  26. package/.github/sentinel/dist/reporter.d.ts.map +1 -0
  27. package/.github/sentinel/dist/responder.d.ts +6 -0
  28. package/.github/sentinel/dist/responder.d.ts.map +1 -0
  29. package/.github/sentinel/dist/router.d.ts +2 -0
  30. package/.github/sentinel/dist/router.d.ts.map +1 -0
  31. package/.github/sentinel/dist/schemas/config.d.ts +195 -0
  32. package/.github/sentinel/dist/schemas/config.d.ts.map +1 -0
  33. package/.github/sentinel/dist/schemas/fix.d.ts +130 -0
  34. package/.github/sentinel/dist/schemas/fix.d.ts.map +1 -0
  35. package/.github/sentinel/dist/schemas/review.d.ts +275 -0
  36. package/.github/sentinel/dist/schemas/review.d.ts.map +1 -0
  37. package/.github/sentinel/dist/sourcemap-register.js +1 -0
  38. package/.github/sentinel/dist/subway.d.ts +31 -0
  39. package/.github/sentinel/dist/subway.d.ts.map +1 -0
  40. package/.github/sentinel/dist/types.d.ts +210 -0
  41. package/.github/sentinel/dist/types.d.ts.map +1 -0
  42. package/.github/sentinel/package-lock.json +2389 -0
  43. package/.github/sentinel/package.json +29 -0
  44. package/.github/sentinel/src/codebase.ts +265 -0
  45. package/.github/sentinel/src/context.ts +182 -0
  46. package/.github/sentinel/src/fixer.ts +353 -0
  47. package/.github/sentinel/src/index.ts +263 -0
  48. package/.github/sentinel/src/models/anthropic.ts +244 -0
  49. package/.github/sentinel/src/models/openai.ts +242 -0
  50. package/.github/sentinel/src/models/openrouter.ts +319 -0
  51. package/.github/sentinel/src/models/types.ts +35 -0
  52. package/.github/sentinel/src/orchestrator.ts +287 -0
  53. package/.github/sentinel/src/policy.ts +133 -0
  54. package/.github/sentinel/src/reporter.ts +666 -0
  55. package/.github/sentinel/src/responder.ts +156 -0
  56. package/.github/sentinel/src/router.ts +308 -0
  57. package/.github/sentinel/src/schemas/config.ts +84 -0
  58. package/.github/sentinel/src/schemas/fix.ts +44 -0
  59. package/.github/sentinel/src/schemas/review.ts +73 -0
  60. package/.github/sentinel/src/subway.ts +250 -0
  61. package/.github/sentinel/src/types.ts +234 -0
  62. package/.github/sentinel/tsconfig.json +19 -0
  63. package/.github/sentinel.yml +34 -0
  64. package/.github/workflows/publish.yml +28 -0
  65. package/.github/workflows/sentinel.yml +55 -0
  66. package/README.md +90 -41
  67. package/SECURITY.md +85 -0
  68. package/TROUBLESHOOTING.md +2 -2
  69. package/index.ts +219 -109
  70. package/openclaw.plugin.json +50 -26
  71. package/package.json +1 -1
  72. package/skills/stratus-info/SKILL.md +70 -10
  73. package/src/client.ts +78 -18
  74. package/src/config.ts +29 -8
  75. package/src/setup.ts +53 -61
  76. package/src/types.ts +11 -0
@@ -0,0 +1,1152 @@
1
+ @actions/core
2
+ MIT
3
+ The MIT License (MIT)
4
+
5
+ Copyright 2019 GitHub
6
+
7
+ 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:
8
+
9
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10
+
11
+ 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.
12
+
13
+ @actions/exec
14
+ MIT
15
+ The MIT License (MIT)
16
+
17
+ Copyright 2019 GitHub
18
+
19
+ 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:
20
+
21
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
22
+
23
+ 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.
24
+
25
+ @actions/github
26
+ MIT
27
+ The MIT License (MIT)
28
+
29
+ Copyright 2019 GitHub
30
+
31
+ 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:
32
+
33
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
34
+
35
+ 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.
36
+
37
+ @actions/http-client
38
+ MIT
39
+ Actions Http Client for Node.js
40
+
41
+ Copyright (c) GitHub, Inc.
42
+
43
+ All rights reserved.
44
+
45
+ MIT License
46
+
47
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
48
+ associated documentation files (the "Software"), to deal in the Software without restriction,
49
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
50
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
51
+ subject to the following conditions:
52
+
53
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
54
+
55
+ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
56
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
57
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
58
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
59
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
60
+
61
+
62
+ @actions/io
63
+ MIT
64
+ The MIT License (MIT)
65
+
66
+ Copyright 2019 GitHub
67
+
68
+ 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:
69
+
70
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
71
+
72
+ 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.
73
+
74
+ @anthropic-ai/sdk
75
+ MIT
76
+ Copyright 2023 Anthropic, PBC.
77
+
78
+ 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:
79
+
80
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
81
+
82
+ 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.
83
+
84
+
85
+
86
+ @fastify/busboy
87
+ MIT
88
+ Copyright Brian White. All rights reserved.
89
+
90
+ Permission is hereby granted, free of charge, to any person obtaining a copy
91
+ of this software and associated documentation files (the "Software"), to
92
+ deal in the Software without restriction, including without limitation the
93
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
94
+ sell copies of the Software, and to permit persons to whom the Software is
95
+ furnished to do so, subject to the following conditions:
96
+
97
+ The above copyright notice and this permission notice shall be included in
98
+ all copies or substantial portions of the Software.
99
+
100
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
101
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
102
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
103
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
104
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
105
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
106
+ IN THE SOFTWARE.
107
+
108
+ @octokit/auth-token
109
+ MIT
110
+ The MIT License
111
+
112
+ Copyright (c) 2019 Octokit contributors
113
+
114
+ Permission is hereby granted, free of charge, to any person obtaining a copy
115
+ of this software and associated documentation files (the "Software"), to deal
116
+ in the Software without restriction, including without limitation the rights
117
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
118
+ copies of the Software, and to permit persons to whom the Software is
119
+ furnished to do so, subject to the following conditions:
120
+
121
+ The above copyright notice and this permission notice shall be included in
122
+ all copies or substantial portions of the Software.
123
+
124
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
125
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
126
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
127
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
128
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
129
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
130
+ THE SOFTWARE.
131
+
132
+
133
+ @octokit/core
134
+ MIT
135
+ The MIT License
136
+
137
+ Copyright (c) 2019 Octokit contributors
138
+
139
+ Permission is hereby granted, free of charge, to any person obtaining a copy
140
+ of this software and associated documentation files (the "Software"), to deal
141
+ in the Software without restriction, including without limitation the rights
142
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
143
+ copies of the Software, and to permit persons to whom the Software is
144
+ furnished to do so, subject to the following conditions:
145
+
146
+ The above copyright notice and this permission notice shall be included in
147
+ all copies or substantial portions of the Software.
148
+
149
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
150
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
151
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
152
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
153
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
154
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
155
+ THE SOFTWARE.
156
+
157
+
158
+ @octokit/endpoint
159
+ MIT
160
+ The MIT License
161
+
162
+ Copyright (c) 2018 Octokit contributors
163
+
164
+ Permission is hereby granted, free of charge, to any person obtaining a copy
165
+ of this software and associated documentation files (the "Software"), to deal
166
+ in the Software without restriction, including without limitation the rights
167
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
168
+ copies of the Software, and to permit persons to whom the Software is
169
+ furnished to do so, subject to the following conditions:
170
+
171
+ The above copyright notice and this permission notice shall be included in
172
+ all copies or substantial portions of the Software.
173
+
174
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
175
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
176
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
177
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
178
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
179
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
180
+ THE SOFTWARE.
181
+
182
+
183
+ @octokit/graphql
184
+ MIT
185
+ The MIT License
186
+
187
+ Copyright (c) 2018 Octokit contributors
188
+
189
+ Permission is hereby granted, free of charge, to any person obtaining a copy
190
+ of this software and associated documentation files (the "Software"), to deal
191
+ in the Software without restriction, including without limitation the rights
192
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
193
+ copies of the Software, and to permit persons to whom the Software is
194
+ furnished to do so, subject to the following conditions:
195
+
196
+ The above copyright notice and this permission notice shall be included in
197
+ all copies or substantial portions of the Software.
198
+
199
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
200
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
201
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
202
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
203
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
204
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
205
+ THE SOFTWARE.
206
+
207
+
208
+ @octokit/plugin-paginate-rest
209
+ MIT
210
+ MIT License Copyright (c) 2019 Octokit contributors
211
+
212
+ 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:
213
+
214
+ The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
215
+
216
+ 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.
217
+
218
+
219
+ @octokit/plugin-rest-endpoint-methods
220
+ MIT
221
+ MIT License Copyright (c) 2019 Octokit contributors
222
+
223
+ 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:
224
+
225
+ The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
226
+
227
+ 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.
228
+
229
+
230
+ @octokit/request
231
+ MIT
232
+ The MIT License
233
+
234
+ Copyright (c) 2018 Octokit contributors
235
+
236
+ Permission is hereby granted, free of charge, to any person obtaining a copy
237
+ of this software and associated documentation files (the "Software"), to deal
238
+ in the Software without restriction, including without limitation the rights
239
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
240
+ copies of the Software, and to permit persons to whom the Software is
241
+ furnished to do so, subject to the following conditions:
242
+
243
+ The above copyright notice and this permission notice shall be included in
244
+ all copies or substantial portions of the Software.
245
+
246
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
247
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
248
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
249
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
250
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
251
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
252
+ THE SOFTWARE.
253
+
254
+
255
+ @octokit/request-error
256
+ MIT
257
+ The MIT License
258
+
259
+ Copyright (c) 2019 Octokit contributors
260
+
261
+ Permission is hereby granted, free of charge, to any person obtaining a copy
262
+ of this software and associated documentation files (the "Software"), to deal
263
+ in the Software without restriction, including without limitation the rights
264
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
265
+ copies of the Software, and to permit persons to whom the Software is
266
+ furnished to do so, subject to the following conditions:
267
+
268
+ The above copyright notice and this permission notice shall be included in
269
+ all copies or substantial portions of the Software.
270
+
271
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
272
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
273
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
274
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
275
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
276
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
277
+ THE SOFTWARE.
278
+
279
+
280
+ @vercel/ncc
281
+ MIT
282
+ Copyright 2018 ZEIT, Inc.
283
+
284
+ 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:
285
+
286
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
287
+
288
+ 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.
289
+
290
+ abort-controller
291
+ MIT
292
+ MIT License
293
+
294
+ Copyright (c) 2017 Toru Nagashima
295
+
296
+ Permission is hereby granted, free of charge, to any person obtaining a copy
297
+ of this software and associated documentation files (the "Software"), to deal
298
+ in the Software without restriction, including without limitation the rights
299
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
300
+ copies of the Software, and to permit persons to whom the Software is
301
+ furnished to do so, subject to the following conditions:
302
+
303
+ The above copyright notice and this permission notice shall be included in all
304
+ copies or substantial portions of the Software.
305
+
306
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
307
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
308
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
309
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
310
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
311
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
312
+ SOFTWARE.
313
+
314
+
315
+ agentkeepalive
316
+ MIT
317
+ The MIT License
318
+
319
+ Copyright(c) node-modules and other contributors.
320
+ Copyright(c) 2012 - 2015 fengmk2 <fengmk2@gmail.com>
321
+
322
+ Permission is hereby granted, free of charge, to any person obtaining
323
+ a copy of this software and associated documentation files (the
324
+ 'Software'), to deal in the Software without restriction, including
325
+ without limitation the rights to use, copy, modify, merge, publish,
326
+ distribute, sublicense, and/or sell copies of the Software, and to
327
+ permit persons to whom the Software is furnished to do so, subject to
328
+ the following conditions:
329
+
330
+ The above copyright notice and this permission notice shall be
331
+ included in all copies or substantial portions of the Software.
332
+
333
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
334
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
335
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
336
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
337
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
338
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
339
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
340
+
341
+
342
+ before-after-hook
343
+ Apache-2.0
344
+ Apache License
345
+ Version 2.0, January 2004
346
+ http://www.apache.org/licenses/
347
+
348
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
349
+
350
+ 1. Definitions.
351
+
352
+ "License" shall mean the terms and conditions for use, reproduction,
353
+ and distribution as defined by Sections 1 through 9 of this document.
354
+
355
+ "Licensor" shall mean the copyright owner or entity authorized by
356
+ the copyright owner that is granting the License.
357
+
358
+ "Legal Entity" shall mean the union of the acting entity and all
359
+ other entities that control, are controlled by, or are under common
360
+ control with that entity. For the purposes of this definition,
361
+ "control" means (i) the power, direct or indirect, to cause the
362
+ direction or management of such entity, whether by contract or
363
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
364
+ outstanding shares, or (iii) beneficial ownership of such entity.
365
+
366
+ "You" (or "Your") shall mean an individual or Legal Entity
367
+ exercising permissions granted by this License.
368
+
369
+ "Source" form shall mean the preferred form for making modifications,
370
+ including but not limited to software source code, documentation
371
+ source, and configuration files.
372
+
373
+ "Object" form shall mean any form resulting from mechanical
374
+ transformation or translation of a Source form, including but
375
+ not limited to compiled object code, generated documentation,
376
+ and conversions to other media types.
377
+
378
+ "Work" shall mean the work of authorship, whether in Source or
379
+ Object form, made available under the License, as indicated by a
380
+ copyright notice that is included in or attached to the work
381
+ (an example is provided in the Appendix below).
382
+
383
+ "Derivative Works" shall mean any work, whether in Source or Object
384
+ form, that is based on (or derived from) the Work and for which the
385
+ editorial revisions, annotations, elaborations, or other modifications
386
+ represent, as a whole, an original work of authorship. For the purposes
387
+ of this License, Derivative Works shall not include works that remain
388
+ separable from, or merely link (or bind by name) to the interfaces of,
389
+ the Work and Derivative Works thereof.
390
+
391
+ "Contribution" shall mean any work of authorship, including
392
+ the original version of the Work and any modifications or additions
393
+ to that Work or Derivative Works thereof, that is intentionally
394
+ submitted to Licensor for inclusion in the Work by the copyright owner
395
+ or by an individual or Legal Entity authorized to submit on behalf of
396
+ the copyright owner. For the purposes of this definition, "submitted"
397
+ means any form of electronic, verbal, or written communication sent
398
+ to the Licensor or its representatives, including but not limited to
399
+ communication on electronic mailing lists, source code control systems,
400
+ and issue tracking systems that are managed by, or on behalf of, the
401
+ Licensor for the purpose of discussing and improving the Work, but
402
+ excluding communication that is conspicuously marked or otherwise
403
+ designated in writing by the copyright owner as "Not a Contribution."
404
+
405
+ "Contributor" shall mean Licensor and any individual or Legal Entity
406
+ on behalf of whom a Contribution has been received by Licensor and
407
+ subsequently incorporated within the Work.
408
+
409
+ 2. Grant of Copyright License. Subject to the terms and conditions of
410
+ this License, each Contributor hereby grants to You a perpetual,
411
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
412
+ copyright license to reproduce, prepare Derivative Works of,
413
+ publicly display, publicly perform, sublicense, and distribute the
414
+ Work and such Derivative Works in Source or Object form.
415
+
416
+ 3. Grant of Patent License. Subject to the terms and conditions of
417
+ this License, each Contributor hereby grants to You a perpetual,
418
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
419
+ (except as stated in this section) patent license to make, have made,
420
+ use, offer to sell, sell, import, and otherwise transfer the Work,
421
+ where such license applies only to those patent claims licensable
422
+ by such Contributor that are necessarily infringed by their
423
+ Contribution(s) alone or by combination of their Contribution(s)
424
+ with the Work to which such Contribution(s) was submitted. If You
425
+ institute patent litigation against any entity (including a
426
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
427
+ or a Contribution incorporated within the Work constitutes direct
428
+ or contributory patent infringement, then any patent licenses
429
+ granted to You under this License for that Work shall terminate
430
+ as of the date such litigation is filed.
431
+
432
+ 4. Redistribution. You may reproduce and distribute copies of the
433
+ Work or Derivative Works thereof in any medium, with or without
434
+ modifications, and in Source or Object form, provided that You
435
+ meet the following conditions:
436
+
437
+ (a) You must give any other recipients of the Work or
438
+ Derivative Works a copy of this License; and
439
+
440
+ (b) You must cause any modified files to carry prominent notices
441
+ stating that You changed the files; and
442
+
443
+ (c) You must retain, in the Source form of any Derivative Works
444
+ that You distribute, all copyright, patent, trademark, and
445
+ attribution notices from the Source form of the Work,
446
+ excluding those notices that do not pertain to any part of
447
+ the Derivative Works; and
448
+
449
+ (d) If the Work includes a "NOTICE" text file as part of its
450
+ distribution, then any Derivative Works that You distribute must
451
+ include a readable copy of the attribution notices contained
452
+ within such NOTICE file, excluding those notices that do not
453
+ pertain to any part of the Derivative Works, in at least one
454
+ of the following places: within a NOTICE text file distributed
455
+ as part of the Derivative Works; within the Source form or
456
+ documentation, if provided along with the Derivative Works; or,
457
+ within a display generated by the Derivative Works, if and
458
+ wherever such third-party notices normally appear. The contents
459
+ of the NOTICE file are for informational purposes only and
460
+ do not modify the License. You may add Your own attribution
461
+ notices within Derivative Works that You distribute, alongside
462
+ or as an addendum to the NOTICE text from the Work, provided
463
+ that such additional attribution notices cannot be construed
464
+ as modifying the License.
465
+
466
+ You may add Your own copyright statement to Your modifications and
467
+ may provide additional or different license terms and conditions
468
+ for use, reproduction, or distribution of Your modifications, or
469
+ for any such Derivative Works as a whole, provided Your use,
470
+ reproduction, and distribution of the Work otherwise complies with
471
+ the conditions stated in this License.
472
+
473
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
474
+ any Contribution intentionally submitted for inclusion in the Work
475
+ by You to the Licensor shall be under the terms and conditions of
476
+ this License, without any additional terms or conditions.
477
+ Notwithstanding the above, nothing herein shall supersede or modify
478
+ the terms of any separate license agreement you may have executed
479
+ with Licensor regarding such Contributions.
480
+
481
+ 6. Trademarks. This License does not grant permission to use the trade
482
+ names, trademarks, service marks, or product names of the Licensor,
483
+ except as required for reasonable and customary use in describing the
484
+ origin of the Work and reproducing the content of the NOTICE file.
485
+
486
+ 7. Disclaimer of Warranty. Unless required by applicable law or
487
+ agreed to in writing, Licensor provides the Work (and each
488
+ Contributor provides its Contributions) on an "AS IS" BASIS,
489
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
490
+ implied, including, without limitation, any warranties or conditions
491
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
492
+ PARTICULAR PURPOSE. You are solely responsible for determining the
493
+ appropriateness of using or redistributing the Work and assume any
494
+ risks associated with Your exercise of permissions under this License.
495
+
496
+ 8. Limitation of Liability. In no event and under no legal theory,
497
+ whether in tort (including negligence), contract, or otherwise,
498
+ unless required by applicable law (such as deliberate and grossly
499
+ negligent acts) or agreed to in writing, shall any Contributor be
500
+ liable to You for damages, including any direct, indirect, special,
501
+ incidental, or consequential damages of any character arising as a
502
+ result of this License or out of the use or inability to use the
503
+ Work (including but not limited to damages for loss of goodwill,
504
+ work stoppage, computer failure or malfunction, or any and all
505
+ other commercial damages or losses), even if such Contributor
506
+ has been advised of the possibility of such damages.
507
+
508
+ 9. Accepting Warranty or Additional Liability. While redistributing
509
+ the Work or Derivative Works thereof, You may choose to offer,
510
+ and charge a fee for, acceptance of support, warranty, indemnity,
511
+ or other liability obligations and/or rights consistent with this
512
+ License. However, in accepting such obligations, You may act only
513
+ on Your own behalf and on Your sole responsibility, not on behalf
514
+ of any other Contributor, and only if You agree to indemnify,
515
+ defend, and hold each Contributor harmless for any liability
516
+ incurred by, or claims asserted against, such Contributor by reason
517
+ of your accepting any such warranty or additional liability.
518
+
519
+ END OF TERMS AND CONDITIONS
520
+
521
+ APPENDIX: How to apply the Apache License to your work.
522
+
523
+ To apply the Apache License to your work, attach the following
524
+ boilerplate notice, with the fields enclosed by brackets "{}"
525
+ replaced with your own identifying information. (Don't include
526
+ the brackets!) The text should be enclosed in the appropriate
527
+ comment syntax for the file format. We also recommend that a
528
+ file or class name and description of purpose be included on the
529
+ same "printed page" as the copyright notice for easier
530
+ identification within third-party archives.
531
+
532
+ Copyright 2018 Gregor Martynus and other contributors.
533
+
534
+ Licensed under the Apache License, Version 2.0 (the "License");
535
+ you may not use this file except in compliance with the License.
536
+ You may obtain a copy of the License at
537
+
538
+ http://www.apache.org/licenses/LICENSE-2.0
539
+
540
+ Unless required by applicable law or agreed to in writing, software
541
+ distributed under the License is distributed on an "AS IS" BASIS,
542
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
543
+ See the License for the specific language governing permissions and
544
+ limitations under the License.
545
+
546
+
547
+ deprecation
548
+ ISC
549
+ The ISC License
550
+
551
+ Copyright (c) Gregor Martynus and contributors
552
+
553
+ Permission to use, copy, modify, and/or distribute this software for any
554
+ purpose with or without fee is hereby granted, provided that the above
555
+ copyright notice and this permission notice appear in all copies.
556
+
557
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
558
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
559
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
560
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
561
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
562
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
563
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
564
+
565
+
566
+ event-target-shim
567
+ MIT
568
+ The MIT License (MIT)
569
+
570
+ Copyright (c) 2015 Toru Nagashima
571
+
572
+ Permission is hereby granted, free of charge, to any person obtaining a copy
573
+ of this software and associated documentation files (the "Software"), to deal
574
+ in the Software without restriction, including without limitation the rights
575
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
576
+ copies of the Software, and to permit persons to whom the Software is
577
+ furnished to do so, subject to the following conditions:
578
+
579
+ The above copyright notice and this permission notice shall be included in all
580
+ copies or substantial portions of the Software.
581
+
582
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
583
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
584
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
585
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
586
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
587
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
588
+ SOFTWARE.
589
+
590
+
591
+
592
+ form-data-encoder
593
+ MIT
594
+ The MIT License (MIT)
595
+
596
+ Copyright (c) 2021-present Nick K.
597
+
598
+ Permission is hereby granted, free of charge, to any person obtaining a copy
599
+ of this software and associated documentation files (the "Software"), to deal
600
+ in the Software without restriction, including without limitation the rights
601
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
602
+ copies of the Software, and to permit persons to whom the Software is
603
+ furnished to do so, subject to the following conditions:
604
+
605
+ The above copyright notice and this permission notice shall be included in all
606
+ copies or substantial portions of the Software.
607
+
608
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
609
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
610
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
611
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
612
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
613
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
614
+ SOFTWARE.
615
+
616
+
617
+ formdata-node
618
+ MIT
619
+ The MIT License (MIT)
620
+
621
+ Copyright (c) 2017-present Nick K.
622
+
623
+ Permission is hereby granted, free of charge, to any person obtaining a copy
624
+ of this software and associated documentation files (the "Software"), to deal
625
+ in the Software without restriction, including without limitation the rights
626
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
627
+ copies of the Software, and to permit persons to whom the Software is
628
+ furnished to do so, subject to the following conditions:
629
+
630
+ The above copyright notice and this permission notice shall be included in all
631
+ copies or substantial portions of the Software.
632
+
633
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
634
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
635
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
636
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
637
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
638
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
639
+ SOFTWARE.
640
+
641
+
642
+ humanize-ms
643
+ MIT
644
+ Permission is hereby granted, free of charge, to any person obtaining a copy
645
+ of this software and associated documentation files (the "Software"), to deal
646
+ in the Software without restriction, including without limitation the rights
647
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
648
+ copies of the Software, and to permit persons to whom the Software is
649
+ furnished to do so, subject to the following conditions:
650
+
651
+ The above copyright notice and this permission notice shall be included in
652
+ all copies or substantial portions of the Software.
653
+
654
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
655
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
656
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
657
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
658
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
659
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
660
+ THE SOFTWARE.
661
+
662
+
663
+ ms
664
+ MIT
665
+ The MIT License (MIT)
666
+
667
+ Copyright (c) 2020 Vercel, Inc.
668
+
669
+ Permission is hereby granted, free of charge, to any person obtaining a copy
670
+ of this software and associated documentation files (the "Software"), to deal
671
+ in the Software without restriction, including without limitation the rights
672
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
673
+ copies of the Software, and to permit persons to whom the Software is
674
+ furnished to do so, subject to the following conditions:
675
+
676
+ The above copyright notice and this permission notice shall be included in all
677
+ copies or substantial portions of the Software.
678
+
679
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
680
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
681
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
682
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
683
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
684
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
685
+ SOFTWARE.
686
+
687
+
688
+ node-domexception
689
+ MIT
690
+ MIT License
691
+
692
+ Copyright (c) 2021 Jimmy Wärting
693
+
694
+ Permission is hereby granted, free of charge, to any person obtaining a copy
695
+ of this software and associated documentation files (the "Software"), to deal
696
+ in the Software without restriction, including without limitation the rights
697
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
698
+ copies of the Software, and to permit persons to whom the Software is
699
+ furnished to do so, subject to the following conditions:
700
+
701
+ The above copyright notice and this permission notice shall be included in all
702
+ copies or substantial portions of the Software.
703
+
704
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
705
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
706
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
707
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
708
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
709
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
710
+ SOFTWARE.
711
+
712
+
713
+ node-fetch
714
+ MIT
715
+ The MIT License (MIT)
716
+
717
+ Copyright (c) 2016 David Frank
718
+
719
+ Permission is hereby granted, free of charge, to any person obtaining a copy
720
+ of this software and associated documentation files (the "Software"), to deal
721
+ in the Software without restriction, including without limitation the rights
722
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
723
+ copies of the Software, and to permit persons to whom the Software is
724
+ furnished to do so, subject to the following conditions:
725
+
726
+ The above copyright notice and this permission notice shall be included in all
727
+ copies or substantial portions of the Software.
728
+
729
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
730
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
731
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
732
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
733
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
734
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
735
+ SOFTWARE.
736
+
737
+
738
+
739
+ once
740
+ ISC
741
+ The ISC License
742
+
743
+ Copyright (c) Isaac Z. Schlueter and Contributors
744
+
745
+ Permission to use, copy, modify, and/or distribute this software for any
746
+ purpose with or without fee is hereby granted, provided that the above
747
+ copyright notice and this permission notice appear in all copies.
748
+
749
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
750
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
751
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
752
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
753
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
754
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
755
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
756
+
757
+
758
+ openai
759
+ Apache-2.0
760
+ Apache License
761
+ Version 2.0, January 2004
762
+ http://www.apache.org/licenses/
763
+
764
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
765
+
766
+ 1. Definitions.
767
+
768
+ "License" shall mean the terms and conditions for use, reproduction,
769
+ and distribution as defined by Sections 1 through 9 of this document.
770
+
771
+ "Licensor" shall mean the copyright owner or entity authorized by
772
+ the copyright owner that is granting the License.
773
+
774
+ "Legal Entity" shall mean the union of the acting entity and all
775
+ other entities that control, are controlled by, or are under common
776
+ control with that entity. For the purposes of this definition,
777
+ "control" means (i) the power, direct or indirect, to cause the
778
+ direction or management of such entity, whether by contract or
779
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
780
+ outstanding shares, or (iii) beneficial ownership of such entity.
781
+
782
+ "You" (or "Your") shall mean an individual or Legal Entity
783
+ exercising permissions granted by this License.
784
+
785
+ "Source" form shall mean the preferred form for making modifications,
786
+ including but not limited to software source code, documentation
787
+ source, and configuration files.
788
+
789
+ "Object" form shall mean any form resulting from mechanical
790
+ transformation or translation of a Source form, including but
791
+ not limited to compiled object code, generated documentation,
792
+ and conversions to other media types.
793
+
794
+ "Work" shall mean the work of authorship, whether in Source or
795
+ Object form, made available under the License, as indicated by a
796
+ copyright notice that is included in or attached to the work
797
+ (an example is provided in the Appendix below).
798
+
799
+ "Derivative Works" shall mean any work, whether in Source or Object
800
+ form, that is based on (or derived from) the Work and for which the
801
+ editorial revisions, annotations, elaborations, or other modifications
802
+ represent, as a whole, an original work of authorship. For the purposes
803
+ of this License, Derivative Works shall not include works that remain
804
+ separable from, or merely link (or bind by name) to the interfaces of,
805
+ the Work and Derivative Works thereof.
806
+
807
+ "Contribution" shall mean any work of authorship, including
808
+ the original version of the Work and any modifications or additions
809
+ to that Work or Derivative Works thereof, that is intentionally
810
+ submitted to Licensor for inclusion in the Work by the copyright owner
811
+ or by an individual or Legal Entity authorized to submit on behalf of
812
+ the copyright owner. For the purposes of this definition, "submitted"
813
+ means any form of electronic, verbal, or written communication sent
814
+ to the Licensor or its representatives, including but not limited to
815
+ communication on electronic mailing lists, source code control systems,
816
+ and issue tracking systems that are managed by, or on behalf of, the
817
+ Licensor for the purpose of discussing and improving the Work, but
818
+ excluding communication that is conspicuously marked or otherwise
819
+ designated in writing by the copyright owner as "Not a Contribution."
820
+
821
+ "Contributor" shall mean Licensor and any individual or Legal Entity
822
+ on behalf of whom a Contribution has been received by Licensor and
823
+ subsequently incorporated within the Work.
824
+
825
+ 2. Grant of Copyright License. Subject to the terms and conditions of
826
+ this License, each Contributor hereby grants to You a perpetual,
827
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
828
+ copyright license to reproduce, prepare Derivative Works of,
829
+ publicly display, publicly perform, sublicense, and distribute the
830
+ Work and such Derivative Works in Source or Object form.
831
+
832
+ 3. Grant of Patent License. Subject to the terms and conditions of
833
+ this License, each Contributor hereby grants to You a perpetual,
834
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
835
+ (except as stated in this section) patent license to make, have made,
836
+ use, offer to sell, sell, import, and otherwise transfer the Work,
837
+ where such license applies only to those patent claims licensable
838
+ by such Contributor that are necessarily infringed by their
839
+ Contribution(s) alone or by combination of their Contribution(s)
840
+ with the Work to which such Contribution(s) was submitted. If You
841
+ institute patent litigation against any entity (including a
842
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
843
+ or a Contribution incorporated within the Work constitutes direct
844
+ or contributory patent infringement, then any patent licenses
845
+ granted to You under this License for that Work shall terminate
846
+ as of the date such litigation is filed.
847
+
848
+ 4. Redistribution. You may reproduce and distribute copies of the
849
+ Work or Derivative Works thereof in any medium, with or without
850
+ modifications, and in Source or Object form, provided that You
851
+ meet the following conditions:
852
+
853
+ (a) You must give any other recipients of the Work or
854
+ Derivative Works a copy of this License; and
855
+
856
+ (b) You must cause any modified files to carry prominent notices
857
+ stating that You changed the files; and
858
+
859
+ (c) You must retain, in the Source form of any Derivative Works
860
+ that You distribute, all copyright, patent, trademark, and
861
+ attribution notices from the Source form of the Work,
862
+ excluding those notices that do not pertain to any part of
863
+ the Derivative Works; and
864
+
865
+ (d) If the Work includes a "NOTICE" text file as part of its
866
+ distribution, then any Derivative Works that You distribute must
867
+ include a readable copy of the attribution notices contained
868
+ within such NOTICE file, excluding those notices that do not
869
+ pertain to any part of the Derivative Works, in at least one
870
+ of the following places: within a NOTICE text file distributed
871
+ as part of the Derivative Works; within the Source form or
872
+ documentation, if provided along with the Derivative Works; or,
873
+ within a display generated by the Derivative Works, if and
874
+ wherever such third-party notices normally appear. The contents
875
+ of the NOTICE file are for informational purposes only and
876
+ do not modify the License. You may add Your own attribution
877
+ notices within Derivative Works that You distribute, alongside
878
+ or as an addendum to the NOTICE text from the Work, provided
879
+ that such additional attribution notices cannot be construed
880
+ as modifying the License.
881
+
882
+ You may add Your own copyright statement to Your modifications and
883
+ may provide additional or different license terms and conditions
884
+ for use, reproduction, or distribution of Your modifications, or
885
+ for any such Derivative Works as a whole, provided Your use,
886
+ reproduction, and distribution of the Work otherwise complies with
887
+ the conditions stated in this License.
888
+
889
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
890
+ any Contribution intentionally submitted for inclusion in the Work
891
+ by You to the Licensor shall be under the terms and conditions of
892
+ this License, without any additional terms or conditions.
893
+ Notwithstanding the above, nothing herein shall supersede or modify
894
+ the terms of any separate license agreement you may have executed
895
+ with Licensor regarding such Contributions.
896
+
897
+ 6. Trademarks. This License does not grant permission to use the trade
898
+ names, trademarks, service marks, or product names of the Licensor,
899
+ except as required for reasonable and customary use in describing the
900
+ origin of the Work and reproducing the content of the NOTICE file.
901
+
902
+ 7. Disclaimer of Warranty. Unless required by applicable law or
903
+ agreed to in writing, Licensor provides the Work (and each
904
+ Contributor provides its Contributions) on an "AS IS" BASIS,
905
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
906
+ implied, including, without limitation, any warranties or conditions
907
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
908
+ PARTICULAR PURPOSE. You are solely responsible for determining the
909
+ appropriateness of using or redistributing the Work and assume any
910
+ risks associated with Your exercise of permissions under this License.
911
+
912
+ 8. Limitation of Liability. In no event and under no legal theory,
913
+ whether in tort (including negligence), contract, or otherwise,
914
+ unless required by applicable law (such as deliberate and grossly
915
+ negligent acts) or agreed to in writing, shall any Contributor be
916
+ liable to You for damages, including any direct, indirect, special,
917
+ incidental, or consequential damages of any character arising as a
918
+ result of this License or out of the use or inability to use the
919
+ Work (including but not limited to damages for loss of goodwill,
920
+ work stoppage, computer failure or malfunction, or any and all
921
+ other commercial damages or losses), even if such Contributor
922
+ has been advised of the possibility of such damages.
923
+
924
+ 9. Accepting Warranty or Additional Liability. While redistributing
925
+ the Work or Derivative Works thereof, You may choose to offer,
926
+ and charge a fee for, acceptance of support, warranty, indemnity,
927
+ or other liability obligations and/or rights consistent with this
928
+ License. However, in accepting such obligations, You may act only
929
+ on Your own behalf and on Your sole responsibility, not on behalf
930
+ of any other Contributor, and only if You agree to indemnify,
931
+ defend, and hold each Contributor harmless for any liability
932
+ incurred by, or claims asserted against, such Contributor by reason
933
+ of your accepting any such warranty or additional liability.
934
+
935
+ END OF TERMS AND CONDITIONS
936
+
937
+ APPENDIX: How to apply the Apache License to your work.
938
+
939
+ To apply the Apache License to your work, attach the following
940
+ boilerplate notice, with the fields enclosed by brackets "[]"
941
+ replaced with your own identifying information. (Don't include
942
+ the brackets!) The text should be enclosed in the appropriate
943
+ comment syntax for the file format. We also recommend that a
944
+ file or class name and description of purpose be included on the
945
+ same "printed page" as the copyright notice for easier
946
+ identification within third-party archives.
947
+
948
+ Copyright 2025 OpenAI
949
+
950
+ Licensed under the Apache License, Version 2.0 (the "License");
951
+ you may not use this file except in compliance with the License.
952
+ You may obtain a copy of the License at
953
+
954
+ http://www.apache.org/licenses/LICENSE-2.0
955
+
956
+ Unless required by applicable law or agreed to in writing, software
957
+ distributed under the License is distributed on an "AS IS" BASIS,
958
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
959
+ See the License for the specific language governing permissions and
960
+ limitations under the License.
961
+
962
+
963
+ tr46
964
+ MIT
965
+
966
+ tunnel
967
+ MIT
968
+ The MIT License (MIT)
969
+
970
+ Copyright (c) 2012 Koichi Kobayashi
971
+
972
+ Permission is hereby granted, free of charge, to any person obtaining a copy
973
+ of this software and associated documentation files (the "Software"), to deal
974
+ in the Software without restriction, including without limitation the rights
975
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
976
+ copies of the Software, and to permit persons to whom the Software is
977
+ furnished to do so, subject to the following conditions:
978
+
979
+ The above copyright notice and this permission notice shall be included in
980
+ all copies or substantial portions of the Software.
981
+
982
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
983
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
984
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
985
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
986
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
987
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
988
+ THE SOFTWARE.
989
+
990
+
991
+ undici
992
+ MIT
993
+ MIT License
994
+
995
+ Copyright (c) Matteo Collina and Undici contributors
996
+
997
+ Permission is hereby granted, free of charge, to any person obtaining a copy
998
+ of this software and associated documentation files (the "Software"), to deal
999
+ in the Software without restriction, including without limitation the rights
1000
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1001
+ copies of the Software, and to permit persons to whom the Software is
1002
+ furnished to do so, subject to the following conditions:
1003
+
1004
+ The above copyright notice and this permission notice shall be included in all
1005
+ copies or substantial portions of the Software.
1006
+
1007
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1008
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1009
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1010
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1011
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1012
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1013
+ SOFTWARE.
1014
+
1015
+
1016
+ universal-user-agent
1017
+ ISC
1018
+ # [ISC License](https://spdx.org/licenses/ISC)
1019
+
1020
+ Copyright (c) 2018, Gregor Martynus (https://github.com/gr2m)
1021
+
1022
+ 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.
1023
+
1024
+ 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.
1025
+
1026
+
1027
+ web-streams-polyfill
1028
+ MIT
1029
+ The MIT License (MIT)
1030
+
1031
+ Copyright (c) 2021 Mattias Buelens
1032
+ Copyright (c) 2016 Diwank Singh Tomer
1033
+
1034
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1035
+ of this software and associated documentation files (the "Software"), to deal
1036
+ in the Software without restriction, including without limitation the rights
1037
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1038
+ copies of the Software, and to permit persons to whom the Software is
1039
+ furnished to do so, subject to the following conditions:
1040
+
1041
+ The above copyright notice and this permission notice shall be included in all
1042
+ copies or substantial portions of the Software.
1043
+
1044
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1045
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1046
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1047
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1048
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1049
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1050
+ SOFTWARE.
1051
+
1052
+
1053
+ webidl-conversions
1054
+ BSD-2-Clause
1055
+ # The BSD 2-Clause License
1056
+
1057
+ Copyright (c) 2014, Domenic Denicola
1058
+ All rights reserved.
1059
+
1060
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1061
+
1062
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1063
+
1064
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1065
+
1066
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1067
+
1068
+
1069
+ whatwg-url
1070
+ MIT
1071
+ The MIT License (MIT)
1072
+
1073
+ Copyright (c) 2015–2016 Sebastian Mayr
1074
+
1075
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1076
+ of this software and associated documentation files (the "Software"), to deal
1077
+ in the Software without restriction, including without limitation the rights
1078
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1079
+ copies of the Software, and to permit persons to whom the Software is
1080
+ furnished to do so, subject to the following conditions:
1081
+
1082
+ The above copyright notice and this permission notice shall be included in
1083
+ all copies or substantial portions of the Software.
1084
+
1085
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1086
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1087
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1088
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1089
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1090
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1091
+ THE SOFTWARE.
1092
+
1093
+
1094
+ wrappy
1095
+ ISC
1096
+ The ISC License
1097
+
1098
+ Copyright (c) Isaac Z. Schlueter and Contributors
1099
+
1100
+ Permission to use, copy, modify, and/or distribute this software for any
1101
+ purpose with or without fee is hereby granted, provided that the above
1102
+ copyright notice and this permission notice appear in all copies.
1103
+
1104
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1105
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1106
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1107
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1108
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1109
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1110
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1111
+
1112
+
1113
+ yaml
1114
+ ISC
1115
+ Copyright Eemeli Aro <eemeli@gmail.com>
1116
+
1117
+ Permission to use, copy, modify, and/or distribute this software for any purpose
1118
+ with or without fee is hereby granted, provided that the above copyright notice
1119
+ and this permission notice appear in all copies.
1120
+
1121
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1122
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
1123
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1124
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
1125
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
1126
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
1127
+ THIS SOFTWARE.
1128
+
1129
+
1130
+ zod
1131
+ MIT
1132
+ MIT License
1133
+
1134
+ Copyright (c) 2025 Colin McDonnell
1135
+
1136
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1137
+ of this software and associated documentation files (the "Software"), to deal
1138
+ in the Software without restriction, including without limitation the rights
1139
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1140
+ copies of the Software, and to permit persons to whom the Software is
1141
+ furnished to do so, subject to the following conditions:
1142
+
1143
+ The above copyright notice and this permission notice shall be included in all
1144
+ copies or substantial portions of the Software.
1145
+
1146
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1147
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1148
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1149
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1150
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1151
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1152
+ SOFTWARE.