@visulima/packem 2.0.0-alpha.43 → 2.0.0-alpha.44
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 +6 -0
- package/LICENSE.md +156 -102
- package/dist/builder/typedoc/generate-reference-documentation.d.ts +4 -0
- package/dist/builder/typedoc/index.js +3 -160
- package/dist/cli/commands/add.d.ts +4 -0
- package/dist/cli/commands/build.d.ts +21 -0
- package/dist/cli/commands/init.d.ts +3 -0
- package/dist/cli/commands/migrate.d.ts +21 -0
- package/dist/cli/commands/utils/css-loader-dependencies.d.ts +2 -0
- package/dist/cli/index.js +52 -1377
- package/dist/config/index.js +1 -4
- package/dist/config/preset/auto.d.ts +3 -0
- package/dist/config/preset/react.js +1 -43
- package/dist/config/preset/solid.js +1 -72
- package/dist/config/preset/svelte.d.ts +1 -1
- package/dist/config/preset/svelte.js +1 -44
- package/dist/config/preset/utils/infer-entries.d.ts +12 -0
- package/dist/config/preset/utils/overwrite-with-publish-config.d.ts +4 -0
- package/dist/config/preset/vue.js +1 -33
- package/dist/config/utils/find-packem-file.d.ts +2 -0
- package/dist/config/utils/load-package-json.d.ts +6 -0
- package/dist/config/utils/load-packem-config.d.ts +7 -0
- package/dist/config/utils/load-preset.d.ts +4 -0
- package/dist/config/utils/load-tsconfig.d.ts +5 -0
- package/dist/config/utils/prepare-entries.d.ts +4 -0
- package/dist/index.js +1 -30
- package/dist/jit/create-stub.d.ts +4 -0
- package/dist/packem/build.d.ts +21 -0
- package/dist/packem/index.d.ts +25 -0
- package/dist/packem/utils/brotli-size.d.ts +2 -0
- package/dist/packem/utils/group-by-keys.d.ts +3 -0
- package/dist/packem/utils/gzip-size.d.ts +2 -0
- package/dist/packem_shared/browserslistToEsbuild-C0IWmbNe-C6xPL1oW.js +1 -0
- package/dist/packem_shared/create-or-update-key-storage-C0tWtgSr.js +3 -0
- package/dist/packem_shared/default-5XUc-qHw.js +1 -0
- package/dist/packem_shared/default-B2EOH52z.js +1 -0
- package/dist/packem_shared/default-BYM_JvQL.js +1 -0
- package/dist/packem_shared/default-B_dUKZ_J.js +1 -0
- package/dist/packem_shared/default-DsjSAv7m.js +1 -0
- package/dist/packem_shared/esbuildPlugin-pPPsJB9N-YI_X-5wr.js +3 -0
- package/dist/packem_shared/index-CUp9WuCG.js +1 -0
- package/dist/packem_shared/index-ChtiNkgT.js +174 -0
- package/dist/packem_shared/isolatedDeclarationsOxcTransformer-WbfE6cGu-NeZOx2Y7.js +1 -0
- package/dist/packem_shared/isolatedDeclarationsSwcTransformer-Ch2AgtWC-B-0lOgFf.js +1 -0
- package/dist/packem_shared/isolatedDeclarationsTypescriptTransformer-DkuEkofo-Cwe3ODMG.js +3 -0
- package/dist/packem_shared/oxcResolvePlugin-Ccef6pyL-D14z9S9i.js +1 -0
- package/dist/packem_shared/oxcTransformPlugin-DfVQouIB-Cpfv95eA.js +4 -0
- package/dist/packem_shared/resolveTypescriptMjsCtsPlugin-DcZrZTmM-CauidYR5.js +6 -0
- package/dist/packem_shared/swcPlugin-Boip4lWG-CwJ-HVJc.js +1 -0
- package/dist/rollup/build-types.d.ts +5 -0
- package/dist/rollup/build.d.ts +5 -0
- package/dist/rollup/get-rollup-options.d.ts +5 -0
- package/dist/rollup/plugins/css/loaders/less.js +1 -1
- package/dist/rollup/plugins/css/loaders/lightningcss.js +1 -1
- package/dist/rollup/plugins/css/loaders/postcss.js +1 -1
- package/dist/rollup/plugins/css/loaders/sass.js +1 -1
- package/dist/rollup/plugins/css/loaders/sourcemap.js +1 -1
- package/dist/rollup/plugins/css/loaders/stylus.js +1 -1
- package/dist/rollup/plugins/css/loaders/tailwindcss.js +1 -1
- package/dist/rollup/plugins/css/minifiers/cssnano.js +1 -1
- package/dist/rollup/plugins/css/minifiers/lightningcss.js +1 -1
- package/dist/rollup/plugins/esbuild/index.js +1 -1
- package/dist/rollup/plugins/oxc/isolated-declarations-oxc-transformer.js +1 -1
- package/dist/rollup/plugins/oxc/oxc-transformer.js +1 -1
- package/dist/rollup/plugins/sucrase/index.js +1 -1
- package/dist/rollup/plugins/swc/isolated-declarations-swc-transformer.js +1 -1
- package/dist/rollup/plugins/swc/swc-plugin.js +1 -1
- package/dist/rollup/plugins/typescript/isolated-declarations-typescript-transformer.js +1 -1
- package/dist/rollup/utils/resolve-aliases.d.ts +4 -0
- package/dist/rollup/watch.d.ts +5 -0
- package/dist/utils/clean-distribution-directories.d.ts +4 -0
- package/dist/utils/create-or-update-key-storage.d.ts +3 -0
- package/dist/utils/extract-export-filenames.d.ts +16 -0
- package/dist/utils/find-alternatives.d.ts +2 -0
- package/dist/utils/get-package-side-effect.d.ts +3 -0
- package/dist/utils/infer-export-type.d.ts +3 -0
- package/dist/utils/kill-process.d.ts +14 -0
- package/dist/utils/log-build-errors.d.ts +4 -0
- package/dist/utils/remove-old-cache-folders.d.ts +3 -0
- package/dist/utils/warn-legacy-cjs.d.ts +8 -0
- package/dist/validator/attw.d.ts +7 -0
- package/dist/validator/package-json/index.d.ts +4 -0
- package/dist/validator/package-json/validate-dependencies.d.ts +4 -0
- package/dist/validator/package-json/validate-engines.d.ts +4 -0
- package/dist/validator/package-json/validate-package-entries.d.ts +4 -0
- package/dist/validator/package-json/validate-package-fields.d.ts +4 -0
- package/dist/validator/validate-alias-entries.d.ts +3 -0
- package/dist/validator/validate-bundle-size.d.ts +4 -0
- package/package.json +1 -111
- package/dist/packem_shared/create-or-update-key-storage-Dd7b8-t1.js +0 -36
- package/dist/packem_shared/default-79SPobLI.js +0 -12
- package/dist/packem_shared/default-DWBYeUSC.js +0 -210
- package/dist/packem_shared/default-DaU6CQEi.js +0 -28
- package/dist/packem_shared/default-DavaZMwC.js +0 -32
- package/dist/packem_shared/default-DeYZ934H.js +0 -32
- package/dist/packem_shared/default-tUOOZ8w7.js +0 -42
- package/dist/packem_shared/default-wScAfTaq.js +0 -27
- package/dist/packem_shared/index-CTIRxV2x.js +0 -63
- package/dist/packem_shared/index-DzTDn4ad.js +0 -9521
package/LICENSE.md
CHANGED
|
@@ -23,14 +23,11 @@ SOFTWARE.
|
|
|
23
23
|
<!-- DEPENDENCIES -->
|
|
24
24
|
|
|
25
25
|
# Licenses of bundled dependencies
|
|
26
|
-
|
|
27
26
|
The published @visulima/packem artifact additionally contains code with the following licenses:
|
|
28
27
|
MIT
|
|
29
28
|
|
|
30
29
|
# Bundled dependencies:
|
|
31
|
-
|
|
32
30
|
## @visulima/packem-rollup
|
|
33
|
-
|
|
34
31
|
License: MIT
|
|
35
32
|
By: Daniel Bannert
|
|
36
33
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -57,15 +54,14 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
57
54
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
58
55
|
> SOFTWARE.
|
|
59
56
|
>
|
|
60
|
-
> # Licenses of bundled dependencies
|
|
61
57
|
>
|
|
58
|
+
>
|
|
59
|
+
> # Licenses of bundled dependencies
|
|
62
60
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
63
61
|
> MIT
|
|
64
62
|
>
|
|
65
63
|
> # Bundled dependencies:
|
|
66
|
-
>
|
|
67
64
|
> ## estree-walker
|
|
68
|
-
>
|
|
69
65
|
> License: MIT
|
|
70
66
|
> By: Rich Harris
|
|
71
67
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -78,10 +74,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
78
74
|
> >
|
|
79
75
|
> > 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.
|
|
80
76
|
>
|
|
81
|
-
>
|
|
77
|
+
> ---------------------------------------
|
|
82
78
|
>
|
|
83
79
|
> ## mime
|
|
84
|
-
>
|
|
85
80
|
> License: MIT
|
|
86
81
|
> By: Robert Kieffer
|
|
87
82
|
> Repository: https://github.com/broofa/mime
|
|
@@ -108,6 +103,10 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
108
103
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
109
104
|
> > SOFTWARE.
|
|
110
105
|
>
|
|
106
|
+
>
|
|
107
|
+
>
|
|
108
|
+
>
|
|
109
|
+
>
|
|
111
110
|
> # Licenses of bundled types
|
|
112
111
|
>
|
|
113
112
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
@@ -346,16 +345,15 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
346
345
|
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
347
346
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
348
347
|
> > SOFTWARE.
|
|
348
|
+
> >
|
|
349
|
+
> >
|
|
349
350
|
>
|
|
350
351
|
> # Licenses of bundled dependencies
|
|
351
|
-
>
|
|
352
352
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
353
353
|
> MIT
|
|
354
354
|
>
|
|
355
355
|
> # Bundled dependencies:
|
|
356
|
-
>
|
|
357
356
|
> ## estree-walker
|
|
358
|
-
>
|
|
359
357
|
> License: MIT
|
|
360
358
|
> By: Rich Harris
|
|
361
359
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -368,10 +366,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
368
366
|
> >
|
|
369
367
|
> > 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.
|
|
370
368
|
>
|
|
371
|
-
>
|
|
369
|
+
> ---------------------------------------
|
|
372
370
|
>
|
|
373
371
|
> ## mime
|
|
374
|
-
>
|
|
375
372
|
> License: MIT
|
|
376
373
|
> By: Robert Kieffer
|
|
377
374
|
> Repository: https://github.com/broofa/mime
|
|
@@ -398,6 +395,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
398
395
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
399
396
|
> > SOFTWARE.
|
|
400
397
|
>
|
|
398
|
+
>
|
|
399
|
+
>
|
|
401
400
|
> > # Licenses of bundled types
|
|
402
401
|
> >
|
|
403
402
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -531,10 +530,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
531
530
|
> > > party to this document and has no duty or obligation with respect to
|
|
532
531
|
> > > this CC0 or use of the Work.
|
|
533
532
|
|
|
534
|
-
|
|
533
|
+
---------------------------------------
|
|
535
534
|
|
|
536
535
|
## @visulima/packem-share
|
|
537
|
-
|
|
538
536
|
License: MIT
|
|
539
537
|
By: Daniel Bannert
|
|
540
538
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -561,6 +559,11 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
561
559
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
562
560
|
> SOFTWARE.
|
|
563
561
|
>
|
|
562
|
+
>
|
|
563
|
+
>
|
|
564
|
+
>
|
|
565
|
+
>
|
|
566
|
+
>
|
|
564
567
|
> # Licenses of bundled types
|
|
565
568
|
>
|
|
566
569
|
> The published @visulima/packem-share artifact additionally contains code with the following licenses:
|
|
@@ -596,6 +599,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
596
599
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
597
600
|
> > SOFTWARE.
|
|
598
601
|
> >
|
|
602
|
+
> >
|
|
603
|
+
> >
|
|
599
604
|
> > # Licenses of bundled dependencies
|
|
600
605
|
> >
|
|
601
606
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -774,6 +779,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
774
779
|
> > >
|
|
775
780
|
> > > 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.
|
|
776
781
|
> >
|
|
782
|
+
> >
|
|
783
|
+
> >
|
|
777
784
|
> > # Licenses of bundled types
|
|
778
785
|
> >
|
|
779
786
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -937,6 +944,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
937
944
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
938
945
|
> > SOFTWARE.
|
|
939
946
|
> >
|
|
947
|
+
> >
|
|
948
|
+
> >
|
|
949
|
+
> >
|
|
940
950
|
> > # Licenses of bundled types
|
|
941
951
|
> >
|
|
942
952
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -1187,10 +1197,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
1187
1197
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1188
1198
|
> > SOFTWARE.
|
|
1189
1199
|
|
|
1190
|
-
|
|
1200
|
+
---------------------------------------
|
|
1191
1201
|
|
|
1192
1202
|
## tree-kill
|
|
1193
|
-
|
|
1194
1203
|
License: MIT
|
|
1195
1204
|
By: Peteris Krumins, Todd Wolfson, William Hilton, Fabrício Matté
|
|
1196
1205
|
Repository: git://github.com/pkrumins/node-tree-kill.git
|
|
@@ -1259,14 +1268,11 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
1259
1268
|
> <!-- DEPENDENCIES -->
|
|
1260
1269
|
|
|
1261
1270
|
# Licenses of bundled dependencies
|
|
1262
|
-
|
|
1263
1271
|
The published @visulima/packem artifact additionally contains code with the following licenses:
|
|
1264
1272
|
MIT
|
|
1265
1273
|
|
|
1266
1274
|
# Bundled dependencies:
|
|
1267
|
-
|
|
1268
1275
|
## @visulima/packem-rollup
|
|
1269
|
-
|
|
1270
1276
|
License: MIT
|
|
1271
1277
|
By: Daniel Bannert
|
|
1272
1278
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -1293,15 +1299,14 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
1293
1299
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1294
1300
|
> SOFTWARE.
|
|
1295
1301
|
>
|
|
1296
|
-
> # Licenses of bundled dependencies
|
|
1297
1302
|
>
|
|
1303
|
+
>
|
|
1304
|
+
> # Licenses of bundled dependencies
|
|
1298
1305
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
1299
1306
|
> MIT
|
|
1300
1307
|
>
|
|
1301
1308
|
> # Bundled dependencies:
|
|
1302
|
-
>
|
|
1303
1309
|
> ## estree-walker
|
|
1304
|
-
>
|
|
1305
1310
|
> License: MIT
|
|
1306
1311
|
> By: Rich Harris
|
|
1307
1312
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -1314,10 +1319,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
1314
1319
|
> >
|
|
1315
1320
|
> > 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.
|
|
1316
1321
|
>
|
|
1317
|
-
>
|
|
1322
|
+
> ---------------------------------------
|
|
1318
1323
|
>
|
|
1319
1324
|
> ## mime
|
|
1320
|
-
>
|
|
1321
1325
|
> License: MIT
|
|
1322
1326
|
> By: Robert Kieffer
|
|
1323
1327
|
> Repository: https://github.com/broofa/mime
|
|
@@ -1344,6 +1348,10 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
1344
1348
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1345
1349
|
> > SOFTWARE.
|
|
1346
1350
|
>
|
|
1351
|
+
>
|
|
1352
|
+
>
|
|
1353
|
+
>
|
|
1354
|
+
>
|
|
1347
1355
|
> # Licenses of bundled types
|
|
1348
1356
|
>
|
|
1349
1357
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
@@ -1582,16 +1590,15 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
1582
1590
|
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1583
1591
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1584
1592
|
> > SOFTWARE.
|
|
1593
|
+
> >
|
|
1594
|
+
> >
|
|
1585
1595
|
>
|
|
1586
1596
|
> # Licenses of bundled dependencies
|
|
1587
|
-
>
|
|
1588
1597
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
1589
1598
|
> MIT
|
|
1590
1599
|
>
|
|
1591
1600
|
> # Bundled dependencies:
|
|
1592
|
-
>
|
|
1593
1601
|
> ## estree-walker
|
|
1594
|
-
>
|
|
1595
1602
|
> License: MIT
|
|
1596
1603
|
> By: Rich Harris
|
|
1597
1604
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -1604,10 +1611,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
1604
1611
|
> >
|
|
1605
1612
|
> > 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.
|
|
1606
1613
|
>
|
|
1607
|
-
>
|
|
1614
|
+
> ---------------------------------------
|
|
1608
1615
|
>
|
|
1609
1616
|
> ## mime
|
|
1610
|
-
>
|
|
1611
1617
|
> License: MIT
|
|
1612
1618
|
> By: Robert Kieffer
|
|
1613
1619
|
> Repository: https://github.com/broofa/mime
|
|
@@ -1634,6 +1640,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
1634
1640
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1635
1641
|
> > SOFTWARE.
|
|
1636
1642
|
>
|
|
1643
|
+
>
|
|
1644
|
+
>
|
|
1637
1645
|
> > # Licenses of bundled types
|
|
1638
1646
|
> >
|
|
1639
1647
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -1767,10 +1775,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
1767
1775
|
> > > party to this document and has no duty or obligation with respect to
|
|
1768
1776
|
> > > this CC0 or use of the Work.
|
|
1769
1777
|
|
|
1770
|
-
|
|
1778
|
+
---------------------------------------
|
|
1771
1779
|
|
|
1772
1780
|
## @visulima/packem-share
|
|
1773
|
-
|
|
1774
1781
|
License: MIT
|
|
1775
1782
|
By: Daniel Bannert
|
|
1776
1783
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -1797,6 +1804,11 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
1797
1804
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1798
1805
|
> SOFTWARE.
|
|
1799
1806
|
>
|
|
1807
|
+
>
|
|
1808
|
+
>
|
|
1809
|
+
>
|
|
1810
|
+
>
|
|
1811
|
+
>
|
|
1800
1812
|
> # Licenses of bundled types
|
|
1801
1813
|
>
|
|
1802
1814
|
> The published @visulima/packem-share artifact additionally contains code with the following licenses:
|
|
@@ -1832,6 +1844,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
1832
1844
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1833
1845
|
> > SOFTWARE.
|
|
1834
1846
|
> >
|
|
1847
|
+
> >
|
|
1848
|
+
> >
|
|
1835
1849
|
> > # Licenses of bundled dependencies
|
|
1836
1850
|
> >
|
|
1837
1851
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -2010,6 +2024,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
2010
2024
|
> > >
|
|
2011
2025
|
> > > 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.
|
|
2012
2026
|
> >
|
|
2027
|
+
> >
|
|
2028
|
+
> >
|
|
2013
2029
|
> > # Licenses of bundled types
|
|
2014
2030
|
> >
|
|
2015
2031
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -2173,6 +2189,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
2173
2189
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2174
2190
|
> > SOFTWARE.
|
|
2175
2191
|
> >
|
|
2192
|
+
> >
|
|
2193
|
+
> >
|
|
2194
|
+
> >
|
|
2176
2195
|
> > # Licenses of bundled types
|
|
2177
2196
|
> >
|
|
2178
2197
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -2423,10 +2442,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
2423
2442
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2424
2443
|
> > SOFTWARE.
|
|
2425
2444
|
|
|
2426
|
-
|
|
2445
|
+
---------------------------------------
|
|
2427
2446
|
|
|
2428
2447
|
## tree-kill
|
|
2429
|
-
|
|
2430
2448
|
License: MIT
|
|
2431
2449
|
By: Peteris Krumins, Todd Wolfson, William Hilton, Fabrício Matté
|
|
2432
2450
|
Repository: git://github.com/pkrumins/node-tree-kill.git
|
|
@@ -2697,14 +2715,11 @@ Repository: git://github.com/pkrumins/node-tree-kill.git
|
|
|
2697
2715
|
> > <!-- DEPENDENCIES -->
|
|
2698
2716
|
|
|
2699
2717
|
# Licenses of bundled dependencies
|
|
2700
|
-
|
|
2701
2718
|
The published @visulima/packem artifact additionally contains code with the following licenses:
|
|
2702
2719
|
MIT
|
|
2703
2720
|
|
|
2704
2721
|
# Bundled dependencies:
|
|
2705
|
-
|
|
2706
2722
|
## @visulima/packem-rollup
|
|
2707
|
-
|
|
2708
2723
|
License: MIT
|
|
2709
2724
|
By: Daniel Bannert
|
|
2710
2725
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -2731,15 +2746,14 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
2731
2746
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2732
2747
|
> SOFTWARE.
|
|
2733
2748
|
>
|
|
2734
|
-
> # Licenses of bundled dependencies
|
|
2735
2749
|
>
|
|
2750
|
+
>
|
|
2751
|
+
> # Licenses of bundled dependencies
|
|
2736
2752
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
2737
2753
|
> MIT
|
|
2738
2754
|
>
|
|
2739
2755
|
> # Bundled dependencies:
|
|
2740
|
-
>
|
|
2741
2756
|
> ## estree-walker
|
|
2742
|
-
>
|
|
2743
2757
|
> License: MIT
|
|
2744
2758
|
> By: Rich Harris
|
|
2745
2759
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -2752,10 +2766,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
2752
2766
|
> >
|
|
2753
2767
|
> > 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.
|
|
2754
2768
|
>
|
|
2755
|
-
>
|
|
2769
|
+
> ---------------------------------------
|
|
2756
2770
|
>
|
|
2757
2771
|
> ## mime
|
|
2758
|
-
>
|
|
2759
2772
|
> License: MIT
|
|
2760
2773
|
> By: Robert Kieffer
|
|
2761
2774
|
> Repository: https://github.com/broofa/mime
|
|
@@ -2782,6 +2795,10 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
2782
2795
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2783
2796
|
> > SOFTWARE.
|
|
2784
2797
|
>
|
|
2798
|
+
>
|
|
2799
|
+
>
|
|
2800
|
+
>
|
|
2801
|
+
>
|
|
2785
2802
|
> # Licenses of bundled types
|
|
2786
2803
|
>
|
|
2787
2804
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
@@ -3020,16 +3037,15 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
3020
3037
|
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3021
3038
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3022
3039
|
> > SOFTWARE.
|
|
3040
|
+
> >
|
|
3041
|
+
> >
|
|
3023
3042
|
>
|
|
3024
3043
|
> # Licenses of bundled dependencies
|
|
3025
|
-
>
|
|
3026
3044
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
3027
3045
|
> MIT
|
|
3028
3046
|
>
|
|
3029
3047
|
> # Bundled dependencies:
|
|
3030
|
-
>
|
|
3031
3048
|
> ## estree-walker
|
|
3032
|
-
>
|
|
3033
3049
|
> License: MIT
|
|
3034
3050
|
> By: Rich Harris
|
|
3035
3051
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -3042,10 +3058,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
3042
3058
|
> >
|
|
3043
3059
|
> > 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.
|
|
3044
3060
|
>
|
|
3045
|
-
>
|
|
3061
|
+
> ---------------------------------------
|
|
3046
3062
|
>
|
|
3047
3063
|
> ## mime
|
|
3048
|
-
>
|
|
3049
3064
|
> License: MIT
|
|
3050
3065
|
> By: Robert Kieffer
|
|
3051
3066
|
> Repository: https://github.com/broofa/mime
|
|
@@ -3072,6 +3087,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
3072
3087
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3073
3088
|
> > SOFTWARE.
|
|
3074
3089
|
>
|
|
3090
|
+
>
|
|
3091
|
+
>
|
|
3075
3092
|
> > # Licenses of bundled types
|
|
3076
3093
|
> >
|
|
3077
3094
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -3205,10 +3222,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
3205
3222
|
> > > party to this document and has no duty or obligation with respect to
|
|
3206
3223
|
> > > this CC0 or use of the Work.
|
|
3207
3224
|
|
|
3208
|
-
|
|
3225
|
+
---------------------------------------
|
|
3209
3226
|
|
|
3210
3227
|
## @visulima/packem-share
|
|
3211
|
-
|
|
3212
3228
|
License: MIT
|
|
3213
3229
|
By: Daniel Bannert
|
|
3214
3230
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -3235,6 +3251,11 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
3235
3251
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3236
3252
|
> SOFTWARE.
|
|
3237
3253
|
>
|
|
3254
|
+
>
|
|
3255
|
+
>
|
|
3256
|
+
>
|
|
3257
|
+
>
|
|
3258
|
+
>
|
|
3238
3259
|
> # Licenses of bundled types
|
|
3239
3260
|
>
|
|
3240
3261
|
> The published @visulima/packem-share artifact additionally contains code with the following licenses:
|
|
@@ -3270,6 +3291,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
3270
3291
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3271
3292
|
> > SOFTWARE.
|
|
3272
3293
|
> >
|
|
3294
|
+
> >
|
|
3295
|
+
> >
|
|
3273
3296
|
> > # Licenses of bundled dependencies
|
|
3274
3297
|
> >
|
|
3275
3298
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -3448,6 +3471,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
3448
3471
|
> > >
|
|
3449
3472
|
> > > 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.
|
|
3450
3473
|
> >
|
|
3474
|
+
> >
|
|
3475
|
+
> >
|
|
3451
3476
|
> > # Licenses of bundled types
|
|
3452
3477
|
> >
|
|
3453
3478
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -3611,6 +3636,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
3611
3636
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3612
3637
|
> > SOFTWARE.
|
|
3613
3638
|
> >
|
|
3639
|
+
> >
|
|
3640
|
+
> >
|
|
3641
|
+
> >
|
|
3614
3642
|
> > # Licenses of bundled types
|
|
3615
3643
|
> >
|
|
3616
3644
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -3861,10 +3889,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
3861
3889
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3862
3890
|
> > SOFTWARE.
|
|
3863
3891
|
|
|
3864
|
-
|
|
3892
|
+
---------------------------------------
|
|
3865
3893
|
|
|
3866
3894
|
## tree-kill
|
|
3867
|
-
|
|
3868
3895
|
License: MIT
|
|
3869
3896
|
By: Peteris Krumins, Todd Wolfson, William Hilton, Fabrício Matté
|
|
3870
3897
|
Repository: git://github.com/pkrumins/node-tree-kill.git
|
|
@@ -4059,14 +4086,11 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4059
4086
|
> <!-- DEPENDENCIES -->
|
|
4060
4087
|
|
|
4061
4088
|
# Licenses of bundled dependencies
|
|
4062
|
-
|
|
4063
4089
|
The published @visulima/packem artifact additionally contains code with the following licenses:
|
|
4064
4090
|
MIT
|
|
4065
4091
|
|
|
4066
4092
|
# Bundled dependencies:
|
|
4067
|
-
|
|
4068
4093
|
## @visulima/packem-rollup
|
|
4069
|
-
|
|
4070
4094
|
License: MIT
|
|
4071
4095
|
By: Daniel Bannert
|
|
4072
4096
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -4093,15 +4117,14 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4093
4117
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4094
4118
|
> SOFTWARE.
|
|
4095
4119
|
>
|
|
4096
|
-
> # Licenses of bundled dependencies
|
|
4097
4120
|
>
|
|
4121
|
+
>
|
|
4122
|
+
> # Licenses of bundled dependencies
|
|
4098
4123
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
4099
4124
|
> MIT
|
|
4100
4125
|
>
|
|
4101
4126
|
> # Bundled dependencies:
|
|
4102
|
-
>
|
|
4103
4127
|
> ## estree-walker
|
|
4104
|
-
>
|
|
4105
4128
|
> License: MIT
|
|
4106
4129
|
> By: Rich Harris
|
|
4107
4130
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -4114,10 +4137,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4114
4137
|
> >
|
|
4115
4138
|
> > 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.
|
|
4116
4139
|
>
|
|
4117
|
-
>
|
|
4140
|
+
> ---------------------------------------
|
|
4118
4141
|
>
|
|
4119
4142
|
> ## mime
|
|
4120
|
-
>
|
|
4121
4143
|
> License: MIT
|
|
4122
4144
|
> By: Robert Kieffer
|
|
4123
4145
|
> Repository: https://github.com/broofa/mime
|
|
@@ -4144,6 +4166,10 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4144
4166
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4145
4167
|
> > SOFTWARE.
|
|
4146
4168
|
>
|
|
4169
|
+
>
|
|
4170
|
+
>
|
|
4171
|
+
>
|
|
4172
|
+
>
|
|
4147
4173
|
> # Licenses of bundled types
|
|
4148
4174
|
>
|
|
4149
4175
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
@@ -4382,16 +4408,15 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4382
4408
|
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4383
4409
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4384
4410
|
> > SOFTWARE.
|
|
4411
|
+
> >
|
|
4412
|
+
> >
|
|
4385
4413
|
>
|
|
4386
4414
|
> # Licenses of bundled dependencies
|
|
4387
|
-
>
|
|
4388
4415
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
4389
4416
|
> MIT
|
|
4390
4417
|
>
|
|
4391
4418
|
> # Bundled dependencies:
|
|
4392
|
-
>
|
|
4393
4419
|
> ## estree-walker
|
|
4394
|
-
>
|
|
4395
4420
|
> License: MIT
|
|
4396
4421
|
> By: Rich Harris
|
|
4397
4422
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -4404,10 +4429,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4404
4429
|
> >
|
|
4405
4430
|
> > 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.
|
|
4406
4431
|
>
|
|
4407
|
-
>
|
|
4432
|
+
> ---------------------------------------
|
|
4408
4433
|
>
|
|
4409
4434
|
> ## mime
|
|
4410
|
-
>
|
|
4411
4435
|
> License: MIT
|
|
4412
4436
|
> By: Robert Kieffer
|
|
4413
4437
|
> Repository: https://github.com/broofa/mime
|
|
@@ -4434,6 +4458,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4434
4458
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4435
4459
|
> > SOFTWARE.
|
|
4436
4460
|
>
|
|
4461
|
+
>
|
|
4462
|
+
>
|
|
4437
4463
|
> > # Licenses of bundled types
|
|
4438
4464
|
> >
|
|
4439
4465
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -4567,10 +4593,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4567
4593
|
> > > party to this document and has no duty or obligation with respect to
|
|
4568
4594
|
> > > this CC0 or use of the Work.
|
|
4569
4595
|
|
|
4570
|
-
|
|
4596
|
+
---------------------------------------
|
|
4571
4597
|
|
|
4572
4598
|
## @visulima/packem-share
|
|
4573
|
-
|
|
4574
4599
|
License: MIT
|
|
4575
4600
|
By: Daniel Bannert
|
|
4576
4601
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -4597,6 +4622,11 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4597
4622
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4598
4623
|
> SOFTWARE.
|
|
4599
4624
|
>
|
|
4625
|
+
>
|
|
4626
|
+
>
|
|
4627
|
+
>
|
|
4628
|
+
>
|
|
4629
|
+
>
|
|
4600
4630
|
> # Licenses of bundled types
|
|
4601
4631
|
>
|
|
4602
4632
|
> The published @visulima/packem-share artifact additionally contains code with the following licenses:
|
|
@@ -4632,6 +4662,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4632
4662
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4633
4663
|
> > SOFTWARE.
|
|
4634
4664
|
> >
|
|
4665
|
+
> >
|
|
4666
|
+
> >
|
|
4635
4667
|
> > # Licenses of bundled dependencies
|
|
4636
4668
|
> >
|
|
4637
4669
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -4810,6 +4842,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4810
4842
|
> > >
|
|
4811
4843
|
> > > 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.
|
|
4812
4844
|
> >
|
|
4845
|
+
> >
|
|
4846
|
+
> >
|
|
4813
4847
|
> > # Licenses of bundled types
|
|
4814
4848
|
> >
|
|
4815
4849
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -4973,6 +5007,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
4973
5007
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4974
5008
|
> > SOFTWARE.
|
|
4975
5009
|
> >
|
|
5010
|
+
> >
|
|
5011
|
+
> >
|
|
5012
|
+
> >
|
|
4976
5013
|
> > # Licenses of bundled types
|
|
4977
5014
|
> >
|
|
4978
5015
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -5223,10 +5260,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
5223
5260
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5224
5261
|
> > SOFTWARE.
|
|
5225
5262
|
|
|
5226
|
-
|
|
5263
|
+
---------------------------------------
|
|
5227
5264
|
|
|
5228
5265
|
## tree-kill
|
|
5229
|
-
|
|
5230
5266
|
License: MIT
|
|
5231
5267
|
By: Peteris Krumins, Todd Wolfson, William Hilton, Fabrício Matté
|
|
5232
5268
|
Repository: git://github.com/pkrumins/node-tree-kill.git
|
|
@@ -5293,14 +5329,11 @@ Repository: git://github.com/pkrumins/node-tree-kill.git
|
|
|
5293
5329
|
> > <!-- DEPENDENCIES -->
|
|
5294
5330
|
|
|
5295
5331
|
# Licenses of bundled dependencies
|
|
5296
|
-
|
|
5297
5332
|
The published @visulima/packem artifact additionally contains code with the following licenses:
|
|
5298
5333
|
MIT
|
|
5299
5334
|
|
|
5300
5335
|
# Bundled dependencies:
|
|
5301
|
-
|
|
5302
5336
|
## @visulima/packem-rollup
|
|
5303
|
-
|
|
5304
5337
|
License: MIT
|
|
5305
5338
|
By: Daniel Bannert
|
|
5306
5339
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -5327,15 +5360,14 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
5327
5360
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5328
5361
|
> SOFTWARE.
|
|
5329
5362
|
>
|
|
5330
|
-
> # Licenses of bundled dependencies
|
|
5331
5363
|
>
|
|
5364
|
+
>
|
|
5365
|
+
> # Licenses of bundled dependencies
|
|
5332
5366
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
5333
5367
|
> MIT
|
|
5334
5368
|
>
|
|
5335
5369
|
> # Bundled dependencies:
|
|
5336
|
-
>
|
|
5337
5370
|
> ## estree-walker
|
|
5338
|
-
>
|
|
5339
5371
|
> License: MIT
|
|
5340
5372
|
> By: Rich Harris
|
|
5341
5373
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -5348,10 +5380,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
5348
5380
|
> >
|
|
5349
5381
|
> > 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.
|
|
5350
5382
|
>
|
|
5351
|
-
>
|
|
5383
|
+
> ---------------------------------------
|
|
5352
5384
|
>
|
|
5353
5385
|
> ## mime
|
|
5354
|
-
>
|
|
5355
5386
|
> License: MIT
|
|
5356
5387
|
> By: Robert Kieffer
|
|
5357
5388
|
> Repository: https://github.com/broofa/mime
|
|
@@ -5378,6 +5409,10 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
5378
5409
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5379
5410
|
> > SOFTWARE.
|
|
5380
5411
|
>
|
|
5412
|
+
>
|
|
5413
|
+
>
|
|
5414
|
+
>
|
|
5415
|
+
>
|
|
5381
5416
|
> # Licenses of bundled types
|
|
5382
5417
|
>
|
|
5383
5418
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
@@ -5616,16 +5651,15 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
5616
5651
|
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5617
5652
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5618
5653
|
> > SOFTWARE.
|
|
5654
|
+
> >
|
|
5655
|
+
> >
|
|
5619
5656
|
>
|
|
5620
5657
|
> # Licenses of bundled dependencies
|
|
5621
|
-
>
|
|
5622
5658
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
5623
5659
|
> MIT
|
|
5624
5660
|
>
|
|
5625
5661
|
> # Bundled dependencies:
|
|
5626
|
-
>
|
|
5627
5662
|
> ## estree-walker
|
|
5628
|
-
>
|
|
5629
5663
|
> License: MIT
|
|
5630
5664
|
> By: Rich Harris
|
|
5631
5665
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -5638,10 +5672,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
5638
5672
|
> >
|
|
5639
5673
|
> > 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.
|
|
5640
5674
|
>
|
|
5641
|
-
>
|
|
5675
|
+
> ---------------------------------------
|
|
5642
5676
|
>
|
|
5643
5677
|
> ## mime
|
|
5644
|
-
>
|
|
5645
5678
|
> License: MIT
|
|
5646
5679
|
> By: Robert Kieffer
|
|
5647
5680
|
> Repository: https://github.com/broofa/mime
|
|
@@ -5668,6 +5701,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
5668
5701
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5669
5702
|
> > SOFTWARE.
|
|
5670
5703
|
>
|
|
5704
|
+
>
|
|
5705
|
+
>
|
|
5671
5706
|
> > # Licenses of bundled types
|
|
5672
5707
|
> >
|
|
5673
5708
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -5801,10 +5836,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
5801
5836
|
> > > party to this document and has no duty or obligation with respect to
|
|
5802
5837
|
> > > this CC0 or use of the Work.
|
|
5803
5838
|
|
|
5804
|
-
|
|
5839
|
+
---------------------------------------
|
|
5805
5840
|
|
|
5806
5841
|
## @visulima/packem-share
|
|
5807
|
-
|
|
5808
5842
|
License: MIT
|
|
5809
5843
|
By: Daniel Bannert
|
|
5810
5844
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -5831,6 +5865,11 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
5831
5865
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5832
5866
|
> SOFTWARE.
|
|
5833
5867
|
>
|
|
5868
|
+
>
|
|
5869
|
+
>
|
|
5870
|
+
>
|
|
5871
|
+
>
|
|
5872
|
+
>
|
|
5834
5873
|
> # Licenses of bundled types
|
|
5835
5874
|
>
|
|
5836
5875
|
> The published @visulima/packem-share artifact additionally contains code with the following licenses:
|
|
@@ -5866,6 +5905,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
5866
5905
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5867
5906
|
> > SOFTWARE.
|
|
5868
5907
|
> >
|
|
5908
|
+
> >
|
|
5909
|
+
> >
|
|
5869
5910
|
> > # Licenses of bundled dependencies
|
|
5870
5911
|
> >
|
|
5871
5912
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -6044,6 +6085,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
6044
6085
|
> > >
|
|
6045
6086
|
> > > 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.
|
|
6046
6087
|
> >
|
|
6088
|
+
> >
|
|
6089
|
+
> >
|
|
6047
6090
|
> > # Licenses of bundled types
|
|
6048
6091
|
> >
|
|
6049
6092
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -6207,6 +6250,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
6207
6250
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6208
6251
|
> > SOFTWARE.
|
|
6209
6252
|
> >
|
|
6253
|
+
> >
|
|
6254
|
+
> >
|
|
6255
|
+
> >
|
|
6210
6256
|
> > # Licenses of bundled types
|
|
6211
6257
|
> >
|
|
6212
6258
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -6457,10 +6503,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
6457
6503
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6458
6504
|
> > SOFTWARE.
|
|
6459
6505
|
|
|
6460
|
-
|
|
6506
|
+
---------------------------------------
|
|
6461
6507
|
|
|
6462
6508
|
## tree-kill
|
|
6463
|
-
|
|
6464
6509
|
License: MIT
|
|
6465
6510
|
By: Peteris Krumins, Todd Wolfson, William Hilton, Fabrício Matté
|
|
6466
6511
|
Repository: git://github.com/pkrumins/node-tree-kill.git
|
|
@@ -6655,14 +6700,11 @@ Repository: git://github.com/pkrumins/node-tree-kill.git
|
|
|
6655
6700
|
> > <!-- DEPENDENCIES -->
|
|
6656
6701
|
|
|
6657
6702
|
# Licenses of bundled dependencies
|
|
6658
|
-
|
|
6659
6703
|
The published @visulima/packem artifact additionally contains code with the following licenses:
|
|
6660
6704
|
MIT
|
|
6661
6705
|
|
|
6662
6706
|
# Bundled dependencies:
|
|
6663
|
-
|
|
6664
6707
|
## @visulima/packem-rollup
|
|
6665
|
-
|
|
6666
6708
|
License: MIT
|
|
6667
6709
|
By: Daniel Bannert
|
|
6668
6710
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -6689,15 +6731,14 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
6689
6731
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6690
6732
|
> SOFTWARE.
|
|
6691
6733
|
>
|
|
6692
|
-
> # Licenses of bundled dependencies
|
|
6693
6734
|
>
|
|
6735
|
+
>
|
|
6736
|
+
> # Licenses of bundled dependencies
|
|
6694
6737
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
6695
6738
|
> MIT
|
|
6696
6739
|
>
|
|
6697
6740
|
> # Bundled dependencies:
|
|
6698
|
-
>
|
|
6699
6741
|
> ## estree-walker
|
|
6700
|
-
>
|
|
6701
6742
|
> License: MIT
|
|
6702
6743
|
> By: Rich Harris
|
|
6703
6744
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -6710,10 +6751,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
6710
6751
|
> >
|
|
6711
6752
|
> > 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.
|
|
6712
6753
|
>
|
|
6713
|
-
>
|
|
6754
|
+
> ---------------------------------------
|
|
6714
6755
|
>
|
|
6715
6756
|
> ## mime
|
|
6716
|
-
>
|
|
6717
6757
|
> License: MIT
|
|
6718
6758
|
> By: Robert Kieffer
|
|
6719
6759
|
> Repository: https://github.com/broofa/mime
|
|
@@ -6740,6 +6780,10 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
6740
6780
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6741
6781
|
> > SOFTWARE.
|
|
6742
6782
|
>
|
|
6783
|
+
>
|
|
6784
|
+
>
|
|
6785
|
+
>
|
|
6786
|
+
>
|
|
6743
6787
|
> # Licenses of bundled types
|
|
6744
6788
|
>
|
|
6745
6789
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
@@ -6978,16 +7022,15 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
6978
7022
|
> > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6979
7023
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6980
7024
|
> > SOFTWARE.
|
|
7025
|
+
> >
|
|
7026
|
+
> >
|
|
6981
7027
|
>
|
|
6982
7028
|
> # Licenses of bundled dependencies
|
|
6983
|
-
>
|
|
6984
7029
|
> The published @visulima/packem-rollup artifact additionally contains code with the following licenses:
|
|
6985
7030
|
> MIT
|
|
6986
7031
|
>
|
|
6987
7032
|
> # Bundled dependencies:
|
|
6988
|
-
>
|
|
6989
7033
|
> ## estree-walker
|
|
6990
|
-
>
|
|
6991
7034
|
> License: MIT
|
|
6992
7035
|
> By: Rich Harris
|
|
6993
7036
|
> Repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -7000,10 +7043,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
7000
7043
|
> >
|
|
7001
7044
|
> > 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.
|
|
7002
7045
|
>
|
|
7003
|
-
>
|
|
7046
|
+
> ---------------------------------------
|
|
7004
7047
|
>
|
|
7005
7048
|
> ## mime
|
|
7006
|
-
>
|
|
7007
7049
|
> License: MIT
|
|
7008
7050
|
> By: Robert Kieffer
|
|
7009
7051
|
> Repository: https://github.com/broofa/mime
|
|
@@ -7030,6 +7072,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
7030
7072
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7031
7073
|
> > SOFTWARE.
|
|
7032
7074
|
>
|
|
7075
|
+
>
|
|
7076
|
+
>
|
|
7033
7077
|
> > # Licenses of bundled types
|
|
7034
7078
|
> >
|
|
7035
7079
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -7163,10 +7207,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
7163
7207
|
> > > party to this document and has no duty or obligation with respect to
|
|
7164
7208
|
> > > this CC0 or use of the Work.
|
|
7165
7209
|
|
|
7166
|
-
|
|
7210
|
+
---------------------------------------
|
|
7167
7211
|
|
|
7168
7212
|
## @visulima/packem-share
|
|
7169
|
-
|
|
7170
7213
|
License: MIT
|
|
7171
7214
|
By: Daniel Bannert
|
|
7172
7215
|
Repository: git+https://github.com/visulima/packem.git
|
|
@@ -7193,6 +7236,11 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
7193
7236
|
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7194
7237
|
> SOFTWARE.
|
|
7195
7238
|
>
|
|
7239
|
+
>
|
|
7240
|
+
>
|
|
7241
|
+
>
|
|
7242
|
+
>
|
|
7243
|
+
>
|
|
7196
7244
|
> # Licenses of bundled types
|
|
7197
7245
|
>
|
|
7198
7246
|
> The published @visulima/packem-share artifact additionally contains code with the following licenses:
|
|
@@ -7228,6 +7276,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
7228
7276
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7229
7277
|
> > SOFTWARE.
|
|
7230
7278
|
> >
|
|
7279
|
+
> >
|
|
7280
|
+
> >
|
|
7231
7281
|
> > # Licenses of bundled dependencies
|
|
7232
7282
|
> >
|
|
7233
7283
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -7406,6 +7456,8 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
7406
7456
|
> > >
|
|
7407
7457
|
> > > 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.
|
|
7408
7458
|
> >
|
|
7459
|
+
> >
|
|
7460
|
+
> >
|
|
7409
7461
|
> > # Licenses of bundled types
|
|
7410
7462
|
> >
|
|
7411
7463
|
> > The published @visulima/pail artifact additionally contains code with the following licenses:
|
|
@@ -7569,6 +7621,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
7569
7621
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7570
7622
|
> > SOFTWARE.
|
|
7571
7623
|
> >
|
|
7624
|
+
> >
|
|
7625
|
+
> >
|
|
7626
|
+
> >
|
|
7572
7627
|
> > # Licenses of bundled types
|
|
7573
7628
|
> >
|
|
7574
7629
|
> > The published @visulima/tsconfig artifact additionally contains code with the following licenses:
|
|
@@ -7819,10 +7874,9 @@ Repository: git+https://github.com/visulima/packem.git
|
|
|
7819
7874
|
> > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7820
7875
|
> > SOFTWARE.
|
|
7821
7876
|
|
|
7822
|
-
|
|
7877
|
+
---------------------------------------
|
|
7823
7878
|
|
|
7824
7879
|
## tree-kill
|
|
7825
|
-
|
|
7826
7880
|
License: MIT
|
|
7827
7881
|
By: Peteris Krumins, Todd Wolfson, William Hilton, Fabrício Matté
|
|
7828
7882
|
Repository: git://github.com/pkrumins/node-tree-kill.git
|