@visulima/email 1.0.0-alpha.16 → 1.0.0-alpha.17

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 (138) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/LICENSE.md +303 -483
  3. package/dist/crypto/index.d.ts +147 -4
  4. package/dist/index.d.ts +785 -9
  5. package/dist/packem_shared/provider.d-DcfYeGJJ.d.ts +28 -0
  6. package/dist/packem_shared/types.d-CNnnk-Ya.d.ts +102 -0
  7. package/dist/packem_shared/types.d-nyR1ty1Q.d.ts +9 -0
  8. package/dist/packem_shared/types.d-wwpgA3to.d.ts +204 -0
  9. package/dist/providers/ahasend/index.d.ts +36 -3
  10. package/dist/providers/aws-ses/index.d.ts +47 -3
  11. package/dist/providers/azure/index.d.ts +52 -3
  12. package/dist/providers/brevo/index.d.ts +65 -3
  13. package/dist/providers/failover/index.d.ts +27 -3
  14. package/dist/providers/http/index.d.ts +35 -3
  15. package/dist/providers/infobip/index.d.ts +56 -3
  16. package/dist/providers/mailcrab/index.d.ts +32 -3
  17. package/dist/providers/mailersend/index.d.ts +51 -3
  18. package/dist/providers/mailgun/index.d.ts +73 -3
  19. package/dist/providers/mailjet/index.d.ts +72 -3
  20. package/dist/providers/mailomat/index.d.ts +40 -3
  21. package/dist/providers/mailpace/index.d.ts +52 -3
  22. package/dist/providers/mailtrap/index.d.ts +44 -3
  23. package/dist/providers/mandrill/index.d.ts +87 -3
  24. package/dist/providers/mock/index.d.ts +59 -3
  25. package/dist/providers/nodemailer/index.d.ts +38 -3
  26. package/dist/providers/opentelemetry/index.d.ts +529 -3
  27. package/dist/providers/plunk/index.d.ts +38 -3
  28. package/dist/providers/postal/index.d.ts +48 -3
  29. package/dist/providers/postmark/index.d.ts +60 -3
  30. package/dist/providers/resend/index.d.ts +51 -3
  31. package/dist/providers/roundrobin/index.d.ts +27 -3
  32. package/dist/providers/scaleway/index.d.ts +44 -3
  33. package/dist/providers/sendgrid/index.d.ts +84 -3
  34. package/dist/providers/smtp/index.d.ts +71 -3
  35. package/dist/providers/sweego/index.d.ts +40 -3
  36. package/dist/providers/zeptomail/index.d.ts +37 -3
  37. package/dist/template-engines/handlebars.d.ts +23 -22
  38. package/dist/template-engines/html-to-text.d.ts +24 -24
  39. package/dist/template-engines/mjml.d.ts +10 -10
  40. package/dist/template-engines/react-email.d.ts +9 -9
  41. package/dist/template-engines/vue-email.d.ts +9 -9
  42. package/dist/utils/cache.d.ts +49 -48
  43. package/dist/utils/format-email-address.d.ts +8 -7
  44. package/dist/utils/normalize-email-aliases.d.ts +20 -20
  45. package/dist/utils/parse-address.d.ts +18 -17
  46. package/dist/utils/validation/check-mx-records.d.ts +36 -35
  47. package/dist/utils/validation/disposable-email-domains.d.ts +1 -13
  48. package/dist/utils/validation/role-accounts.d.ts +18 -18
  49. package/dist/utils/validation/validate-email.d.ts +5 -5
  50. package/dist/utils/validation/verify-email.d.ts +45 -42
  51. package/dist/utils/validation/verify-smtp.d.ts +35 -34
  52. package/package.json +36 -36
  53. package/dist/attachment-helpers.d.ts +0 -64
  54. package/dist/crypto/dkim-signer.d.ts +0 -48
  55. package/dist/crypto/smime-encrypter.d.ts +0 -53
  56. package/dist/crypto/smime-signer.d.ts +0 -48
  57. package/dist/crypto/types.d.ts +0 -101
  58. package/dist/draft-mail-message.d.ts +0 -13
  59. package/dist/errors/email-error.d.ts +0 -17
  60. package/dist/errors/required-option-error.d.ts +0 -10
  61. package/dist/mail-message.d.ts +0 -425
  62. package/dist/mail.d.ts +0 -206
  63. package/dist/providers/ahasend/provider.d.ts +0 -7
  64. package/dist/providers/ahasend/types.d.ts +0 -28
  65. package/dist/providers/aws-ses/provider.d.ts +0 -8
  66. package/dist/providers/aws-ses/types.d.ts +0 -38
  67. package/dist/providers/azure/provider.d.ts +0 -7
  68. package/dist/providers/azure/types.d.ts +0 -44
  69. package/dist/providers/brevo/provider.d.ts +0 -7
  70. package/dist/providers/brevo/types.d.ts +0 -57
  71. package/dist/providers/failover/provider.d.ts +0 -7
  72. package/dist/providers/failover/types.d.ts +0 -19
  73. package/dist/providers/http/provider.d.ts +0 -7
  74. package/dist/providers/http/types.d.ts +0 -27
  75. package/dist/providers/infobip/provider.d.ts +0 -7
  76. package/dist/providers/infobip/types.d.ts +0 -48
  77. package/dist/providers/mailcrab/provider.d.ts +0 -9
  78. package/dist/providers/mailcrab/types.d.ts +0 -22
  79. package/dist/providers/mailersend/provider.d.ts +0 -7
  80. package/dist/providers/mailersend/types.d.ts +0 -43
  81. package/dist/providers/mailgun/provider.d.ts +0 -7
  82. package/dist/providers/mailgun/types.d.ts +0 -65
  83. package/dist/providers/mailjet/provider.d.ts +0 -7
  84. package/dist/providers/mailjet/types.d.ts +0 -64
  85. package/dist/providers/mailomat/provider.d.ts +0 -7
  86. package/dist/providers/mailomat/types.d.ts +0 -32
  87. package/dist/providers/mailpace/provider.d.ts +0 -7
  88. package/dist/providers/mailpace/types.d.ts +0 -44
  89. package/dist/providers/mailtrap/provider.d.ts +0 -7
  90. package/dist/providers/mailtrap/types.d.ts +0 -36
  91. package/dist/providers/mandrill/provider.d.ts +0 -7
  92. package/dist/providers/mandrill/types.d.ts +0 -79
  93. package/dist/providers/mock/provider.d.ts +0 -8
  94. package/dist/providers/mock/types.d.ts +0 -50
  95. package/dist/providers/nodemailer/provider.d.ts +0 -7
  96. package/dist/providers/nodemailer/types.d.ts +0 -30
  97. package/dist/providers/opentelemetry/provider.d.ts +0 -7
  98. package/dist/providers/opentelemetry/types.d.ts +0 -31
  99. package/dist/providers/plunk/provider.d.ts +0 -7
  100. package/dist/providers/plunk/types.d.ts +0 -30
  101. package/dist/providers/postal/provider.d.ts +0 -7
  102. package/dist/providers/postal/types.d.ts +0 -40
  103. package/dist/providers/postmark/provider.d.ts +0 -7
  104. package/dist/providers/postmark/types.d.ts +0 -52
  105. package/dist/providers/provider.d.ts +0 -27
  106. package/dist/providers/resend/provider.d.ts +0 -7
  107. package/dist/providers/resend/types.d.ts +0 -43
  108. package/dist/providers/roundrobin/provider.d.ts +0 -7
  109. package/dist/providers/roundrobin/types.d.ts +0 -19
  110. package/dist/providers/scaleway/provider.d.ts +0 -7
  111. package/dist/providers/scaleway/types.d.ts +0 -36
  112. package/dist/providers/sendgrid/provider.d.ts +0 -7
  113. package/dist/providers/sendgrid/types.d.ts +0 -76
  114. package/dist/providers/smtp/provider.d.ts +0 -7
  115. package/dist/providers/smtp/types.d.ts +0 -63
  116. package/dist/providers/sweego/provider.d.ts +0 -7
  117. package/dist/providers/sweego/types.d.ts +0 -32
  118. package/dist/providers/utils/address-formatter.d.ts +0 -139
  119. package/dist/providers/utils/attachment-processor.d.ts +0 -58
  120. package/dist/providers/utils/index.d.ts +0 -4
  121. package/dist/providers/utils/payload-builder.d.ts +0 -78
  122. package/dist/providers/utils/provider-base.d.ts +0 -69
  123. package/dist/providers/zeptomail/provider.d.ts +0 -7
  124. package/dist/providers/zeptomail/types.d.ts +0 -29
  125. package/dist/template-engines/types.d.ts +0 -8
  126. package/dist/types.d.ts +0 -203
  127. package/dist/utils/build-mime-message.d.ts +0 -8
  128. package/dist/utils/create-logger.d.ts +0 -16
  129. package/dist/utils/format-email-addresses.d.ts +0 -8
  130. package/dist/utils/generate-boundary.d.ts +0 -7
  131. package/dist/utils/generate-message-id.d.ts +0 -6
  132. package/dist/utils/headers-to-record.d.ts +0 -9
  133. package/dist/utils/is-port-available.d.ts +0 -9
  134. package/dist/utils/make-request.d.ts +0 -18
  135. package/dist/utils/retry.d.ts +0 -10
  136. package/dist/utils/sanitize-header.d.ts +0 -14
  137. package/dist/utils/to-base64.d.ts +0 -8
  138. package/dist/utils/validation/validate-email-options.d.ts +0 -8
package/LICENSE.md CHANGED
@@ -75,6 +75,33 @@ Repository: git+https://github.com/visulima/visulima.git
75
75
  > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
76
76
  > >
77
77
  > > 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.
78
+ >
79
+ >
80
+ >
81
+ >
82
+ >
83
+ > # Licenses of bundled types
84
+ > The published @visulima/error artifact additionally contains code with the following licenses:
85
+ > Apache-2.0
86
+ >
87
+ > # Bundled types:
88
+ > ## ai
89
+ > License: Apache-2.0
90
+ > Repository: git+https://github.com/vercel/ai.git
91
+ >
92
+ > > Copyright 2023 Vercel, Inc.
93
+ > >
94
+ > > Licensed under the Apache License, Version 2.0 (the "License");
95
+ > > you may not use this file except in compliance with the License.
96
+ > > You may obtain a copy of the License at
97
+ > >
98
+ > > http://www.apache.org/licenses/LICENSE-2.0
99
+ > >
100
+ > > Unless required by applicable law or agreed to in writing, software
101
+ > > distributed under the License is distributed on an "AS IS" BASIS,
102
+ > > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
103
+ > > See the License for the specific language governing permissions and
104
+ > > limitations under the License.
78
105
 
79
106
  ---------------------------------------
80
107
 
@@ -160,6 +187,33 @@ Repository: git+https://github.com/visulima/visulima.git
160
187
  > > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
161
188
  > > >
162
189
  > > > 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.
190
+ > >
191
+ > >
192
+ > >
193
+ > >
194
+ > >
195
+ > > # Licenses of bundled types
196
+ > > The published @visulima/error artifact additionally contains code with the following licenses:
197
+ > > Apache-2.0
198
+ > >
199
+ > > # Bundled types:
200
+ > > ## ai
201
+ > > License: Apache-2.0
202
+ > > Repository: git+https://github.com/vercel/ai.git
203
+ > >
204
+ > > > Copyright 2023 Vercel, Inc.
205
+ > > >
206
+ > > > Licensed under the Apache License, Version 2.0 (the "License");
207
+ > > > you may not use this file except in compliance with the License.
208
+ > > > You may obtain a copy of the License at
209
+ > > >
210
+ > > > http://www.apache.org/licenses/LICENSE-2.0
211
+ > > >
212
+ > > > Unless required by applicable law or agreed to in writing, software
213
+ > > > distributed under the License is distributed on an "AS IS" BASIS,
214
+ > > > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
215
+ > > > See the License for the specific language governing permissions and
216
+ > > > limitations under the License.
163
217
  >
164
218
  > ---------------------------------------
165
219
  >
@@ -366,14 +420,11 @@ Repository: git+https://github.com/visulima/visulima.git
366
420
  >
367
421
  >
368
422
  > # Licenses of bundled types
369
- >
370
423
  > The published @visulima/fs artifact additionally contains code with the following licenses:
371
- > MIT
424
+ > ISC, MIT
372
425
  >
373
426
  > # Bundled types:
374
- >
375
427
  > ## is-fs-case-sensitive
376
- >
377
428
  > License: MIT
378
429
  > By: Hiroki Osame
379
430
  > Repository: privatenumber/is-fs-case-sensitive
@@ -399,6 +450,27 @@ Repository: git+https://github.com/visulima/visulima.git
399
450
  > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
400
451
  > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
401
452
  > > SOFTWARE.
453
+ >
454
+ > ---------------------------------------
455
+ >
456
+ > ## yaml
457
+ > License: ISC
458
+ > By: Eemeli Aro
459
+ > Repository: github:eemeli/yaml
460
+ >
461
+ > > Copyright Eemeli Aro <eemeli@gmail.com>
462
+ > >
463
+ > > Permission to use, copy, modify, and/or distribute this software for any purpose
464
+ > > with or without fee is hereby granted, provided that the above copyright notice
465
+ > > and this permission notice appear in all copies.
466
+ > >
467
+ > > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
468
+ > > REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
469
+ > > FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
470
+ > > INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
471
+ > > OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
472
+ > > TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
473
+ > > THIS SOFTWARE.
402
474
 
403
475
  ---------------------------------------
404
476
 
@@ -530,47 +602,219 @@ Repository: git+https://github.com/visulima/visulima.git
530
602
  <!-- TYPE_DEPENDENCIES -->
531
603
 
532
604
  # Licenses of bundled types
533
-
534
605
  The published @visulima/email artifact additionally contains code with the following licenses:
535
- MIT
606
+ Apache-2.0, MIT
536
607
 
537
608
  # Bundled types:
609
+ ## @opentelemetry/api
610
+ License: Apache-2.0
611
+ By: OpenTelemetry Authors
612
+ Repository: open-telemetry/opentelemetry-js
613
+
614
+ > Apache License
615
+ > Version 2.0, January 2004
616
+ > http://www.apache.org/licenses/
617
+ >
618
+ > TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
619
+ >
620
+ > 1. Definitions.
621
+ >
622
+ > "License" shall mean the terms and conditions for use, reproduction,
623
+ > and distribution as defined by Sections 1 through 9 of this document.
624
+ >
625
+ > "Licensor" shall mean the copyright owner or entity authorized by
626
+ > the copyright owner that is granting the License.
627
+ >
628
+ > "Legal Entity" shall mean the union of the acting entity and all
629
+ > other entities that control, are controlled by, or are under common
630
+ > control with that entity. For the purposes of this definition,
631
+ > "control" means (i) the power, direct or indirect, to cause the
632
+ > direction or management of such entity, whether by contract or
633
+ > otherwise, or (ii) ownership of fifty percent (50%) or more of the
634
+ > outstanding shares, or (iii) beneficial ownership of such entity.
635
+ >
636
+ > "You" (or "Your") shall mean an individual or Legal Entity
637
+ > exercising permissions granted by this License.
638
+ >
639
+ > "Source" form shall mean the preferred form for making modifications,
640
+ > including but not limited to software source code, documentation
641
+ > source, and configuration files.
642
+ >
643
+ > "Object" form shall mean any form resulting from mechanical
644
+ > transformation or translation of a Source form, including but
645
+ > not limited to compiled object code, generated documentation,
646
+ > and conversions to other media types.
647
+ >
648
+ > "Work" shall mean the work of authorship, whether in Source or
649
+ > Object form, made available under the License, as indicated by a
650
+ > copyright notice that is included in or attached to the work
651
+ > (an example is provided in the Appendix below).
652
+ >
653
+ > "Derivative Works" shall mean any work, whether in Source or Object
654
+ > form, that is based on (or derived from) the Work and for which the
655
+ > editorial revisions, annotations, elaborations, or other modifications
656
+ > represent, as a whole, an original work of authorship. For the purposes
657
+ > of this License, Derivative Works shall not include works that remain
658
+ > separable from, or merely link (or bind by name) to the interfaces of,
659
+ > the Work and Derivative Works thereof.
660
+ >
661
+ > "Contribution" shall mean any work of authorship, including
662
+ > the original version of the Work and any modifications or additions
663
+ > to that Work or Derivative Works thereof, that is intentionally
664
+ > submitted to Licensor for inclusion in the Work by the copyright owner
665
+ > or by an individual or Legal Entity authorized to submit on behalf of
666
+ > the copyright owner. For the purposes of this definition, "submitted"
667
+ > means any form of electronic, verbal, or written communication sent
668
+ > to the Licensor or its representatives, including but not limited to
669
+ > communication on electronic mailing lists, source code control systems,
670
+ > and issue tracking systems that are managed by, or on behalf of, the
671
+ > Licensor for the purpose of discussing and improving the Work, but
672
+ > excluding communication that is conspicuously marked or otherwise
673
+ > designated in writing by the copyright owner as "Not a Contribution."
674
+ >
675
+ > "Contributor" shall mean Licensor and any individual or Legal Entity
676
+ > on behalf of whom a Contribution has been received by Licensor and
677
+ > subsequently incorporated within the Work.
678
+ >
679
+ > 2. Grant of Copyright License. Subject to the terms and conditions of
680
+ > this License, each Contributor hereby grants to You a perpetual,
681
+ > worldwide, non-exclusive, no-charge, royalty-free, irrevocable
682
+ > copyright license to reproduce, prepare Derivative Works of,
683
+ > publicly display, publicly perform, sublicense, and distribute the
684
+ > Work and such Derivative Works in Source or Object form.
685
+ >
686
+ > 3. Grant of Patent License. Subject to the terms and conditions of
687
+ > this License, each Contributor hereby grants to You a perpetual,
688
+ > worldwide, non-exclusive, no-charge, royalty-free, irrevocable
689
+ > (except as stated in this section) patent license to make, have made,
690
+ > use, offer to sell, sell, import, and otherwise transfer the Work,
691
+ > where such license applies only to those patent claims licensable
692
+ > by such Contributor that are necessarily infringed by their
693
+ > Contribution(s) alone or by combination of their Contribution(s)
694
+ > with the Work to which such Contribution(s) was submitted. If You
695
+ > institute patent litigation against any entity (including a
696
+ > cross-claim or counterclaim in a lawsuit) alleging that the Work
697
+ > or a Contribution incorporated within the Work constitutes direct
698
+ > or contributory patent infringement, then any patent licenses
699
+ > granted to You under this License for that Work shall terminate
700
+ > as of the date such litigation is filed.
701
+ >
702
+ > 4. Redistribution. You may reproduce and distribute copies of the
703
+ > Work or Derivative Works thereof in any medium, with or without
704
+ > modifications, and in Source or Object form, provided that You
705
+ > meet the following conditions:
706
+ >
707
+ > (a) You must give any other recipients of the Work or
708
+ > Derivative Works a copy of this License; and
709
+ >
710
+ > (b) You must cause any modified files to carry prominent notices
711
+ > stating that You changed the files; and
712
+ >
713
+ > (c) You must retain, in the Source form of any Derivative Works
714
+ > that You distribute, all copyright, patent, trademark, and
715
+ > attribution notices from the Source form of the Work,
716
+ > excluding those notices that do not pertain to any part of
717
+ > the Derivative Works; and
718
+ >
719
+ > (d) If the Work includes a "NOTICE" text file as part of its
720
+ > distribution, then any Derivative Works that You distribute must
721
+ > include a readable copy of the attribution notices contained
722
+ > within such NOTICE file, excluding those notices that do not
723
+ > pertain to any part of the Derivative Works, in at least one
724
+ > of the following places: within a NOTICE text file distributed
725
+ > as part of the Derivative Works; within the Source form or
726
+ > documentation, if provided along with the Derivative Works; or,
727
+ > within a display generated by the Derivative Works, if and
728
+ > wherever such third-party notices normally appear. The contents
729
+ > of the NOTICE file are for informational purposes only and
730
+ > do not modify the License. You may add Your own attribution
731
+ > notices within Derivative Works that You distribute, alongside
732
+ > or as an addendum to the NOTICE text from the Work, provided
733
+ > that such additional attribution notices cannot be construed
734
+ > as modifying the License.
735
+ >
736
+ > You may add Your own copyright statement to Your modifications and
737
+ > may provide additional or different license terms and conditions
738
+ > for use, reproduction, or distribution of Your modifications, or
739
+ > for any such Derivative Works as a whole, provided Your use,
740
+ > reproduction, and distribution of the Work otherwise complies with
741
+ > the conditions stated in this License.
742
+ >
743
+ > 5. Submission of Contributions. Unless You explicitly state otherwise,
744
+ > any Contribution intentionally submitted for inclusion in the Work
745
+ > by You to the Licensor shall be under the terms and conditions of
746
+ > this License, without any additional terms or conditions.
747
+ > Notwithstanding the above, nothing herein shall supersede or modify
748
+ > the terms of any separate license agreement you may have executed
749
+ > with Licensor regarding such Contributions.
750
+ >
751
+ > 6. Trademarks. This License does not grant permission to use the trade
752
+ > names, trademarks, service marks, or product names of the Licensor,
753
+ > except as required for reasonable and customary use in describing the
754
+ > origin of the Work and reproducing the content of the NOTICE file.
755
+ >
756
+ > 7. Disclaimer of Warranty. Unless required by applicable law or
757
+ > agreed to in writing, Licensor provides the Work (and each
758
+ > Contributor provides its Contributions) on an "AS IS" BASIS,
759
+ > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
760
+ > implied, including, without limitation, any warranties or conditions
761
+ > of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
762
+ > PARTICULAR PURPOSE. You are solely responsible for determining the
763
+ > appropriateness of using or redistributing the Work and assume any
764
+ > risks associated with Your exercise of permissions under this License.
765
+ >
766
+ > 8. Limitation of Liability. In no event and under no legal theory,
767
+ > whether in tort (including negligence), contract, or otherwise,
768
+ > unless required by applicable law (such as deliberate and grossly
769
+ > negligent acts) or agreed to in writing, shall any Contributor be
770
+ > liable to You for damages, including any direct, indirect, special,
771
+ > incidental, or consequential damages of any character arising as a
772
+ > result of this License or out of the use or inability to use the
773
+ > Work (including but not limited to damages for loss of goodwill,
774
+ > work stoppage, computer failure or malfunction, or any and all
775
+ > other commercial damages or losses), even if such Contributor
776
+ > has been advised of the possibility of such damages.
777
+ >
778
+ > 9. Accepting Warranty or Additional Liability. While redistributing
779
+ > the Work or Derivative Works thereof, You may choose to offer,
780
+ > and charge a fee for, acceptance of support, warranty, indemnity,
781
+ > or other liability obligations and/or rights consistent with this
782
+ > License. However, in accepting such obligations, You may act only
783
+ > on Your own behalf and on Your sole responsibility, not on behalf
784
+ > of any other Contributor, and only if You agree to indemnify,
785
+ > defend, and hold each Contributor harmless for any liability
786
+ > incurred by, or claims asserted against, such Contributor by reason
787
+ > of your accepting any such warranty or additional liability.
788
+ >
789
+ > END OF TERMS AND CONDITIONS
790
+ >
791
+ > APPENDIX: How to apply the Apache License to your work.
792
+ >
793
+ > To apply the Apache License to your work, attach the following
794
+ > boilerplate notice, with the fields enclosed by brackets "[]"
795
+ > replaced with your own identifying information. (Don't include
796
+ > the brackets!) The text should be enclosed in the appropriate
797
+ > comment syntax for the file format. We also recommend that a
798
+ > file or class name and description of purpose be included on the
799
+ > same "printed page" as the copyright notice for easier
800
+ > identification within third-party archives.
801
+ >
802
+ > Copyright [yyyy] [name of copyright owner]
803
+ >
804
+ > Licensed under the Apache License, Version 2.0 (the "License");
805
+ > you may not use this file except in compliance with the License.
806
+ > You may obtain a copy of the License at
807
+ >
808
+ > http://www.apache.org/licenses/LICENSE-2.0
809
+ >
810
+ > Unless required by applicable law or agreed to in writing, software
811
+ > distributed under the License is distributed on an "AS IS" BASIS,
812
+ > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
813
+ > See the License for the specific language governing permissions and
814
+ > limitations under the License.
538
815
 
539
- ## @visulima/error
540
-
541
- License: MIT
542
- By: Daniel Bannert
543
- Repository: git+https://github.com/visulima/visulima.git
544
-
545
- > MIT License
546
- >
547
- > Copyright (c) 2026 visulima
548
- >
549
- > Permission is hereby granted, free of charge, to any person obtaining a copy
550
- > of this software and associated documentation files (the "Software"), to deal
551
- > in the Software without restriction, including without limitation the rights
552
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
553
- > copies of the Software, and to permit persons to whom the Software is
554
- > furnished to do so, subject to the following conditions:
555
- >
556
- > The above copyright notice and this permission notice shall be included in all
557
- > copies or substantial portions of the Software.
558
- >
559
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
560
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
561
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
562
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
563
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
564
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
565
- > SOFTWARE.
566
- >
567
- > <!-- DEPENDENCIES -->
568
-
569
- # Licenses of bundled dependencies
570
- The published @visulima/email artifact additionally contains code with the following licenses:
571
- MIT
816
+ ---------------------------------------
572
817
 
573
- # Bundled dependencies:
574
818
  ## @visulima/error
575
819
  License: MIT
576
820
  By: Daniel Bannert
@@ -598,7 +842,7 @@ Repository: git+https://github.com/visulima/visulima.git
598
842
  > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
599
843
  > SOFTWARE.
600
844
  >
601
- >
845
+ > <!-- DEPENDENCIES -->
602
846
  >
603
847
  > # Licenses of bundled dependencies
604
848
  > The published @visulima/error artifact additionally contains code with the following licenses:
@@ -619,456 +863,32 @@ Repository: git+https://github.com/visulima/visulima.git
619
863
  > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
620
864
  > >
621
865
  > > 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.
622
-
623
- ---------------------------------------
624
-
625
- ## @visulima/fs
626
- License: MIT
627
- By: Daniel Bannert
628
- Repository: git+https://github.com/visulima/visulima.git
629
-
630
- > MIT License
631
- >
632
- > Copyright (c) 2026 visulima
633
- >
634
- > Permission is hereby granted, free of charge, to any person obtaining a copy
635
- > of this software and associated documentation files (the "Software"), to deal
636
- > in the Software without restriction, including without limitation the rights
637
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
638
- > copies of the Software, and to permit persons to whom the Software is
639
- > furnished to do so, subject to the following conditions:
640
- >
641
- > The above copyright notice and this permission notice shall be included in all
642
- > copies or substantial portions of the Software.
643
- >
644
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
645
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
646
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
647
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
648
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
649
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
650
- > SOFTWARE.
651
- >
652
- >
653
- >
654
- > # Licenses of bundled dependencies
655
- > The published @visulima/fs artifact additionally contains code with the following licenses:
656
- > ISC, MIT
657
- >
658
- > # Bundled dependencies:
659
- > ## @visulima/error
660
- > License: MIT
661
- > By: Daniel Bannert
662
- > Repository: git+https://github.com/visulima/visulima.git
663
- >
664
- > > MIT License
665
- > >
666
- > > Copyright (c) 2026 visulima
667
- > >
668
- > > Permission is hereby granted, free of charge, to any person obtaining a copy
669
- > > of this software and associated documentation files (the "Software"), to deal
670
- > > in the Software without restriction, including without limitation the rights
671
- > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
672
- > > copies of the Software, and to permit persons to whom the Software is
673
- > > furnished to do so, subject to the following conditions:
674
- > >
675
- > > The above copyright notice and this permission notice shall be included in all
676
- > > copies or substantial portions of the Software.
677
- > >
678
- > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
679
- > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
680
- > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
681
- > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
682
- > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
683
- > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
684
- > > SOFTWARE.
685
- > >
686
- > >
687
- > >
688
- > > # Licenses of bundled dependencies
689
- > > The published @visulima/error artifact additionally contains code with the following licenses:
690
- > > MIT
691
- > >
692
- > > # Bundled dependencies:
693
- > > ## is-plain-obj
694
- > > License: MIT
695
- > > By: Sindre Sorhus
696
- > > Repository: sindresorhus/is-plain-obj
697
- > >
698
- > > > MIT License
699
- > > >
700
- > > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
701
- > > >
702
- > > > 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:
703
- > > >
704
- > > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
705
- > > >
706
- > > > 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.
707
- >
708
- > ---------------------------------------
709
- >
710
- > ## detect-indent
711
- > License: MIT
712
- > By: Sindre Sorhus
713
- > Repository: sindresorhus/detect-indent
714
- >
715
- > > MIT License
716
- > >
717
- > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
718
- > >
719
- > > 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:
720
- > >
721
- > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
722
- > >
723
- > > 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.
724
- >
725
- > ---------------------------------------
726
- >
727
- > ## fdir
728
- > License: MIT
729
- > By: thecodrr
730
- > Repository: git+https://github.com/thecodrr/fdir.git
731
- >
732
- > > Copyright 2023 Abdullah Atta
733
- > >
734
- > > 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:
735
- > >
736
- > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
737
- > >
738
- > > 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.
739
866
  >
740
- > ---------------------------------------
867
+ > <!-- /DEPENDENCIES -->
741
868
  >
742
- > ## glob-parent
743
- > License: ISC
744
- > By: Gulp Team, Elan Shanker, Blaine Bublitz
745
- > Repository: gulpjs/glob-parent
746
869
  >
747
- > > The ISC License
748
- > >
749
- > > Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz <blaine.bublitz@gmail.com>, Eric Schoffstall <yo@contra.io> and other contributors
750
- > >
751
- > > Permission to use, copy, modify, and/or distribute this software for any
752
- > > purpose with or without fee is hereby granted, provided that the above
753
- > > copyright notice and this permission notice appear in all copies.
754
- > >
755
- > > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
756
- > > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
757
- > > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
758
- > > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
759
- > > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
760
- > > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
761
- > > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
762
870
  >
763
- > ---------------------------------------
871
+ > # Licenses of bundled types
872
+ > The published @visulima/error artifact additionally contains code with the following licenses:
873
+ > Apache-2.0
764
874
  >
765
- > ## is-extglob
766
- > License: MIT
767
- > By: Jon Schlinkert
768
- > Repository: jonschlinkert/is-extglob
875
+ > # Bundled types:
876
+ > ## ai
877
+ > License: Apache-2.0
878
+ > Repository: git+https://github.com/vercel/ai.git
769
879
  >
770
- > > The MIT License (MIT)
771
- > >
772
- > > Copyright (c) 2014-2016, Jon Schlinkert
773
- > >
774
- > > Permission is hereby granted, free of charge, to any person obtaining a copy
775
- > > of this software and associated documentation files (the "Software"), to deal
776
- > > in the Software without restriction, including without limitation the rights
777
- > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
778
- > > copies of the Software, and to permit persons to whom the Software is
779
- > > furnished to do so, subject to the following conditions:
780
- > >
781
- > > The above copyright notice and this permission notice shall be included in
782
- > > all copies or substantial portions of the Software.
880
+ > > Copyright 2023 Vercel, Inc.
783
881
  > >
784
- > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
785
- > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
786
- > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
787
- > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
788
- > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
789
- > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
790
- > > THE SOFTWARE.
791
- >
792
- > ---------------------------------------
793
- >
794
- > ## is-fs-case-sensitive
795
- > License: MIT
796
- > By: Hiroki Osame
797
- > Repository: privatenumber/is-fs-case-sensitive
798
- >
799
- > > MIT License
882
+ > > Licensed under the Apache License, Version 2.0 (the "License");
883
+ > > you may not use this file except in compliance with the License.
884
+ > > You may obtain a copy of the License at
800
885
  > >
801
- > > Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>
886
+ > > http://www.apache.org/licenses/LICENSE-2.0
802
887
  > >
803
- > > Permission is hereby granted, free of charge, to any person obtaining a copy
804
- > > of this software and associated documentation files (the "Software"), to deal
805
- > > in the Software without restriction, including without limitation the rights
806
- > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
807
- > > copies of the Software, and to permit persons to whom the Software is
808
- > > furnished to do so, subject to the following conditions:
809
- > >
810
- > > The above copyright notice and this permission notice shall be included in all
811
- > > copies or substantial portions of the Software.
812
- > >
813
- > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
814
- > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
815
- > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
816
- > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
817
- > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
818
- > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
819
- > > SOFTWARE.
820
- >
821
- > ---------------------------------------
822
- >
823
- > ## is-glob
824
- > License: MIT
825
- > By: Jon Schlinkert, Brian Woodward, Daniel Perez
826
- > Repository: micromatch/is-glob
827
- >
828
- > > The MIT License (MIT)
829
- > >
830
- > > Copyright (c) 2014-2017, Jon Schlinkert.
831
- > >
832
- > > Permission is hereby granted, free of charge, to any person obtaining a copy
833
- > > of this software and associated documentation files (the "Software"), to deal
834
- > > in the Software without restriction, including without limitation the rights
835
- > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
836
- > > copies of the Software, and to permit persons to whom the Software is
837
- > > furnished to do so, subject to the following conditions:
838
- > >
839
- > > The above copyright notice and this permission notice shall be included in
840
- > > all copies or substantial portions of the Software.
841
- > >
842
- > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
843
- > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
844
- > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
845
- > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
846
- > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
847
- > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
848
- > > THE SOFTWARE.
849
- >
850
- > ---------------------------------------
851
- >
852
- > ## picomatch
853
- > License: MIT
854
- > By: Jon Schlinkert
855
- > Repository: micromatch/picomatch
856
- >
857
- > > The MIT License (MIT)
858
- > >
859
- > > Copyright (c) 2017-present, Jon Schlinkert.
860
- > >
861
- > > Permission is hereby granted, free of charge, to any person obtaining a copy
862
- > > of this software and associated documentation files (the "Software"), to deal
863
- > > in the Software without restriction, including without limitation the rights
864
- > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
865
- > > copies of the Software, and to permit persons to whom the Software is
866
- > > furnished to do so, subject to the following conditions:
867
- > >
868
- > > The above copyright notice and this permission notice shall be included in
869
- > > all copies or substantial portions of the Software.
870
- > >
871
- > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
872
- > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
873
- > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
874
- > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
875
- > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
876
- > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
877
- > > THE SOFTWARE.
878
- >
879
- > ---------------------------------------
880
- >
881
- > ## tinyglobby
882
- > License: MIT
883
- > By: Superchupu
884
- > Repository: git+https://github.com/SuperchupuDev/tinyglobby.git
885
- >
886
- > > MIT License
887
- > >
888
- > > Copyright (c) 2024 Madeline Gurriarán
889
- > >
890
- > > Permission is hereby granted, free of charge, to any person obtaining a copy
891
- > > of this software and associated documentation files (the "Software"), to deal
892
- > > in the Software without restriction, including without limitation the rights
893
- > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
894
- > > copies of the Software, and to permit persons to whom the Software is
895
- > > furnished to do so, subject to the following conditions:
896
- > >
897
- > > The above copyright notice and this permission notice shall be included in all
898
- > > copies or substantial portions of the Software.
899
- > >
900
- > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
901
- > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
902
- > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
903
- > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
904
- > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
905
- > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
906
- > > SOFTWARE.
907
- >
908
- >
909
- >
910
- >
911
- >
912
- > # Licenses of bundled types
913
- >
914
- > The published @visulima/fs artifact additionally contains code with the following licenses:
915
- > MIT
916
- >
917
- > # Bundled types:
918
- >
919
- > ## is-fs-case-sensitive
920
- >
921
- > License: MIT
922
- > By: Hiroki Osame
923
- > Repository: privatenumber/is-fs-case-sensitive
924
- >
925
- > > MIT License
926
- > >
927
- > > Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>
928
- > >
929
- > > Permission is hereby granted, free of charge, to any person obtaining a copy
930
- > > of this software and associated documentation files (the "Software"), to deal
931
- > > in the Software without restriction, including without limitation the rights
932
- > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
933
- > > copies of the Software, and to permit persons to whom the Software is
934
- > > furnished to do so, subject to the following conditions:
935
- > >
936
- > > The above copyright notice and this permission notice shall be included in all
937
- > > copies or substantial portions of the Software.
938
- > >
939
- > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
940
- > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
941
- > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
942
- > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
943
- > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
944
- > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
945
- > > SOFTWARE.
946
-
947
- ---------------------------------------
948
-
949
- ## @visulima/path
950
- License: MIT
951
- By: Daniel Bannert
952
- Repository: git+https://github.com/visulima/visulima.git
953
-
954
- > MIT License
955
- >
956
- > Copyright (c) 2026 visulima
957
- >
958
- > Permission is hereby granted, free of charge, to any person obtaining a copy
959
- > of this software and associated documentation files (the "Software"), to deal
960
- > in the Software without restriction, including without limitation the rights
961
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
962
- > copies of the Software, and to permit persons to whom the Software is
963
- > furnished to do so, subject to the following conditions:
964
- >
965
- > The above copyright notice and this permission notice shall be included in all
966
- > copies or substantial portions of the Software.
967
- >
968
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
969
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
970
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
971
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
972
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
973
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
974
- > SOFTWARE.
975
- >
976
- > ---
977
- >
978
- > MIT License
979
- >
980
- > Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
981
- >
982
- > Permission is hereby granted, free of charge, to any person obtaining a copy
983
- > of this software and associated documentation files (the "Software"), to deal
984
- > in the Software without restriction, including without limitation the rights
985
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
986
- > copies of the Software, and to permit persons to whom the Software is
987
- > furnished to do so, subject to the following conditions:
988
- >
989
- > The above copyright notice and this permission notice shall be included in all
990
- > copies or substantial portions of the Software.
991
- >
992
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
993
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
994
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
995
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
996
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
997
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
998
- > SOFTWARE.
999
- >
1000
- > ---
1001
- >
1002
- > Copyright Joyent, Inc. and other Node contributors.
1003
- >
1004
- > Permission is hereby granted, free of charge, to any person obtaining a
1005
- > copy of this software and associated documentation files (the
1006
- > "Software"), to deal in the Software without restriction, including
1007
- > without limitation the rights to use, copy, modify, merge, publish,
1008
- > distribute, sublicense, and/or sell copies of the Software, and to permit
1009
- > persons to whom the Software is furnished to do so, subject to the
1010
- > following conditions:
1011
- >
1012
- > The above copyright notice and this permission notice shall be included
1013
- > in all copies or substantial portions of the Software.
1014
- >
1015
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
1016
- > OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1017
- > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
1018
- > NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
1019
- > DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
1020
- > OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
1021
- > USE OR OTHER DEALINGS IN THE SOFTWARE.
1022
- >
1023
- > ---
1024
- >
1025
- > Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
1026
- >
1027
- > The MIT License (MIT)
1028
- >
1029
- > Copyright (c) 2023-present Fabio Spampinato
1030
- >
1031
- > Permission is hereby granted, free of charge, to any person obtaining a
1032
- > copy of this software and associated documentation files (the "Software"),
1033
- > to deal in the Software without restriction, including without limitation
1034
- > the rights to use, copy, modify, merge, publish, distribute, sublicense,
1035
- > and/or sell copies of the Software, and to permit persons to whom the
1036
- > Software is furnished to do so, subject to the following conditions:
1037
- >
1038
- > The above copyright notice and this permission notice shall be included in
1039
- > all copies or substantial portions of the Software.
1040
- >
1041
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1042
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1043
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1044
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1045
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1046
- > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1047
- > DEALINGS IN THE SOFTWARE.
1048
- >
1049
- >
1050
- >
1051
- > # Licenses of bundled dependencies
1052
- > The published @visulima/path artifact additionally contains code with the following licenses:
1053
- > MIT
1054
- >
1055
- > # Bundled dependencies:
1056
- > ## binary-extensions
1057
- > License: MIT
1058
- > By: Sindre Sorhus
1059
- > Repository: sindresorhus/binary-extensions
1060
- >
1061
- > > MIT License
1062
- > >
1063
- > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1064
- > > Copyright (c) Paul Miller (https://paulmillr.com)
1065
- > >
1066
- > > 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:
1067
- > >
1068
- > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1069
- > >
1070
- > > 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.
1071
-
1072
- <!-- /DEPENDENCIES -->
888
+ > > Unless required by applicable law or agreed to in writing, software
889
+ > > distributed under the License is distributed on an "AS IS" BASIS,
890
+ > > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
891
+ > > See the License for the specific language governing permissions and
892
+ > > limitations under the License.
1073
893
 
1074
894
  <!-- /TYPE_DEPENDENCIES -->