@visulima/pail 3.1.0 → 3.2.1

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 (111) hide show
  1. package/CHANGELOG.md +59 -0
  2. package/LICENSE.md +3 -407
  3. package/README.md +298 -0
  4. package/dist/constants.d.ts +37 -0
  5. package/dist/index.browser.d.ts +47 -12
  6. package/dist/index.browser.js +12 -1
  7. package/dist/index.server.d.ts +65 -40
  8. package/dist/index.server.js +533 -2
  9. package/dist/interactive/index.d.ts +2 -28
  10. package/dist/interactive/index.js +2 -1
  11. package/dist/interactive/interactive-manager.d.ts +108 -0
  12. package/dist/interactive/interactive-stream-hook.d.ts +68 -0
  13. package/dist/object-tree.d.ts +65 -7
  14. package/dist/object-tree.js +89 -2
  15. package/dist/packem_shared/AbstractJsonReporter-intFdT_A.js +204 -0
  16. package/dist/packem_shared/InteractiveManager-CZ85hGNW.js +172 -0
  17. package/dist/packem_shared/InteractiveStreamHook-DiSubbJ1.js +21 -0
  18. package/dist/packem_shared/JsonReporter-C0AXk99i.js +58 -0
  19. package/dist/packem_shared/JsonReporter-DcM2LBX9.js +28 -0
  20. package/dist/packem_shared/PrettyReporter-BFWaYP_J.js +222 -0
  21. package/dist/packem_shared/PrettyReporter-CuLLKr6-.js +169 -0
  22. package/dist/packem_shared/abstract-pretty-reporter-DMPDCslJ.js +50 -0
  23. package/dist/packem_shared/constants-DfDr4MHC.js +119 -0
  24. package/dist/packem_shared/format-label-Btft2KGP.js +1194 -0
  25. package/dist/packem_shared/get-longest-label-C9PWeyKq.js +9 -0
  26. package/dist/packem_shared/index-BomQ3E6J.js +650 -0
  27. package/dist/packem_shared/index-DqKWykfa.js +1146 -0
  28. package/dist/packem_shared/interactive-stream-hook-DG4BtN12.js +141 -0
  29. package/dist/packem_shared/pail.browser-CPjQrsyy.js +1427 -0
  30. package/dist/packem_shared/write-console-log-based-on-level-DBmRYXpj.js +14 -0
  31. package/dist/packem_shared/write-stream-BG8fhcs3.js +6 -0
  32. package/dist/pail.browser.d.ts +412 -0
  33. package/dist/pail.server.d.ts +233 -0
  34. package/dist/processor/caller/caller-processor.d.ts +40 -7
  35. package/dist/processor/caller/caller-processor.js +59 -1
  36. package/dist/processor/caller/get-caller-filename.d.ts +23 -0
  37. package/dist/processor/message-formatter-processor.d.ts +44 -9
  38. package/dist/processor/message-formatter-processor.js +67 -1
  39. package/dist/processor/opentelemetry-processor.d.ts +70 -0
  40. package/dist/processor/opentelemetry-processor.js +52 -0
  41. package/dist/processor/redact-processor.d.ts +39 -8
  42. package/dist/processor/redact-processor.js +30 -1
  43. package/dist/progress-bar.d.ts +75 -15
  44. package/dist/progress-bar.js +404 -1
  45. package/dist/reporter/file/json-file-reporter.d.ts +39 -20
  46. package/dist/reporter/file/json-file-reporter.js +136 -4
  47. package/dist/reporter/file/utils/rotating-file-stream.d.ts +48 -0
  48. package/dist/reporter/http/abstract-http-reporter.d.ts +215 -0
  49. package/dist/reporter/http/abstract-http-reporter.js +435 -0
  50. package/dist/reporter/http/http-reporter.d.ts +39 -0
  51. package/dist/reporter/http/http-reporter.edge-light.d.ts +40 -0
  52. package/dist/reporter/http/http-reporter.edge-light.js +651 -0
  53. package/dist/reporter/http/http-reporter.js +13 -0
  54. package/dist/reporter/http/utils/compression.d.ts +7 -0
  55. package/dist/reporter/http/utils/log-size-error.d.ts +30 -0
  56. package/dist/reporter/http/utils/retry.d.ts +27 -0
  57. package/dist/reporter/json/abstract-json-reporter.d.ts +61 -0
  58. package/dist/reporter/json/index.browser.d.ts +3 -13
  59. package/dist/reporter/json/index.browser.js +2 -1
  60. package/dist/reporter/json/index.d.ts +3 -16
  61. package/dist/reporter/json/index.js +2 -1
  62. package/dist/reporter/json/json-reporter.browser.d.ts +40 -0
  63. package/dist/reporter/json/json-reporter.server.d.ts +50 -0
  64. package/dist/reporter/pretty/abstract-pretty-reporter.d.ts +83 -0
  65. package/dist/reporter/pretty/index.browser.d.ts +2 -13
  66. package/dist/reporter/pretty/index.browser.js +1 -1
  67. package/dist/reporter/pretty/index.d.ts +2 -25
  68. package/dist/reporter/pretty/index.js +1 -1
  69. package/dist/reporter/pretty/pretty-reporter.browser.d.ts +36 -0
  70. package/dist/reporter/pretty/pretty-reporter.server.d.ts +70 -0
  71. package/dist/reporter/raw/raw-reporter.browser.d.ts +5 -0
  72. package/dist/reporter/raw/raw-reporter.server.d.ts +13 -0
  73. package/dist/reporter/simple/simple-reporter.server.d.ts +10 -14
  74. package/dist/reporter/simple/simple-reporter.server.js +186 -8
  75. package/dist/reporter/utils/default-inspector-config.d.ts +3 -0
  76. package/dist/reporter/utils/format-label.d.ts +3 -0
  77. package/dist/spinner.d.ts +170 -104
  78. package/dist/spinner.js +2150 -1
  79. package/dist/types.d.ts +241 -0
  80. package/dist/utils/ansi-escapes.d.ts +4 -0
  81. package/dist/utils/arrayify.d.ts +2 -0
  82. package/dist/utils/get-longest-badge.d.ts +4 -0
  83. package/dist/utils/get-longest-label.d.ts +4 -0
  84. package/dist/utils/merge-types.d.ts +4 -0
  85. package/dist/utils/stream/safe-stream-handler.d.ts +21 -0
  86. package/dist/utils/write-console-log-based-on-level.d.ts +4 -0
  87. package/dist/utils/write-stream.d.ts +2 -0
  88. package/package.json +53 -4
  89. package/dist/packem_shared/AbstractJsonReporter-UftN6CIL.js +0 -1
  90. package/dist/packem_shared/InteractiveManager-CgmJyW9x.js +0 -3
  91. package/dist/packem_shared/InteractiveStreamHook-NtJu71aN.js +0 -1
  92. package/dist/packem_shared/JsonReporter-DTBtHNaD.js +0 -2
  93. package/dist/packem_shared/JsonReporter-Dl4m0xZe.js +0 -1
  94. package/dist/packem_shared/PrettyReporter-Bns0ZWLy.js +0 -12
  95. package/dist/packem_shared/PrettyReporter-CGKSTI7X.js +0 -5
  96. package/dist/packem_shared/abstract-json-reporter-CPsNkpz8.d.ts +0 -22
  97. package/dist/packem_shared/abstract-pretty-reporter-CUtSm20r.js +0 -1
  98. package/dist/packem_shared/abstract-pretty-reporter-DB2G-qlI.d.ts +0 -28
  99. package/dist/packem_shared/constants-DKfCaSUR.js +0 -1
  100. package/dist/packem_shared/format-label-CpyyTBom.js +0 -26
  101. package/dist/packem_shared/get-longest-label-B0NrI-o2.js +0 -1
  102. package/dist/packem_shared/index-CysYvHXs.js +0 -8
  103. package/dist/packem_shared/index-D9hWq9ka.js +0 -1
  104. package/dist/packem_shared/index.d-BR1GjZri.d.ts +0 -53
  105. package/dist/packem_shared/index.d-oxZvg_y7.d.ts +0 -20
  106. package/dist/packem_shared/interactive-stream-hook-CeVo4Kth.js +0 -2
  107. package/dist/packem_shared/pail.browser-BmHoDvEA.js +0 -19
  108. package/dist/packem_shared/pail.browser-CmWcqnn9.d.ts +0 -64
  109. package/dist/packem_shared/types-DVzG8TWL.d.ts +0 -95
  110. package/dist/packem_shared/write-console-log-based-on-level-BP95fgQZ.js +0 -1
  111. package/dist/packem_shared/write-stream-CD8XFv1L.js +0 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,62 @@
1
+ ## @visulima/pail [3.2.1](https://github.com/visulima/visulima/compare/@visulima/pail@3.2.0...@visulima/pail@3.2.1) (2025-11-12)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **deps:** update type-fest dependency across multiple packages ([93e13be](https://github.com/visulima/visulima/commit/93e13be5248207968a96303710db2a0604d16b9b))
6
+ * update package configurations and TypeScript definitions ([b59aa59](https://github.com/visulima/visulima/commit/b59aa59dac1508216b944f4b917fb4a7ab1f70a4))
7
+
8
+ ### Miscellaneous Chores
9
+
10
+ * Add jsr file to all packages for release ([#565](https://github.com/visulima/visulima/issues/565)) ([ec91652](https://github.com/visulima/visulima/commit/ec91652b4e4112adf14ba152c1239a7703ba425a))
11
+ * **pail:** add rslog logging to benchmarks ([c5675c8](https://github.com/visulima/visulima/commit/c5675c880a81a979a713771d6c82f6d2682daaaa))
12
+ * **pail:** integrate roarr logging into benchmarks ([563bb52](https://github.com/visulima/visulima/commit/563bb52b7311ad9a3bfc4de6a2ff0593b2cfcc44))
13
+ * **pail:** update benchmark results and add rslog performance metrics ([123e2b5](https://github.com/visulima/visulima/commit/123e2b533dc3a75e6bab45055a4055897824630b))
14
+ * update license files and clean up TypeScript definitions ([fe668cc](https://github.com/visulima/visulima/commit/fe668cc26de23591d4df54a0954455ebbe31b22d))
15
+
16
+
17
+ ### Dependencies
18
+
19
+ * **@visulima/colorize:** upgraded to 1.4.28
20
+ * **@visulima/error:** upgraded to 5.0.5
21
+ * **@visulima/fmt:** upgraded to 1.1.20
22
+ * **@visulima/inspector:** upgraded to 1.0.29
23
+ * **@visulima/redact:** upgraded to 2.0.4
24
+ * **@visulima/string:** upgraded to 2.0.5
25
+
26
+ ## @visulima/pail [3.2.0](https://github.com/visulima/visulima/compare/@visulima/pail@3.1.0...@visulima/pail@3.2.0) (2025-11-07)
27
+
28
+ ### Features
29
+
30
+ * **pail:** add child logger functionality with inheritance and overrides ([c5dce1d](https://github.com/visulima/visulima/commit/c5dce1d3208a75aac223cde650e1072e2fb333b2))
31
+ * **pail:** add OpenTelemetryProcessor for enhanced logging with trace context ([c7dfb9c](https://github.com/visulima/visulima/commit/c7dfb9c5bdabc7e41609d6c3fad9195a49de9a64))
32
+ * **pail:** implement force logging methods to bypass log level filters ([52b8516](https://github.com/visulima/visulima/commit/52b85168fc27feb23879d716ac68676d42d3aa3b))
33
+ * **pail:** introduce HTTP Reporter with Edge compatibility and enhanced logging features ([9cd695c](https://github.com/visulima/visulima/commit/9cd695c6ee34259b65ccd4b98dbe3a3d43bef50a))
34
+
35
+ ### Bug Fixes
36
+
37
+ * **pail:** enhance PailBrowserType and PailServerType to extend Console ([ce7f2c6](https://github.com/visulima/visulima/commit/ce7f2c61551aa899b7775d04518340e61c2db1d2))
38
+ * update TypeScript configurations and improve linting across multiple packages ([6f25ec7](https://github.com/visulima/visulima/commit/6f25ec7841da7246f8f9166efc5292a7089d37ee))
39
+
40
+ ### Miscellaneous Chores
41
+
42
+ * **pail:** add simple reporter example for basic usage and advanced features ([be16be5](https://github.com/visulima/visulima/commit/be16be5cbde1cf72019343be646361af02bef8de))
43
+ * **pail:** update package.json dependencies and fix example scripts ([8f98736](https://github.com/visulima/visulima/commit/8f9873619ca5ae49acd27ce63337958a7908c013))
44
+ * update npm and pnpm configurations for monorepo optimization ([#564](https://github.com/visulima/visulima/issues/564)) ([5512b42](https://github.com/visulima/visulima/commit/5512b42f672c216b6a3c9e39035199a4ebd9a4b8))
45
+
46
+ ### Code Refactoring
47
+
48
+ * **pail:** replace hardcoded '/dev/null' with 'devNull' import for improved cross-platform compatibility ([3e8e95d](https://github.com/visulima/visulima/commit/3e8e95da4dc15d1ec0996b5ee3df403953e50c95))
49
+
50
+
51
+ ### Dependencies
52
+
53
+ * **@visulima/colorize:** upgraded to 1.4.27
54
+ * **@visulima/error:** upgraded to 5.0.4
55
+ * **@visulima/fmt:** upgraded to 1.1.19
56
+ * **@visulima/inspector:** upgraded to 1.0.28
57
+ * **@visulima/redact:** upgraded to 2.0.3
58
+ * **@visulima/string:** upgraded to 2.0.4
59
+
1
60
  ## @visulima/pail [3.1.0](https://github.com/visulima/visulima/compare/@visulima/pail@3.0.3...@visulima/pail@3.1.0) (2025-11-05)
2
61
 
3
62
  ### Features
package/LICENSE.md CHANGED
@@ -68,7 +68,7 @@ Repository: git+https://github.com/visulima/visulima.git
68
68
  >
69
69
  > > MIT License
70
70
  > >
71
- > > Copyright (c) 2024 visulima
71
+ > > Copyright (c) 2025 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
@@ -623,418 +623,14 @@ Repository: sindresorhus/terminal-size
623
623
  <!-- TYPE_DEPENDENCIES -->
624
624
 
625
625
  # Licenses of bundled types
626
+
626
627
  The published @visulima/pail artifact additionally contains code with the following licenses:
627
628
  MIT
628
629
 
629
630
  # Bundled types:
630
- ## @visulima/error
631
- License: MIT
632
- By: Daniel Bannert
633
- Repository: git+https://github.com/visulima/visulima.git
634
-
635
- > MIT License
636
- >
637
- > Copyright (c) 2025 visulima
638
- >
639
- > Permission is hereby granted, free of charge, to any person obtaining a copy
640
- > of this software and associated documentation files (the "Software"), to deal
641
- > in the Software without restriction, including without limitation the rights
642
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
643
- > copies of the Software, and to permit persons to whom the Software is
644
- > furnished to do so, subject to the following conditions:
645
- >
646
- > The above copyright notice and this permission notice shall be included in all
647
- > copies or substantial portions of the Software.
648
- >
649
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
650
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
651
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
652
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
653
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
654
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
655
- > SOFTWARE.
656
- >
657
- > <!-- DEPENDENCIES -->
658
- >
659
- > # Licenses of bundled dependencies
660
- > The published @visulima/error artifact additionally contains code with the following licenses:
661
- > MIT
662
- >
663
- > # Bundled dependencies:
664
- > ## @visulima/path
665
- > License: MIT
666
- > By: Daniel Bannert
667
- > Repository: git+https://github.com/visulima/visulima.git
668
- >
669
- > > MIT License
670
- > >
671
- > > Copyright (c) 2024 visulima
672
- > >
673
- > > Permission is hereby granted, free of charge, to any person obtaining a copy
674
- > > of this software and associated documentation files (the "Software"), to deal
675
- > > in the Software without restriction, including without limitation the rights
676
- > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
677
- > > copies of the Software, and to permit persons to whom the Software is
678
- > > furnished to do so, subject to the following conditions:
679
- > >
680
- > > The above copyright notice and this permission notice shall be included in all
681
- > > copies or substantial portions of the Software.
682
- > >
683
- > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
684
- > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
685
- > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
686
- > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
687
- > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
688
- > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
689
- > > SOFTWARE.
690
- > >
691
- > > ---
692
- > >
693
- > > MIT License
694
- > >
695
- > > Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
696
- > >
697
- > > Permission is hereby granted, free of charge, to any person obtaining a copy
698
- > > of this software and associated documentation files (the "Software"), to deal
699
- > > in the Software without restriction, including without limitation the rights
700
- > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
701
- > > copies of the Software, and to permit persons to whom the Software is
702
- > > furnished to do so, subject to the following conditions:
703
- > >
704
- > > The above copyright notice and this permission notice shall be included in all
705
- > > copies or substantial portions of the Software.
706
- > >
707
- > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
708
- > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
709
- > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
710
- > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
711
- > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
712
- > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
713
- > > SOFTWARE.
714
- > >
715
- > > ---
716
- > >
717
- > > Copyright Joyent, Inc. and other Node contributors.
718
- > >
719
- > > Permission is hereby granted, free of charge, to any person obtaining a
720
- > > copy of this software and associated documentation files (the
721
- > > "Software"), to deal in the Software without restriction, including
722
- > > without limitation the rights to use, copy, modify, merge, publish,
723
- > > distribute, sublicense, and/or sell copies of the Software, and to permit
724
- > > persons to whom the Software is furnished to do so, subject to the
725
- > > following conditions:
726
- > >
727
- > > The above copyright notice and this permission notice shall be included
728
- > > in all copies or substantial portions of the Software.
729
- > >
730
- > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
731
- > > OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
732
- > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
733
- > > NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
734
- > > DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
735
- > > OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
736
- > > USE OR OTHER DEALINGS IN THE SOFTWARE.
737
- > >
738
- > > ---
739
- > >
740
- > > Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
741
- > >
742
- > > The MIT License (MIT)
743
- > >
744
- > > Copyright (c) 2023-present Fabio Spampinato
745
- > >
746
- > > Permission is hereby granted, free of charge, to any person obtaining a
747
- > > copy of this software and associated documentation files (the "Software"),
748
- > > to deal in the Software without restriction, including without limitation
749
- > > the rights to use, copy, modify, merge, publish, distribute, sublicense,
750
- > > and/or sell copies of the Software, and to permit persons to whom the
751
- > > Software is furnished to do so, subject to the following conditions:
752
- > >
753
- > > The above copyright notice and this permission notice shall be included in
754
- > > all copies or substantial portions of the Software.
755
- > >
756
- > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
757
- > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
758
- > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
759
- > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
760
- > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
761
- > > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
762
- > > DEALINGS IN THE SOFTWARE.
763
- > >
764
- > >
765
- > >
766
- > > # Licenses of bundled dependencies
767
- > > The published @visulima/path artifact additionally contains code with the following licenses:
768
- > > MIT
769
- > >
770
- > > # Bundled dependencies:
771
- > > ## binary-extensions
772
- > > License: MIT
773
- > > By: Sindre Sorhus
774
- > > Repository: sindresorhus/binary-extensions
775
- > >
776
- > > > MIT License
777
- > > >
778
- > > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
779
- > > > Copyright (c) Paul Miller (https://paulmillr.com)
780
- > > >
781
- > > > 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:
782
- > > >
783
- > > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
784
- > > >
785
- > > > 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.
786
- >
787
- > ---------------------------------------
788
- >
789
- > ## is-plain-obj
790
- > License: MIT
791
- > By: Sindre Sorhus
792
- > Repository: sindresorhus/is-plain-obj
793
- >
794
- > > MIT License
795
- > >
796
- > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
797
- > >
798
- > > 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:
799
- > >
800
- > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
801
- > >
802
- > > 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.
803
- >
804
- > <!-- /DEPENDENCIES -->
805
-
806
- ---------------------------------------
807
-
808
- ## @visulima/fmt
809
- License: MIT
810
- By: Daniel Bannert
811
- Repository: git+https://github.com/visulima/visulima.git
812
-
813
- > MIT License
814
- >
815
- > Copyright (c) 2025 visulima
816
- >
817
- > Permission is hereby granted, free of charge, to any person obtaining a copy
818
- > of this software and associated documentation files (the "Software"), to deal
819
- > in the Software without restriction, including without limitation the rights
820
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
821
- > copies of the Software, and to permit persons to whom the Software is
822
- > furnished to do so, subject to the following conditions:
823
- >
824
- > The above copyright notice and this permission notice shall be included in all
825
- > copies or substantial portions of the Software.
826
- >
827
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
828
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
829
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
830
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
831
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
832
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
833
- > SOFTWARE.
834
- >
835
- > <!-- DEPENDENCIES -->
836
- > <!-- /DEPENDENCIES -->
837
-
838
- ---------------------------------------
839
-
840
- ## @visulima/inspector
841
- License: MIT
842
- By: Daniel Bannert
843
- Repository: git+https://github.com/visulima/visulima.git
844
-
845
- > MIT License
846
- >
847
- > Copyright (c) 2025 visulima
848
- >
849
- > Permission is hereby granted, free of charge, to any person obtaining a copy
850
- > of this software and associated documentation files (the "Software"), to deal
851
- > in the Software without restriction, including without limitation the rights
852
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
853
- > copies of the Software, and to permit persons to whom the Software is
854
- > furnished to do so, subject to the following conditions:
855
- >
856
- > The above copyright notice and this permission notice shall be included in all
857
- > copies or substantial portions of the Software.
858
- >
859
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
860
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
861
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
862
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
863
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
864
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
865
- > SOFTWARE.
866
- >
867
- > ---
868
- >
869
- > Modified code from the original [loupe](https://github.com/chaijs/loupe/tree/main) repository.
870
- >
871
- > (The MIT License)
872
- >
873
- > Copyright (c) 2011-2013 Jake Luer <jake@alogicalparadox.com> (http://alogicalparadox.com)
874
- >
875
- > 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:
876
- >
877
- > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
878
- >
879
- > 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.
880
- >
881
- > <!-- DEPENDENCIES -->
882
- > <!-- /DEPENDENCIES -->
883
- >
884
- >
885
- >
886
- > # Licenses of bundled types
887
- > The published @visulima/inspector artifact additionally contains code with the following licenses:
888
- > (MIT OR CC0-1.0)
889
- >
890
- > # Bundled types:
891
- > ## type-fest
892
- > License: (MIT OR CC0-1.0)
893
- > By: Sindre Sorhus
894
- > Repository: sindresorhus/type-fest
895
- >
896
- > > Creative Commons Legal Code
897
- > >
898
- > > CC0 1.0 Universal
899
- > >
900
- > > CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
901
- > > LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
902
- > > ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
903
- > > INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
904
- > > REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
905
- > > PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
906
- > > THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
907
- > > HEREUNDER.
908
- > >
909
- > > Statement of Purpose
910
- > >
911
- > > The laws of most jurisdictions throughout the world automatically confer
912
- > > exclusive Copyright and Related Rights (defined below) upon the creator
913
- > > and subsequent owner(s) (each and all, an "owner") of an original work of
914
- > > authorship and/or a database (each, a "Work").
915
- > >
916
- > > Certain owners wish to permanently relinquish those rights to a Work for
917
- > > the purpose of contributing to a commons of creative, cultural and
918
- > > scientific works ("Commons") that the public can reliably and without fear
919
- > > of later claims of infringement build upon, modify, incorporate in other
920
- > > works, reuse and redistribute as freely as possible in any form whatsoever
921
- > > and for any purposes, including without limitation commercial purposes.
922
- > > These owners may contribute to the Commons to promote the ideal of a free
923
- > > culture and the further production of creative, cultural and scientific
924
- > > works, or to gain reputation or greater distribution for their Work in
925
- > > part through the use and efforts of others.
926
- > >
927
- > > For these and/or other purposes and motivations, and without any
928
- > > expectation of additional consideration or compensation, the person
929
- > > associating CC0 with a Work (the "Affirmer"), to the extent that he or she
930
- > > is an owner of Copyright and Related Rights in the Work, voluntarily
931
- > > elects to apply CC0 to the Work and publicly distribute the Work under its
932
- > > terms, with knowledge of his or her Copyright and Related Rights in the
933
- > > Work and the meaning and intended legal effect of CC0 on those rights.
934
- > >
935
- > > 1. Copyright and Related Rights. A Work made available under CC0 may be
936
- > > protected by copyright and related or neighboring rights ("Copyright and
937
- > > Related Rights"). Copyright and Related Rights include, but are not
938
- > > limited to, the following:
939
- > >
940
- > > i. the right to reproduce, adapt, distribute, perform, display,
941
- > > communicate, and translate a Work;
942
- > > ii. moral rights retained by the original author(s) and/or performer(s);
943
- > > iii. publicity and privacy rights pertaining to a person's image or
944
- > > likeness depicted in a Work;
945
- > > iv. rights protecting against unfair competition in regards to a Work,
946
- > > subject to the limitations in paragraph 4(a), below;
947
- > > v. rights protecting the extraction, dissemination, use and reuse of data
948
- > > in a Work;
949
- > > vi. database rights (such as those arising under Directive 96/9/EC of the
950
- > > European Parliament and of the Council of 11 March 1996 on the legal
951
- > > protection of databases, and under any national implementation
952
- > > thereof, including any amended or successor version of such
953
- > > directive); and
954
- > > vii. other similar, equivalent or corresponding rights throughout the
955
- > > world based on applicable law or treaty, and any national
956
- > > implementations thereof.
957
- > >
958
- > > 2. Waiver. To the greatest extent permitted by, but not in contravention
959
- > > of, applicable law, Affirmer hereby overtly, fully, permanently,
960
- > > irrevocably and unconditionally waives, abandons, and surrenders all of
961
- > > Affirmer's Copyright and Related Rights and associated claims and causes
962
- > > of action, whether now known or unknown (including existing as well as
963
- > > future claims and causes of action), in the Work (i) in all territories
964
- > > worldwide, (ii) for the maximum duration provided by applicable law or
965
- > > treaty (including future time extensions), (iii) in any current or future
966
- > > medium and for any number of copies, and (iv) for any purpose whatsoever,
967
- > > including without limitation commercial, advertising or promotional
968
- > > purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
969
- > > member of the public at large and to the detriment of Affirmer's heirs and
970
- > > successors, fully intending that such Waiver shall not be subject to
971
- > > revocation, rescission, cancellation, termination, or any other legal or
972
- > > equitable action to disrupt the quiet enjoyment of the Work by the public
973
- > > as contemplated by Affirmer's express Statement of Purpose.
974
- > >
975
- > > 3. Public License Fallback. Should any part of the Waiver for any reason
976
- > > be judged legally invalid or ineffective under applicable law, then the
977
- > > Waiver shall be preserved to the maximum extent permitted taking into
978
- > > account Affirmer's express Statement of Purpose. In addition, to the
979
- > > extent the Waiver is so judged Affirmer hereby grants to each affected
980
- > > person a royalty-free, non transferable, non sublicensable, non exclusive,
981
- > > irrevocable and unconditional license to exercise Affirmer's Copyright and
982
- > > Related Rights in the Work (i) in all territories worldwide, (ii) for the
983
- > > maximum duration provided by applicable law or treaty (including future
984
- > > time extensions), (iii) in any current or future medium and for any number
985
- > > of copies, and (iv) for any purpose whatsoever, including without
986
- > > limitation commercial, advertising or promotional purposes (the
987
- > > "License"). The License shall be deemed effective as of the date CC0 was
988
- > > applied by Affirmer to the Work. Should any part of the License for any
989
- > > reason be judged legally invalid or ineffective under applicable law, such
990
- > > partial invalidity or ineffectiveness shall not invalidate the remainder
991
- > > of the License, and in such case Affirmer hereby affirms that he or she
992
- > > will not (i) exercise any of his or her remaining Copyright and Related
993
- > > Rights in the Work or (ii) assert any associated claims and causes of
994
- > > action with respect to the Work, in either case contrary to Affirmer's
995
- > > express Statement of Purpose.
996
- > >
997
- > > 4. Limitations and Disclaimers.
998
- > >
999
- > > a. No trademark or patent rights held by Affirmer are waived, abandoned,
1000
- > > surrendered, licensed or otherwise affected by this document.
1001
- > > b. Affirmer offers the Work as-is and makes no representations or
1002
- > > warranties of any kind concerning the Work, express, implied,
1003
- > > statutory or otherwise, including without limitation warranties of
1004
- > > title, merchantability, fitness for a particular purpose, non
1005
- > > infringement, or the absence of latent or other defects, accuracy, or
1006
- > > the present or absence of errors, whether or not discoverable, all to
1007
- > > the greatest extent permissible under applicable law.
1008
- > > c. Affirmer disclaims responsibility for clearing rights of other persons
1009
- > > that may apply to the Work or any use thereof, including without
1010
- > > limitation any person's Copyright and Related Rights in the Work.
1011
- > > Further, Affirmer disclaims responsibility for obtaining any necessary
1012
- > > consents, permissions or other rights required for any use of the
1013
- > > Work.
1014
- > > d. Affirmer understands and acknowledges that Creative Commons is not a
1015
- > > party to this document and has no duty or obligation with respect to
1016
- > > this CC0 or use of the Work.
1017
-
1018
- ---------------------------------------
1019
-
1020
- ## cli-spinners
1021
- License: MIT
1022
- By: Sindre Sorhus
1023
- Repository: sindresorhus/cli-spinners
1024
-
1025
- > MIT License
1026
- >
1027
- > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1028
- >
1029
- > 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:
1030
- >
1031
- > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1032
- >
1033
- > 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.
1034
-
1035
- ---------------------------------------
1036
631
 
1037
632
  ## safe-stable-stringify
633
+
1038
634
  License: MIT
1039
635
  By: Ruben Bridgewater
1040
636
  Repository: git+https://github.com/BridgeAR/safe-stable-stringify.git