decision-guardian 1.1.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 (42) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +792 -0
  3. package/dist/adapters/github/actions-logger.js +88 -0
  4. package/dist/adapters/github/comment.js +601 -0
  5. package/dist/adapters/github/github-provider.js +260 -0
  6. package/dist/adapters/github/health.js +56 -0
  7. package/dist/adapters/local/console-logger.js +46 -0
  8. package/dist/adapters/local/local-git-provider.js +247 -0
  9. package/dist/cli/commands/check.js +134 -0
  10. package/dist/cli/commands/init.js +58 -0
  11. package/dist/cli/commands/template.js +70 -0
  12. package/dist/cli/formatter.js +68 -0
  13. package/dist/cli/index.js +12458 -0
  14. package/dist/cli/licenses.txt +143 -0
  15. package/dist/cli/paths.js +40 -0
  16. package/dist/core/content-matchers.js +333 -0
  17. package/dist/core/health.js +52 -0
  18. package/dist/core/interfaces/index.js +2 -0
  19. package/dist/core/interfaces/logger.js +2 -0
  20. package/dist/core/interfaces/scm-provider.js +5 -0
  21. package/dist/core/logger.js +20 -0
  22. package/dist/core/matcher.js +184 -0
  23. package/dist/core/metrics.js +87 -0
  24. package/dist/core/parser.js +338 -0
  25. package/dist/core/rule-evaluator.js +186 -0
  26. package/dist/core/rule-parser.js +211 -0
  27. package/dist/core/rule-types.js +22 -0
  28. package/dist/core/trie.js +83 -0
  29. package/dist/core/types.js +2 -0
  30. package/dist/index.js +61142 -0
  31. package/dist/licenses.txt +758 -0
  32. package/dist/main.js +290 -0
  33. package/dist/telemetry/payload.js +25 -0
  34. package/dist/telemetry/privacy.js +37 -0
  35. package/dist/telemetry/sender.js +40 -0
  36. package/dist/version.js +7 -0
  37. package/package.json +60 -0
  38. package/templates/advanced-rules.md +94 -0
  39. package/templates/api.md +70 -0
  40. package/templates/basic.md +38 -0
  41. package/templates/database.md +81 -0
  42. package/templates/security.md +89 -0
@@ -0,0 +1,758 @@
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
+ @fastify/busboy
75
+ MIT
76
+ Copyright Brian White. All rights reserved.
77
+
78
+ Permission is hereby granted, free of charge, to any person obtaining a copy
79
+ of this software and associated documentation files (the "Software"), to
80
+ deal in the Software without restriction, including without limitation the
81
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
82
+ sell copies of the Software, and to permit persons to whom the Software is
83
+ furnished to do so, subject to the following conditions:
84
+
85
+ The above copyright notice and this permission notice shall be included in
86
+ all copies or substantial portions of the Software.
87
+
88
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
89
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
90
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
91
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
92
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
93
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
94
+ IN THE SOFTWARE.
95
+
96
+ @octokit/auth-token
97
+ MIT
98
+ The MIT License
99
+
100
+ Copyright (c) 2019 Octokit contributors
101
+
102
+ Permission is hereby granted, free of charge, to any person obtaining a copy
103
+ of this software and associated documentation files (the "Software"), to deal
104
+ in the Software without restriction, including without limitation the rights
105
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
106
+ copies of the Software, and to permit persons to whom the Software is
107
+ furnished to do so, subject to the following conditions:
108
+
109
+ The above copyright notice and this permission notice shall be included in
110
+ all copies or substantial portions of the Software.
111
+
112
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
113
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
114
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
115
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
116
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
117
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
118
+ THE SOFTWARE.
119
+
120
+
121
+ @octokit/core
122
+ MIT
123
+ The MIT License
124
+
125
+ Copyright (c) 2019 Octokit contributors
126
+
127
+ Permission is hereby granted, free of charge, to any person obtaining a copy
128
+ of this software and associated documentation files (the "Software"), to deal
129
+ in the Software without restriction, including without limitation the rights
130
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
131
+ copies of the Software, and to permit persons to whom the Software is
132
+ furnished to do so, subject to the following conditions:
133
+
134
+ The above copyright notice and this permission notice shall be included in
135
+ all copies or substantial portions of the Software.
136
+
137
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
138
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
139
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
140
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
141
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
142
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
143
+ THE SOFTWARE.
144
+
145
+
146
+ @octokit/endpoint
147
+ MIT
148
+ The MIT License
149
+
150
+ Copyright (c) 2018 Octokit contributors
151
+
152
+ Permission is hereby granted, free of charge, to any person obtaining a copy
153
+ of this software and associated documentation files (the "Software"), to deal
154
+ in the Software without restriction, including without limitation the rights
155
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
156
+ copies of the Software, and to permit persons to whom the Software is
157
+ furnished to do so, subject to the following conditions:
158
+
159
+ The above copyright notice and this permission notice shall be included in
160
+ all copies or substantial portions of the Software.
161
+
162
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
163
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
164
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
165
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
166
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
167
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
168
+ THE SOFTWARE.
169
+
170
+
171
+ @octokit/graphql
172
+ MIT
173
+ The MIT License
174
+
175
+ Copyright (c) 2018 Octokit contributors
176
+
177
+ Permission is hereby granted, free of charge, to any person obtaining a copy
178
+ of this software and associated documentation files (the "Software"), to deal
179
+ in the Software without restriction, including without limitation the rights
180
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
181
+ copies of the Software, and to permit persons to whom the Software is
182
+ furnished to do so, subject to the following conditions:
183
+
184
+ The above copyright notice and this permission notice shall be included in
185
+ all copies or substantial portions of the Software.
186
+
187
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
188
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
189
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
190
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
191
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
192
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
193
+ THE SOFTWARE.
194
+
195
+
196
+ @octokit/plugin-paginate-rest
197
+ MIT
198
+ MIT License Copyright (c) 2019 Octokit contributors
199
+
200
+ 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:
201
+
202
+ The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
203
+
204
+ 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.
205
+
206
+
207
+ @octokit/plugin-rest-endpoint-methods
208
+ MIT
209
+ MIT License Copyright (c) 2019 Octokit contributors
210
+
211
+ 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:
212
+
213
+ The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
214
+
215
+ 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.
216
+
217
+
218
+ @octokit/request
219
+ MIT
220
+ The MIT License
221
+
222
+ Copyright (c) 2018 Octokit contributors
223
+
224
+ Permission is hereby granted, free of charge, to any person obtaining a copy
225
+ of this software and associated documentation files (the "Software"), to deal
226
+ in the Software without restriction, including without limitation the rights
227
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
228
+ copies of the Software, and to permit persons to whom the Software is
229
+ furnished to do so, subject to the following conditions:
230
+
231
+ The above copyright notice and this permission notice shall be included in
232
+ all copies or substantial portions of the Software.
233
+
234
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
235
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
236
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
237
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
238
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
239
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
240
+ THE SOFTWARE.
241
+
242
+
243
+ @octokit/request-error
244
+ MIT
245
+ The MIT License
246
+
247
+ Copyright (c) 2019 Octokit contributors
248
+
249
+ Permission is hereby granted, free of charge, to any person obtaining a copy
250
+ of this software and associated documentation files (the "Software"), to deal
251
+ in the Software without restriction, including without limitation the rights
252
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
253
+ copies of the Software, and to permit persons to whom the Software is
254
+ furnished to do so, subject to the following conditions:
255
+
256
+ The above copyright notice and this permission notice shall be included in
257
+ all copies or substantial portions of the Software.
258
+
259
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
260
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
261
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
262
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
263
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
264
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
265
+ THE SOFTWARE.
266
+
267
+
268
+ balanced-match
269
+ MIT
270
+ (MIT)
271
+
272
+ Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
273
+
274
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
275
+ this software and associated documentation files (the "Software"), to deal in
276
+ the Software without restriction, including without limitation the rights to
277
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
278
+ of the Software, and to permit persons to whom the Software is furnished to do
279
+ so, subject to the following conditions:
280
+
281
+ The above copyright notice and this permission notice shall be included in all
282
+ copies or substantial portions of the Software.
283
+
284
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
285
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
286
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
287
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
288
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
289
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
290
+ SOFTWARE.
291
+
292
+
293
+ before-after-hook
294
+ Apache-2.0
295
+ Apache License
296
+ Version 2.0, January 2004
297
+ http://www.apache.org/licenses/
298
+
299
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
300
+
301
+ 1. Definitions.
302
+
303
+ "License" shall mean the terms and conditions for use, reproduction,
304
+ and distribution as defined by Sections 1 through 9 of this document.
305
+
306
+ "Licensor" shall mean the copyright owner or entity authorized by
307
+ the copyright owner that is granting the License.
308
+
309
+ "Legal Entity" shall mean the union of the acting entity and all
310
+ other entities that control, are controlled by, or are under common
311
+ control with that entity. For the purposes of this definition,
312
+ "control" means (i) the power, direct or indirect, to cause the
313
+ direction or management of such entity, whether by contract or
314
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
315
+ outstanding shares, or (iii) beneficial ownership of such entity.
316
+
317
+ "You" (or "Your") shall mean an individual or Legal Entity
318
+ exercising permissions granted by this License.
319
+
320
+ "Source" form shall mean the preferred form for making modifications,
321
+ including but not limited to software source code, documentation
322
+ source, and configuration files.
323
+
324
+ "Object" form shall mean any form resulting from mechanical
325
+ transformation or translation of a Source form, including but
326
+ not limited to compiled object code, generated documentation,
327
+ and conversions to other media types.
328
+
329
+ "Work" shall mean the work of authorship, whether in Source or
330
+ Object form, made available under the License, as indicated by a
331
+ copyright notice that is included in or attached to the work
332
+ (an example is provided in the Appendix below).
333
+
334
+ "Derivative Works" shall mean any work, whether in Source or Object
335
+ form, that is based on (or derived from) the Work and for which the
336
+ editorial revisions, annotations, elaborations, or other modifications
337
+ represent, as a whole, an original work of authorship. For the purposes
338
+ of this License, Derivative Works shall not include works that remain
339
+ separable from, or merely link (or bind by name) to the interfaces of,
340
+ the Work and Derivative Works thereof.
341
+
342
+ "Contribution" shall mean any work of authorship, including
343
+ the original version of the Work and any modifications or additions
344
+ to that Work or Derivative Works thereof, that is intentionally
345
+ submitted to Licensor for inclusion in the Work by the copyright owner
346
+ or by an individual or Legal Entity authorized to submit on behalf of
347
+ the copyright owner. For the purposes of this definition, "submitted"
348
+ means any form of electronic, verbal, or written communication sent
349
+ to the Licensor or its representatives, including but not limited to
350
+ communication on electronic mailing lists, source code control systems,
351
+ and issue tracking systems that are managed by, or on behalf of, the
352
+ Licensor for the purpose of discussing and improving the Work, but
353
+ excluding communication that is conspicuously marked or otherwise
354
+ designated in writing by the copyright owner as "Not a Contribution."
355
+
356
+ "Contributor" shall mean Licensor and any individual or Legal Entity
357
+ on behalf of whom a Contribution has been received by Licensor and
358
+ subsequently incorporated within the Work.
359
+
360
+ 2. Grant of Copyright License. Subject to the terms and conditions of
361
+ this License, each Contributor hereby grants to You a perpetual,
362
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
363
+ copyright license to reproduce, prepare Derivative Works of,
364
+ publicly display, publicly perform, sublicense, and distribute the
365
+ Work and such Derivative Works in Source or Object form.
366
+
367
+ 3. Grant of Patent License. Subject to the terms and conditions of
368
+ this License, each Contributor hereby grants to You a perpetual,
369
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
370
+ (except as stated in this section) patent license to make, have made,
371
+ use, offer to sell, sell, import, and otherwise transfer the Work,
372
+ where such license applies only to those patent claims licensable
373
+ by such Contributor that are necessarily infringed by their
374
+ Contribution(s) alone or by combination of their Contribution(s)
375
+ with the Work to which such Contribution(s) was submitted. If You
376
+ institute patent litigation against any entity (including a
377
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
378
+ or a Contribution incorporated within the Work constitutes direct
379
+ or contributory patent infringement, then any patent licenses
380
+ granted to You under this License for that Work shall terminate
381
+ as of the date such litigation is filed.
382
+
383
+ 4. Redistribution. You may reproduce and distribute copies of the
384
+ Work or Derivative Works thereof in any medium, with or without
385
+ modifications, and in Source or Object form, provided that You
386
+ meet the following conditions:
387
+
388
+ (a) You must give any other recipients of the Work or
389
+ Derivative Works a copy of this License; and
390
+
391
+ (b) You must cause any modified files to carry prominent notices
392
+ stating that You changed the files; and
393
+
394
+ (c) You must retain, in the Source form of any Derivative Works
395
+ that You distribute, all copyright, patent, trademark, and
396
+ attribution notices from the Source form of the Work,
397
+ excluding those notices that do not pertain to any part of
398
+ the Derivative Works; and
399
+
400
+ (d) If the Work includes a "NOTICE" text file as part of its
401
+ distribution, then any Derivative Works that You distribute must
402
+ include a readable copy of the attribution notices contained
403
+ within such NOTICE file, excluding those notices that do not
404
+ pertain to any part of the Derivative Works, in at least one
405
+ of the following places: within a NOTICE text file distributed
406
+ as part of the Derivative Works; within the Source form or
407
+ documentation, if provided along with the Derivative Works; or,
408
+ within a display generated by the Derivative Works, if and
409
+ wherever such third-party notices normally appear. The contents
410
+ of the NOTICE file are for informational purposes only and
411
+ do not modify the License. You may add Your own attribution
412
+ notices within Derivative Works that You distribute, alongside
413
+ or as an addendum to the NOTICE text from the Work, provided
414
+ that such additional attribution notices cannot be construed
415
+ as modifying the License.
416
+
417
+ You may add Your own copyright statement to Your modifications and
418
+ may provide additional or different license terms and conditions
419
+ for use, reproduction, or distribution of Your modifications, or
420
+ for any such Derivative Works as a whole, provided Your use,
421
+ reproduction, and distribution of the Work otherwise complies with
422
+ the conditions stated in this License.
423
+
424
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
425
+ any Contribution intentionally submitted for inclusion in the Work
426
+ by You to the Licensor shall be under the terms and conditions of
427
+ this License, without any additional terms or conditions.
428
+ Notwithstanding the above, nothing herein shall supersede or modify
429
+ the terms of any separate license agreement you may have executed
430
+ with Licensor regarding such Contributions.
431
+
432
+ 6. Trademarks. This License does not grant permission to use the trade
433
+ names, trademarks, service marks, or product names of the Licensor,
434
+ except as required for reasonable and customary use in describing the
435
+ origin of the Work and reproducing the content of the NOTICE file.
436
+
437
+ 7. Disclaimer of Warranty. Unless required by applicable law or
438
+ agreed to in writing, Licensor provides the Work (and each
439
+ Contributor provides its Contributions) on an "AS IS" BASIS,
440
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
441
+ implied, including, without limitation, any warranties or conditions
442
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
443
+ PARTICULAR PURPOSE. You are solely responsible for determining the
444
+ appropriateness of using or redistributing the Work and assume any
445
+ risks associated with Your exercise of permissions under this License.
446
+
447
+ 8. Limitation of Liability. In no event and under no legal theory,
448
+ whether in tort (including negligence), contract, or otherwise,
449
+ unless required by applicable law (such as deliberate and grossly
450
+ negligent acts) or agreed to in writing, shall any Contributor be
451
+ liable to You for damages, including any direct, indirect, special,
452
+ incidental, or consequential damages of any character arising as a
453
+ result of this License or out of the use or inability to use the
454
+ Work (including but not limited to damages for loss of goodwill,
455
+ work stoppage, computer failure or malfunction, or any and all
456
+ other commercial damages or losses), even if such Contributor
457
+ has been advised of the possibility of such damages.
458
+
459
+ 9. Accepting Warranty or Additional Liability. While redistributing
460
+ the Work or Derivative Works thereof, You may choose to offer,
461
+ and charge a fee for, acceptance of support, warranty, indemnity,
462
+ or other liability obligations and/or rights consistent with this
463
+ License. However, in accepting such obligations, You may act only
464
+ on Your own behalf and on Your sole responsibility, not on behalf
465
+ of any other Contributor, and only if You agree to indemnify,
466
+ defend, and hold each Contributor harmless for any liability
467
+ incurred by, or claims asserted against, such Contributor by reason
468
+ of your accepting any such warranty or additional liability.
469
+
470
+ END OF TERMS AND CONDITIONS
471
+
472
+ APPENDIX: How to apply the Apache License to your work.
473
+
474
+ To apply the Apache License to your work, attach the following
475
+ boilerplate notice, with the fields enclosed by brackets "{}"
476
+ replaced with your own identifying information. (Don't include
477
+ the brackets!) The text should be enclosed in the appropriate
478
+ comment syntax for the file format. We also recommend that a
479
+ file or class name and description of purpose be included on the
480
+ same "printed page" as the copyright notice for easier
481
+ identification within third-party archives.
482
+
483
+ Copyright 2018 Gregor Martynus and other contributors.
484
+
485
+ Licensed under the Apache License, Version 2.0 (the "License");
486
+ you may not use this file except in compliance with the License.
487
+ You may obtain a copy of the License at
488
+
489
+ http://www.apache.org/licenses/LICENSE-2.0
490
+
491
+ Unless required by applicable law or agreed to in writing, software
492
+ distributed under the License is distributed on an "AS IS" BASIS,
493
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
494
+ See the License for the specific language governing permissions and
495
+ limitations under the License.
496
+
497
+
498
+ brace-expansion
499
+ MIT
500
+ MIT License
501
+
502
+ Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
503
+
504
+ Permission is hereby granted, free of charge, to any person obtaining a copy
505
+ of this software and associated documentation files (the "Software"), to deal
506
+ in the Software without restriction, including without limitation the rights
507
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
508
+ copies of the Software, and to permit persons to whom the Software is
509
+ furnished to do so, subject to the following conditions:
510
+
511
+ The above copyright notice and this permission notice shall be included in all
512
+ copies or substantial portions of the Software.
513
+
514
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
515
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
516
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
517
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
518
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
519
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
520
+ SOFTWARE.
521
+
522
+
523
+ deprecation
524
+ ISC
525
+ The ISC License
526
+
527
+ Copyright (c) Gregor Martynus and contributors
528
+
529
+ Permission to use, copy, modify, and/or distribute this software for any
530
+ purpose with or without fee is hereby granted, provided that the above
531
+ copyright notice and this permission notice appear in all copies.
532
+
533
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
534
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
535
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
536
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
537
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
538
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
539
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
540
+
541
+
542
+ minimatch
543
+ ISC
544
+ The ISC License
545
+
546
+ Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors
547
+
548
+ Permission to use, copy, modify, and/or distribute this software for any
549
+ purpose with or without fee is hereby granted, provided that the above
550
+ copyright notice and this permission notice appear in all copies.
551
+
552
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
553
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
554
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
555
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
556
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
557
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
558
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
559
+
560
+
561
+ once
562
+ ISC
563
+ The ISC License
564
+
565
+ Copyright (c) Isaac Z. Schlueter and Contributors
566
+
567
+ Permission to use, copy, modify, and/or distribute this software for any
568
+ purpose with or without fee is hereby granted, provided that the above
569
+ copyright notice and this permission notice appear in all copies.
570
+
571
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
572
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
573
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
574
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
575
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
576
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
577
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
578
+
579
+
580
+ parse-diff
581
+ MIT
582
+ The MIT License (MIT)
583
+
584
+ Copyright (c) 2014 Sergey Todyshev
585
+
586
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
587
+ this software and associated documentation files (the "Software"), to deal in
588
+ the Software without restriction, including without limitation the rights to
589
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
590
+ the Software, and to permit persons to whom the Software is furnished to do so,
591
+ subject to the following conditions:
592
+
593
+ The above copyright notice and this permission notice shall be included in all
594
+ copies or substantial portions of the Software.
595
+
596
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
597
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
598
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
599
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
600
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
601
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
602
+
603
+
604
+ regexp-tree
605
+ MIT
606
+ MIT License
607
+
608
+ Copyright (c) 2017 Dmitry Soshnikov
609
+
610
+ Permission is hereby granted, free of charge, to any person obtaining a copy
611
+ of this software and associated documentation files (the "Software"), to deal
612
+ in the Software without restriction, including without limitation the rights
613
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
614
+ copies of the Software, and to permit persons to whom the Software is
615
+ furnished to do so, subject to the following conditions:
616
+
617
+ The above copyright notice and this permission notice shall be included in all
618
+ copies or substantial portions of the Software.
619
+
620
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
621
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
622
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
623
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
624
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
625
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
626
+ SOFTWARE.
627
+
628
+
629
+ safe-regex
630
+ MIT
631
+ Copyright 2019-present is held by the authors of the safe-regex module.
632
+
633
+ This software is released under the MIT license:
634
+
635
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
636
+ this software and associated documentation files (the "Software"), to deal in
637
+ the Software without restriction, including without limitation the rights to
638
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
639
+ the Software, and to permit persons to whom the Software is furnished to do so,
640
+ subject to the following conditions:
641
+
642
+ The above copyright notice and this permission notice shall be included in all
643
+ copies or substantial portions of the Software.
644
+
645
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
646
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
647
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
648
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
649
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
650
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
651
+
652
+ Original author: James Halliday @substack
653
+ Maintainer: James C. (Jamie) Davis @davisjam
654
+
655
+
656
+ tunnel
657
+ MIT
658
+ The MIT License (MIT)
659
+
660
+ Copyright (c) 2012 Koichi Kobayashi
661
+
662
+ Permission is hereby granted, free of charge, to any person obtaining a copy
663
+ of this software and associated documentation files (the "Software"), to deal
664
+ in the Software without restriction, including without limitation the rights
665
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
666
+ copies of the Software, and to permit persons to whom the Software is
667
+ furnished to do so, subject to the following conditions:
668
+
669
+ The above copyright notice and this permission notice shall be included in
670
+ all copies or substantial portions of the Software.
671
+
672
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
673
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
674
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
675
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
676
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
677
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
678
+ THE SOFTWARE.
679
+
680
+
681
+ undici
682
+ MIT
683
+ MIT License
684
+
685
+ Copyright (c) Matteo Collina and Undici contributors
686
+
687
+ Permission is hereby granted, free of charge, to any person obtaining a copy
688
+ of this software and associated documentation files (the "Software"), to deal
689
+ in the Software without restriction, including without limitation the rights
690
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
691
+ copies of the Software, and to permit persons to whom the Software is
692
+ furnished to do so, subject to the following conditions:
693
+
694
+ The above copyright notice and this permission notice shall be included in all
695
+ copies or substantial portions of the Software.
696
+
697
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
698
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
699
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
700
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
701
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
702
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
703
+ SOFTWARE.
704
+
705
+
706
+ universal-user-agent
707
+ ISC
708
+ # [ISC License](https://spdx.org/licenses/ISC)
709
+
710
+ Copyright (c) 2018, Gregor Martynus (https://github.com/gr2m)
711
+
712
+ 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.
713
+
714
+ 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.
715
+
716
+
717
+ wrappy
718
+ ISC
719
+ The ISC License
720
+
721
+ Copyright (c) Isaac Z. Schlueter and Contributors
722
+
723
+ Permission to use, copy, modify, and/or distribute this software for any
724
+ purpose with or without fee is hereby granted, provided that the above
725
+ copyright notice and this permission notice appear in all copies.
726
+
727
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
728
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
729
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
730
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
731
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
732
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
733
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
734
+
735
+
736
+ zod
737
+ MIT
738
+ MIT License
739
+
740
+ Copyright (c) 2025 Colin McDonnell
741
+
742
+ Permission is hereby granted, free of charge, to any person obtaining a copy
743
+ of this software and associated documentation files (the "Software"), to deal
744
+ in the Software without restriction, including without limitation the rights
745
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
746
+ copies of the Software, and to permit persons to whom the Software is
747
+ furnished to do so, subject to the following conditions:
748
+
749
+ The above copyright notice and this permission notice shall be included in all
750
+ copies or substantial portions of the Software.
751
+
752
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
753
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
754
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
755
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
756
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
757
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
758
+ SOFTWARE.