@visulima/pail 4.0.0-alpha.1 → 4.0.0-alpha.11

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 (91) hide show
  1. package/CHANGELOG.md +204 -0
  2. package/LICENSE.md +434 -52
  3. package/README.md +323 -0
  4. package/dist/error.d.ts +104 -0
  5. package/dist/error.js +76 -0
  6. package/dist/index.browser.d.ts +3 -1
  7. package/dist/index.browser.js +1490 -3
  8. package/dist/index.server.d.ts +3 -5
  9. package/dist/index.server.js +2380 -110
  10. package/dist/middleware/elysia.d.ts +71 -0
  11. package/dist/middleware/elysia.js +70 -0
  12. package/dist/middleware/express.d.ts +86 -0
  13. package/dist/middleware/express.js +29 -0
  14. package/dist/middleware/fastify.d.ts +81 -0
  15. package/dist/middleware/fastify.js +46 -0
  16. package/dist/middleware/hono.d.ts +85 -0
  17. package/dist/middleware/hono.js +33 -0
  18. package/dist/middleware/next/handler.d.ts +36 -0
  19. package/dist/middleware/next/handler.js +53 -0
  20. package/dist/middleware/next/middleware.d.ts +59 -0
  21. package/dist/middleware/next/storage.d.ts +14 -0
  22. package/dist/middleware/shared/create-middleware-logger.d.ts +82 -0
  23. package/dist/middleware/shared/headers.d.ts +14 -0
  24. package/dist/middleware/shared/routes.d.ts +30 -0
  25. package/dist/middleware/shared/storage.d.ts +29 -0
  26. package/dist/middleware/sveltekit.d.ts +123 -0
  27. package/dist/middleware/sveltekit.js +43 -0
  28. package/dist/object-tree.d.ts +2 -2
  29. package/dist/object-tree.js +7 -7
  30. package/dist/packem_shared/{AbstractJsonReporter-BaZ33PlE.js → AbstractJsonReporter-BO8Calb4.js} +112 -32
  31. package/dist/packem_shared/AbstractJsonReporter-nOj0Ft1F.js +284 -0
  32. package/dist/packem_shared/{JsonReporter-BRw4skd5.js → JsonReporter-CCmj7oYL.js} +2 -2
  33. package/dist/packem_shared/{JsonReporter-VzgyLEYz.js → JsonReporter-Ck2PIAEw.js} +2 -2
  34. package/dist/packem_shared/PrettyReporter-BCvyNzXO.js +2720 -0
  35. package/dist/packem_shared/{PrettyReporter-DySIXBjQ.js → PrettyReporter-BtTr13Ha.js} +55 -11
  36. package/dist/packem_shared/abstract-pretty-reporter-CXAKYCb8.js +2635 -0
  37. package/dist/packem_shared/constants-B1RjD_ps.js +99 -0
  38. package/dist/packem_shared/createPailError-B_sgL0nF.js +76 -0
  39. package/dist/packem_shared/headers-BxHWM6KI.js +127 -0
  40. package/dist/packem_shared/{index-BomQ3E6J.js → index-Bx3-C0j9.js} +29 -21
  41. package/dist/packem_shared/pailMiddleware-Ci88geIF.js +24 -0
  42. package/dist/packem_shared/storage-D0vqz8OX.js +36 -0
  43. package/dist/packem_shared/{InteractiveStreamHook-DiSubbJ1.js → useLogger-D0rU3lcX.js} +13 -1
  44. package/dist/packem_shared/{write-console-log-based-on-level-DBmRYXpj.js → write-console-log-based-on-level-ree2lDPw.js} +5 -4
  45. package/dist/packem_shared/{write-stream-BG8fhcs3.js → write-stream-MDqyXmc_.js} +1 -1
  46. package/dist/pail.browser.d.ts +1 -1
  47. package/dist/pail.server.d.ts +1 -76
  48. package/dist/processor/caller/caller-processor.js +1 -1
  49. package/dist/processor/environment-processor.d.ts +124 -0
  50. package/dist/processor/environment-processor.js +89 -0
  51. package/dist/processor/message-formatter-processor.d.ts +2 -3
  52. package/dist/processor/message-formatter-processor.js +654 -5
  53. package/dist/processor/opentelemetry-processor.js +4 -4
  54. package/dist/processor/redact-processor.d.ts +1 -1
  55. package/dist/processor/redact-processor.js +2 -1
  56. package/dist/processor/sampling-processor.d.ts +111 -0
  57. package/dist/processor/sampling-processor.js +59 -0
  58. package/dist/reporter/file/json-file-reporter.js +1 -1
  59. package/dist/reporter/http/abstract-http-reporter.js +23 -26
  60. package/dist/reporter/http/http-reporter.edge-light.js +134 -57
  61. package/dist/reporter/json/abstract-json-reporter.d.ts +1 -1
  62. package/dist/reporter/json/index.browser.js +2 -2
  63. package/dist/reporter/json/index.js +2 -2
  64. package/dist/reporter/pretty/index.browser.js +1 -1
  65. package/dist/reporter/pretty/index.js +1 -1
  66. package/dist/reporter/pretty/pretty-reporter.server.d.ts +1 -1
  67. package/dist/reporter/raw/raw-reporter.server.d.ts +1 -1
  68. package/dist/reporter/simple/simple-reporter.server.d.ts +1 -1
  69. package/dist/reporter/simple/simple-reporter.server.js +8 -12
  70. package/dist/types.d.ts +4 -4
  71. package/dist/utils/write-console-log-based-on-level.d.ts +1 -1
  72. package/dist/wide-event.d.ts +300 -0
  73. package/dist/wide-event.js +284 -0
  74. package/package.json +73 -20
  75. package/dist/interactive/index.d.ts +0 -2
  76. package/dist/interactive/index.js +0 -2
  77. package/dist/interactive/interactive-manager.d.ts +0 -108
  78. package/dist/interactive/interactive-stream-hook.d.ts +0 -68
  79. package/dist/packem_shared/InteractiveManager-CZ85hGNW.js +0 -172
  80. package/dist/packem_shared/PrettyReporter-DgZB2eBG.js +0 -222
  81. package/dist/packem_shared/abstract-pretty-reporter-Di_sdm2r.js +0 -50
  82. package/dist/packem_shared/format-label-De49vNPd.js +0 -1193
  83. package/dist/packem_shared/get-longest-label-C9PWeyKq.js +0 -9
  84. package/dist/packem_shared/index-DqKWykfa.js +0 -1146
  85. package/dist/packem_shared/interactive-stream-hook-DG4BtN12.js +0 -141
  86. package/dist/packem_shared/pail.browser-u2CSR_af.js +0 -1427
  87. package/dist/progress-bar.d.ts +0 -136
  88. package/dist/progress-bar.js +0 -404
  89. package/dist/spinner.d.ts +0 -220
  90. package/dist/spinner.js +0 -2150
  91. package/dist/utils/ansi-escapes.d.ts +0 -4
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 visulima
3
+ Copyright (c) 2026 visulima
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -34,7 +34,7 @@ Repository: git+https://github.com/visulima/visulima.git
34
34
 
35
35
  > MIT License
36
36
  >
37
- > Copyright (c) 2025 visulima
37
+ > Copyright (c) 2026 visulima
38
38
  >
39
39
  > Permission is hereby granted, free of charge, to any person obtaining a copy
40
40
  > of this software and associated documentation files (the "Software"), to deal
@@ -68,7 +68,7 @@ Repository: git+https://github.com/visulima/visulima.git
68
68
  >
69
69
  > > MIT License
70
70
  > >
71
- > > Copyright (c) 2025 visulima
71
+ > > Copyright (c) 2026 visulima
72
72
  > >
73
73
  > > Permission is hereby granted, free of charge, to any person obtaining a copy
74
74
  > > of this software and associated documentation files (the "Software"), to deal
@@ -210,7 +210,7 @@ Repository: git+https://github.com/visulima/visulima.git
210
210
 
211
211
  > MIT License
212
212
  >
213
- > Copyright (c) 2025 visulima
213
+ > Copyright (c) 2026 visulima
214
214
  >
215
215
  > Permission is hereby granted, free of charge, to any person obtaining a copy
216
216
  > of this software and associated documentation files (the "Software"), to deal
@@ -239,7 +239,7 @@ Repository: git+https://github.com/visulima/visulima.git
239
239
 
240
240
  > MIT License
241
241
  >
242
- > Copyright (c) 2025 visulima
242
+ > Copyright (c) 2026 visulima
243
243
  >
244
244
  > Permission is hereby granted, free of charge, to any person obtaining a copy
245
245
  > of this software and associated documentation files (the "Software"), to deal
@@ -419,7 +419,7 @@ Repository: git+https://github.com/visulima/visulima.git
419
419
 
420
420
  > MIT License
421
421
  >
422
- > Copyright (c) 2025 visulima
422
+ > Copyright (c) 2026 visulima
423
423
  >
424
424
  > Permission is hereby granted, free of charge, to any person obtaining a copy
425
425
  > of this software and associated documentation files (the "Software"), to deal
@@ -446,6 +446,36 @@ Repository: git+https://github.com/visulima/visulima.git
446
446
  > MIT
447
447
  >
448
448
  > # Bundled dependencies:
449
+ > ## codsen-utils
450
+ > License: MIT
451
+ > By: Roy Revelt
452
+ > Repository: git+https://github.com/codsen/codsen.git
453
+ >
454
+ > > MIT License
455
+ > >
456
+ > > Copyright © 2010-2025 Roy Revelt and other contributors
457
+ > >
458
+ > > Permission is hereby granted, free of charge, to any person obtaining
459
+ > > a copy of this software and associated documentation files (the
460
+ > > "Software"), to deal in the Software without restriction, including
461
+ > > without limitation the rights to use, copy, modify, merge, publish,
462
+ > > distribute, sublicense, and/or sell copies of the Software, and to
463
+ > > permit persons to whom the Software is furnished to do so, subject to
464
+ > > the following conditions:
465
+ > >
466
+ > > The above copyright notice and this permission notice shall be
467
+ > > included in all copies or substantial portions of the Software.
468
+ > >
469
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
470
+ > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
471
+ > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
472
+ > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
473
+ > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
474
+ > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
475
+ > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
476
+ >
477
+ > ---------------------------------------
478
+ >
449
479
  > ## emoji-regex-xs
450
480
  > License: MIT
451
481
  > By: Steven Levithan
@@ -519,23 +549,382 @@ Repository: git+https://github.com/visulima/visulima.git
519
549
  > >
520
550
  > > 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.
521
551
  >
552
+ > ---------------------------------------
522
553
  >
554
+ > ## html-entities
555
+ > License: MIT
556
+ > By: Marat Dulin
557
+ > Repository: https://github.com/mdevils/html-entities.git
523
558
  >
559
+ > > Copyright (c) 2021 Dulin Marat
560
+ > >
561
+ > > Permission is hereby granted, free of charge, to any person obtaining a copy
562
+ > > of this software and associated documentation files (the "Software"), to deal
563
+ > > in the Software without restriction, including without limitation the rights
564
+ > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
565
+ > > copies of the Software, and to permit persons to whom the Software is
566
+ > > furnished to do so, subject to the following conditions:
567
+ > >
568
+ > > The above copyright notice and this permission notice shall be included in
569
+ > > all copies or substantial portions of the Software.
570
+ > >
571
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
572
+ > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
573
+ > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
574
+ > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
575
+ > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
576
+ > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
577
+ > > THE SOFTWARE.
524
578
  >
579
+ > ---------------------------------------
525
580
  >
526
- > # Licenses of bundled types
527
- > The published @visulima/string artifact additionally contains code with the following licenses:
528
- > MIT
581
+ > ## indent-string
582
+ > License: MIT
583
+ > By: Sindre Sorhus
584
+ > Repository: sindresorhus/indent-string
529
585
  >
530
- > # Bundled types:
531
- > ## fastest-levenshtein
586
+ > > MIT License
587
+ > >
588
+ > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
589
+ > >
590
+ > > 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:
591
+ > >
592
+ > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
593
+ > >
594
+ > > 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.
595
+ >
596
+ > ---------------------------------------
597
+ >
598
+ > ## lodash-es
532
599
  > License: MIT
533
- > By: Kasper U. Weihe
534
- > Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
600
+ > By: John-David Dalton, Mathias Bynens
601
+ > Repository: lodash/lodash
602
+ >
603
+ > > Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
604
+ > >
605
+ > > Based on Underscore.js, copyright Jeremy Ashkenas,
606
+ > > DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
607
+ > >
608
+ > > This software consists of voluntary contributions made by many
609
+ > > individuals. For exact contribution history, see the revision history
610
+ > > available at https://github.com/lodash/lodash
611
+ > >
612
+ > > The following license applies to all parts of this software except as
613
+ > > documented below:
614
+ > >
615
+ > > ====
616
+ > >
617
+ > > Permission is hereby granted, free of charge, to any person obtaining
618
+ > > a copy of this software and associated documentation files (the
619
+ > > "Software"), to deal in the Software without restriction, including
620
+ > > without limitation the rights to use, copy, modify, merge, publish,
621
+ > > distribute, sublicense, and/or sell copies of the Software, and to
622
+ > > permit persons to whom the Software is furnished to do so, subject to
623
+ > > the following conditions:
624
+ > >
625
+ > > The above copyright notice and this permission notice shall be
626
+ > > included in all copies or substantial portions of the Software.
627
+ > >
628
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
629
+ > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
630
+ > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
631
+ > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
632
+ > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
633
+ > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
634
+ > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
635
+ > >
636
+ > > ====
637
+ > >
638
+ > > Copyright and related rights for sample code are waived via CC0. Sample
639
+ > > code is defined as all source code displayed within the prose of the
640
+ > > documentation.
641
+ > >
642
+ > > CC0: http://creativecommons.org/publicdomain/zero/1.0/
643
+ > >
644
+ > > ====
645
+ > >
646
+ > > Files located in the node_modules and vendor directories are externally
647
+ > > maintained libraries used by this software which have their own
648
+ > > licenses; we recommend you read them, as their terms may differ from the
649
+ > > terms above.
650
+ >
651
+ > ---------------------------------------
652
+ >
653
+ > ## ranges-apply
654
+ > License: MIT
655
+ > By: Roy Revelt
656
+ > Repository: git+https://github.com/codsen/codsen.git
535
657
  >
536
658
  > > MIT License
537
659
  > >
538
- > > Copyright (c) 2020 Kasper Unn Weihe
660
+ > > Copyright © 2010-2025 Roy Revelt and other contributors
661
+ > >
662
+ > > Permission is hereby granted, free of charge, to any person obtaining
663
+ > > a copy of this software and associated documentation files (the
664
+ > > "Software"), to deal in the Software without restriction, including
665
+ > > without limitation the rights to use, copy, modify, merge, publish,
666
+ > > distribute, sublicense, and/or sell copies of the Software, and to
667
+ > > permit persons to whom the Software is furnished to do so, subject to
668
+ > > the following conditions:
669
+ > >
670
+ > > The above copyright notice and this permission notice shall be
671
+ > > included in all copies or substantial portions of the Software.
672
+ > >
673
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
674
+ > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
675
+ > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
676
+ > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
677
+ > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
678
+ > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
679
+ > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
680
+ >
681
+ > ---------------------------------------
682
+ >
683
+ > ## ranges-merge
684
+ > License: MIT
685
+ > By: Roy Revelt
686
+ > Repository: git+https://github.com/codsen/codsen.git
687
+ >
688
+ > > MIT License
689
+ > >
690
+ > > Copyright © 2010-2025 Roy Revelt and other contributors
691
+ > >
692
+ > > Permission is hereby granted, free of charge, to any person obtaining
693
+ > > a copy of this software and associated documentation files (the
694
+ > > "Software"), to deal in the Software without restriction, including
695
+ > > without limitation the rights to use, copy, modify, merge, publish,
696
+ > > distribute, sublicense, and/or sell copies of the Software, and to
697
+ > > permit persons to whom the Software is furnished to do so, subject to
698
+ > > the following conditions:
699
+ > >
700
+ > > The above copyright notice and this permission notice shall be
701
+ > > included in all copies or substantial portions of the Software.
702
+ > >
703
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
704
+ > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
705
+ > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
706
+ > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
707
+ > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
708
+ > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
709
+ > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
710
+ >
711
+ > ---------------------------------------
712
+ >
713
+ > ## ranges-push
714
+ > License: MIT
715
+ > By: Roy Revelt
716
+ > Repository: git+https://github.com/codsen/codsen.git
717
+ >
718
+ > > MIT License
719
+ > >
720
+ > > Copyright © 2010-2025 Roy Revelt and other contributors
721
+ > >
722
+ > > Permission is hereby granted, free of charge, to any person obtaining
723
+ > > a copy of this software and associated documentation files (the
724
+ > > "Software"), to deal in the Software without restriction, including
725
+ > > without limitation the rights to use, copy, modify, merge, publish,
726
+ > > distribute, sublicense, and/or sell copies of the Software, and to
727
+ > > permit persons to whom the Software is furnished to do so, subject to
728
+ > > the following conditions:
729
+ > >
730
+ > > The above copyright notice and this permission notice shall be
731
+ > > included in all copies or substantial portions of the Software.
732
+ > >
733
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
734
+ > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
735
+ > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
736
+ > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
737
+ > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
738
+ > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
739
+ > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
740
+ >
741
+ > ---------------------------------------
742
+ >
743
+ > ## ranges-sort
744
+ > License: MIT
745
+ > By: Roy Revelt
746
+ > Repository: git+https://github.com/codsen/codsen.git
747
+ >
748
+ > > MIT License
749
+ > >
750
+ > > Copyright © 2010-2025 Roy Revelt and other contributors
751
+ > >
752
+ > > Permission is hereby granted, free of charge, to any person obtaining
753
+ > > a copy of this software and associated documentation files (the
754
+ > > "Software"), to deal in the Software without restriction, including
755
+ > > without limitation the rights to use, copy, modify, merge, publish,
756
+ > > distribute, sublicense, and/or sell copies of the Software, and to
757
+ > > permit persons to whom the Software is furnished to do so, subject to
758
+ > > the following conditions:
759
+ > >
760
+ > > The above copyright notice and this permission notice shall be
761
+ > > included in all copies or substantial portions of the Software.
762
+ > >
763
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
764
+ > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
765
+ > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
766
+ > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
767
+ > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
768
+ > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
769
+ > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
770
+ >
771
+ > ---------------------------------------
772
+ >
773
+ > ## redent
774
+ > License: MIT
775
+ > By: Sindre Sorhus
776
+ > Repository: sindresorhus/redent
777
+ >
778
+ > > MIT License
779
+ > >
780
+ > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
781
+ > >
782
+ > > 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:
783
+ > >
784
+ > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
785
+ > >
786
+ > > 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.
787
+ >
788
+ > ---------------------------------------
789
+ >
790
+ > ## rfdc
791
+ > License: MIT
792
+ > By: David Mark Clements
793
+ > Repository: git+https://github.com/davidmarkclements/rfdc.git
794
+ >
795
+ > > Copyright 2019 "David Mark Clements <david.mark.clements@gmail.com>"
796
+ > >
797
+ > > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
798
+ > > documentation files (the "Software"), to deal in the Software without restriction, including without limitation
799
+ > > the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
800
+ > > to permit persons to whom the Software is furnished to do so, subject to the following conditions:
801
+ > >
802
+ > > The above copyright notice and this permission notice shall be included in all copies or substantial portions
803
+ > > of the Software.
804
+ > >
805
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
806
+ > > TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
807
+ > > THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
808
+ > > CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
809
+ > > IN THE SOFTWARE.
810
+ >
811
+ > ---------------------------------------
812
+ >
813
+ > ## string-collapse-leading-whitespace
814
+ > License: MIT
815
+ > By: Roy Revelt
816
+ > Repository: git+https://github.com/codsen/codsen.git
817
+ >
818
+ > > MIT License
819
+ > >
820
+ > > Copyright © 2010-2025 Roy Revelt and other contributors
821
+ > >
822
+ > > Permission is hereby granted, free of charge, to any person obtaining
823
+ > > a copy of this software and associated documentation files (the
824
+ > > "Software"), to deal in the Software without restriction, including
825
+ > > without limitation the rights to use, copy, modify, merge, publish,
826
+ > > distribute, sublicense, and/or sell copies of the Software, and to
827
+ > > permit persons to whom the Software is furnished to do so, subject to
828
+ > > the following conditions:
829
+ > >
830
+ > > The above copyright notice and this permission notice shall be
831
+ > > included in all copies or substantial portions of the Software.
832
+ > >
833
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
834
+ > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
835
+ > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
836
+ > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
837
+ > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
838
+ > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
839
+ > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
840
+ >
841
+ > ---------------------------------------
842
+ >
843
+ > ## string-left-right
844
+ > License: MIT
845
+ > By: Roy Revelt
846
+ > Repository: git+https://github.com/codsen/codsen.git
847
+ >
848
+ > > MIT License
849
+ > >
850
+ > > Copyright © 2010-2025 Roy Revelt and other contributors
851
+ > >
852
+ > > Permission is hereby granted, free of charge, to any person obtaining
853
+ > > a copy of this software and associated documentation files (the
854
+ > > "Software"), to deal in the Software without restriction, including
855
+ > > without limitation the rights to use, copy, modify, merge, publish,
856
+ > > distribute, sublicense, and/or sell copies of the Software, and to
857
+ > > permit persons to whom the Software is furnished to do so, subject to
858
+ > > the following conditions:
859
+ > >
860
+ > > The above copyright notice and this permission notice shall be
861
+ > > included in all copies or substantial portions of the Software.
862
+ > >
863
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
864
+ > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
865
+ > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
866
+ > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
867
+ > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
868
+ > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
869
+ > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
870
+ >
871
+ > ---------------------------------------
872
+ >
873
+ > ## string-strip-html
874
+ > License: MIT
875
+ > By: Roy Revelt
876
+ > Repository: git+https://github.com/codsen/codsen.git
877
+ >
878
+ > > MIT License
879
+ > >
880
+ > > Copyright © 2010-2025 Roy Revelt and other contributors
881
+ > >
882
+ > > Permission is hereby granted, free of charge, to any person obtaining
883
+ > > a copy of this software and associated documentation files (the
884
+ > > "Software"), to deal in the Software without restriction, including
885
+ > > without limitation the rights to use, copy, modify, merge, publish,
886
+ > > distribute, sublicense, and/or sell copies of the Software, and to
887
+ > > permit persons to whom the Software is furnished to do so, subject to
888
+ > > the following conditions:
889
+ > >
890
+ > > The above copyright notice and this permission notice shall be
891
+ > > included in all copies or substantial portions of the Software.
892
+ > >
893
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
894
+ > > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
895
+ > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
896
+ > > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
897
+ > > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
898
+ > > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
899
+ > > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
900
+ >
901
+ > ---------------------------------------
902
+ >
903
+ > ## strip-indent
904
+ > License: MIT
905
+ > By: Sindre Sorhus
906
+ > Repository: sindresorhus/strip-indent
907
+ >
908
+ > > MIT License
909
+ > >
910
+ > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
911
+ > >
912
+ > > 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:
913
+ > >
914
+ > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
915
+ > >
916
+ > > 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.
917
+ >
918
+ > ---------------------------------------
919
+ >
920
+ > ## tiny-invariant
921
+ > License: MIT
922
+ > By: Alex Reardon
923
+ > Repository: https://github.com/alexreardon/tiny-invariant.git
924
+ >
925
+ > > MIT License
926
+ > >
927
+ > > Copyright (c) 2019 Alexander Reardon
539
928
  > >
540
929
  > > Permission is hereby granted, free of charge, to any person obtaining a copy
541
930
  > > of this software and associated documentation files (the "Software"), to deal
@@ -554,52 +943,45 @@ Repository: git+https://github.com/visulima/visulima.git
554
943
  > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
555
944
  > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
556
945
  > > SOFTWARE.
557
-
558
- ---------------------------------------
559
-
560
- ## cli-spinners
561
- License: MIT
562
- By: Sindre Sorhus
563
- Repository: sindresorhus/cli-spinners
564
-
565
- > MIT License
566
946
  >
567
- > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
568
947
  >
569
- > 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:
570
948
  >
571
- > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
572
949
  >
573
- > 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.
574
-
575
- ---------------------------------------
576
-
577
- ## safe-stable-stringify
578
- License: MIT
579
- By: Ruben Bridgewater
580
- Repository: git+https://github.com/BridgeAR/safe-stable-stringify.git
581
-
582
- > The MIT License (MIT)
583
950
  >
584
- > Copyright (c) Ruben Bridgewater
951
+ > # Licenses of bundled types
585
952
  >
586
- > Permission is hereby granted, free of charge, to any person obtaining a copy
587
- > of this software and associated documentation files (the "Software"), to deal
588
- > in the Software without restriction, including without limitation the rights
589
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
590
- > copies of the Software, and to permit persons to whom the Software is
591
- > furnished to do so, subject to the following conditions:
953
+ > The published @visulima/string artifact additionally contains code with the following licenses:
954
+ > MIT
592
955
  >
593
- > The above copyright notice and this permission notice shall be included in all
594
- > copies or substantial portions of the Software.
956
+ > # Bundled types:
595
957
  >
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,
598
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
599
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
600
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
601
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
602
- > SOFTWARE.
958
+ > ## fastest-levenshtein
959
+ >
960
+ > License: MIT
961
+ > By: Kasper U. Weihe
962
+ > Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
963
+ >
964
+ > > MIT License
965
+ > >
966
+ > > Copyright (c) 2020 Kasper Unn Weihe
967
+ > >
968
+ > > Permission is hereby granted, free of charge, to any person obtaining a copy
969
+ > > of this software and associated documentation files (the "Software"), to deal
970
+ > > in the Software without restriction, including without limitation the rights
971
+ > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
972
+ > > copies of the Software, and to permit persons to whom the Software is
973
+ > > furnished to do so, subject to the following conditions:
974
+ > >
975
+ > > The above copyright notice and this permission notice shall be included in all
976
+ > > copies or substantial portions of the Software.
977
+ > >
978
+ > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
979
+ > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
980
+ > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
981
+ > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
982
+ > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
983
+ > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
984
+ > > SOFTWARE.
603
985
 
604
986
  ---------------------------------------
605
987