@visulima/cerebro 2.0.3 → 2.1.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.
- package/CHANGELOG.md +39 -0
- package/LICENSE.md +2375 -8
- package/README.md +279 -24
- package/dist/cli.d.ts +203 -0
- package/dist/commands/completion-command.d.ts +6 -6
- package/dist/commands/help-command.d.ts +6 -8
- package/dist/commands/help-command.js +1 -1
- package/dist/commands/readme-command.d.ts +6 -6
- package/dist/commands/version-command.d.ts +3 -6
- package/dist/constants.d.ts +29 -0
- package/dist/default-env.d.ts +7 -0
- package/dist/default-options.d.ts +3 -0
- package/dist/empty-toolbox.d.ts +15 -0
- package/dist/errors/cerebro-error.d.ts +10 -0
- package/dist/errors/command-not-found-error.d.ts +9 -0
- package/dist/errors/command-validation-error.d.ts +10 -0
- package/dist/errors/completion-error.d.ts +9 -0
- package/dist/errors/conflicting-options-error.d.ts +10 -0
- package/dist/errors/plugin-error.d.ts +9 -0
- package/dist/errors/update-notifier-error.d.ts +7 -0
- package/dist/index.d.ts +94 -50
- package/dist/index.js +1 -1
- package/dist/logger/create-pail-logger.d.ts +8 -5
- package/dist/logger/create-pail-logger.js +1 -1
- package/dist/packem_chunks/has-new-version.js +1 -1
- package/dist/packem_shared/{Cerebro-C23kXfEn.js → Cerebro-BqHqYEQJ.js} +3 -3
- package/dist/packem_shared/{help-command-C_CdZQSd.js → help-command-Ddt6rdio.js} +1 -1
- package/dist/plugin-manager.d.ts +53 -0
- package/dist/plugins/error-handler-plugin.d.ts +16 -10
- package/dist/plugins/runtime-version-check-plugin.d.ts +15 -10
- package/dist/plugins/update-notifier/cache.d.ts +11 -0
- package/dist/plugins/update-notifier/get-distribution-version.d.ts +2 -0
- package/dist/plugins/update-notifier/has-new-version.d.ts +14 -0
- package/dist/plugins/update-notifier/update-notifier-plugin.d.ts +9 -21
- package/dist/types/cli.d.ts +105 -0
- package/dist/types/command-line-usage.d.ts +37 -0
- package/dist/types/command.d.ts +136 -0
- package/dist/types/option-types.d.ts +83 -0
- package/dist/types/options.d.ts +4 -0
- package/dist/types/plugin.d.ts +53 -0
- package/dist/types/toolbox.d.ts +96 -0
- package/dist/util/arg-processing/get-boolean-values.d.ts +7 -0
- package/dist/util/arg-processing/get-parameter-option.d.ts +7 -0
- package/dist/util/arg-processing/map-option-type-label.d.ts +3 -0
- package/dist/util/arg-processing/option-is-boolean.d.ts +9 -0
- package/dist/util/arg-processing/remove-boolean-values.d.ts +9 -0
- package/dist/util/command-line-commands.d.ts +10 -0
- package/dist/util/command-line-usage/get-terminal-width.d.ts +7 -0
- package/dist/util/command-line-usage/index.d.ts +3 -0
- package/dist/util/command-line-usage/section/base-section.d.ts +8 -0
- package/dist/util/command-line-usage/section/content-section.d.ts +65 -0
- package/dist/util/command-line-usage/section/option-list-section.d.ts +44 -0
- package/dist/util/command-processing/command-processor.d.ts +37 -0
- package/dist/util/command-processing/command-validation.d.ts +17 -0
- package/dist/util/command-processing/nested-command-parser.d.ts +25 -0
- package/dist/util/command-processing/option-processor.d.ts +44 -0
- package/dist/util/data-processing/list-missing-arguments.d.ts +15 -0
- package/dist/util/data-processing/merge-arguments.d.ts +7 -0
- package/dist/util/general/find-alternatives.d.ts +8 -0
- package/dist/util/general/hide-bin.d.ts +2 -0
- package/dist/util/general/parse-raw-command.d.ts +7 -0
- package/dist/util/general/register-exception-handler.d.ts +9 -0
- package/dist/util/general/runtime-process.d.ts +65 -0
- package/dist/util/general/semver-gt.d.ts +2 -0
- package/dist/util/general/validate-input.d.ts +24 -0
- package/dist/util/process-env-variables.d.ts +9 -0
- package/dist/util/security.d.ts +58 -0
- package/dist/util/text-processing/template-format.d.ts +5 -0
- package/package.json +6 -6
- package/dist/packem_shared/index.d-BkzZomTF.d.ts +0 -65
- package/dist/packem_shared/plugin-manager-BjEuiNxv.d.ts +0 -147
package/LICENSE.md
CHANGED
|
@@ -264,11 +264,14 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
264
264
|
>
|
|
265
265
|
>
|
|
266
266
|
> # Licenses of bundled types
|
|
267
|
+
>
|
|
267
268
|
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
268
269
|
> MIT
|
|
269
270
|
>
|
|
270
271
|
> # Bundled types:
|
|
272
|
+
>
|
|
271
273
|
> ## @visulima/error
|
|
274
|
+
>
|
|
272
275
|
> License: MIT
|
|
273
276
|
> By: Daniel Bannert
|
|
274
277
|
> Repository: git+https://github.com/visulima/visulima.git
|
|
@@ -296,6 +299,40 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
296
299
|
> > SOFTWARE.
|
|
297
300
|
> >
|
|
298
301
|
> >
|
|
302
|
+
>
|
|
303
|
+
> # Licenses of bundled dependencies
|
|
304
|
+
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
305
|
+
> MIT
|
|
306
|
+
>
|
|
307
|
+
> # Bundled dependencies:
|
|
308
|
+
> ## @visulima/error
|
|
309
|
+
> License: MIT
|
|
310
|
+
> By: Daniel Bannert
|
|
311
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
312
|
+
>
|
|
313
|
+
> > MIT License
|
|
314
|
+
> >
|
|
315
|
+
> > Copyright (c) 2025 visulima
|
|
316
|
+
> >
|
|
317
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
318
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
319
|
+
> > in the Software without restriction, including without limitation the rights
|
|
320
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
321
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
322
|
+
> > furnished to do so, subject to the following conditions:
|
|
323
|
+
> >
|
|
324
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
325
|
+
> > copies or substantial portions of the Software.
|
|
326
|
+
> >
|
|
327
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
328
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
329
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
330
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
331
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
332
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
333
|
+
> > SOFTWARE.
|
|
334
|
+
> >
|
|
335
|
+
> >
|
|
299
336
|
> >
|
|
300
337
|
> > # Licenses of bundled dependencies
|
|
301
338
|
> > The published @visulima/error artifact additionally contains code with the following licenses:
|
|
@@ -441,8 +478,6 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
441
478
|
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
442
479
|
> > >
|
|
443
480
|
> > > 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.
|
|
444
|
-
> >
|
|
445
|
-
> >
|
|
446
481
|
|
|
447
482
|
---------------------------------------
|
|
448
483
|
|
|
@@ -924,11 +959,14 @@ Repository: github:watson/ci-info
|
|
|
924
959
|
<!-- TYPE_DEPENDENCIES -->
|
|
925
960
|
|
|
926
961
|
# Licenses of bundled types
|
|
962
|
+
|
|
927
963
|
The published @visulima/cerebro artifact additionally contains code with the following licenses:
|
|
928
964
|
MIT
|
|
929
965
|
|
|
930
966
|
# Bundled types:
|
|
967
|
+
|
|
931
968
|
## @visulima/command-line-args
|
|
969
|
+
|
|
932
970
|
License: MIT
|
|
933
971
|
By: Daniel Bannert
|
|
934
972
|
Repository: git+https://github.com/visulima/visulima.git
|
|
@@ -980,6 +1018,64 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
980
1018
|
> SOFTWARE.
|
|
981
1019
|
>
|
|
982
1020
|
> <!-- DEPENDENCIES -->
|
|
1021
|
+
|
|
1022
|
+
# Licenses of bundled dependencies
|
|
1023
|
+
The published @visulima/cerebro artifact additionally contains code with the following licenses:
|
|
1024
|
+
MIT
|
|
1025
|
+
|
|
1026
|
+
# Bundled dependencies:
|
|
1027
|
+
## @visulima/command-line-args
|
|
1028
|
+
License: MIT
|
|
1029
|
+
By: Daniel Bannert
|
|
1030
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
1031
|
+
|
|
1032
|
+
> MIT License
|
|
1033
|
+
>
|
|
1034
|
+
> Copyright (c) 2025 visulima
|
|
1035
|
+
>
|
|
1036
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1037
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1038
|
+
> in the Software without restriction, including without limitation the rights
|
|
1039
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1040
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1041
|
+
> furnished to do so, subject to the following conditions:
|
|
1042
|
+
>
|
|
1043
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
1044
|
+
> copies or substantial portions of the Software.
|
|
1045
|
+
>
|
|
1046
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1047
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1048
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1049
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1050
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1051
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1052
|
+
> SOFTWARE.
|
|
1053
|
+
>
|
|
1054
|
+
> ---
|
|
1055
|
+
>
|
|
1056
|
+
> The MIT License (MIT)
|
|
1057
|
+
>
|
|
1058
|
+
> Copyright (c) 2014-24 Lloyd Brookes <opensource@75lb.com>
|
|
1059
|
+
>
|
|
1060
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1061
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1062
|
+
> in the Software without restriction, including without limitation the rights
|
|
1063
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1064
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1065
|
+
> furnished to do so, subject to the following conditions:
|
|
1066
|
+
>
|
|
1067
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
1068
|
+
> copies or substantial portions of the Software.
|
|
1069
|
+
>
|
|
1070
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1071
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1072
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1073
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1074
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1075
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1076
|
+
> SOFTWARE.
|
|
1077
|
+
>
|
|
1078
|
+
>
|
|
983
1079
|
>
|
|
984
1080
|
> # Licenses of bundled dependencies
|
|
985
1081
|
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
@@ -1160,16 +1256,19 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
1160
1256
|
> > >
|
|
1161
1257
|
> > > 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.
|
|
1162
1258
|
>
|
|
1163
|
-
>
|
|
1259
|
+
>
|
|
1164
1260
|
>
|
|
1165
1261
|
>
|
|
1166
1262
|
>
|
|
1167
1263
|
> # Licenses of bundled types
|
|
1264
|
+
>
|
|
1168
1265
|
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
1169
1266
|
> MIT
|
|
1170
1267
|
>
|
|
1171
1268
|
> # Bundled types:
|
|
1269
|
+
>
|
|
1172
1270
|
> ## @visulima/error
|
|
1271
|
+
>
|
|
1173
1272
|
> License: MIT
|
|
1174
1273
|
> By: Daniel Bannert
|
|
1175
1274
|
> Repository: git+https://github.com/visulima/visulima.git
|
|
@@ -1196,7 +1295,41 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
1196
1295
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1197
1296
|
> > SOFTWARE.
|
|
1198
1297
|
> >
|
|
1199
|
-
> >
|
|
1298
|
+
> >
|
|
1299
|
+
>
|
|
1300
|
+
> # Licenses of bundled dependencies
|
|
1301
|
+
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
1302
|
+
> MIT
|
|
1303
|
+
>
|
|
1304
|
+
> # Bundled dependencies:
|
|
1305
|
+
> ## @visulima/error
|
|
1306
|
+
> License: MIT
|
|
1307
|
+
> By: Daniel Bannert
|
|
1308
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
1309
|
+
>
|
|
1310
|
+
> > MIT License
|
|
1311
|
+
> >
|
|
1312
|
+
> > Copyright (c) 2025 visulima
|
|
1313
|
+
> >
|
|
1314
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1315
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
1316
|
+
> > in the Software without restriction, including without limitation the rights
|
|
1317
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1318
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
1319
|
+
> > furnished to do so, subject to the following conditions:
|
|
1320
|
+
> >
|
|
1321
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
1322
|
+
> > copies or substantial portions of the Software.
|
|
1323
|
+
> >
|
|
1324
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1325
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1326
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1327
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1328
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1329
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1330
|
+
> > SOFTWARE.
|
|
1331
|
+
> >
|
|
1332
|
+
> >
|
|
1200
1333
|
> >
|
|
1201
1334
|
> > # Licenses of bundled dependencies
|
|
1202
1335
|
> > The published @visulima/error artifact additionally contains code with the following licenses:
|
|
@@ -1342,8 +1475,6 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
1342
1475
|
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1343
1476
|
> > >
|
|
1344
1477
|
> > > 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.
|
|
1345
|
-
> >
|
|
1346
|
-
> > <!-- /DEPENDENCIES -->
|
|
1347
1478
|
|
|
1348
1479
|
---------------------------------------
|
|
1349
1480
|
|
|
@@ -1374,7 +1505,7 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
1374
1505
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1375
1506
|
> SOFTWARE.
|
|
1376
1507
|
>
|
|
1377
|
-
>
|
|
1508
|
+
>
|
|
1378
1509
|
>
|
|
1379
1510
|
> # Licenses of bundled dependencies
|
|
1380
1511
|
> The published @visulima/error artifact additionally contains code with the following licenses:
|
|
@@ -1520,7 +1651,2243 @@ Repository: git+https://github.com/visulima/visulima.git
|
|
|
1520
1651
|
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1521
1652
|
> >
|
|
1522
1653
|
> > 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.
|
|
1654
|
+
|
|
1655
|
+
---------------------------------------
|
|
1656
|
+
|
|
1657
|
+
## @visulima/path
|
|
1658
|
+
License: MIT
|
|
1659
|
+
By: Daniel Bannert
|
|
1660
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
1661
|
+
|
|
1662
|
+
> MIT License
|
|
1663
|
+
>
|
|
1664
|
+
> Copyright (c) 2025 visulima
|
|
1665
|
+
>
|
|
1666
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1667
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1668
|
+
> in the Software without restriction, including without limitation the rights
|
|
1669
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1670
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1671
|
+
> furnished to do so, subject to the following conditions:
|
|
1672
|
+
>
|
|
1673
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
1674
|
+
> copies or substantial portions of the Software.
|
|
1675
|
+
>
|
|
1676
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1677
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1678
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1679
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1680
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1681
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1682
|
+
> SOFTWARE.
|
|
1683
|
+
>
|
|
1684
|
+
> ---
|
|
1685
|
+
>
|
|
1686
|
+
> MIT License
|
|
1687
|
+
>
|
|
1688
|
+
> Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
|
|
1689
|
+
>
|
|
1690
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1691
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1692
|
+
> in the Software without restriction, including without limitation the rights
|
|
1693
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1694
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1695
|
+
> furnished to do so, subject to the following conditions:
|
|
1696
|
+
>
|
|
1697
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
1698
|
+
> copies or substantial portions of the Software.
|
|
1699
|
+
>
|
|
1700
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1701
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1702
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1703
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1704
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1705
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1706
|
+
> SOFTWARE.
|
|
1707
|
+
>
|
|
1708
|
+
> ---
|
|
1709
|
+
>
|
|
1710
|
+
> Copyright Joyent, Inc. and other Node contributors.
|
|
1711
|
+
>
|
|
1712
|
+
> Permission is hereby granted, free of charge, to any person obtaining a
|
|
1713
|
+
> copy of this software and associated documentation files (the
|
|
1714
|
+
> "Software"), to deal in the Software without restriction, including
|
|
1715
|
+
> without limitation the rights to use, copy, modify, merge, publish,
|
|
1716
|
+
> distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
1717
|
+
> persons to whom the Software is furnished to do so, subject to the
|
|
1718
|
+
> following conditions:
|
|
1719
|
+
>
|
|
1720
|
+
> The above copyright notice and this permission notice shall be included
|
|
1721
|
+
> in all copies or substantial portions of the Software.
|
|
1722
|
+
>
|
|
1723
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
1724
|
+
> OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1725
|
+
> MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
1726
|
+
> NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
1727
|
+
> DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
1728
|
+
> OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
1729
|
+
> USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1730
|
+
>
|
|
1731
|
+
> ---
|
|
1732
|
+
>
|
|
1733
|
+
> Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
|
|
1734
|
+
>
|
|
1735
|
+
> The MIT License (MIT)
|
|
1736
|
+
>
|
|
1737
|
+
> Copyright (c) 2023-present Fabio Spampinato
|
|
1738
|
+
>
|
|
1739
|
+
> Permission is hereby granted, free of charge, to any person obtaining a
|
|
1740
|
+
> copy of this software and associated documentation files (the "Software"),
|
|
1741
|
+
> to deal in the Software without restriction, including without limitation
|
|
1742
|
+
> the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
1743
|
+
> and/or sell copies of the Software, and to permit persons to whom the
|
|
1744
|
+
> Software is furnished to do so, subject to the following conditions:
|
|
1745
|
+
>
|
|
1746
|
+
> The above copyright notice and this permission notice shall be included in
|
|
1747
|
+
> all copies or substantial portions of the Software.
|
|
1748
|
+
>
|
|
1749
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1750
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1751
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1752
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1753
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1754
|
+
> FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
1755
|
+
> DEALINGS IN THE SOFTWARE.
|
|
1756
|
+
>
|
|
1757
|
+
>
|
|
1758
|
+
>
|
|
1759
|
+
> # Licenses of bundled dependencies
|
|
1760
|
+
> The published @visulima/path artifact additionally contains code with the following licenses:
|
|
1761
|
+
> MIT
|
|
1523
1762
|
>
|
|
1524
|
-
>
|
|
1763
|
+
> # Bundled dependencies:
|
|
1764
|
+
> ## binary-extensions
|
|
1765
|
+
> License: MIT
|
|
1766
|
+
> By: Sindre Sorhus
|
|
1767
|
+
> Repository: sindresorhus/binary-extensions
|
|
1768
|
+
>
|
|
1769
|
+
> > MIT License
|
|
1770
|
+
> >
|
|
1771
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1772
|
+
> > Copyright (c) Paul Miller (https://paulmillr.com)
|
|
1773
|
+
> >
|
|
1774
|
+
> > 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:
|
|
1775
|
+
> >
|
|
1776
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1777
|
+
> >
|
|
1778
|
+
> > 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.
|
|
1779
|
+
|
|
1780
|
+
---------------------------------------
|
|
1781
|
+
|
|
1782
|
+
## @visulima/string
|
|
1783
|
+
License: MIT
|
|
1784
|
+
By: Daniel Bannert
|
|
1785
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
1786
|
+
|
|
1787
|
+
> MIT License
|
|
1788
|
+
>
|
|
1789
|
+
> Copyright (c) 2025 visulima
|
|
1790
|
+
>
|
|
1791
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1792
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1793
|
+
> in the Software without restriction, including without limitation the rights
|
|
1794
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1795
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1796
|
+
> furnished to do so, subject to the following conditions:
|
|
1797
|
+
>
|
|
1798
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
1799
|
+
> copies or substantial portions of the Software.
|
|
1800
|
+
>
|
|
1801
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1802
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1803
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1804
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1805
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1806
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1807
|
+
> SOFTWARE.
|
|
1808
|
+
>
|
|
1809
|
+
>
|
|
1810
|
+
>
|
|
1811
|
+
> # Licenses of bundled dependencies
|
|
1812
|
+
> The published @visulima/string artifact additionally contains code with the following licenses:
|
|
1813
|
+
> MIT
|
|
1814
|
+
>
|
|
1815
|
+
> # Bundled dependencies:
|
|
1816
|
+
> ## emoji-regex-xs
|
|
1817
|
+
> License: MIT
|
|
1818
|
+
> By: Steven Levithan
|
|
1819
|
+
> Repository: git+https://github.com/slevithan/emoji-regex-xs.git
|
|
1820
|
+
>
|
|
1821
|
+
> > MIT License
|
|
1822
|
+
> >
|
|
1823
|
+
> > Copyright (c) 2025 Steven Levithan
|
|
1824
|
+
> >
|
|
1825
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1826
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
1827
|
+
> > in the Software without restriction, including without limitation the rights
|
|
1828
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1829
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
1830
|
+
> > furnished to do so, subject to the following conditions:
|
|
1831
|
+
> >
|
|
1832
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
1833
|
+
> > copies or substantial portions of the Software.
|
|
1834
|
+
> >
|
|
1835
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1836
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1837
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1838
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1839
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1840
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1841
|
+
> > SOFTWARE.
|
|
1842
|
+
>
|
|
1843
|
+
> ---------------------------------------
|
|
1844
|
+
>
|
|
1845
|
+
> ## fastest-levenshtein
|
|
1846
|
+
> License: MIT
|
|
1847
|
+
> By: Kasper U. Weihe
|
|
1848
|
+
> Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
1849
|
+
>
|
|
1850
|
+
> > MIT License
|
|
1851
|
+
> >
|
|
1852
|
+
> > Copyright (c) 2020 Kasper Unn Weihe
|
|
1853
|
+
> >
|
|
1854
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1855
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
1856
|
+
> > in the Software without restriction, including without limitation the rights
|
|
1857
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1858
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
1859
|
+
> > furnished to do so, subject to the following conditions:
|
|
1860
|
+
> >
|
|
1861
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
1862
|
+
> > copies or substantial portions of the Software.
|
|
1863
|
+
> >
|
|
1864
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1865
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1866
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1867
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1868
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1869
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1870
|
+
> > SOFTWARE.
|
|
1871
|
+
>
|
|
1872
|
+
> ---------------------------------------
|
|
1873
|
+
>
|
|
1874
|
+
> ## get-east-asian-width
|
|
1875
|
+
> License: MIT
|
|
1876
|
+
> By: Sindre Sorhus
|
|
1877
|
+
> Repository: sindresorhus/get-east-asian-width
|
|
1878
|
+
>
|
|
1879
|
+
> > MIT License
|
|
1880
|
+
> >
|
|
1881
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
1882
|
+
> >
|
|
1883
|
+
> > 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:
|
|
1884
|
+
> >
|
|
1885
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1886
|
+
> >
|
|
1887
|
+
> > 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.
|
|
1888
|
+
>
|
|
1889
|
+
>
|
|
1890
|
+
>
|
|
1891
|
+
>
|
|
1892
|
+
>
|
|
1893
|
+
> # Licenses of bundled types
|
|
1894
|
+
> The published @visulima/string artifact additionally contains code with the following licenses:
|
|
1895
|
+
> MIT
|
|
1896
|
+
>
|
|
1897
|
+
> # Bundled types:
|
|
1898
|
+
> ## fastest-levenshtein
|
|
1899
|
+
> License: MIT
|
|
1900
|
+
> By: Kasper U. Weihe
|
|
1901
|
+
> Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
1902
|
+
>
|
|
1903
|
+
> > MIT License
|
|
1904
|
+
> >
|
|
1905
|
+
> > Copyright (c) 2020 Kasper Unn Weihe
|
|
1906
|
+
> >
|
|
1907
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1908
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
1909
|
+
> > in the Software without restriction, including without limitation the rights
|
|
1910
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1911
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
1912
|
+
> > furnished to do so, subject to the following conditions:
|
|
1913
|
+
> >
|
|
1914
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
1915
|
+
> > copies or substantial portions of the Software.
|
|
1916
|
+
> >
|
|
1917
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1918
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1919
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1920
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1921
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1922
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1923
|
+
> > SOFTWARE.
|
|
1924
|
+
|
|
1925
|
+
---------------------------------------
|
|
1926
|
+
|
|
1927
|
+
## ci-info
|
|
1928
|
+
License: MIT
|
|
1929
|
+
By: Thomas Watson Steen, Sibiraj
|
|
1930
|
+
Repository: github:watson/ci-info
|
|
1931
|
+
|
|
1932
|
+
> The MIT License (MIT)
|
|
1933
|
+
>
|
|
1934
|
+
> Copyright (c) 2016 Thomas Watson Steen
|
|
1935
|
+
>
|
|
1936
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1937
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
1938
|
+
> in the Software without restriction, including without limitation the rights
|
|
1939
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1940
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
1941
|
+
> furnished to do so, subject to the following conditions:
|
|
1942
|
+
>
|
|
1943
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
1944
|
+
> copies or substantial portions of the Software.
|
|
1945
|
+
>
|
|
1946
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1947
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1948
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1949
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1950
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1951
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1952
|
+
> SOFTWARE.
|
|
1953
|
+
|
|
1954
|
+
<!-- /DEPENDENCIES -->
|
|
1955
|
+
|
|
1956
|
+
> # Licenses of bundled types
|
|
1957
|
+
>
|
|
1958
|
+
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
1959
|
+
> MIT
|
|
1960
|
+
>
|
|
1961
|
+
> # Bundled types:
|
|
1962
|
+
>
|
|
1963
|
+
> ## @visulima/error
|
|
1964
|
+
>
|
|
1965
|
+
> License: MIT
|
|
1966
|
+
> By: Daniel Bannert
|
|
1967
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
1968
|
+
>
|
|
1969
|
+
> > MIT License
|
|
1970
|
+
> >
|
|
1971
|
+
> > Copyright (c) 2025 visulima
|
|
1972
|
+
> >
|
|
1973
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1974
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
1975
|
+
> > in the Software without restriction, including without limitation the rights
|
|
1976
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1977
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
1978
|
+
> > furnished to do so, subject to the following conditions:
|
|
1979
|
+
> >
|
|
1980
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
1981
|
+
> > copies or substantial portions of the Software.
|
|
1982
|
+
> >
|
|
1983
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1984
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1985
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1986
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1987
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1988
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1989
|
+
> > SOFTWARE.
|
|
1990
|
+
> >
|
|
1991
|
+
> > <!-- DEPENDENCIES -->
|
|
1992
|
+
|
|
1993
|
+
# Licenses of bundled dependencies
|
|
1994
|
+
The published @visulima/cerebro artifact additionally contains code with the following licenses:
|
|
1995
|
+
MIT
|
|
1996
|
+
|
|
1997
|
+
# Bundled dependencies:
|
|
1998
|
+
## @visulima/command-line-args
|
|
1999
|
+
License: MIT
|
|
2000
|
+
By: Daniel Bannert
|
|
2001
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
2002
|
+
|
|
2003
|
+
> MIT License
|
|
2004
|
+
>
|
|
2005
|
+
> Copyright (c) 2025 visulima
|
|
2006
|
+
>
|
|
2007
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2008
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
2009
|
+
> in the Software without restriction, including without limitation the rights
|
|
2010
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2011
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
2012
|
+
> furnished to do so, subject to the following conditions:
|
|
2013
|
+
>
|
|
2014
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
2015
|
+
> copies or substantial portions of the Software.
|
|
2016
|
+
>
|
|
2017
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2018
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2019
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2020
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2021
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2022
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2023
|
+
> SOFTWARE.
|
|
2024
|
+
>
|
|
2025
|
+
> ---
|
|
2026
|
+
>
|
|
2027
|
+
> The MIT License (MIT)
|
|
2028
|
+
>
|
|
2029
|
+
> Copyright (c) 2014-24 Lloyd Brookes <opensource@75lb.com>
|
|
2030
|
+
>
|
|
2031
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2032
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
2033
|
+
> in the Software without restriction, including without limitation the rights
|
|
2034
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2035
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
2036
|
+
> furnished to do so, subject to the following conditions:
|
|
2037
|
+
>
|
|
2038
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
2039
|
+
> copies or substantial portions of the Software.
|
|
2040
|
+
>
|
|
2041
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2042
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2043
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2044
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2045
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2046
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2047
|
+
> SOFTWARE.
|
|
2048
|
+
>
|
|
2049
|
+
>
|
|
2050
|
+
>
|
|
2051
|
+
> # Licenses of bundled dependencies
|
|
2052
|
+
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
2053
|
+
> MIT
|
|
2054
|
+
>
|
|
2055
|
+
> # Bundled dependencies:
|
|
2056
|
+
> ## @visulima/error
|
|
2057
|
+
> License: MIT
|
|
2058
|
+
> By: Daniel Bannert
|
|
2059
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
2060
|
+
>
|
|
2061
|
+
> > MIT License
|
|
2062
|
+
> >
|
|
2063
|
+
> > Copyright (c) 2025 visulima
|
|
2064
|
+
> >
|
|
2065
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2066
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
2067
|
+
> > in the Software without restriction, including without limitation the rights
|
|
2068
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2069
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
2070
|
+
> > furnished to do so, subject to the following conditions:
|
|
2071
|
+
> >
|
|
2072
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
2073
|
+
> > copies or substantial portions of the Software.
|
|
2074
|
+
> >
|
|
2075
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2076
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2077
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2078
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2079
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2080
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2081
|
+
> > SOFTWARE.
|
|
2082
|
+
> >
|
|
2083
|
+
> >
|
|
2084
|
+
> >
|
|
2085
|
+
> > # Licenses of bundled dependencies
|
|
2086
|
+
> > The published @visulima/error artifact additionally contains code with the following licenses:
|
|
2087
|
+
> > MIT
|
|
2088
|
+
> >
|
|
2089
|
+
> > # Bundled dependencies:
|
|
2090
|
+
> > ## @visulima/path
|
|
2091
|
+
> > License: MIT
|
|
2092
|
+
> > By: Daniel Bannert
|
|
2093
|
+
> > Repository: git+https://github.com/visulima/visulima.git
|
|
2094
|
+
> >
|
|
2095
|
+
> > > MIT License
|
|
2096
|
+
> > >
|
|
2097
|
+
> > > Copyright (c) 2025 visulima
|
|
2098
|
+
> > >
|
|
2099
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2100
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
2101
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
2102
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2103
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
2104
|
+
> > > furnished to do so, subject to the following conditions:
|
|
2105
|
+
> > >
|
|
2106
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
2107
|
+
> > > copies or substantial portions of the Software.
|
|
2108
|
+
> > >
|
|
2109
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2110
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2111
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2112
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2113
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2114
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2115
|
+
> > > SOFTWARE.
|
|
2116
|
+
> > >
|
|
2117
|
+
> > > ---
|
|
2118
|
+
> > >
|
|
2119
|
+
> > > MIT License
|
|
2120
|
+
> > >
|
|
2121
|
+
> > > Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
|
|
2122
|
+
> > >
|
|
2123
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2124
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
2125
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
2126
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2127
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
2128
|
+
> > > furnished to do so, subject to the following conditions:
|
|
2129
|
+
> > >
|
|
2130
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
2131
|
+
> > > copies or substantial portions of the Software.
|
|
2132
|
+
> > >
|
|
2133
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2134
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2135
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2136
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2137
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2138
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2139
|
+
> > > SOFTWARE.
|
|
2140
|
+
> > >
|
|
2141
|
+
> > > ---
|
|
2142
|
+
> > >
|
|
2143
|
+
> > > Copyright Joyent, Inc. and other Node contributors.
|
|
2144
|
+
> > >
|
|
2145
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a
|
|
2146
|
+
> > > copy of this software and associated documentation files (the
|
|
2147
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
2148
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
2149
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
2150
|
+
> > > persons to whom the Software is furnished to do so, subject to the
|
|
2151
|
+
> > > following conditions:
|
|
2152
|
+
> > >
|
|
2153
|
+
> > > The above copyright notice and this permission notice shall be included
|
|
2154
|
+
> > > in all copies or substantial portions of the Software.
|
|
2155
|
+
> > >
|
|
2156
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
2157
|
+
> > > OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2158
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
2159
|
+
> > > NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
2160
|
+
> > > DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
2161
|
+
> > > OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
2162
|
+
> > > USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2163
|
+
> > >
|
|
2164
|
+
> > > ---
|
|
2165
|
+
> > >
|
|
2166
|
+
> > > Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
|
|
2167
|
+
> > >
|
|
2168
|
+
> > > The MIT License (MIT)
|
|
2169
|
+
> > >
|
|
2170
|
+
> > > Copyright (c) 2023-present Fabio Spampinato
|
|
2171
|
+
> > >
|
|
2172
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a
|
|
2173
|
+
> > > copy of this software and associated documentation files (the "Software"),
|
|
2174
|
+
> > > to deal in the Software without restriction, including without limitation
|
|
2175
|
+
> > > the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
2176
|
+
> > > and/or sell copies of the Software, and to permit persons to whom the
|
|
2177
|
+
> > > Software is furnished to do so, subject to the following conditions:
|
|
2178
|
+
> > >
|
|
2179
|
+
> > > The above copyright notice and this permission notice shall be included in
|
|
2180
|
+
> > > all copies or substantial portions of the Software.
|
|
2181
|
+
> > >
|
|
2182
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2183
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2184
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2185
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2186
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
2187
|
+
> > > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
2188
|
+
> > > DEALINGS IN THE SOFTWARE.
|
|
2189
|
+
> > >
|
|
2190
|
+
> > >
|
|
2191
|
+
> > >
|
|
2192
|
+
> > > # Licenses of bundled dependencies
|
|
2193
|
+
> > > The published @visulima/path artifact additionally contains code with the following licenses:
|
|
2194
|
+
> > > MIT
|
|
2195
|
+
> > >
|
|
2196
|
+
> > > # Bundled dependencies:
|
|
2197
|
+
> > > ## binary-extensions
|
|
2198
|
+
> > > License: MIT
|
|
2199
|
+
> > > By: Sindre Sorhus
|
|
2200
|
+
> > > Repository: sindresorhus/binary-extensions
|
|
2201
|
+
> > >
|
|
2202
|
+
> > > > MIT License
|
|
2203
|
+
> > > >
|
|
2204
|
+
> > > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2205
|
+
> > > > Copyright (c) Paul Miller (https://paulmillr.com)
|
|
2206
|
+
> > > >
|
|
2207
|
+
> > > > 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:
|
|
2208
|
+
> > > >
|
|
2209
|
+
> > > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2210
|
+
> > > >
|
|
2211
|
+
> > > > 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.
|
|
2212
|
+
> >
|
|
2213
|
+
> > ---------------------------------------
|
|
2214
|
+
> >
|
|
2215
|
+
> > ## is-plain-obj
|
|
2216
|
+
> > License: MIT
|
|
2217
|
+
> > By: Sindre Sorhus
|
|
2218
|
+
> > Repository: sindresorhus/is-plain-obj
|
|
2219
|
+
> >
|
|
2220
|
+
> > > MIT License
|
|
2221
|
+
> > >
|
|
2222
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2223
|
+
> > >
|
|
2224
|
+
> > > 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:
|
|
2225
|
+
> > >
|
|
2226
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2227
|
+
> > >
|
|
2228
|
+
> > > 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.
|
|
2229
|
+
>
|
|
2230
|
+
>
|
|
2231
|
+
>
|
|
2232
|
+
>
|
|
2233
|
+
>
|
|
2234
|
+
> # Licenses of bundled types
|
|
2235
|
+
>
|
|
2236
|
+
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
2237
|
+
> MIT
|
|
2238
|
+
>
|
|
2239
|
+
> # Bundled types:
|
|
2240
|
+
>
|
|
2241
|
+
> ## @visulima/error
|
|
2242
|
+
>
|
|
2243
|
+
> License: MIT
|
|
2244
|
+
> By: Daniel Bannert
|
|
2245
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
2246
|
+
>
|
|
2247
|
+
> > MIT License
|
|
2248
|
+
> >
|
|
2249
|
+
> > Copyright (c) 2025 visulima
|
|
2250
|
+
> >
|
|
2251
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2252
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
2253
|
+
> > in the Software without restriction, including without limitation the rights
|
|
2254
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2255
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
2256
|
+
> > furnished to do so, subject to the following conditions:
|
|
2257
|
+
> >
|
|
2258
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
2259
|
+
> > copies or substantial portions of the Software.
|
|
2260
|
+
> >
|
|
2261
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2262
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2263
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2264
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2265
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2266
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2267
|
+
> > SOFTWARE.
|
|
2268
|
+
> >
|
|
2269
|
+
> >
|
|
2270
|
+
>
|
|
2271
|
+
> # Licenses of bundled dependencies
|
|
2272
|
+
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
2273
|
+
> MIT
|
|
2274
|
+
>
|
|
2275
|
+
> # Bundled dependencies:
|
|
2276
|
+
> ## @visulima/error
|
|
2277
|
+
> License: MIT
|
|
2278
|
+
> By: Daniel Bannert
|
|
2279
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
2280
|
+
>
|
|
2281
|
+
> > MIT License
|
|
2282
|
+
> >
|
|
2283
|
+
> > Copyright (c) 2025 visulima
|
|
2284
|
+
> >
|
|
2285
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2286
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
2287
|
+
> > in the Software without restriction, including without limitation the rights
|
|
2288
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2289
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
2290
|
+
> > furnished to do so, subject to the following conditions:
|
|
2291
|
+
> >
|
|
2292
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
2293
|
+
> > copies or substantial portions of the Software.
|
|
2294
|
+
> >
|
|
2295
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2296
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2297
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2298
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2299
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2300
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2301
|
+
> > SOFTWARE.
|
|
2302
|
+
> >
|
|
2303
|
+
> >
|
|
2304
|
+
> >
|
|
2305
|
+
> > # Licenses of bundled dependencies
|
|
2306
|
+
> > The published @visulima/error artifact additionally contains code with the following licenses:
|
|
2307
|
+
> > MIT
|
|
2308
|
+
> >
|
|
2309
|
+
> > # Bundled dependencies:
|
|
2310
|
+
> > ## @visulima/path
|
|
2311
|
+
> > License: MIT
|
|
2312
|
+
> > By: Daniel Bannert
|
|
2313
|
+
> > Repository: git+https://github.com/visulima/visulima.git
|
|
2314
|
+
> >
|
|
2315
|
+
> > > MIT License
|
|
2316
|
+
> > >
|
|
2317
|
+
> > > Copyright (c) 2025 visulima
|
|
2318
|
+
> > >
|
|
2319
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2320
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
2321
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
2322
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2323
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
2324
|
+
> > > furnished to do so, subject to the following conditions:
|
|
2325
|
+
> > >
|
|
2326
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
2327
|
+
> > > copies or substantial portions of the Software.
|
|
2328
|
+
> > >
|
|
2329
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2330
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2331
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2332
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2333
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2334
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2335
|
+
> > > SOFTWARE.
|
|
2336
|
+
> > >
|
|
2337
|
+
> > > ---
|
|
2338
|
+
> > >
|
|
2339
|
+
> > > MIT License
|
|
2340
|
+
> > >
|
|
2341
|
+
> > > Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
|
|
2342
|
+
> > >
|
|
2343
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2344
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
2345
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
2346
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2347
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
2348
|
+
> > > furnished to do so, subject to the following conditions:
|
|
2349
|
+
> > >
|
|
2350
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
2351
|
+
> > > copies or substantial portions of the Software.
|
|
2352
|
+
> > >
|
|
2353
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2354
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2355
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2356
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2357
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2358
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2359
|
+
> > > SOFTWARE.
|
|
2360
|
+
> > >
|
|
2361
|
+
> > > ---
|
|
2362
|
+
> > >
|
|
2363
|
+
> > > Copyright Joyent, Inc. and other Node contributors.
|
|
2364
|
+
> > >
|
|
2365
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a
|
|
2366
|
+
> > > copy of this software and associated documentation files (the
|
|
2367
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
2368
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
2369
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
2370
|
+
> > > persons to whom the Software is furnished to do so, subject to the
|
|
2371
|
+
> > > following conditions:
|
|
2372
|
+
> > >
|
|
2373
|
+
> > > The above copyright notice and this permission notice shall be included
|
|
2374
|
+
> > > in all copies or substantial portions of the Software.
|
|
2375
|
+
> > >
|
|
2376
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
2377
|
+
> > > OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2378
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
2379
|
+
> > > NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
2380
|
+
> > > DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
2381
|
+
> > > OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
2382
|
+
> > > USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2383
|
+
> > >
|
|
2384
|
+
> > > ---
|
|
2385
|
+
> > >
|
|
2386
|
+
> > > Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
|
|
2387
|
+
> > >
|
|
2388
|
+
> > > The MIT License (MIT)
|
|
2389
|
+
> > >
|
|
2390
|
+
> > > Copyright (c) 2023-present Fabio Spampinato
|
|
2391
|
+
> > >
|
|
2392
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a
|
|
2393
|
+
> > > copy of this software and associated documentation files (the "Software"),
|
|
2394
|
+
> > > to deal in the Software without restriction, including without limitation
|
|
2395
|
+
> > > the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
2396
|
+
> > > and/or sell copies of the Software, and to permit persons to whom the
|
|
2397
|
+
> > > Software is furnished to do so, subject to the following conditions:
|
|
2398
|
+
> > >
|
|
2399
|
+
> > > The above copyright notice and this permission notice shall be included in
|
|
2400
|
+
> > > all copies or substantial portions of the Software.
|
|
2401
|
+
> > >
|
|
2402
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2403
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2404
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2405
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2406
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
2407
|
+
> > > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
2408
|
+
> > > DEALINGS IN THE SOFTWARE.
|
|
2409
|
+
> > >
|
|
2410
|
+
> > >
|
|
2411
|
+
> > >
|
|
2412
|
+
> > > # Licenses of bundled dependencies
|
|
2413
|
+
> > > The published @visulima/path artifact additionally contains code with the following licenses:
|
|
2414
|
+
> > > MIT
|
|
2415
|
+
> > >
|
|
2416
|
+
> > > # Bundled dependencies:
|
|
2417
|
+
> > > ## binary-extensions
|
|
2418
|
+
> > > License: MIT
|
|
2419
|
+
> > > By: Sindre Sorhus
|
|
2420
|
+
> > > Repository: sindresorhus/binary-extensions
|
|
2421
|
+
> > >
|
|
2422
|
+
> > > > MIT License
|
|
2423
|
+
> > > >
|
|
2424
|
+
> > > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2425
|
+
> > > > Copyright (c) Paul Miller (https://paulmillr.com)
|
|
2426
|
+
> > > >
|
|
2427
|
+
> > > > 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:
|
|
2428
|
+
> > > >
|
|
2429
|
+
> > > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2430
|
+
> > > >
|
|
2431
|
+
> > > > 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.
|
|
2432
|
+
> >
|
|
2433
|
+
> > ---------------------------------------
|
|
2434
|
+
> >
|
|
2435
|
+
> > ## is-plain-obj
|
|
2436
|
+
> > License: MIT
|
|
2437
|
+
> > By: Sindre Sorhus
|
|
2438
|
+
> > Repository: sindresorhus/is-plain-obj
|
|
2439
|
+
> >
|
|
2440
|
+
> > > MIT License
|
|
2441
|
+
> > >
|
|
2442
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2443
|
+
> > >
|
|
2444
|
+
> > > 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:
|
|
2445
|
+
> > >
|
|
2446
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2447
|
+
> > >
|
|
2448
|
+
> > > 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.
|
|
2449
|
+
|
|
2450
|
+
---------------------------------------
|
|
2451
|
+
|
|
2452
|
+
## @visulima/error
|
|
2453
|
+
License: MIT
|
|
2454
|
+
By: Daniel Bannert
|
|
2455
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
2456
|
+
|
|
2457
|
+
> MIT License
|
|
2458
|
+
>
|
|
2459
|
+
> Copyright (c) 2025 visulima
|
|
2460
|
+
>
|
|
2461
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2462
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
2463
|
+
> in the Software without restriction, including without limitation the rights
|
|
2464
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2465
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
2466
|
+
> furnished to do so, subject to the following conditions:
|
|
2467
|
+
>
|
|
2468
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
2469
|
+
> copies or substantial portions of the Software.
|
|
2470
|
+
>
|
|
2471
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2472
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2473
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2474
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2475
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2476
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2477
|
+
> SOFTWARE.
|
|
2478
|
+
>
|
|
2479
|
+
>
|
|
2480
|
+
>
|
|
2481
|
+
> # Licenses of bundled dependencies
|
|
2482
|
+
> The published @visulima/error artifact additionally contains code with the following licenses:
|
|
2483
|
+
> MIT
|
|
2484
|
+
>
|
|
2485
|
+
> # Bundled dependencies:
|
|
2486
|
+
> ## @visulima/path
|
|
2487
|
+
> License: MIT
|
|
2488
|
+
> By: Daniel Bannert
|
|
2489
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
2490
|
+
>
|
|
2491
|
+
> > MIT License
|
|
2492
|
+
> >
|
|
2493
|
+
> > Copyright (c) 2025 visulima
|
|
2494
|
+
> >
|
|
2495
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2496
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
2497
|
+
> > in the Software without restriction, including without limitation the rights
|
|
2498
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2499
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
2500
|
+
> > furnished to do so, subject to the following conditions:
|
|
2501
|
+
> >
|
|
2502
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
2503
|
+
> > copies or substantial portions of the Software.
|
|
2504
|
+
> >
|
|
2505
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2506
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2507
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2508
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2509
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2510
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2511
|
+
> > SOFTWARE.
|
|
2512
|
+
> >
|
|
2513
|
+
> > ---
|
|
2514
|
+
> >
|
|
2515
|
+
> > MIT License
|
|
2516
|
+
> >
|
|
2517
|
+
> > Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
|
|
2518
|
+
> >
|
|
2519
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2520
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
2521
|
+
> > in the Software without restriction, including without limitation the rights
|
|
2522
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2523
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
2524
|
+
> > furnished to do so, subject to the following conditions:
|
|
2525
|
+
> >
|
|
2526
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
2527
|
+
> > copies or substantial portions of the Software.
|
|
2528
|
+
> >
|
|
2529
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2530
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2531
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2532
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2533
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2534
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2535
|
+
> > SOFTWARE.
|
|
2536
|
+
> >
|
|
2537
|
+
> > ---
|
|
2538
|
+
> >
|
|
2539
|
+
> > Copyright Joyent, Inc. and other Node contributors.
|
|
2540
|
+
> >
|
|
2541
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a
|
|
2542
|
+
> > copy of this software and associated documentation files (the
|
|
2543
|
+
> > "Software"), to deal in the Software without restriction, including
|
|
2544
|
+
> > without limitation the rights to use, copy, modify, merge, publish,
|
|
2545
|
+
> > distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
2546
|
+
> > persons to whom the Software is furnished to do so, subject to the
|
|
2547
|
+
> > following conditions:
|
|
2548
|
+
> >
|
|
2549
|
+
> > The above copyright notice and this permission notice shall be included
|
|
2550
|
+
> > in all copies or substantial portions of the Software.
|
|
2551
|
+
> >
|
|
2552
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
2553
|
+
> > OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2554
|
+
> > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
2555
|
+
> > NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
2556
|
+
> > DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
2557
|
+
> > OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
2558
|
+
> > USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2559
|
+
> >
|
|
2560
|
+
> > ---
|
|
2561
|
+
> >
|
|
2562
|
+
> > Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
|
|
2563
|
+
> >
|
|
2564
|
+
> > The MIT License (MIT)
|
|
2565
|
+
> >
|
|
2566
|
+
> > Copyright (c) 2023-present Fabio Spampinato
|
|
2567
|
+
> >
|
|
2568
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a
|
|
2569
|
+
> > copy of this software and associated documentation files (the "Software"),
|
|
2570
|
+
> > to deal in the Software without restriction, including without limitation
|
|
2571
|
+
> > the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
2572
|
+
> > and/or sell copies of the Software, and to permit persons to whom the
|
|
2573
|
+
> > Software is furnished to do so, subject to the following conditions:
|
|
2574
|
+
> >
|
|
2575
|
+
> > The above copyright notice and this permission notice shall be included in
|
|
2576
|
+
> > all copies or substantial portions of the Software.
|
|
2577
|
+
> >
|
|
2578
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2579
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2580
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2581
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2582
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
2583
|
+
> > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
2584
|
+
> > DEALINGS IN THE SOFTWARE.
|
|
2585
|
+
> >
|
|
2586
|
+
> >
|
|
2587
|
+
> >
|
|
2588
|
+
> > # Licenses of bundled dependencies
|
|
2589
|
+
> > The published @visulima/path artifact additionally contains code with the following licenses:
|
|
2590
|
+
> > MIT
|
|
2591
|
+
> >
|
|
2592
|
+
> > # Bundled dependencies:
|
|
2593
|
+
> > ## binary-extensions
|
|
2594
|
+
> > License: MIT
|
|
2595
|
+
> > By: Sindre Sorhus
|
|
2596
|
+
> > Repository: sindresorhus/binary-extensions
|
|
2597
|
+
> >
|
|
2598
|
+
> > > MIT License
|
|
2599
|
+
> > >
|
|
2600
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2601
|
+
> > > Copyright (c) Paul Miller (https://paulmillr.com)
|
|
2602
|
+
> > >
|
|
2603
|
+
> > > 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:
|
|
2604
|
+
> > >
|
|
2605
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2606
|
+
> > >
|
|
2607
|
+
> > > 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.
|
|
2608
|
+
>
|
|
2609
|
+
> ---------------------------------------
|
|
2610
|
+
>
|
|
2611
|
+
> ## is-plain-obj
|
|
2612
|
+
> License: MIT
|
|
2613
|
+
> By: Sindre Sorhus
|
|
2614
|
+
> Repository: sindresorhus/is-plain-obj
|
|
2615
|
+
>
|
|
2616
|
+
> > MIT License
|
|
2617
|
+
> >
|
|
2618
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2619
|
+
> >
|
|
2620
|
+
> > 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:
|
|
2621
|
+
> >
|
|
2622
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2623
|
+
> >
|
|
2624
|
+
> > 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.
|
|
2625
|
+
|
|
2626
|
+
---------------------------------------
|
|
2627
|
+
|
|
2628
|
+
## @visulima/path
|
|
2629
|
+
License: MIT
|
|
2630
|
+
By: Daniel Bannert
|
|
2631
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
2632
|
+
|
|
2633
|
+
> MIT License
|
|
2634
|
+
>
|
|
2635
|
+
> Copyright (c) 2025 visulima
|
|
2636
|
+
>
|
|
2637
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2638
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
2639
|
+
> in the Software without restriction, including without limitation the rights
|
|
2640
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2641
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
2642
|
+
> furnished to do so, subject to the following conditions:
|
|
2643
|
+
>
|
|
2644
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
2645
|
+
> copies or substantial portions of the Software.
|
|
2646
|
+
>
|
|
2647
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2648
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2649
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2650
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2651
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2652
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2653
|
+
> SOFTWARE.
|
|
2654
|
+
>
|
|
2655
|
+
> ---
|
|
2656
|
+
>
|
|
2657
|
+
> MIT License
|
|
2658
|
+
>
|
|
2659
|
+
> Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
|
|
2660
|
+
>
|
|
2661
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2662
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
2663
|
+
> in the Software without restriction, including without limitation the rights
|
|
2664
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2665
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
2666
|
+
> furnished to do so, subject to the following conditions:
|
|
2667
|
+
>
|
|
2668
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
2669
|
+
> copies or substantial portions of the Software.
|
|
2670
|
+
>
|
|
2671
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2672
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2673
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2674
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2675
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2676
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2677
|
+
> SOFTWARE.
|
|
2678
|
+
>
|
|
2679
|
+
> ---
|
|
2680
|
+
>
|
|
2681
|
+
> Copyright Joyent, Inc. and other Node contributors.
|
|
2682
|
+
>
|
|
2683
|
+
> Permission is hereby granted, free of charge, to any person obtaining a
|
|
2684
|
+
> copy of this software and associated documentation files (the
|
|
2685
|
+
> "Software"), to deal in the Software without restriction, including
|
|
2686
|
+
> without limitation the rights to use, copy, modify, merge, publish,
|
|
2687
|
+
> distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
2688
|
+
> persons to whom the Software is furnished to do so, subject to the
|
|
2689
|
+
> following conditions:
|
|
2690
|
+
>
|
|
2691
|
+
> The above copyright notice and this permission notice shall be included
|
|
2692
|
+
> in all copies or substantial portions of the Software.
|
|
2693
|
+
>
|
|
2694
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
2695
|
+
> OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2696
|
+
> MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
2697
|
+
> NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
2698
|
+
> DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
2699
|
+
> OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
2700
|
+
> USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2701
|
+
>
|
|
2702
|
+
> ---
|
|
2703
|
+
>
|
|
2704
|
+
> Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
|
|
2705
|
+
>
|
|
2706
|
+
> The MIT License (MIT)
|
|
2707
|
+
>
|
|
2708
|
+
> Copyright (c) 2023-present Fabio Spampinato
|
|
2709
|
+
>
|
|
2710
|
+
> Permission is hereby granted, free of charge, to any person obtaining a
|
|
2711
|
+
> copy of this software and associated documentation files (the "Software"),
|
|
2712
|
+
> to deal in the Software without restriction, including without limitation
|
|
2713
|
+
> the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
2714
|
+
> and/or sell copies of the Software, and to permit persons to whom the
|
|
2715
|
+
> Software is furnished to do so, subject to the following conditions:
|
|
2716
|
+
>
|
|
2717
|
+
> The above copyright notice and this permission notice shall be included in
|
|
2718
|
+
> all copies or substantial portions of the Software.
|
|
2719
|
+
>
|
|
2720
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2721
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2722
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2723
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2724
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
2725
|
+
> FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
2726
|
+
> DEALINGS IN THE SOFTWARE.
|
|
2727
|
+
>
|
|
2728
|
+
>
|
|
2729
|
+
>
|
|
2730
|
+
> # Licenses of bundled dependencies
|
|
2731
|
+
> The published @visulima/path artifact additionally contains code with the following licenses:
|
|
2732
|
+
> MIT
|
|
2733
|
+
>
|
|
2734
|
+
> # Bundled dependencies:
|
|
2735
|
+
> ## binary-extensions
|
|
2736
|
+
> License: MIT
|
|
2737
|
+
> By: Sindre Sorhus
|
|
2738
|
+
> Repository: sindresorhus/binary-extensions
|
|
2739
|
+
>
|
|
2740
|
+
> > MIT License
|
|
2741
|
+
> >
|
|
2742
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2743
|
+
> > Copyright (c) Paul Miller (https://paulmillr.com)
|
|
2744
|
+
> >
|
|
2745
|
+
> > 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:
|
|
2746
|
+
> >
|
|
2747
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2748
|
+
> >
|
|
2749
|
+
> > 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.
|
|
2750
|
+
|
|
2751
|
+
---------------------------------------
|
|
2752
|
+
|
|
2753
|
+
## @visulima/string
|
|
2754
|
+
License: MIT
|
|
2755
|
+
By: Daniel Bannert
|
|
2756
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
2757
|
+
|
|
2758
|
+
> MIT License
|
|
2759
|
+
>
|
|
2760
|
+
> Copyright (c) 2025 visulima
|
|
2761
|
+
>
|
|
2762
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2763
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
2764
|
+
> in the Software without restriction, including without limitation the rights
|
|
2765
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2766
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
2767
|
+
> furnished to do so, subject to the following conditions:
|
|
2768
|
+
>
|
|
2769
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
2770
|
+
> copies or substantial portions of the Software.
|
|
2771
|
+
>
|
|
2772
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2773
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2774
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2775
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2776
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2777
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2778
|
+
> SOFTWARE.
|
|
2779
|
+
>
|
|
2780
|
+
>
|
|
2781
|
+
>
|
|
2782
|
+
> # Licenses of bundled dependencies
|
|
2783
|
+
> The published @visulima/string artifact additionally contains code with the following licenses:
|
|
2784
|
+
> MIT
|
|
2785
|
+
>
|
|
2786
|
+
> # Bundled dependencies:
|
|
2787
|
+
> ## emoji-regex-xs
|
|
2788
|
+
> License: MIT
|
|
2789
|
+
> By: Steven Levithan
|
|
2790
|
+
> Repository: git+https://github.com/slevithan/emoji-regex-xs.git
|
|
2791
|
+
>
|
|
2792
|
+
> > MIT License
|
|
2793
|
+
> >
|
|
2794
|
+
> > Copyright (c) 2025 Steven Levithan
|
|
2795
|
+
> >
|
|
2796
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2797
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
2798
|
+
> > in the Software without restriction, including without limitation the rights
|
|
2799
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2800
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
2801
|
+
> > furnished to do so, subject to the following conditions:
|
|
2802
|
+
> >
|
|
2803
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
2804
|
+
> > copies or substantial portions of the Software.
|
|
2805
|
+
> >
|
|
2806
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2807
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2808
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2809
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2810
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2811
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2812
|
+
> > SOFTWARE.
|
|
2813
|
+
>
|
|
2814
|
+
> ---------------------------------------
|
|
2815
|
+
>
|
|
2816
|
+
> ## fastest-levenshtein
|
|
2817
|
+
> License: MIT
|
|
2818
|
+
> By: Kasper U. Weihe
|
|
2819
|
+
> Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
2820
|
+
>
|
|
2821
|
+
> > MIT License
|
|
2822
|
+
> >
|
|
2823
|
+
> > Copyright (c) 2020 Kasper Unn Weihe
|
|
2824
|
+
> >
|
|
2825
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2826
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
2827
|
+
> > in the Software without restriction, including without limitation the rights
|
|
2828
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2829
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
2830
|
+
> > furnished to do so, subject to the following conditions:
|
|
2831
|
+
> >
|
|
2832
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
2833
|
+
> > copies or substantial portions of the Software.
|
|
2834
|
+
> >
|
|
2835
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2836
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2837
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2838
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2839
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2840
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2841
|
+
> > SOFTWARE.
|
|
2842
|
+
>
|
|
2843
|
+
> ---------------------------------------
|
|
2844
|
+
>
|
|
2845
|
+
> ## get-east-asian-width
|
|
2846
|
+
> License: MIT
|
|
2847
|
+
> By: Sindre Sorhus
|
|
2848
|
+
> Repository: sindresorhus/get-east-asian-width
|
|
2849
|
+
>
|
|
2850
|
+
> > MIT License
|
|
2851
|
+
> >
|
|
2852
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
2853
|
+
> >
|
|
2854
|
+
> > 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:
|
|
2855
|
+
> >
|
|
2856
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2857
|
+
> >
|
|
2858
|
+
> > 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.
|
|
2859
|
+
>
|
|
2860
|
+
>
|
|
2861
|
+
>
|
|
2862
|
+
>
|
|
2863
|
+
>
|
|
2864
|
+
> # Licenses of bundled types
|
|
2865
|
+
> The published @visulima/string artifact additionally contains code with the following licenses:
|
|
2866
|
+
> MIT
|
|
2867
|
+
>
|
|
2868
|
+
> # Bundled types:
|
|
2869
|
+
> ## fastest-levenshtein
|
|
2870
|
+
> License: MIT
|
|
2871
|
+
> By: Kasper U. Weihe
|
|
2872
|
+
> Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
2873
|
+
>
|
|
2874
|
+
> > MIT License
|
|
2875
|
+
> >
|
|
2876
|
+
> > Copyright (c) 2020 Kasper Unn Weihe
|
|
2877
|
+
> >
|
|
2878
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2879
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
2880
|
+
> > in the Software without restriction, including without limitation the rights
|
|
2881
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2882
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
2883
|
+
> > furnished to do so, subject to the following conditions:
|
|
2884
|
+
> >
|
|
2885
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
2886
|
+
> > copies or substantial portions of the Software.
|
|
2887
|
+
> >
|
|
2888
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2889
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2890
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2891
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2892
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2893
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2894
|
+
> > SOFTWARE.
|
|
2895
|
+
|
|
2896
|
+
---------------------------------------
|
|
2897
|
+
|
|
2898
|
+
## ci-info
|
|
2899
|
+
License: MIT
|
|
2900
|
+
By: Thomas Watson Steen, Sibiraj
|
|
2901
|
+
Repository: github:watson/ci-info
|
|
2902
|
+
|
|
2903
|
+
> The MIT License (MIT)
|
|
2904
|
+
>
|
|
2905
|
+
> Copyright (c) 2016 Thomas Watson Steen
|
|
2906
|
+
>
|
|
2907
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2908
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
2909
|
+
> in the Software without restriction, including without limitation the rights
|
|
2910
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2911
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
2912
|
+
> furnished to do so, subject to the following conditions:
|
|
2913
|
+
>
|
|
2914
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
2915
|
+
> copies or substantial portions of the Software.
|
|
2916
|
+
>
|
|
2917
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2918
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2919
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2920
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2921
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2922
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2923
|
+
> SOFTWARE.
|
|
2924
|
+
|
|
2925
|
+
<!-- /DEPENDENCIES -->
|
|
2926
|
+
|
|
2927
|
+
---
|
|
2928
|
+
|
|
2929
|
+
## @visulima/error
|
|
2930
|
+
|
|
2931
|
+
License: MIT
|
|
2932
|
+
By: Daniel Bannert
|
|
2933
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
2934
|
+
|
|
2935
|
+
> MIT License
|
|
2936
|
+
>
|
|
2937
|
+
> Copyright (c) 2025 visulima
|
|
2938
|
+
>
|
|
2939
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2940
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
2941
|
+
> in the Software without restriction, including without limitation the rights
|
|
2942
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2943
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
2944
|
+
> furnished to do so, subject to the following conditions:
|
|
2945
|
+
>
|
|
2946
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
2947
|
+
> copies or substantial portions of the Software.
|
|
2948
|
+
>
|
|
2949
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2950
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2951
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2952
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2953
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2954
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2955
|
+
> SOFTWARE.
|
|
2956
|
+
>
|
|
2957
|
+
> <!-- DEPENDENCIES -->
|
|
2958
|
+
|
|
2959
|
+
# Licenses of bundled dependencies
|
|
2960
|
+
The published @visulima/cerebro artifact additionally contains code with the following licenses:
|
|
2961
|
+
MIT
|
|
2962
|
+
|
|
2963
|
+
# Bundled dependencies:
|
|
2964
|
+
## @visulima/command-line-args
|
|
2965
|
+
License: MIT
|
|
2966
|
+
By: Daniel Bannert
|
|
2967
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
2968
|
+
|
|
2969
|
+
> MIT License
|
|
2970
|
+
>
|
|
2971
|
+
> Copyright (c) 2025 visulima
|
|
2972
|
+
>
|
|
2973
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2974
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
2975
|
+
> in the Software without restriction, including without limitation the rights
|
|
2976
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2977
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
2978
|
+
> furnished to do so, subject to the following conditions:
|
|
2979
|
+
>
|
|
2980
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
2981
|
+
> copies or substantial portions of the Software.
|
|
2982
|
+
>
|
|
2983
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2984
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2985
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2986
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2987
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2988
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2989
|
+
> SOFTWARE.
|
|
2990
|
+
>
|
|
2991
|
+
> ---
|
|
2992
|
+
>
|
|
2993
|
+
> The MIT License (MIT)
|
|
2994
|
+
>
|
|
2995
|
+
> Copyright (c) 2014-24 Lloyd Brookes <opensource@75lb.com>
|
|
2996
|
+
>
|
|
2997
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2998
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
2999
|
+
> in the Software without restriction, including without limitation the rights
|
|
3000
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3001
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
3002
|
+
> furnished to do so, subject to the following conditions:
|
|
3003
|
+
>
|
|
3004
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
3005
|
+
> copies or substantial portions of the Software.
|
|
3006
|
+
>
|
|
3007
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3008
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3009
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3010
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3011
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3012
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3013
|
+
> SOFTWARE.
|
|
3014
|
+
>
|
|
3015
|
+
>
|
|
3016
|
+
>
|
|
3017
|
+
> # Licenses of bundled dependencies
|
|
3018
|
+
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
3019
|
+
> MIT
|
|
3020
|
+
>
|
|
3021
|
+
> # Bundled dependencies:
|
|
3022
|
+
> ## @visulima/error
|
|
3023
|
+
> License: MIT
|
|
3024
|
+
> By: Daniel Bannert
|
|
3025
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
3026
|
+
>
|
|
3027
|
+
> > MIT License
|
|
3028
|
+
> >
|
|
3029
|
+
> > Copyright (c) 2025 visulima
|
|
3030
|
+
> >
|
|
3031
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3032
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
3033
|
+
> > in the Software without restriction, including without limitation the rights
|
|
3034
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3035
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
3036
|
+
> > furnished to do so, subject to the following conditions:
|
|
3037
|
+
> >
|
|
3038
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
3039
|
+
> > copies or substantial portions of the Software.
|
|
3040
|
+
> >
|
|
3041
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3042
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3043
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3044
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3045
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3046
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3047
|
+
> > SOFTWARE.
|
|
3048
|
+
> >
|
|
3049
|
+
> >
|
|
3050
|
+
> >
|
|
3051
|
+
> > # Licenses of bundled dependencies
|
|
3052
|
+
> > The published @visulima/error artifact additionally contains code with the following licenses:
|
|
3053
|
+
> > MIT
|
|
3054
|
+
> >
|
|
3055
|
+
> > # Bundled dependencies:
|
|
3056
|
+
> > ## @visulima/path
|
|
3057
|
+
> > License: MIT
|
|
3058
|
+
> > By: Daniel Bannert
|
|
3059
|
+
> > Repository: git+https://github.com/visulima/visulima.git
|
|
3060
|
+
> >
|
|
3061
|
+
> > > MIT License
|
|
3062
|
+
> > >
|
|
3063
|
+
> > > Copyright (c) 2025 visulima
|
|
3064
|
+
> > >
|
|
3065
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3066
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
3067
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
3068
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3069
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
3070
|
+
> > > furnished to do so, subject to the following conditions:
|
|
3071
|
+
> > >
|
|
3072
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
3073
|
+
> > > copies or substantial portions of the Software.
|
|
3074
|
+
> > >
|
|
3075
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3076
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3077
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3078
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3079
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3080
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3081
|
+
> > > SOFTWARE.
|
|
3082
|
+
> > >
|
|
3083
|
+
> > > ---
|
|
3084
|
+
> > >
|
|
3085
|
+
> > > MIT License
|
|
3086
|
+
> > >
|
|
3087
|
+
> > > Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
|
|
3088
|
+
> > >
|
|
3089
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3090
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
3091
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
3092
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3093
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
3094
|
+
> > > furnished to do so, subject to the following conditions:
|
|
3095
|
+
> > >
|
|
3096
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
3097
|
+
> > > copies or substantial portions of the Software.
|
|
3098
|
+
> > >
|
|
3099
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3100
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3101
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3102
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3103
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3104
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3105
|
+
> > > SOFTWARE.
|
|
3106
|
+
> > >
|
|
3107
|
+
> > > ---
|
|
3108
|
+
> > >
|
|
3109
|
+
> > > Copyright Joyent, Inc. and other Node contributors.
|
|
3110
|
+
> > >
|
|
3111
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a
|
|
3112
|
+
> > > copy of this software and associated documentation files (the
|
|
3113
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
3114
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
3115
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
3116
|
+
> > > persons to whom the Software is furnished to do so, subject to the
|
|
3117
|
+
> > > following conditions:
|
|
3118
|
+
> > >
|
|
3119
|
+
> > > The above copyright notice and this permission notice shall be included
|
|
3120
|
+
> > > in all copies or substantial portions of the Software.
|
|
3121
|
+
> > >
|
|
3122
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
3123
|
+
> > > OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3124
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
3125
|
+
> > > NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
3126
|
+
> > > DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
3127
|
+
> > > OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
3128
|
+
> > > USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3129
|
+
> > >
|
|
3130
|
+
> > > ---
|
|
3131
|
+
> > >
|
|
3132
|
+
> > > Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
|
|
3133
|
+
> > >
|
|
3134
|
+
> > > The MIT License (MIT)
|
|
3135
|
+
> > >
|
|
3136
|
+
> > > Copyright (c) 2023-present Fabio Spampinato
|
|
3137
|
+
> > >
|
|
3138
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a
|
|
3139
|
+
> > > copy of this software and associated documentation files (the "Software"),
|
|
3140
|
+
> > > to deal in the Software without restriction, including without limitation
|
|
3141
|
+
> > > the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
3142
|
+
> > > and/or sell copies of the Software, and to permit persons to whom the
|
|
3143
|
+
> > > Software is furnished to do so, subject to the following conditions:
|
|
3144
|
+
> > >
|
|
3145
|
+
> > > The above copyright notice and this permission notice shall be included in
|
|
3146
|
+
> > > all copies or substantial portions of the Software.
|
|
3147
|
+
> > >
|
|
3148
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3149
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3150
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3151
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3152
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
3153
|
+
> > > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3154
|
+
> > > DEALINGS IN THE SOFTWARE.
|
|
3155
|
+
> > >
|
|
3156
|
+
> > >
|
|
3157
|
+
> > >
|
|
3158
|
+
> > > # Licenses of bundled dependencies
|
|
3159
|
+
> > > The published @visulima/path artifact additionally contains code with the following licenses:
|
|
3160
|
+
> > > MIT
|
|
3161
|
+
> > >
|
|
3162
|
+
> > > # Bundled dependencies:
|
|
3163
|
+
> > > ## binary-extensions
|
|
3164
|
+
> > > License: MIT
|
|
3165
|
+
> > > By: Sindre Sorhus
|
|
3166
|
+
> > > Repository: sindresorhus/binary-extensions
|
|
3167
|
+
> > >
|
|
3168
|
+
> > > > MIT License
|
|
3169
|
+
> > > >
|
|
3170
|
+
> > > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
3171
|
+
> > > > Copyright (c) Paul Miller (https://paulmillr.com)
|
|
3172
|
+
> > > >
|
|
3173
|
+
> > > > 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:
|
|
3174
|
+
> > > >
|
|
3175
|
+
> > > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3176
|
+
> > > >
|
|
3177
|
+
> > > > 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.
|
|
3178
|
+
> >
|
|
3179
|
+
> > ---------------------------------------
|
|
3180
|
+
> >
|
|
3181
|
+
> > ## is-plain-obj
|
|
3182
|
+
> > License: MIT
|
|
3183
|
+
> > By: Sindre Sorhus
|
|
3184
|
+
> > Repository: sindresorhus/is-plain-obj
|
|
3185
|
+
> >
|
|
3186
|
+
> > > MIT License
|
|
3187
|
+
> > >
|
|
3188
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
3189
|
+
> > >
|
|
3190
|
+
> > > 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:
|
|
3191
|
+
> > >
|
|
3192
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3193
|
+
> > >
|
|
3194
|
+
> > > 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.
|
|
3195
|
+
>
|
|
3196
|
+
>
|
|
3197
|
+
>
|
|
3198
|
+
>
|
|
3199
|
+
>
|
|
3200
|
+
> # Licenses of bundled types
|
|
3201
|
+
>
|
|
3202
|
+
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
3203
|
+
> MIT
|
|
3204
|
+
>
|
|
3205
|
+
> # Bundled types:
|
|
3206
|
+
>
|
|
3207
|
+
> ## @visulima/error
|
|
3208
|
+
>
|
|
3209
|
+
> License: MIT
|
|
3210
|
+
> By: Daniel Bannert
|
|
3211
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
3212
|
+
>
|
|
3213
|
+
> > MIT License
|
|
3214
|
+
> >
|
|
3215
|
+
> > Copyright (c) 2025 visulima
|
|
3216
|
+
> >
|
|
3217
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3218
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
3219
|
+
> > in the Software without restriction, including without limitation the rights
|
|
3220
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3221
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
3222
|
+
> > furnished to do so, subject to the following conditions:
|
|
3223
|
+
> >
|
|
3224
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
3225
|
+
> > copies or substantial portions of the Software.
|
|
3226
|
+
> >
|
|
3227
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3228
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3229
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3230
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3231
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3232
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3233
|
+
> > SOFTWARE.
|
|
3234
|
+
> >
|
|
3235
|
+
> >
|
|
3236
|
+
>
|
|
3237
|
+
> # Licenses of bundled dependencies
|
|
3238
|
+
> The published @visulima/command-line-args artifact additionally contains code with the following licenses:
|
|
3239
|
+
> MIT
|
|
3240
|
+
>
|
|
3241
|
+
> # Bundled dependencies:
|
|
3242
|
+
> ## @visulima/error
|
|
3243
|
+
> License: MIT
|
|
3244
|
+
> By: Daniel Bannert
|
|
3245
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
3246
|
+
>
|
|
3247
|
+
> > MIT License
|
|
3248
|
+
> >
|
|
3249
|
+
> > Copyright (c) 2025 visulima
|
|
3250
|
+
> >
|
|
3251
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3252
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
3253
|
+
> > in the Software without restriction, including without limitation the rights
|
|
3254
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3255
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
3256
|
+
> > furnished to do so, subject to the following conditions:
|
|
3257
|
+
> >
|
|
3258
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
3259
|
+
> > copies or substantial portions of the Software.
|
|
3260
|
+
> >
|
|
3261
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3262
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3263
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3264
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3265
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3266
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3267
|
+
> > SOFTWARE.
|
|
3268
|
+
> >
|
|
3269
|
+
> >
|
|
3270
|
+
> >
|
|
3271
|
+
> > # Licenses of bundled dependencies
|
|
3272
|
+
> > The published @visulima/error artifact additionally contains code with the following licenses:
|
|
3273
|
+
> > MIT
|
|
3274
|
+
> >
|
|
3275
|
+
> > # Bundled dependencies:
|
|
3276
|
+
> > ## @visulima/path
|
|
3277
|
+
> > License: MIT
|
|
3278
|
+
> > By: Daniel Bannert
|
|
3279
|
+
> > Repository: git+https://github.com/visulima/visulima.git
|
|
3280
|
+
> >
|
|
3281
|
+
> > > MIT License
|
|
3282
|
+
> > >
|
|
3283
|
+
> > > Copyright (c) 2025 visulima
|
|
3284
|
+
> > >
|
|
3285
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3286
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
3287
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
3288
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3289
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
3290
|
+
> > > furnished to do so, subject to the following conditions:
|
|
3291
|
+
> > >
|
|
3292
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
3293
|
+
> > > copies or substantial portions of the Software.
|
|
3294
|
+
> > >
|
|
3295
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3296
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3297
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3298
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3299
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3300
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3301
|
+
> > > SOFTWARE.
|
|
3302
|
+
> > >
|
|
3303
|
+
> > > ---
|
|
3304
|
+
> > >
|
|
3305
|
+
> > > MIT License
|
|
3306
|
+
> > >
|
|
3307
|
+
> > > Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
|
|
3308
|
+
> > >
|
|
3309
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3310
|
+
> > > of this software and associated documentation files (the "Software"), to deal
|
|
3311
|
+
> > > in the Software without restriction, including without limitation the rights
|
|
3312
|
+
> > > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3313
|
+
> > > copies of the Software, and to permit persons to whom the Software is
|
|
3314
|
+
> > > furnished to do so, subject to the following conditions:
|
|
3315
|
+
> > >
|
|
3316
|
+
> > > The above copyright notice and this permission notice shall be included in all
|
|
3317
|
+
> > > copies or substantial portions of the Software.
|
|
3318
|
+
> > >
|
|
3319
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3320
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3321
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3322
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3323
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3324
|
+
> > > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3325
|
+
> > > SOFTWARE.
|
|
3326
|
+
> > >
|
|
3327
|
+
> > > ---
|
|
3328
|
+
> > >
|
|
3329
|
+
> > > Copyright Joyent, Inc. and other Node contributors.
|
|
3330
|
+
> > >
|
|
3331
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a
|
|
3332
|
+
> > > copy of this software and associated documentation files (the
|
|
3333
|
+
> > > "Software"), to deal in the Software without restriction, including
|
|
3334
|
+
> > > without limitation the rights to use, copy, modify, merge, publish,
|
|
3335
|
+
> > > distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
3336
|
+
> > > persons to whom the Software is furnished to do so, subject to the
|
|
3337
|
+
> > > following conditions:
|
|
3338
|
+
> > >
|
|
3339
|
+
> > > The above copyright notice and this permission notice shall be included
|
|
3340
|
+
> > > in all copies or substantial portions of the Software.
|
|
3341
|
+
> > >
|
|
3342
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
3343
|
+
> > > OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3344
|
+
> > > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
3345
|
+
> > > NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
3346
|
+
> > > DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
3347
|
+
> > > OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
3348
|
+
> > > USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3349
|
+
> > >
|
|
3350
|
+
> > > ---
|
|
3351
|
+
> > >
|
|
3352
|
+
> > > Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
|
|
3353
|
+
> > >
|
|
3354
|
+
> > > The MIT License (MIT)
|
|
3355
|
+
> > >
|
|
3356
|
+
> > > Copyright (c) 2023-present Fabio Spampinato
|
|
3357
|
+
> > >
|
|
3358
|
+
> > > Permission is hereby granted, free of charge, to any person obtaining a
|
|
3359
|
+
> > > copy of this software and associated documentation files (the "Software"),
|
|
3360
|
+
> > > to deal in the Software without restriction, including without limitation
|
|
3361
|
+
> > > the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
3362
|
+
> > > and/or sell copies of the Software, and to permit persons to whom the
|
|
3363
|
+
> > > Software is furnished to do so, subject to the following conditions:
|
|
3364
|
+
> > >
|
|
3365
|
+
> > > The above copyright notice and this permission notice shall be included in
|
|
3366
|
+
> > > all copies or substantial portions of the Software.
|
|
3367
|
+
> > >
|
|
3368
|
+
> > > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3369
|
+
> > > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3370
|
+
> > > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3371
|
+
> > > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3372
|
+
> > > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
3373
|
+
> > > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3374
|
+
> > > DEALINGS IN THE SOFTWARE.
|
|
3375
|
+
> > >
|
|
3376
|
+
> > >
|
|
3377
|
+
> > >
|
|
3378
|
+
> > > # Licenses of bundled dependencies
|
|
3379
|
+
> > > The published @visulima/path artifact additionally contains code with the following licenses:
|
|
3380
|
+
> > > MIT
|
|
3381
|
+
> > >
|
|
3382
|
+
> > > # Bundled dependencies:
|
|
3383
|
+
> > > ## binary-extensions
|
|
3384
|
+
> > > License: MIT
|
|
3385
|
+
> > > By: Sindre Sorhus
|
|
3386
|
+
> > > Repository: sindresorhus/binary-extensions
|
|
3387
|
+
> > >
|
|
3388
|
+
> > > > MIT License
|
|
3389
|
+
> > > >
|
|
3390
|
+
> > > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
3391
|
+
> > > > Copyright (c) Paul Miller (https://paulmillr.com)
|
|
3392
|
+
> > > >
|
|
3393
|
+
> > > > 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:
|
|
3394
|
+
> > > >
|
|
3395
|
+
> > > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3396
|
+
> > > >
|
|
3397
|
+
> > > > 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.
|
|
3398
|
+
> >
|
|
3399
|
+
> > ---------------------------------------
|
|
3400
|
+
> >
|
|
3401
|
+
> > ## is-plain-obj
|
|
3402
|
+
> > License: MIT
|
|
3403
|
+
> > By: Sindre Sorhus
|
|
3404
|
+
> > Repository: sindresorhus/is-plain-obj
|
|
3405
|
+
> >
|
|
3406
|
+
> > > MIT License
|
|
3407
|
+
> > >
|
|
3408
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
3409
|
+
> > >
|
|
3410
|
+
> > > 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:
|
|
3411
|
+
> > >
|
|
3412
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3413
|
+
> > >
|
|
3414
|
+
> > > 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.
|
|
3415
|
+
|
|
3416
|
+
---------------------------------------
|
|
3417
|
+
|
|
3418
|
+
## @visulima/error
|
|
3419
|
+
License: MIT
|
|
3420
|
+
By: Daniel Bannert
|
|
3421
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
3422
|
+
|
|
3423
|
+
> MIT License
|
|
3424
|
+
>
|
|
3425
|
+
> Copyright (c) 2025 visulima
|
|
3426
|
+
>
|
|
3427
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3428
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
3429
|
+
> in the Software without restriction, including without limitation the rights
|
|
3430
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3431
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
3432
|
+
> furnished to do so, subject to the following conditions:
|
|
3433
|
+
>
|
|
3434
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
3435
|
+
> copies or substantial portions of the Software.
|
|
3436
|
+
>
|
|
3437
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3438
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3439
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3440
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3441
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3442
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3443
|
+
> SOFTWARE.
|
|
3444
|
+
>
|
|
3445
|
+
>
|
|
3446
|
+
>
|
|
3447
|
+
> # Licenses of bundled dependencies
|
|
3448
|
+
> The published @visulima/error artifact additionally contains code with the following licenses:
|
|
3449
|
+
> MIT
|
|
3450
|
+
>
|
|
3451
|
+
> # Bundled dependencies:
|
|
3452
|
+
> ## @visulima/path
|
|
3453
|
+
> License: MIT
|
|
3454
|
+
> By: Daniel Bannert
|
|
3455
|
+
> Repository: git+https://github.com/visulima/visulima.git
|
|
3456
|
+
>
|
|
3457
|
+
> > MIT License
|
|
3458
|
+
> >
|
|
3459
|
+
> > Copyright (c) 2025 visulima
|
|
3460
|
+
> >
|
|
3461
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3462
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
3463
|
+
> > in the Software without restriction, including without limitation the rights
|
|
3464
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3465
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
3466
|
+
> > furnished to do so, subject to the following conditions:
|
|
3467
|
+
> >
|
|
3468
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
3469
|
+
> > copies or substantial portions of the Software.
|
|
3470
|
+
> >
|
|
3471
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3472
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3473
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3474
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3475
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3476
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3477
|
+
> > SOFTWARE.
|
|
3478
|
+
> >
|
|
3479
|
+
> > ---
|
|
3480
|
+
> >
|
|
3481
|
+
> > MIT License
|
|
3482
|
+
> >
|
|
3483
|
+
> > Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
|
|
3484
|
+
> >
|
|
3485
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3486
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
3487
|
+
> > in the Software without restriction, including without limitation the rights
|
|
3488
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3489
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
3490
|
+
> > furnished to do so, subject to the following conditions:
|
|
3491
|
+
> >
|
|
3492
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
3493
|
+
> > copies or substantial portions of the Software.
|
|
3494
|
+
> >
|
|
3495
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3496
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3497
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3498
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3499
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3500
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3501
|
+
> > SOFTWARE.
|
|
3502
|
+
> >
|
|
3503
|
+
> > ---
|
|
3504
|
+
> >
|
|
3505
|
+
> > Copyright Joyent, Inc. and other Node contributors.
|
|
3506
|
+
> >
|
|
3507
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a
|
|
3508
|
+
> > copy of this software and associated documentation files (the
|
|
3509
|
+
> > "Software"), to deal in the Software without restriction, including
|
|
3510
|
+
> > without limitation the rights to use, copy, modify, merge, publish,
|
|
3511
|
+
> > distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
3512
|
+
> > persons to whom the Software is furnished to do so, subject to the
|
|
3513
|
+
> > following conditions:
|
|
3514
|
+
> >
|
|
3515
|
+
> > The above copyright notice and this permission notice shall be included
|
|
3516
|
+
> > in all copies or substantial portions of the Software.
|
|
3517
|
+
> >
|
|
3518
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
3519
|
+
> > OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3520
|
+
> > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
3521
|
+
> > NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
3522
|
+
> > DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
3523
|
+
> > OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
3524
|
+
> > USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3525
|
+
> >
|
|
3526
|
+
> > ---
|
|
3527
|
+
> >
|
|
3528
|
+
> > Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
|
|
3529
|
+
> >
|
|
3530
|
+
> > The MIT License (MIT)
|
|
3531
|
+
> >
|
|
3532
|
+
> > Copyright (c) 2023-present Fabio Spampinato
|
|
3533
|
+
> >
|
|
3534
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a
|
|
3535
|
+
> > copy of this software and associated documentation files (the "Software"),
|
|
3536
|
+
> > to deal in the Software without restriction, including without limitation
|
|
3537
|
+
> > the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
3538
|
+
> > and/or sell copies of the Software, and to permit persons to whom the
|
|
3539
|
+
> > Software is furnished to do so, subject to the following conditions:
|
|
3540
|
+
> >
|
|
3541
|
+
> > The above copyright notice and this permission notice shall be included in
|
|
3542
|
+
> > all copies or substantial portions of the Software.
|
|
3543
|
+
> >
|
|
3544
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3545
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3546
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3547
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3548
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
3549
|
+
> > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3550
|
+
> > DEALINGS IN THE SOFTWARE.
|
|
3551
|
+
> >
|
|
3552
|
+
> >
|
|
3553
|
+
> >
|
|
3554
|
+
> > # Licenses of bundled dependencies
|
|
3555
|
+
> > The published @visulima/path artifact additionally contains code with the following licenses:
|
|
3556
|
+
> > MIT
|
|
3557
|
+
> >
|
|
3558
|
+
> > # Bundled dependencies:
|
|
3559
|
+
> > ## binary-extensions
|
|
3560
|
+
> > License: MIT
|
|
3561
|
+
> > By: Sindre Sorhus
|
|
3562
|
+
> > Repository: sindresorhus/binary-extensions
|
|
3563
|
+
> >
|
|
3564
|
+
> > > MIT License
|
|
3565
|
+
> > >
|
|
3566
|
+
> > > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
3567
|
+
> > > Copyright (c) Paul Miller (https://paulmillr.com)
|
|
3568
|
+
> > >
|
|
3569
|
+
> > > 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:
|
|
3570
|
+
> > >
|
|
3571
|
+
> > > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3572
|
+
> > >
|
|
3573
|
+
> > > 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.
|
|
3574
|
+
>
|
|
3575
|
+
> ---------------------------------------
|
|
3576
|
+
>
|
|
3577
|
+
> ## is-plain-obj
|
|
3578
|
+
> License: MIT
|
|
3579
|
+
> By: Sindre Sorhus
|
|
3580
|
+
> Repository: sindresorhus/is-plain-obj
|
|
3581
|
+
>
|
|
3582
|
+
> > MIT License
|
|
3583
|
+
> >
|
|
3584
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
3585
|
+
> >
|
|
3586
|
+
> > 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:
|
|
3587
|
+
> >
|
|
3588
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3589
|
+
> >
|
|
3590
|
+
> > 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.
|
|
3591
|
+
|
|
3592
|
+
---------------------------------------
|
|
3593
|
+
|
|
3594
|
+
## @visulima/path
|
|
3595
|
+
License: MIT
|
|
3596
|
+
By: Daniel Bannert
|
|
3597
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
3598
|
+
|
|
3599
|
+
> MIT License
|
|
3600
|
+
>
|
|
3601
|
+
> Copyright (c) 2025 visulima
|
|
3602
|
+
>
|
|
3603
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3604
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
3605
|
+
> in the Software without restriction, including without limitation the rights
|
|
3606
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3607
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
3608
|
+
> furnished to do so, subject to the following conditions:
|
|
3609
|
+
>
|
|
3610
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
3611
|
+
> copies or substantial portions of the Software.
|
|
3612
|
+
>
|
|
3613
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3614
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3615
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3616
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3617
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3618
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3619
|
+
> SOFTWARE.
|
|
3620
|
+
>
|
|
3621
|
+
> ---
|
|
3622
|
+
>
|
|
3623
|
+
> MIT License
|
|
3624
|
+
>
|
|
3625
|
+
> Copyright (c) Pooya Parsa <pooya@pi0.io> - Daniel Roe <daniel@roe.dev>
|
|
3626
|
+
>
|
|
3627
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3628
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
3629
|
+
> in the Software without restriction, including without limitation the rights
|
|
3630
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3631
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
3632
|
+
> furnished to do so, subject to the following conditions:
|
|
3633
|
+
>
|
|
3634
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
3635
|
+
> copies or substantial portions of the Software.
|
|
3636
|
+
>
|
|
3637
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3638
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3639
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3640
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3641
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3642
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3643
|
+
> SOFTWARE.
|
|
3644
|
+
>
|
|
3645
|
+
> ---
|
|
3646
|
+
>
|
|
3647
|
+
> Copyright Joyent, Inc. and other Node contributors.
|
|
3648
|
+
>
|
|
3649
|
+
> Permission is hereby granted, free of charge, to any person obtaining a
|
|
3650
|
+
> copy of this software and associated documentation files (the
|
|
3651
|
+
> "Software"), to deal in the Software without restriction, including
|
|
3652
|
+
> without limitation the rights to use, copy, modify, merge, publish,
|
|
3653
|
+
> distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
3654
|
+
> persons to whom the Software is furnished to do so, subject to the
|
|
3655
|
+
> following conditions:
|
|
3656
|
+
>
|
|
3657
|
+
> The above copyright notice and this permission notice shall be included
|
|
3658
|
+
> in all copies or substantial portions of the Software.
|
|
3659
|
+
>
|
|
3660
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
3661
|
+
> OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3662
|
+
> MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
3663
|
+
> NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
3664
|
+
> DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
3665
|
+
> OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
3666
|
+
> USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3667
|
+
>
|
|
3668
|
+
> ---
|
|
3669
|
+
>
|
|
3670
|
+
> Bundled zeptomatch (https://github.com/fabiospampinato/zeptomatch)
|
|
3671
|
+
>
|
|
3672
|
+
> The MIT License (MIT)
|
|
3673
|
+
>
|
|
3674
|
+
> Copyright (c) 2023-present Fabio Spampinato
|
|
3675
|
+
>
|
|
3676
|
+
> Permission is hereby granted, free of charge, to any person obtaining a
|
|
3677
|
+
> copy of this software and associated documentation files (the "Software"),
|
|
3678
|
+
> to deal in the Software without restriction, including without limitation
|
|
3679
|
+
> the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
3680
|
+
> and/or sell copies of the Software, and to permit persons to whom the
|
|
3681
|
+
> Software is furnished to do so, subject to the following conditions:
|
|
3682
|
+
>
|
|
3683
|
+
> The above copyright notice and this permission notice shall be included in
|
|
3684
|
+
> all copies or substantial portions of the Software.
|
|
3685
|
+
>
|
|
3686
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3687
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3688
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3689
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3690
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
3691
|
+
> FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3692
|
+
> DEALINGS IN THE SOFTWARE.
|
|
3693
|
+
>
|
|
3694
|
+
>
|
|
3695
|
+
>
|
|
3696
|
+
> # Licenses of bundled dependencies
|
|
3697
|
+
> The published @visulima/path artifact additionally contains code with the following licenses:
|
|
3698
|
+
> MIT
|
|
3699
|
+
>
|
|
3700
|
+
> # Bundled dependencies:
|
|
3701
|
+
> ## binary-extensions
|
|
3702
|
+
> License: MIT
|
|
3703
|
+
> By: Sindre Sorhus
|
|
3704
|
+
> Repository: sindresorhus/binary-extensions
|
|
3705
|
+
>
|
|
3706
|
+
> > MIT License
|
|
3707
|
+
> >
|
|
3708
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
3709
|
+
> > Copyright (c) Paul Miller (https://paulmillr.com)
|
|
3710
|
+
> >
|
|
3711
|
+
> > 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:
|
|
3712
|
+
> >
|
|
3713
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3714
|
+
> >
|
|
3715
|
+
> > 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.
|
|
3716
|
+
|
|
3717
|
+
---------------------------------------
|
|
3718
|
+
|
|
3719
|
+
## @visulima/string
|
|
3720
|
+
License: MIT
|
|
3721
|
+
By: Daniel Bannert
|
|
3722
|
+
Repository: git+https://github.com/visulima/visulima.git
|
|
3723
|
+
|
|
3724
|
+
> MIT License
|
|
3725
|
+
>
|
|
3726
|
+
> Copyright (c) 2025 visulima
|
|
3727
|
+
>
|
|
3728
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3729
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
3730
|
+
> in the Software without restriction, including without limitation the rights
|
|
3731
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3732
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
3733
|
+
> furnished to do so, subject to the following conditions:
|
|
3734
|
+
>
|
|
3735
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
3736
|
+
> copies or substantial portions of the Software.
|
|
3737
|
+
>
|
|
3738
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3739
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3740
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3741
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3742
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3743
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3744
|
+
> SOFTWARE.
|
|
3745
|
+
>
|
|
3746
|
+
>
|
|
3747
|
+
>
|
|
3748
|
+
> # Licenses of bundled dependencies
|
|
3749
|
+
> The published @visulima/string artifact additionally contains code with the following licenses:
|
|
3750
|
+
> MIT
|
|
3751
|
+
>
|
|
3752
|
+
> # Bundled dependencies:
|
|
3753
|
+
> ## emoji-regex-xs
|
|
3754
|
+
> License: MIT
|
|
3755
|
+
> By: Steven Levithan
|
|
3756
|
+
> Repository: git+https://github.com/slevithan/emoji-regex-xs.git
|
|
3757
|
+
>
|
|
3758
|
+
> > MIT License
|
|
3759
|
+
> >
|
|
3760
|
+
> > Copyright (c) 2025 Steven Levithan
|
|
3761
|
+
> >
|
|
3762
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3763
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
3764
|
+
> > in the Software without restriction, including without limitation the rights
|
|
3765
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3766
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
3767
|
+
> > furnished to do so, subject to the following conditions:
|
|
3768
|
+
> >
|
|
3769
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
3770
|
+
> > copies or substantial portions of the Software.
|
|
3771
|
+
> >
|
|
3772
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3773
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3774
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3775
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3776
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3777
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3778
|
+
> > SOFTWARE.
|
|
3779
|
+
>
|
|
3780
|
+
> ---------------------------------------
|
|
3781
|
+
>
|
|
3782
|
+
> ## fastest-levenshtein
|
|
3783
|
+
> License: MIT
|
|
3784
|
+
> By: Kasper U. Weihe
|
|
3785
|
+
> Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
3786
|
+
>
|
|
3787
|
+
> > MIT License
|
|
3788
|
+
> >
|
|
3789
|
+
> > Copyright (c) 2020 Kasper Unn Weihe
|
|
3790
|
+
> >
|
|
3791
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3792
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
3793
|
+
> > in the Software without restriction, including without limitation the rights
|
|
3794
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3795
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
3796
|
+
> > furnished to do so, subject to the following conditions:
|
|
3797
|
+
> >
|
|
3798
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
3799
|
+
> > copies or substantial portions of the Software.
|
|
3800
|
+
> >
|
|
3801
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3802
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3803
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3804
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3805
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3806
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3807
|
+
> > SOFTWARE.
|
|
3808
|
+
>
|
|
3809
|
+
> ---------------------------------------
|
|
3810
|
+
>
|
|
3811
|
+
> ## get-east-asian-width
|
|
3812
|
+
> License: MIT
|
|
3813
|
+
> By: Sindre Sorhus
|
|
3814
|
+
> Repository: sindresorhus/get-east-asian-width
|
|
3815
|
+
>
|
|
3816
|
+
> > MIT License
|
|
3817
|
+
> >
|
|
3818
|
+
> > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
3819
|
+
> >
|
|
3820
|
+
> > 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:
|
|
3821
|
+
> >
|
|
3822
|
+
> > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3823
|
+
> >
|
|
3824
|
+
> > 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.
|
|
3825
|
+
>
|
|
3826
|
+
>
|
|
3827
|
+
>
|
|
3828
|
+
>
|
|
3829
|
+
>
|
|
3830
|
+
> # Licenses of bundled types
|
|
3831
|
+
> The published @visulima/string artifact additionally contains code with the following licenses:
|
|
3832
|
+
> MIT
|
|
3833
|
+
>
|
|
3834
|
+
> # Bundled types:
|
|
3835
|
+
> ## fastest-levenshtein
|
|
3836
|
+
> License: MIT
|
|
3837
|
+
> By: Kasper U. Weihe
|
|
3838
|
+
> Repository: git+https://github.com/ka-weihe/fastest-levenshtein.git
|
|
3839
|
+
>
|
|
3840
|
+
> > MIT License
|
|
3841
|
+
> >
|
|
3842
|
+
> > Copyright (c) 2020 Kasper Unn Weihe
|
|
3843
|
+
> >
|
|
3844
|
+
> > Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3845
|
+
> > of this software and associated documentation files (the "Software"), to deal
|
|
3846
|
+
> > in the Software without restriction, including without limitation the rights
|
|
3847
|
+
> > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3848
|
+
> > copies of the Software, and to permit persons to whom the Software is
|
|
3849
|
+
> > furnished to do so, subject to the following conditions:
|
|
3850
|
+
> >
|
|
3851
|
+
> > The above copyright notice and this permission notice shall be included in all
|
|
3852
|
+
> > copies or substantial portions of the Software.
|
|
3853
|
+
> >
|
|
3854
|
+
> > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3855
|
+
> > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3856
|
+
> > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3857
|
+
> > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3858
|
+
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3859
|
+
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3860
|
+
> > SOFTWARE.
|
|
3861
|
+
|
|
3862
|
+
---------------------------------------
|
|
3863
|
+
|
|
3864
|
+
## ci-info
|
|
3865
|
+
License: MIT
|
|
3866
|
+
By: Thomas Watson Steen, Sibiraj
|
|
3867
|
+
Repository: github:watson/ci-info
|
|
3868
|
+
|
|
3869
|
+
> The MIT License (MIT)
|
|
3870
|
+
>
|
|
3871
|
+
> Copyright (c) 2016 Thomas Watson Steen
|
|
3872
|
+
>
|
|
3873
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3874
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
3875
|
+
> in the Software without restriction, including without limitation the rights
|
|
3876
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3877
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
3878
|
+
> furnished to do so, subject to the following conditions:
|
|
3879
|
+
>
|
|
3880
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
3881
|
+
> copies or substantial portions of the Software.
|
|
3882
|
+
>
|
|
3883
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3884
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3885
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3886
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3887
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3888
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3889
|
+
> SOFTWARE.
|
|
3890
|
+
|
|
3891
|
+
<!-- /DEPENDENCIES -->
|
|
1525
3892
|
|
|
1526
3893
|
<!-- /TYPE_DEPENDENCIES -->
|