@aws/nx-plugin 0.107.0 → 0.109.0
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/LICENSE-THIRD-PARTY +2401 -175
- package/package.json +19 -8
- package/src/infra/app/__snapshots__/generator.spec.ts.snap +13 -13
- package/src/mcp-server/generator-info.d.ts +95 -13
- package/src/mcp-server/generator-info.js +319 -164
- package/src/mcp-server/generator-info.js.map +1 -1
- package/src/mcp-server/guide-pipeline.d.ts +28 -0
- package/src/mcp-server/guide-pipeline.js +393 -0
- package/src/mcp-server/guide-pipeline.js.map +1 -0
- package/src/mcp-server/guide-render.d.ts +25 -0
- package/src/mcp-server/guide-render.js +50 -0
- package/src/mcp-server/guide-render.js.map +1 -0
- package/src/mcp-server/mdx-ast.d.ts +30 -0
- package/src/mcp-server/mdx-ast.js +96 -0
- package/src/mcp-server/mdx-ast.js.map +1 -0
- package/src/mcp-server/option-filter.d.ts +33 -0
- package/src/mcp-server/option-filter.js +119 -0
- package/src/mcp-server/option-filter.js.map +1 -0
- package/src/mcp-server/schema-registry.d.ts +36 -0
- package/src/mcp-server/schema-registry.js +79 -0
- package/src/mcp-server/schema-registry.js.map +1 -0
- package/src/mcp-server/tools/generator-guide.d.ts +7 -1
- package/src/mcp-server/tools/generator-guide.js +32 -4
- package/src/mcp-server/tools/generator-guide.js.map +1 -1
- package/src/mcp-server/tools/list-generators.d.ts +10 -1
- package/src/mcp-server/tools/list-generators.js +34 -13
- package/src/mcp-server/tools/list-generators.js.map +1 -1
- package/src/preset/__snapshots__/generator.spec.ts.snap +3 -3
- package/src/preset/schema.json +2 -2
- package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +4 -4
- package/src/py/strands-agent/generator.js +95 -2
- package/src/py/strands-agent/generator.js.map +1 -1
- package/src/py/strands-agent/scripts/http/chat.ts.template +38 -0
- package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +2 -2
- package/src/ts/nx-generator/__snapshots__/generator.spec.ts.snap +2 -0
- package/src/ts/nx-generator/files/nx-plugin-for-aws/docs/__nameKebabCase__.mdx.template +2 -0
- package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +27 -27
- package/src/ts/react-website/cognito-auth/__snapshots__/generator.spec.ts.snap +12 -3
- package/src/ts/strands-agent/generator.js +31 -0
- package/src/ts/strands-agent/generator.js.map +1 -1
- package/src/ts/strands-agent/scripts/http/chat.ts.template +35 -0
- package/src/utils/files/common/shadcn/src/components/ui/avatar.tsx.template +60 -4
- package/src/utils/files/common/shadcn/src/components/ui/textarea.tsx.template +1 -1
- package/src/utils/generators.d.ts +1 -1
- package/src/utils/identity-constructs/files/cdk/core/user-identity.ts.template +13 -3
- package/src/utils/versions.d.ts +39 -38
- package/src/utils/versions.js +38 -37
- package/src/utils/versions.js.map +1 -1
package/LICENSE-THIRD-PARTY
CHANGED
|
@@ -3298,7 +3298,7 @@ SOFTWARE.
|
|
|
3298
3298
|
|
|
3299
3299
|
---
|
|
3300
3300
|
|
|
3301
|
-
The following software may be included in this product: @emnapi/core (1.
|
|
3301
|
+
The following software may be included in this product: @emnapi/core (1.10.0)
|
|
3302
3302
|
This software contains the following license and notice below:
|
|
3303
3303
|
|
|
3304
3304
|
MIT License
|
|
@@ -3352,7 +3352,7 @@ SOFTWARE.
|
|
|
3352
3352
|
|
|
3353
3353
|
---
|
|
3354
3354
|
|
|
3355
|
-
The following software may be included in this product: @emnapi/runtime (1.
|
|
3355
|
+
The following software may be included in this product: @emnapi/runtime (1.10.0)
|
|
3356
3356
|
This software contains the following license and notice below:
|
|
3357
3357
|
|
|
3358
3358
|
MIT License
|
|
@@ -4728,33 +4728,6 @@ SOFTWARE.
|
|
|
4728
4728
|
|
|
4729
4729
|
---
|
|
4730
4730
|
|
|
4731
|
-
The following software may be included in this product: @module-federation/sdk (2.2.3)
|
|
4732
|
-
This software contains the following license and notice below:
|
|
4733
|
-
|
|
4734
|
-
MIT License
|
|
4735
|
-
|
|
4736
|
-
Copyright (c) 2023-present zhanghang(2heal1)
|
|
4737
|
-
|
|
4738
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4739
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
4740
|
-
in the Software without restriction, including without limitation the rights
|
|
4741
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4742
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
4743
|
-
furnished to do so, subject to the following conditions:
|
|
4744
|
-
|
|
4745
|
-
The above copyright notice and this permission notice shall be included in all
|
|
4746
|
-
copies or substantial portions of the Software.
|
|
4747
|
-
|
|
4748
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4749
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4750
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4751
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4752
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4753
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4754
|
-
SOFTWARE.
|
|
4755
|
-
|
|
4756
|
-
---
|
|
4757
|
-
|
|
4758
4731
|
The following software may be included in this product: @module-federation/sdk (2.3.3)
|
|
4759
4732
|
This software contains the following license and notice below:
|
|
4760
4733
|
|
|
@@ -5020,7 +4993,7 @@ SOFTWARE.
|
|
|
5020
4993
|
|
|
5021
4994
|
---
|
|
5022
4995
|
|
|
5023
|
-
The following software may be included in this product: @nx/devkit (22.7.
|
|
4996
|
+
The following software may be included in this product: @nx/devkit (22.7.1)
|
|
5024
4997
|
This software contains the following license and notice below:
|
|
5025
4998
|
|
|
5026
4999
|
(The MIT License)
|
|
@@ -5048,7 +5021,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5048
5021
|
|
|
5049
5022
|
---
|
|
5050
5023
|
|
|
5051
|
-
The following software may be included in this product: @nx/eslint (22.7.
|
|
5024
|
+
The following software may be included in this product: @nx/eslint (22.7.1)
|
|
5052
5025
|
This software contains the following license and notice below:
|
|
5053
5026
|
|
|
5054
5027
|
(The MIT License)
|
|
@@ -5076,7 +5049,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5076
5049
|
|
|
5077
5050
|
---
|
|
5078
5051
|
|
|
5079
|
-
The following software may be included in this product: @nx/js (22.7.
|
|
5052
|
+
The following software may be included in this product: @nx/js (22.7.1)
|
|
5080
5053
|
This software contains the following license and notice below:
|
|
5081
5054
|
|
|
5082
5055
|
(The MIT License)
|
|
@@ -5104,7 +5077,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5104
5077
|
|
|
5105
5078
|
---
|
|
5106
5079
|
|
|
5107
|
-
The following software may be included in this product: @nx/module-federation (22.7.
|
|
5080
|
+
The following software may be included in this product: @nx/module-federation (22.7.1)
|
|
5108
5081
|
This software contains the following license and notice below:
|
|
5109
5082
|
|
|
5110
5083
|
(The MIT License)
|
|
@@ -5132,7 +5105,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5132
5105
|
|
|
5133
5106
|
---
|
|
5134
5107
|
|
|
5135
|
-
The following software may be included in this product: @nx/nx-linux-x64-gnu (22.7.
|
|
5108
|
+
The following software may be included in this product: @nx/nx-linux-x64-gnu (22.7.1)
|
|
5136
5109
|
This software contains the following license and notice below:
|
|
5137
5110
|
|
|
5138
5111
|
(The MIT License)
|
|
@@ -5160,7 +5133,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5160
5133
|
|
|
5161
5134
|
---
|
|
5162
5135
|
|
|
5163
|
-
The following software may be included in this product: @nx/playwright (22.7.
|
|
5136
|
+
The following software may be included in this product: @nx/playwright (22.7.1)
|
|
5164
5137
|
This software contains the following license and notice below:
|
|
5165
5138
|
|
|
5166
5139
|
(The MIT License)
|
|
@@ -5188,7 +5161,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5188
5161
|
|
|
5189
5162
|
---
|
|
5190
5163
|
|
|
5191
|
-
The following software may be included in this product: @nx/react (22.7.
|
|
5164
|
+
The following software may be included in this product: @nx/react (22.7.1)
|
|
5192
5165
|
This software contains the following license and notice below:
|
|
5193
5166
|
|
|
5194
5167
|
(The MIT License)
|
|
@@ -5216,7 +5189,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5216
5189
|
|
|
5217
5190
|
---
|
|
5218
5191
|
|
|
5219
|
-
The following software may be included in this product: @nx/rollup (22.7.
|
|
5192
|
+
The following software may be included in this product: @nx/rollup (22.7.1)
|
|
5220
5193
|
This software contains the following license and notice below:
|
|
5221
5194
|
|
|
5222
5195
|
(The MIT License)
|
|
@@ -5244,7 +5217,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5244
5217
|
|
|
5245
5218
|
---
|
|
5246
5219
|
|
|
5247
|
-
The following software may be included in this product: @nx/vite (22.7.
|
|
5220
|
+
The following software may be included in this product: @nx/vite (22.7.1)
|
|
5248
5221
|
This software contains the following license and notice below:
|
|
5249
5222
|
|
|
5250
5223
|
(The MIT License)
|
|
@@ -5272,7 +5245,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5272
5245
|
|
|
5273
5246
|
---
|
|
5274
5247
|
|
|
5275
|
-
The following software may be included in this product: @nx/vitest (22.7.
|
|
5248
|
+
The following software may be included in this product: @nx/vitest (22.7.1)
|
|
5276
5249
|
This software contains the following license and notice below:
|
|
5277
5250
|
|
|
5278
5251
|
(The MIT License)
|
|
@@ -5300,7 +5273,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5300
5273
|
|
|
5301
5274
|
---
|
|
5302
5275
|
|
|
5303
|
-
The following software may be included in this product: @nx/web (22.7.
|
|
5276
|
+
The following software may be included in this product: @nx/web (22.7.1)
|
|
5304
5277
|
This software contains the following license and notice below:
|
|
5305
5278
|
|
|
5306
5279
|
(The MIT License)
|
|
@@ -5328,7 +5301,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5328
5301
|
|
|
5329
5302
|
---
|
|
5330
5303
|
|
|
5331
|
-
The following software may be included in this product: @nx/workspace (22.7.
|
|
5304
|
+
The following software may be included in this product: @nx/workspace (22.7.1)
|
|
5332
5305
|
This software contains the following license and notice below:
|
|
5333
5306
|
|
|
5334
5307
|
(The MIT License)
|
|
@@ -6638,6 +6611,33 @@ SOFTWARE
|
|
|
6638
6611
|
|
|
6639
6612
|
---
|
|
6640
6613
|
|
|
6614
|
+
The following software may be included in this product: @types/debug (4.1.12)
|
|
6615
|
+
This software contains the following license and notice below:
|
|
6616
|
+
|
|
6617
|
+
MIT License
|
|
6618
|
+
|
|
6619
|
+
Copyright (c) Microsoft Corporation.
|
|
6620
|
+
|
|
6621
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6622
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6623
|
+
in the Software without restriction, including without limitation the rights
|
|
6624
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6625
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6626
|
+
furnished to do so, subject to the following conditions:
|
|
6627
|
+
|
|
6628
|
+
The above copyright notice and this permission notice shall be included in all
|
|
6629
|
+
copies or substantial portions of the Software.
|
|
6630
|
+
|
|
6631
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6632
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6633
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6634
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6635
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6636
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6637
|
+
SOFTWARE
|
|
6638
|
+
|
|
6639
|
+
---
|
|
6640
|
+
|
|
6641
6641
|
The following software may be included in this product: @types/deep-eql (4.0.2)
|
|
6642
6642
|
This software contains the following license and notice below:
|
|
6643
6643
|
|
|
@@ -6773,6 +6773,60 @@ SOFTWARE
|
|
|
6773
6773
|
|
|
6774
6774
|
---
|
|
6775
6775
|
|
|
6776
|
+
The following software may be included in this product: @types/estree-jsx (1.0.5)
|
|
6777
|
+
This software contains the following license and notice below:
|
|
6778
|
+
|
|
6779
|
+
MIT License
|
|
6780
|
+
|
|
6781
|
+
Copyright (c) Microsoft Corporation.
|
|
6782
|
+
|
|
6783
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6784
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6785
|
+
in the Software without restriction, including without limitation the rights
|
|
6786
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6787
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6788
|
+
furnished to do so, subject to the following conditions:
|
|
6789
|
+
|
|
6790
|
+
The above copyright notice and this permission notice shall be included in all
|
|
6791
|
+
copies or substantial portions of the Software.
|
|
6792
|
+
|
|
6793
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6794
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6795
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6796
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6797
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6798
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6799
|
+
SOFTWARE
|
|
6800
|
+
|
|
6801
|
+
---
|
|
6802
|
+
|
|
6803
|
+
The following software may be included in this product: @types/hast (3.0.4)
|
|
6804
|
+
This software contains the following license and notice below:
|
|
6805
|
+
|
|
6806
|
+
MIT License
|
|
6807
|
+
|
|
6808
|
+
Copyright (c) Microsoft Corporation.
|
|
6809
|
+
|
|
6810
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6811
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6812
|
+
in the Software without restriction, including without limitation the rights
|
|
6813
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6814
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6815
|
+
furnished to do so, subject to the following conditions:
|
|
6816
|
+
|
|
6817
|
+
The above copyright notice and this permission notice shall be included in all
|
|
6818
|
+
copies or substantial portions of the Software.
|
|
6819
|
+
|
|
6820
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6821
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6822
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6823
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6824
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6825
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6826
|
+
SOFTWARE
|
|
6827
|
+
|
|
6828
|
+
---
|
|
6829
|
+
|
|
6776
6830
|
The following software may be included in this product: @types/http-proxy (1.17.16)
|
|
6777
6831
|
This software contains the following license and notice below:
|
|
6778
6832
|
|
|
@@ -6800,6 +6854,33 @@ SOFTWARE
|
|
|
6800
6854
|
|
|
6801
6855
|
---
|
|
6802
6856
|
|
|
6857
|
+
The following software may be included in this product: @types/js-yaml (4.0.9)
|
|
6858
|
+
This software contains the following license and notice below:
|
|
6859
|
+
|
|
6860
|
+
MIT License
|
|
6861
|
+
|
|
6862
|
+
Copyright (c) Microsoft Corporation.
|
|
6863
|
+
|
|
6864
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6865
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6866
|
+
in the Software without restriction, including without limitation the rights
|
|
6867
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6868
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6869
|
+
furnished to do so, subject to the following conditions:
|
|
6870
|
+
|
|
6871
|
+
The above copyright notice and this permission notice shall be included in all
|
|
6872
|
+
copies or substantial portions of the Software.
|
|
6873
|
+
|
|
6874
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6875
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6876
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6877
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6878
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6879
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6880
|
+
SOFTWARE
|
|
6881
|
+
|
|
6882
|
+
---
|
|
6883
|
+
|
|
6803
6884
|
The following software may be included in this product: @types/json-schema (7.0.15)
|
|
6804
6885
|
This software contains the following license and notice below:
|
|
6805
6886
|
|
|
@@ -6827,6 +6908,60 @@ SOFTWARE
|
|
|
6827
6908
|
|
|
6828
6909
|
---
|
|
6829
6910
|
|
|
6911
|
+
The following software may be included in this product: @types/mdast (4.0.4)
|
|
6912
|
+
This software contains the following license and notice below:
|
|
6913
|
+
|
|
6914
|
+
MIT License
|
|
6915
|
+
|
|
6916
|
+
Copyright (c) Microsoft Corporation.
|
|
6917
|
+
|
|
6918
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6919
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6920
|
+
in the Software without restriction, including without limitation the rights
|
|
6921
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6922
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6923
|
+
furnished to do so, subject to the following conditions:
|
|
6924
|
+
|
|
6925
|
+
The above copyright notice and this permission notice shall be included in all
|
|
6926
|
+
copies or substantial portions of the Software.
|
|
6927
|
+
|
|
6928
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6929
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6930
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6931
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6932
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6933
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6934
|
+
SOFTWARE
|
|
6935
|
+
|
|
6936
|
+
---
|
|
6937
|
+
|
|
6938
|
+
The following software may be included in this product: @types/ms (2.1.0)
|
|
6939
|
+
This software contains the following license and notice below:
|
|
6940
|
+
|
|
6941
|
+
MIT License
|
|
6942
|
+
|
|
6943
|
+
Copyright (c) Microsoft Corporation.
|
|
6944
|
+
|
|
6945
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6946
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6947
|
+
in the Software without restriction, including without limitation the rights
|
|
6948
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6949
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6950
|
+
furnished to do so, subject to the following conditions:
|
|
6951
|
+
|
|
6952
|
+
The above copyright notice and this permission notice shall be included in all
|
|
6953
|
+
copies or substantial portions of the Software.
|
|
6954
|
+
|
|
6955
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6956
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6957
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6958
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6959
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6960
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6961
|
+
SOFTWARE
|
|
6962
|
+
|
|
6963
|
+
---
|
|
6964
|
+
|
|
6830
6965
|
The following software may be included in this product: @types/node (25.6.0)
|
|
6831
6966
|
This software contains the following license and notice below:
|
|
6832
6967
|
|
|
@@ -6962,6 +7097,60 @@ SOFTWARE
|
|
|
6962
7097
|
|
|
6963
7098
|
---
|
|
6964
7099
|
|
|
7100
|
+
The following software may be included in this product: @types/unist (2.0.11)
|
|
7101
|
+
This software contains the following license and notice below:
|
|
7102
|
+
|
|
7103
|
+
MIT License
|
|
7104
|
+
|
|
7105
|
+
Copyright (c) Microsoft Corporation.
|
|
7106
|
+
|
|
7107
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7108
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7109
|
+
in the Software without restriction, including without limitation the rights
|
|
7110
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7111
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7112
|
+
furnished to do so, subject to the following conditions:
|
|
7113
|
+
|
|
7114
|
+
The above copyright notice and this permission notice shall be included in all
|
|
7115
|
+
copies or substantial portions of the Software.
|
|
7116
|
+
|
|
7117
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7118
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7119
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7120
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7121
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7122
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7123
|
+
SOFTWARE
|
|
7124
|
+
|
|
7125
|
+
---
|
|
7126
|
+
|
|
7127
|
+
The following software may be included in this product: @types/unist (3.0.3)
|
|
7128
|
+
This software contains the following license and notice below:
|
|
7129
|
+
|
|
7130
|
+
MIT License
|
|
7131
|
+
|
|
7132
|
+
Copyright (c) Microsoft Corporation.
|
|
7133
|
+
|
|
7134
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7135
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7136
|
+
in the Software without restriction, including without limitation the rights
|
|
7137
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7138
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7139
|
+
furnished to do so, subject to the following conditions:
|
|
7140
|
+
|
|
7141
|
+
The above copyright notice and this permission notice shall be included in all
|
|
7142
|
+
copies or substantial portions of the Software.
|
|
7143
|
+
|
|
7144
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7145
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7146
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7147
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7148
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7149
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7150
|
+
SOFTWARE
|
|
7151
|
+
|
|
7152
|
+
---
|
|
7153
|
+
|
|
6965
7154
|
The following software may be included in this product: @verdaccio/auth (8.0.0-next-8.37)
|
|
6966
7155
|
This software contains the following license and notice below:
|
|
6967
7156
|
|
|
@@ -9217,24 +9406,52 @@ SOFTWARE.
|
|
|
9217
9406
|
|
|
9218
9407
|
---
|
|
9219
9408
|
|
|
9220
|
-
The following software may be included in this product:
|
|
9409
|
+
The following software may be included in this product: bail (2.0.2)
|
|
9221
9410
|
This software contains the following license and notice below:
|
|
9222
9411
|
|
|
9223
|
-
(MIT)
|
|
9412
|
+
(The MIT License)
|
|
9224
9413
|
|
|
9225
|
-
Copyright (c)
|
|
9414
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
9226
9415
|
|
|
9227
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
9228
|
-
this software and associated documentation files (the
|
|
9229
|
-
the Software without restriction, including
|
|
9230
|
-
use, copy, modify, merge, publish,
|
|
9231
|
-
|
|
9232
|
-
|
|
9416
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
9417
|
+
a copy of this software and associated documentation files (the
|
|
9418
|
+
'Software'), to deal in the Software without restriction, including
|
|
9419
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9420
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
9421
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9422
|
+
the following conditions:
|
|
9233
9423
|
|
|
9234
|
-
The above copyright notice and this permission notice shall be
|
|
9235
|
-
copies or substantial portions of the Software.
|
|
9424
|
+
The above copyright notice and this permission notice shall be
|
|
9425
|
+
included in all copies or substantial portions of the Software.
|
|
9236
9426
|
|
|
9237
|
-
THE SOFTWARE IS PROVIDED
|
|
9427
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
9428
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
9429
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
9430
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
9431
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
9432
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
9433
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
9434
|
+
|
|
9435
|
+
---
|
|
9436
|
+
|
|
9437
|
+
The following software may be included in this product: balanced-match (1.0.2)
|
|
9438
|
+
This software contains the following license and notice below:
|
|
9439
|
+
|
|
9440
|
+
(MIT)
|
|
9441
|
+
|
|
9442
|
+
Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
|
|
9443
|
+
|
|
9444
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
9445
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
9446
|
+
the Software without restriction, including without limitation the rights to
|
|
9447
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
9448
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
9449
|
+
so, subject to the following conditions:
|
|
9450
|
+
|
|
9451
|
+
The above copyright notice and this permission notice shall be included in all
|
|
9452
|
+
copies or substantial portions of the Software.
|
|
9453
|
+
|
|
9454
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
9238
9455
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
9239
9456
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
9240
9457
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
@@ -10036,6 +10253,34 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
10036
10253
|
|
|
10037
10254
|
---
|
|
10038
10255
|
|
|
10256
|
+
The following software may be included in this product: ccount (2.0.1)
|
|
10257
|
+
This software contains the following license and notice below:
|
|
10258
|
+
|
|
10259
|
+
(The MIT License)
|
|
10260
|
+
|
|
10261
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
10262
|
+
|
|
10263
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
10264
|
+
a copy of this software and associated documentation files (the
|
|
10265
|
+
'Software'), to deal in the Software without restriction, including
|
|
10266
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
10267
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10268
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
10269
|
+
the following conditions:
|
|
10270
|
+
|
|
10271
|
+
The above copyright notice and this permission notice shall be
|
|
10272
|
+
included in all copies or substantial portions of the Software.
|
|
10273
|
+
|
|
10274
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
10275
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
10276
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
10277
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
10278
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
10279
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
10280
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10281
|
+
|
|
10282
|
+
---
|
|
10283
|
+
|
|
10039
10284
|
The following software may be included in this product: chai (6.2.2)
|
|
10040
10285
|
This software contains the following license and notice below:
|
|
10041
10286
|
|
|
@@ -10093,6 +10338,118 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
10093
10338
|
|
|
10094
10339
|
---
|
|
10095
10340
|
|
|
10341
|
+
The following software may be included in this product: character-entities (2.0.2)
|
|
10342
|
+
This software contains the following license and notice below:
|
|
10343
|
+
|
|
10344
|
+
(The MIT License)
|
|
10345
|
+
|
|
10346
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
10347
|
+
|
|
10348
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
10349
|
+
a copy of this software and associated documentation files (the
|
|
10350
|
+
'Software'), to deal in the Software without restriction, including
|
|
10351
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
10352
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10353
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
10354
|
+
the following conditions:
|
|
10355
|
+
|
|
10356
|
+
The above copyright notice and this permission notice shall be
|
|
10357
|
+
included in all copies or substantial portions of the Software.
|
|
10358
|
+
|
|
10359
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
10360
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
10361
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
10362
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
10363
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
10364
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
10365
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10366
|
+
|
|
10367
|
+
---
|
|
10368
|
+
|
|
10369
|
+
The following software may be included in this product: character-entities-html4 (2.1.0)
|
|
10370
|
+
This software contains the following license and notice below:
|
|
10371
|
+
|
|
10372
|
+
(The MIT License)
|
|
10373
|
+
|
|
10374
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
10375
|
+
|
|
10376
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
10377
|
+
a copy of this software and associated documentation files (the
|
|
10378
|
+
'Software'), to deal in the Software without restriction, including
|
|
10379
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
10380
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10381
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
10382
|
+
the following conditions:
|
|
10383
|
+
|
|
10384
|
+
The above copyright notice and this permission notice shall be
|
|
10385
|
+
included in all copies or substantial portions of the Software.
|
|
10386
|
+
|
|
10387
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
10388
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
10389
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
10390
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
10391
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
10392
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
10393
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10394
|
+
|
|
10395
|
+
---
|
|
10396
|
+
|
|
10397
|
+
The following software may be included in this product: character-entities-legacy (3.0.0)
|
|
10398
|
+
This software contains the following license and notice below:
|
|
10399
|
+
|
|
10400
|
+
(The MIT License)
|
|
10401
|
+
|
|
10402
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
10403
|
+
|
|
10404
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
10405
|
+
a copy of this software and associated documentation files (the
|
|
10406
|
+
'Software'), to deal in the Software without restriction, including
|
|
10407
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
10408
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10409
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
10410
|
+
the following conditions:
|
|
10411
|
+
|
|
10412
|
+
The above copyright notice and this permission notice shall be
|
|
10413
|
+
included in all copies or substantial portions of the Software.
|
|
10414
|
+
|
|
10415
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
10416
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
10417
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
10418
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
10419
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
10420
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
10421
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10422
|
+
|
|
10423
|
+
---
|
|
10424
|
+
|
|
10425
|
+
The following software may be included in this product: character-reference-invalid (2.0.1)
|
|
10426
|
+
This software contains the following license and notice below:
|
|
10427
|
+
|
|
10428
|
+
(The MIT License)
|
|
10429
|
+
|
|
10430
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
10431
|
+
|
|
10432
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
10433
|
+
a copy of this software and associated documentation files (the
|
|
10434
|
+
'Software'), to deal in the Software without restriction, including
|
|
10435
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
10436
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10437
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
10438
|
+
the following conditions:
|
|
10439
|
+
|
|
10440
|
+
The above copyright notice and this permission notice shall be
|
|
10441
|
+
included in all copies or substantial portions of the Software.
|
|
10442
|
+
|
|
10443
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
10444
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
10445
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
10446
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
10447
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
10448
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
10449
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10450
|
+
|
|
10451
|
+
---
|
|
10452
|
+
|
|
10096
10453
|
The following software may be included in this product: chokidar (4.0.3)
|
|
10097
10454
|
This software contains the following license and notice below:
|
|
10098
10455
|
|
|
@@ -11725,6 +12082,34 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
11725
12082
|
|
|
11726
12083
|
---
|
|
11727
12084
|
|
|
12085
|
+
The following software may be included in this product: decode-named-character-reference (1.2.0)
|
|
12086
|
+
This software contains the following license and notice below:
|
|
12087
|
+
|
|
12088
|
+
(The MIT License)
|
|
12089
|
+
|
|
12090
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
12091
|
+
|
|
12092
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
12093
|
+
a copy of this software and associated documentation files (the
|
|
12094
|
+
'Software'), to deal in the Software without restriction, including
|
|
12095
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
12096
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
12097
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
12098
|
+
the following conditions:
|
|
12099
|
+
|
|
12100
|
+
The above copyright notice and this permission notice shall be
|
|
12101
|
+
included in all copies or substantial portions of the Software.
|
|
12102
|
+
|
|
12103
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
12104
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
12105
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
12106
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
12107
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
12108
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
12109
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
12110
|
+
|
|
12111
|
+
---
|
|
12112
|
+
|
|
11728
12113
|
The following software may be included in this product: decompress-response (6.0.0)
|
|
11729
12114
|
This software contains the following license and notice below:
|
|
11730
12115
|
|
|
@@ -12023,6 +12408,33 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
12023
12408
|
|
|
12024
12409
|
---
|
|
12025
12410
|
|
|
12411
|
+
The following software may be included in this product: dequal (2.0.3)
|
|
12412
|
+
This software contains the following license and notice below:
|
|
12413
|
+
|
|
12414
|
+
The MIT License (MIT)
|
|
12415
|
+
|
|
12416
|
+
Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
|
|
12417
|
+
|
|
12418
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12419
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12420
|
+
in the Software without restriction, including without limitation the rights
|
|
12421
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
12422
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
12423
|
+
furnished to do so, subject to the following conditions:
|
|
12424
|
+
|
|
12425
|
+
The above copyright notice and this permission notice shall be included in
|
|
12426
|
+
all copies or substantial portions of the Software.
|
|
12427
|
+
|
|
12428
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
12429
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
12430
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
12431
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
12432
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
12433
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
12434
|
+
THE SOFTWARE.
|
|
12435
|
+
|
|
12436
|
+
---
|
|
12437
|
+
|
|
12026
12438
|
The following software may be included in this product: destr (2.0.5)
|
|
12027
12439
|
This software contains the following license and notice below:
|
|
12028
12440
|
|
|
@@ -12104,6 +12516,34 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
12104
12516
|
|
|
12105
12517
|
---
|
|
12106
12518
|
|
|
12519
|
+
The following software may be included in this product: devlop (1.1.0)
|
|
12520
|
+
This software contains the following license and notice below:
|
|
12521
|
+
|
|
12522
|
+
(The MIT License)
|
|
12523
|
+
|
|
12524
|
+
Copyright (c) 2023 Titus Wormer <tituswormer@gmail.com>
|
|
12525
|
+
|
|
12526
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
12527
|
+
a copy of this software and associated documentation files (the
|
|
12528
|
+
'Software'), to deal in the Software without restriction, including
|
|
12529
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
12530
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
12531
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
12532
|
+
the following conditions:
|
|
12533
|
+
|
|
12534
|
+
The above copyright notice and this permission notice shall be
|
|
12535
|
+
included in all copies or substantial portions of the Software.
|
|
12536
|
+
|
|
12537
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
12538
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
12539
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
12540
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
12541
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
12542
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
12543
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
12544
|
+
|
|
12545
|
+
---
|
|
12546
|
+
|
|
12107
12547
|
The following software may be included in this product: dom-serializer (2.0.0)
|
|
12108
12548
|
This software contains the following license and notice below:
|
|
12109
12549
|
|
|
@@ -12876,6 +13316,21 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
12876
13316
|
|
|
12877
13317
|
---
|
|
12878
13318
|
|
|
13319
|
+
The following software may be included in this product: escape-string-regexp (5.0.0)
|
|
13320
|
+
This software contains the following license and notice below:
|
|
13321
|
+
|
|
13322
|
+
MIT License
|
|
13323
|
+
|
|
13324
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
13325
|
+
|
|
13326
|
+
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:
|
|
13327
|
+
|
|
13328
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
13329
|
+
|
|
13330
|
+
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.
|
|
13331
|
+
|
|
13332
|
+
---
|
|
13333
|
+
|
|
12879
13334
|
The following software may be included in this product: eslint (9.39.4)
|
|
12880
13335
|
This software contains the following license and notice below:
|
|
12881
13336
|
|
|
@@ -12901,14 +13356,70 @@ THE SOFTWARE.
|
|
|
12901
13356
|
|
|
12902
13357
|
---
|
|
12903
13358
|
|
|
12904
|
-
The following software may be included in this product: estree-
|
|
13359
|
+
The following software may be included in this product: estree-util-is-identifier-name (3.0.0)
|
|
12905
13360
|
This software contains the following license and notice below:
|
|
12906
13361
|
|
|
12907
|
-
|
|
12908
|
-
|
|
12909
|
-
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:
|
|
13362
|
+
(The MIT License)
|
|
12910
13363
|
|
|
12911
|
-
|
|
13364
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
13365
|
+
|
|
13366
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
13367
|
+
a copy of this software and associated documentation files (the
|
|
13368
|
+
'Software'), to deal in the Software without restriction, including
|
|
13369
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
13370
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
13371
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
13372
|
+
the following conditions:
|
|
13373
|
+
|
|
13374
|
+
The above copyright notice and this permission notice shall be
|
|
13375
|
+
included in all copies or substantial portions of the Software.
|
|
13376
|
+
|
|
13377
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
13378
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
13379
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
13380
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
13381
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
13382
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
13383
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13384
|
+
|
|
13385
|
+
---
|
|
13386
|
+
|
|
13387
|
+
The following software may be included in this product: estree-util-visit (2.0.0)
|
|
13388
|
+
This software contains the following license and notice below:
|
|
13389
|
+
|
|
13390
|
+
(The MIT License)
|
|
13391
|
+
|
|
13392
|
+
Copyright (c) 2021 Titus Wormer <tituswormer@gmail.com>
|
|
13393
|
+
|
|
13394
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
13395
|
+
a copy of this software and associated documentation files (the
|
|
13396
|
+
'Software'), to deal in the Software without restriction, including
|
|
13397
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
13398
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
13399
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
13400
|
+
the following conditions:
|
|
13401
|
+
|
|
13402
|
+
The above copyright notice and this permission notice shall be
|
|
13403
|
+
included in all copies or substantial portions of the Software.
|
|
13404
|
+
|
|
13405
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
13406
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
13407
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
13408
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
13409
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
13410
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
13411
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13412
|
+
|
|
13413
|
+
---
|
|
13414
|
+
|
|
13415
|
+
The following software may be included in this product: estree-walker (2.0.2)
|
|
13416
|
+
This software contains the following license and notice below:
|
|
13417
|
+
|
|
13418
|
+
Copyright (c) 2015-20 [these people](https://github.com/Rich-Harris/estree-walker/graphs/contributors)
|
|
13419
|
+
|
|
13420
|
+
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:
|
|
13421
|
+
|
|
13422
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
12912
13423
|
|
|
12913
13424
|
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.
|
|
12914
13425
|
|
|
@@ -13409,6 +13920,34 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|
|
13409
13920
|
|
|
13410
13921
|
---
|
|
13411
13922
|
|
|
13923
|
+
The following software may be included in this product: fault (2.0.1)
|
|
13924
|
+
This software contains the following license and notice below:
|
|
13925
|
+
|
|
13926
|
+
(The MIT License)
|
|
13927
|
+
|
|
13928
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
13929
|
+
|
|
13930
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
13931
|
+
a copy of this software and associated documentation files (the
|
|
13932
|
+
'Software'), to deal in the Software without restriction, including
|
|
13933
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
13934
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
13935
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
13936
|
+
the following conditions:
|
|
13937
|
+
|
|
13938
|
+
The above copyright notice and this permission notice shall be
|
|
13939
|
+
included in all copies or substantial portions of the Software.
|
|
13940
|
+
|
|
13941
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
13942
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
13943
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
13944
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
13945
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
13946
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
13947
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13948
|
+
|
|
13949
|
+
---
|
|
13950
|
+
|
|
13412
13951
|
The following software may be included in this product: fdir (6.5.0)
|
|
13413
13952
|
This software contains the following license and notice below:
|
|
13414
13953
|
|
|
@@ -13829,6 +14368,30 @@ SOFTWARE.
|
|
|
13829
14368
|
|
|
13830
14369
|
---
|
|
13831
14370
|
|
|
14371
|
+
The following software may be included in this product: format (0.2.2)
|
|
14372
|
+
This software contains the following license and notice below:
|
|
14373
|
+
|
|
14374
|
+
MIT License
|
|
14375
|
+
|
|
14376
|
+
Copyright (c) Sami Samhuri
|
|
14377
|
+
|
|
14378
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
14379
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
14380
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14381
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
14382
|
+
following conditions:
|
|
14383
|
+
|
|
14384
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
14385
|
+
portions of the Software.
|
|
14386
|
+
|
|
14387
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
14388
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
14389
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
14390
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
14391
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14392
|
+
|
|
14393
|
+
---
|
|
14394
|
+
|
|
13832
14395
|
The following software may be included in this product: formdata-polyfill (4.0.10)
|
|
13833
14396
|
This software contains the following license and notice below:
|
|
13834
14397
|
|
|
@@ -15278,6 +15841,62 @@ THE SOFTWARE.
|
|
|
15278
15841
|
|
|
15279
15842
|
---
|
|
15280
15843
|
|
|
15844
|
+
The following software may be included in this product: is-alphabetical (2.0.1)
|
|
15845
|
+
This software contains the following license and notice below:
|
|
15846
|
+
|
|
15847
|
+
(The MIT License)
|
|
15848
|
+
|
|
15849
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
15850
|
+
|
|
15851
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
15852
|
+
a copy of this software and associated documentation files (the
|
|
15853
|
+
'Software'), to deal in the Software without restriction, including
|
|
15854
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
15855
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
15856
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
15857
|
+
the following conditions:
|
|
15858
|
+
|
|
15859
|
+
The above copyright notice and this permission notice shall be
|
|
15860
|
+
included in all copies or substantial portions of the Software.
|
|
15861
|
+
|
|
15862
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
15863
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
15864
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
15865
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
15866
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
15867
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
15868
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
15869
|
+
|
|
15870
|
+
---
|
|
15871
|
+
|
|
15872
|
+
The following software may be included in this product: is-alphanumerical (2.0.1)
|
|
15873
|
+
This software contains the following license and notice below:
|
|
15874
|
+
|
|
15875
|
+
(The MIT License)
|
|
15876
|
+
|
|
15877
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
15878
|
+
|
|
15879
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
15880
|
+
a copy of this software and associated documentation files (the
|
|
15881
|
+
'Software'), to deal in the Software without restriction, including
|
|
15882
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
15883
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
15884
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
15885
|
+
the following conditions:
|
|
15886
|
+
|
|
15887
|
+
The above copyright notice and this permission notice shall be
|
|
15888
|
+
included in all copies or substantial portions of the Software.
|
|
15889
|
+
|
|
15890
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
15891
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
15892
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
15893
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
15894
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
15895
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
15896
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
15897
|
+
|
|
15898
|
+
---
|
|
15899
|
+
|
|
15281
15900
|
The following software may be included in this product: is-arrayish (0.2.1)
|
|
15282
15901
|
This software contains the following license and notice below:
|
|
15283
15902
|
|
|
@@ -15331,6 +15950,34 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
15331
15950
|
|
|
15332
15951
|
---
|
|
15333
15952
|
|
|
15953
|
+
The following software may be included in this product: is-decimal (2.0.1)
|
|
15954
|
+
This software contains the following license and notice below:
|
|
15955
|
+
|
|
15956
|
+
(The MIT License)
|
|
15957
|
+
|
|
15958
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
15959
|
+
|
|
15960
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
15961
|
+
a copy of this software and associated documentation files (the
|
|
15962
|
+
'Software'), to deal in the Software without restriction, including
|
|
15963
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
15964
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
15965
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
15966
|
+
the following conditions:
|
|
15967
|
+
|
|
15968
|
+
The above copyright notice and this permission notice shall be
|
|
15969
|
+
included in all copies or substantial portions of the Software.
|
|
15970
|
+
|
|
15971
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
15972
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
15973
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
15974
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
15975
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
15976
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
15977
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
15978
|
+
|
|
15979
|
+
---
|
|
15980
|
+
|
|
15334
15981
|
The following software may be included in this product: is-deflate (1.0.0)
|
|
15335
15982
|
This software contains the following license and notice below:
|
|
15336
15983
|
|
|
@@ -15466,6 +16113,34 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
15466
16113
|
|
|
15467
16114
|
---
|
|
15468
16115
|
|
|
16116
|
+
The following software may be included in this product: is-hexadecimal (2.0.1)
|
|
16117
|
+
This software contains the following license and notice below:
|
|
16118
|
+
|
|
16119
|
+
(The MIT License)
|
|
16120
|
+
|
|
16121
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
16122
|
+
|
|
16123
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
16124
|
+
a copy of this software and associated documentation files (the
|
|
16125
|
+
'Software'), to deal in the Software without restriction, including
|
|
16126
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
16127
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
16128
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
16129
|
+
the following conditions:
|
|
16130
|
+
|
|
16131
|
+
The above copyright notice and this permission notice shall be
|
|
16132
|
+
included in all copies or substantial portions of the Software.
|
|
16133
|
+
|
|
16134
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
16135
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16136
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
16137
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
16138
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
16139
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
16140
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
16141
|
+
|
|
16142
|
+
---
|
|
16143
|
+
|
|
15469
16144
|
The following software may be included in this product: is-interactive (1.0.0)
|
|
15470
16145
|
This software contains the following license and notice below:
|
|
15471
16146
|
|
|
@@ -15536,6 +16211,21 @@ THE SOFTWARE.
|
|
|
15536
16211
|
|
|
15537
16212
|
---
|
|
15538
16213
|
|
|
16214
|
+
The following software may be included in this product: is-plain-obj (4.1.0)
|
|
16215
|
+
This software contains the following license and notice below:
|
|
16216
|
+
|
|
16217
|
+
MIT License
|
|
16218
|
+
|
|
16219
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
16220
|
+
|
|
16221
|
+
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:
|
|
16222
|
+
|
|
16223
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
16224
|
+
|
|
16225
|
+
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.
|
|
16226
|
+
|
|
16227
|
+
---
|
|
16228
|
+
|
|
15539
16229
|
The following software may be included in this product: is-plain-object (5.0.0)
|
|
15540
16230
|
This software contains the following license and notice below:
|
|
15541
16231
|
|
|
@@ -16046,6 +16736,33 @@ THE SOFTWARE.
|
|
|
16046
16736
|
|
|
16047
16737
|
---
|
|
16048
16738
|
|
|
16739
|
+
The following software may be included in this product: js-yaml (4.1.0)
|
|
16740
|
+
This software contains the following license and notice below:
|
|
16741
|
+
|
|
16742
|
+
(The MIT License)
|
|
16743
|
+
|
|
16744
|
+
Copyright (C) 2011-2015 by Vitaly Puzrin
|
|
16745
|
+
|
|
16746
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
16747
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
16748
|
+
in the Software without restriction, including without limitation the rights
|
|
16749
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
16750
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16751
|
+
furnished to do so, subject to the following conditions:
|
|
16752
|
+
|
|
16753
|
+
The above copyright notice and this permission notice shall be included in
|
|
16754
|
+
all copies or substantial portions of the Software.
|
|
16755
|
+
|
|
16756
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16757
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16758
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16759
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
16760
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
16761
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
16762
|
+
THE SOFTWARE.
|
|
16763
|
+
|
|
16764
|
+
---
|
|
16765
|
+
|
|
16049
16766
|
The following software may be included in this product: js-yaml (4.1.1)
|
|
16050
16767
|
This software contains the following license and notice below:
|
|
16051
16768
|
|
|
@@ -17723,17 +18440,45 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
17723
18440
|
|
|
17724
18441
|
---
|
|
17725
18442
|
|
|
17726
|
-
The following software may be included in this product:
|
|
18443
|
+
The following software may be included in this product: longest-streak (3.1.0)
|
|
17727
18444
|
This software contains the following license and notice below:
|
|
17728
18445
|
|
|
17729
|
-
The MIT License
|
|
18446
|
+
(The MIT License)
|
|
17730
18447
|
|
|
17731
|
-
Copyright (c)
|
|
18448
|
+
Copyright (c) 2015 Titus Wormer <mailto:tituswormer@gmail.com>
|
|
17732
18449
|
|
|
17733
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
17734
|
-
this software and associated documentation files (the
|
|
17735
|
-
the Software without restriction, including
|
|
17736
|
-
use, copy, modify, merge, publish,
|
|
18450
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18451
|
+
a copy of this software and associated documentation files (the
|
|
18452
|
+
'Software'), to deal in the Software without restriction, including
|
|
18453
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18454
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18455
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18456
|
+
the following conditions:
|
|
18457
|
+
|
|
18458
|
+
The above copyright notice and this permission notice shall be
|
|
18459
|
+
included in all copies or substantial portions of the Software.
|
|
18460
|
+
|
|
18461
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
18462
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18463
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18464
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18465
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
18466
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
18467
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18468
|
+
|
|
18469
|
+
---
|
|
18470
|
+
|
|
18471
|
+
The following software may be included in this product: lowdb (1.0.0)
|
|
18472
|
+
This software contains the following license and notice below:
|
|
18473
|
+
|
|
18474
|
+
The MIT License (MIT)
|
|
18475
|
+
|
|
18476
|
+
Copyright (c) 2014 typicode
|
|
18477
|
+
|
|
18478
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
18479
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
18480
|
+
the Software without restriction, including without limitation the rights to
|
|
18481
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
17737
18482
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
17738
18483
|
subject to the following conditions:
|
|
17739
18484
|
|
|
@@ -17943,12 +18688,12 @@ SOFTWARE.
|
|
|
17943
18688
|
|
|
17944
18689
|
---
|
|
17945
18690
|
|
|
17946
|
-
The following software may be included in this product:
|
|
18691
|
+
The following software may be included in this product: mdast-util-from-markdown (2.0.2)
|
|
17947
18692
|
This software contains the following license and notice below:
|
|
17948
18693
|
|
|
17949
18694
|
(The MIT License)
|
|
17950
18695
|
|
|
17951
|
-
Copyright (c)
|
|
18696
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
17952
18697
|
|
|
17953
18698
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
17954
18699
|
a copy of this software and associated documentation files (the
|
|
@@ -17971,12 +18716,1150 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
17971
18716
|
|
|
17972
18717
|
---
|
|
17973
18718
|
|
|
17974
|
-
The following software may be included in this product:
|
|
18719
|
+
The following software may be included in this product: mdast-util-frontmatter (2.0.1)
|
|
18720
|
+
This software contains the following license and notice below:
|
|
18721
|
+
|
|
18722
|
+
(The MIT License)
|
|
18723
|
+
|
|
18724
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
18725
|
+
|
|
18726
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18727
|
+
a copy of this software and associated documentation files (the
|
|
18728
|
+
'Software'), to deal in the Software without restriction, including
|
|
18729
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18730
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18731
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18732
|
+
the following conditions:
|
|
18733
|
+
|
|
18734
|
+
The above copyright notice and this permission notice shall be
|
|
18735
|
+
included in all copies or substantial portions of the Software.
|
|
18736
|
+
|
|
18737
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
18738
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18739
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18740
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18741
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
18742
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
18743
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18744
|
+
|
|
18745
|
+
---
|
|
18746
|
+
|
|
18747
|
+
The following software may be included in this product: mdast-util-mdx (3.0.0)
|
|
18748
|
+
This software contains the following license and notice below:
|
|
18749
|
+
|
|
18750
|
+
(The MIT License)
|
|
18751
|
+
|
|
18752
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
18753
|
+
|
|
18754
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18755
|
+
a copy of this software and associated documentation files (the
|
|
18756
|
+
'Software'), to deal in the Software without restriction, including
|
|
18757
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18758
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18759
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18760
|
+
the following conditions:
|
|
18761
|
+
|
|
18762
|
+
The above copyright notice and this permission notice shall be
|
|
18763
|
+
included in all copies or substantial portions of the Software.
|
|
18764
|
+
|
|
18765
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
18766
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18767
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18768
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18769
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
18770
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
18771
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18772
|
+
|
|
18773
|
+
---
|
|
18774
|
+
|
|
18775
|
+
The following software may be included in this product: mdast-util-mdx-expression (2.0.1)
|
|
18776
|
+
This software contains the following license and notice below:
|
|
18777
|
+
|
|
18778
|
+
(The MIT License)
|
|
18779
|
+
|
|
18780
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
18781
|
+
|
|
18782
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18783
|
+
a copy of this software and associated documentation files (the
|
|
18784
|
+
'Software'), to deal in the Software without restriction, including
|
|
18785
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18786
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18787
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18788
|
+
the following conditions:
|
|
18789
|
+
|
|
18790
|
+
The above copyright notice and this permission notice shall be
|
|
18791
|
+
included in all copies or substantial portions of the Software.
|
|
18792
|
+
|
|
18793
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
18794
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18795
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18796
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18797
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
18798
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
18799
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18800
|
+
|
|
18801
|
+
---
|
|
18802
|
+
|
|
18803
|
+
The following software may be included in this product: mdast-util-mdx-jsx (3.2.0)
|
|
18804
|
+
This software contains the following license and notice below:
|
|
18805
|
+
|
|
18806
|
+
(The MIT License)
|
|
18807
|
+
|
|
18808
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
18809
|
+
|
|
18810
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18811
|
+
a copy of this software and associated documentation files (the
|
|
18812
|
+
'Software'), to deal in the Software without restriction, including
|
|
18813
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18814
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18815
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18816
|
+
the following conditions:
|
|
18817
|
+
|
|
18818
|
+
The above copyright notice and this permission notice shall be
|
|
18819
|
+
included in all copies or substantial portions of the Software.
|
|
18820
|
+
|
|
18821
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
18822
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18823
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18824
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18825
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
18826
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
18827
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18828
|
+
|
|
18829
|
+
---
|
|
18830
|
+
|
|
18831
|
+
The following software may be included in this product: mdast-util-mdxjs-esm (2.0.1)
|
|
18832
|
+
This software contains the following license and notice below:
|
|
18833
|
+
|
|
18834
|
+
(The MIT License)
|
|
18835
|
+
|
|
18836
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
18837
|
+
|
|
18838
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18839
|
+
a copy of this software and associated documentation files (the
|
|
18840
|
+
'Software'), to deal in the Software without restriction, including
|
|
18841
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18842
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18843
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18844
|
+
the following conditions:
|
|
18845
|
+
|
|
18846
|
+
The above copyright notice and this permission notice shall be
|
|
18847
|
+
included in all copies or substantial portions of the Software.
|
|
18848
|
+
|
|
18849
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
18850
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18851
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18852
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18853
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
18854
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
18855
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18856
|
+
|
|
18857
|
+
---
|
|
18858
|
+
|
|
18859
|
+
The following software may be included in this product: mdast-util-phrasing (4.1.0)
|
|
18860
|
+
This software contains the following license and notice below:
|
|
18861
|
+
|
|
18862
|
+
(The MIT License)
|
|
18863
|
+
|
|
18864
|
+
Copyright (c) 2017 Titus Wormer <tituswormer@gmail.com>
|
|
18865
|
+
Copyright (c) 2017 Victor Felder <victor@draft.li>
|
|
18866
|
+
|
|
18867
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18868
|
+
a copy of this software and associated documentation files (the
|
|
18869
|
+
'Software'), to deal in the Software without restriction, including
|
|
18870
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18871
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18872
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18873
|
+
the following conditions:
|
|
18874
|
+
|
|
18875
|
+
The above copyright notice and this permission notice shall be
|
|
18876
|
+
included in all copies or substantial portions of the Software.
|
|
18877
|
+
|
|
18878
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
18879
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18880
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18881
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18882
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
18883
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
18884
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18885
|
+
|
|
18886
|
+
---
|
|
18887
|
+
|
|
18888
|
+
The following software may be included in this product: mdast-util-to-markdown (2.1.2)
|
|
18889
|
+
This software contains the following license and notice below:
|
|
18890
|
+
|
|
18891
|
+
(The MIT License)
|
|
18892
|
+
|
|
18893
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
18894
|
+
|
|
18895
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18896
|
+
a copy of this software and associated documentation files (the
|
|
18897
|
+
'Software'), to deal in the Software without restriction, including
|
|
18898
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18899
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18900
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18901
|
+
the following conditions:
|
|
18902
|
+
|
|
18903
|
+
The above copyright notice and this permission notice shall be
|
|
18904
|
+
included in all copies or substantial portions of the Software.
|
|
18905
|
+
|
|
18906
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
18907
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18908
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18909
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18910
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
18911
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
18912
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18913
|
+
|
|
18914
|
+
---
|
|
18915
|
+
|
|
18916
|
+
The following software may be included in this product: mdast-util-to-string (4.0.0)
|
|
18917
|
+
This software contains the following license and notice below:
|
|
18918
|
+
|
|
18919
|
+
(The MIT License)
|
|
18920
|
+
|
|
18921
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
18922
|
+
|
|
18923
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18924
|
+
a copy of this software and associated documentation files (the
|
|
18925
|
+
'Software'), to deal in the Software without restriction, including
|
|
18926
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18927
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18928
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18929
|
+
the following conditions:
|
|
18930
|
+
|
|
18931
|
+
The above copyright notice and this permission notice shall be
|
|
18932
|
+
included in all copies or substantial portions of the Software.
|
|
18933
|
+
|
|
18934
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
18935
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18936
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18937
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18938
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
18939
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
18940
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18941
|
+
|
|
18942
|
+
---
|
|
18943
|
+
|
|
18944
|
+
The following software may be included in this product: media-typer (0.3.0)
|
|
18945
|
+
This software contains the following license and notice below:
|
|
18946
|
+
|
|
18947
|
+
(The MIT License)
|
|
18948
|
+
|
|
18949
|
+
Copyright (c) 2014 Douglas Christopher Wilson
|
|
18950
|
+
|
|
18951
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18952
|
+
a copy of this software and associated documentation files (the
|
|
18953
|
+
'Software'), to deal in the Software without restriction, including
|
|
18954
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18955
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18956
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18957
|
+
the following conditions:
|
|
18958
|
+
|
|
18959
|
+
The above copyright notice and this permission notice shall be
|
|
18960
|
+
included in all copies or substantial portions of the Software.
|
|
18961
|
+
|
|
18962
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
18963
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18964
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18965
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18966
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
18967
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
18968
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18969
|
+
|
|
18970
|
+
---
|
|
18971
|
+
|
|
18972
|
+
The following software may be included in this product: media-typer (1.1.0)
|
|
18973
|
+
This software contains the following license and notice below:
|
|
18974
|
+
|
|
18975
|
+
(The MIT License)
|
|
18976
|
+
|
|
18977
|
+
Copyright (c) 2014-2017 Douglas Christopher Wilson
|
|
18978
|
+
|
|
18979
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
18980
|
+
a copy of this software and associated documentation files (the
|
|
18981
|
+
'Software'), to deal in the Software without restriction, including
|
|
18982
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18983
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
18984
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
18985
|
+
the following conditions:
|
|
18986
|
+
|
|
18987
|
+
The above copyright notice and this permission notice shall be
|
|
18988
|
+
included in all copies or substantial portions of the Software.
|
|
18989
|
+
|
|
18990
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
18991
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18992
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18993
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18994
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
18995
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
18996
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18997
|
+
|
|
18998
|
+
---
|
|
18999
|
+
|
|
19000
|
+
The following software may be included in this product: merge-descriptors (1.0.3)
|
|
19001
|
+
This software contains the following license and notice below:
|
|
19002
|
+
|
|
19003
|
+
(The MIT License)
|
|
19004
|
+
|
|
19005
|
+
Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
|
|
19006
|
+
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
19007
|
+
|
|
19008
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19009
|
+
a copy of this software and associated documentation files (the
|
|
19010
|
+
'Software'), to deal in the Software without restriction, including
|
|
19011
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19012
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19013
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19014
|
+
the following conditions:
|
|
19015
|
+
|
|
19016
|
+
The above copyright notice and this permission notice shall be
|
|
19017
|
+
included in all copies or substantial portions of the Software.
|
|
19018
|
+
|
|
19019
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19020
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19021
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19022
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19023
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19024
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19025
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19026
|
+
|
|
19027
|
+
---
|
|
19028
|
+
|
|
19029
|
+
The following software may be included in this product: merge-descriptors (2.0.0)
|
|
19030
|
+
This software contains the following license and notice below:
|
|
19031
|
+
|
|
19032
|
+
MIT License
|
|
19033
|
+
|
|
19034
|
+
Copyright (c) Jonathan Ong <me@jongleberry.com>
|
|
19035
|
+
Copyright (c) Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
19036
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
19037
|
+
|
|
19038
|
+
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:
|
|
19039
|
+
|
|
19040
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
19041
|
+
|
|
19042
|
+
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.
|
|
19043
|
+
|
|
19044
|
+
---
|
|
19045
|
+
|
|
19046
|
+
The following software may be included in this product: merge-stream (2.0.0)
|
|
19047
|
+
This software contains the following license and notice below:
|
|
19048
|
+
|
|
19049
|
+
The MIT License (MIT)
|
|
19050
|
+
|
|
19051
|
+
Copyright (c) Stephen Sugden <me@stephensugden.com> (stephensugden.com)
|
|
19052
|
+
|
|
19053
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
19054
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
19055
|
+
in the Software without restriction, including without limitation the rights
|
|
19056
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
19057
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
19058
|
+
furnished to do so, subject to the following conditions:
|
|
19059
|
+
|
|
19060
|
+
The above copyright notice and this permission notice shall be included in
|
|
19061
|
+
all copies or substantial portions of the Software.
|
|
19062
|
+
|
|
19063
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
19064
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19065
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19066
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19067
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19068
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
19069
|
+
THE SOFTWARE.
|
|
19070
|
+
|
|
19071
|
+
---
|
|
19072
|
+
|
|
19073
|
+
The following software may be included in this product: merge2 (1.4.1)
|
|
19074
|
+
This software contains the following license and notice below:
|
|
19075
|
+
|
|
19076
|
+
The MIT License (MIT)
|
|
19077
|
+
|
|
19078
|
+
Copyright (c) 2014-2020 Teambition
|
|
19079
|
+
|
|
19080
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
19081
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
19082
|
+
in the Software without restriction, including without limitation the rights
|
|
19083
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
19084
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
19085
|
+
furnished to do so, subject to the following conditions:
|
|
19086
|
+
|
|
19087
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19088
|
+
copies or substantial portions of the Software.
|
|
19089
|
+
|
|
19090
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
19091
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19092
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19093
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19094
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19095
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19096
|
+
SOFTWARE.
|
|
19097
|
+
|
|
19098
|
+
---
|
|
19099
|
+
|
|
19100
|
+
The following software may be included in this product: methods (1.1.2)
|
|
19101
|
+
This software contains the following license and notice below:
|
|
19102
|
+
|
|
19103
|
+
(The MIT License)
|
|
19104
|
+
|
|
19105
|
+
Copyright (c) 2013-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
19106
|
+
Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
19107
|
+
|
|
19108
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19109
|
+
a copy of this software and associated documentation files (the
|
|
19110
|
+
'Software'), to deal in the Software without restriction, including
|
|
19111
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19112
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19113
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19114
|
+
the following conditions:
|
|
19115
|
+
|
|
19116
|
+
The above copyright notice and this permission notice shall be
|
|
19117
|
+
included in all copies or substantial portions of the Software.
|
|
19118
|
+
|
|
19119
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19120
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19121
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19122
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19123
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19124
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19125
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19126
|
+
|
|
19127
|
+
---
|
|
19128
|
+
|
|
19129
|
+
The following software may be included in this product: micromark (4.0.2)
|
|
19130
|
+
This software contains the following license and notice below:
|
|
19131
|
+
|
|
19132
|
+
(The MIT License)
|
|
19133
|
+
|
|
19134
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19135
|
+
|
|
19136
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19137
|
+
a copy of this software and associated documentation files (the
|
|
19138
|
+
'Software'), to deal in the Software without restriction, including
|
|
19139
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19140
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19141
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19142
|
+
the following conditions:
|
|
19143
|
+
|
|
19144
|
+
The above copyright notice and this permission notice shall be
|
|
19145
|
+
included in all copies or substantial portions of the Software.
|
|
19146
|
+
|
|
19147
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19148
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19149
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19150
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19151
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19152
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19153
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19154
|
+
|
|
19155
|
+
---
|
|
19156
|
+
|
|
19157
|
+
The following software may be included in this product: micromark-core-commonmark (2.0.3)
|
|
19158
|
+
This software contains the following license and notice below:
|
|
19159
|
+
|
|
19160
|
+
(The MIT License)
|
|
19161
|
+
|
|
19162
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19163
|
+
|
|
19164
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19165
|
+
a copy of this software and associated documentation files (the
|
|
19166
|
+
'Software'), to deal in the Software without restriction, including
|
|
19167
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19168
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19169
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19170
|
+
the following conditions:
|
|
19171
|
+
|
|
19172
|
+
The above copyright notice and this permission notice shall be
|
|
19173
|
+
included in all copies or substantial portions of the Software.
|
|
19174
|
+
|
|
19175
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19176
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19177
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19178
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19179
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19180
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19181
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19182
|
+
|
|
19183
|
+
---
|
|
19184
|
+
|
|
19185
|
+
The following software may be included in this product: micromark-extension-frontmatter (2.0.0)
|
|
19186
|
+
This software contains the following license and notice below:
|
|
19187
|
+
|
|
19188
|
+
(The MIT License)
|
|
19189
|
+
|
|
19190
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
19191
|
+
|
|
19192
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19193
|
+
a copy of this software and associated documentation files (the
|
|
19194
|
+
'Software'), to deal in the Software without restriction, including
|
|
19195
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19196
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19197
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19198
|
+
the following conditions:
|
|
19199
|
+
|
|
19200
|
+
The above copyright notice and this permission notice shall be
|
|
19201
|
+
included in all copies or substantial portions of the Software.
|
|
19202
|
+
|
|
19203
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19204
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19205
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19206
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19207
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19208
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19209
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19210
|
+
|
|
19211
|
+
---
|
|
19212
|
+
|
|
19213
|
+
The following software may be included in this product: micromark-extension-mdx-expression (3.0.1)
|
|
19214
|
+
This software contains the following license and notice below:
|
|
19215
|
+
|
|
19216
|
+
(The MIT License)
|
|
19217
|
+
|
|
19218
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19219
|
+
|
|
19220
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19221
|
+
a copy of this software and associated documentation files (the
|
|
19222
|
+
'Software'), to deal in the Software without restriction, including
|
|
19223
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19224
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19225
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19226
|
+
the following conditions:
|
|
19227
|
+
|
|
19228
|
+
The above copyright notice and this permission notice shall be
|
|
19229
|
+
included in all copies or substantial portions of the Software.
|
|
19230
|
+
|
|
19231
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19232
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19233
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19234
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19235
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19236
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19237
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19238
|
+
|
|
19239
|
+
---
|
|
19240
|
+
|
|
19241
|
+
The following software may be included in this product: micromark-extension-mdx-jsx (3.0.2)
|
|
19242
|
+
This software contains the following license and notice below:
|
|
19243
|
+
|
|
19244
|
+
(The MIT License)
|
|
19245
|
+
|
|
19246
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
19247
|
+
|
|
19248
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19249
|
+
a copy of this software and associated documentation files (the
|
|
19250
|
+
'Software'), to deal in the Software without restriction, including
|
|
19251
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19252
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19253
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19254
|
+
the following conditions:
|
|
19255
|
+
|
|
19256
|
+
The above copyright notice and this permission notice shall be
|
|
19257
|
+
included in all copies or substantial portions of the Software.
|
|
19258
|
+
|
|
19259
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19260
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19261
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19262
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19263
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19264
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19265
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19266
|
+
|
|
19267
|
+
---
|
|
19268
|
+
|
|
19269
|
+
The following software may be included in this product: micromark-extension-mdx-md (2.0.0)
|
|
19270
|
+
This software contains the following license and notice below:
|
|
19271
|
+
|
|
19272
|
+
(The MIT License)
|
|
19273
|
+
|
|
19274
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
19275
|
+
|
|
19276
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19277
|
+
a copy of this software and associated documentation files (the
|
|
19278
|
+
'Software'), to deal in the Software without restriction, including
|
|
19279
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19280
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19281
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19282
|
+
the following conditions:
|
|
19283
|
+
|
|
19284
|
+
The above copyright notice and this permission notice shall be
|
|
19285
|
+
included in all copies or substantial portions of the Software.
|
|
19286
|
+
|
|
19287
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19288
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19289
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19290
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19291
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19292
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19293
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19294
|
+
|
|
19295
|
+
---
|
|
19296
|
+
|
|
19297
|
+
The following software may be included in this product: micromark-extension-mdxjs (3.0.0)
|
|
19298
|
+
This software contains the following license and notice below:
|
|
19299
|
+
|
|
19300
|
+
(The MIT License)
|
|
19301
|
+
|
|
19302
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
19303
|
+
|
|
19304
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19305
|
+
a copy of this software and associated documentation files (the
|
|
19306
|
+
'Software'), to deal in the Software without restriction, including
|
|
19307
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19308
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19309
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19310
|
+
the following conditions:
|
|
19311
|
+
|
|
19312
|
+
The above copyright notice and this permission notice shall be
|
|
19313
|
+
included in all copies or substantial portions of the Software.
|
|
19314
|
+
|
|
19315
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19316
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19317
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19318
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19319
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19320
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19321
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19322
|
+
|
|
19323
|
+
---
|
|
19324
|
+
|
|
19325
|
+
The following software may be included in this product: micromark-extension-mdxjs-esm (3.0.0)
|
|
19326
|
+
This software contains the following license and notice below:
|
|
19327
|
+
|
|
19328
|
+
(The MIT License)
|
|
19329
|
+
|
|
19330
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
19331
|
+
|
|
19332
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19333
|
+
a copy of this software and associated documentation files (the
|
|
19334
|
+
'Software'), to deal in the Software without restriction, including
|
|
19335
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19336
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19337
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19338
|
+
the following conditions:
|
|
19339
|
+
|
|
19340
|
+
The above copyright notice and this permission notice shall be
|
|
19341
|
+
included in all copies or substantial portions of the Software.
|
|
19342
|
+
|
|
19343
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19344
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19345
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19346
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19347
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19348
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19349
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19350
|
+
|
|
19351
|
+
---
|
|
19352
|
+
|
|
19353
|
+
The following software may be included in this product: micromark-factory-destination (2.0.1)
|
|
19354
|
+
This software contains the following license and notice below:
|
|
19355
|
+
|
|
19356
|
+
(The MIT License)
|
|
19357
|
+
|
|
19358
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19359
|
+
|
|
19360
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19361
|
+
a copy of this software and associated documentation files (the
|
|
19362
|
+
'Software'), to deal in the Software without restriction, including
|
|
19363
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19364
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19365
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19366
|
+
the following conditions:
|
|
19367
|
+
|
|
19368
|
+
The above copyright notice and this permission notice shall be
|
|
19369
|
+
included in all copies or substantial portions of the Software.
|
|
19370
|
+
|
|
19371
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19372
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19373
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19374
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19375
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19376
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19377
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19378
|
+
|
|
19379
|
+
---
|
|
19380
|
+
|
|
19381
|
+
The following software may be included in this product: micromark-factory-label (2.0.1)
|
|
19382
|
+
This software contains the following license and notice below:
|
|
19383
|
+
|
|
19384
|
+
(The MIT License)
|
|
19385
|
+
|
|
19386
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19387
|
+
|
|
19388
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19389
|
+
a copy of this software and associated documentation files (the
|
|
19390
|
+
'Software'), to deal in the Software without restriction, including
|
|
19391
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19392
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19393
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19394
|
+
the following conditions:
|
|
19395
|
+
|
|
19396
|
+
The above copyright notice and this permission notice shall be
|
|
19397
|
+
included in all copies or substantial portions of the Software.
|
|
19398
|
+
|
|
19399
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19400
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19401
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19402
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19403
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19404
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19405
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19406
|
+
|
|
19407
|
+
---
|
|
19408
|
+
|
|
19409
|
+
The following software may be included in this product: micromark-factory-mdx-expression (2.0.3)
|
|
19410
|
+
This software contains the following license and notice below:
|
|
19411
|
+
|
|
19412
|
+
(The MIT License)
|
|
19413
|
+
|
|
19414
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19415
|
+
|
|
19416
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19417
|
+
a copy of this software and associated documentation files (the
|
|
19418
|
+
'Software'), to deal in the Software without restriction, including
|
|
19419
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19420
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19421
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19422
|
+
the following conditions:
|
|
19423
|
+
|
|
19424
|
+
The above copyright notice and this permission notice shall be
|
|
19425
|
+
included in all copies or substantial portions of the Software.
|
|
19426
|
+
|
|
19427
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19428
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19429
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19430
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19431
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19432
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19433
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19434
|
+
|
|
19435
|
+
---
|
|
19436
|
+
|
|
19437
|
+
The following software may be included in this product: micromark-factory-space (2.0.1)
|
|
19438
|
+
This software contains the following license and notice below:
|
|
19439
|
+
|
|
19440
|
+
(The MIT License)
|
|
19441
|
+
|
|
19442
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19443
|
+
|
|
19444
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19445
|
+
a copy of this software and associated documentation files (the
|
|
19446
|
+
'Software'), to deal in the Software without restriction, including
|
|
19447
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19448
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19449
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19450
|
+
the following conditions:
|
|
19451
|
+
|
|
19452
|
+
The above copyright notice and this permission notice shall be
|
|
19453
|
+
included in all copies or substantial portions of the Software.
|
|
19454
|
+
|
|
19455
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19456
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19457
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19458
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19459
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19460
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19461
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19462
|
+
|
|
19463
|
+
---
|
|
19464
|
+
|
|
19465
|
+
The following software may be included in this product: micromark-factory-title (2.0.1)
|
|
19466
|
+
This software contains the following license and notice below:
|
|
19467
|
+
|
|
19468
|
+
(The MIT License)
|
|
19469
|
+
|
|
19470
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19471
|
+
|
|
19472
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19473
|
+
a copy of this software and associated documentation files (the
|
|
19474
|
+
'Software'), to deal in the Software without restriction, including
|
|
19475
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19476
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19477
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19478
|
+
the following conditions:
|
|
19479
|
+
|
|
19480
|
+
The above copyright notice and this permission notice shall be
|
|
19481
|
+
included in all copies or substantial portions of the Software.
|
|
19482
|
+
|
|
19483
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19484
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19485
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19486
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19487
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19488
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19489
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19490
|
+
|
|
19491
|
+
---
|
|
19492
|
+
|
|
19493
|
+
The following software may be included in this product: micromark-factory-whitespace (2.0.1)
|
|
19494
|
+
This software contains the following license and notice below:
|
|
19495
|
+
|
|
19496
|
+
(The MIT License)
|
|
19497
|
+
|
|
19498
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19499
|
+
|
|
19500
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19501
|
+
a copy of this software and associated documentation files (the
|
|
19502
|
+
'Software'), to deal in the Software without restriction, including
|
|
19503
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19504
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19505
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19506
|
+
the following conditions:
|
|
19507
|
+
|
|
19508
|
+
The above copyright notice and this permission notice shall be
|
|
19509
|
+
included in all copies or substantial portions of the Software.
|
|
19510
|
+
|
|
19511
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19512
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19513
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19514
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19515
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19516
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19517
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19518
|
+
|
|
19519
|
+
---
|
|
19520
|
+
|
|
19521
|
+
The following software may be included in this product: micromark-util-character (2.1.1)
|
|
19522
|
+
This software contains the following license and notice below:
|
|
19523
|
+
|
|
19524
|
+
(The MIT License)
|
|
19525
|
+
|
|
19526
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19527
|
+
|
|
19528
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19529
|
+
a copy of this software and associated documentation files (the
|
|
19530
|
+
'Software'), to deal in the Software without restriction, including
|
|
19531
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19532
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19533
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19534
|
+
the following conditions:
|
|
19535
|
+
|
|
19536
|
+
The above copyright notice and this permission notice shall be
|
|
19537
|
+
included in all copies or substantial portions of the Software.
|
|
19538
|
+
|
|
19539
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19540
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19541
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19542
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19543
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19544
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19545
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19546
|
+
|
|
19547
|
+
---
|
|
19548
|
+
|
|
19549
|
+
The following software may be included in this product: micromark-util-chunked (2.0.1)
|
|
19550
|
+
This software contains the following license and notice below:
|
|
19551
|
+
|
|
19552
|
+
(The MIT License)
|
|
19553
|
+
|
|
19554
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19555
|
+
|
|
19556
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19557
|
+
a copy of this software and associated documentation files (the
|
|
19558
|
+
'Software'), to deal in the Software without restriction, including
|
|
19559
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19560
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19561
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19562
|
+
the following conditions:
|
|
19563
|
+
|
|
19564
|
+
The above copyright notice and this permission notice shall be
|
|
19565
|
+
included in all copies or substantial portions of the Software.
|
|
19566
|
+
|
|
19567
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19568
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19569
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19570
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19571
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19572
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19573
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19574
|
+
|
|
19575
|
+
---
|
|
19576
|
+
|
|
19577
|
+
The following software may be included in this product: micromark-util-classify-character (2.0.1)
|
|
19578
|
+
This software contains the following license and notice below:
|
|
19579
|
+
|
|
19580
|
+
(The MIT License)
|
|
19581
|
+
|
|
19582
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19583
|
+
|
|
19584
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19585
|
+
a copy of this software and associated documentation files (the
|
|
19586
|
+
'Software'), to deal in the Software without restriction, including
|
|
19587
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19588
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19589
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19590
|
+
the following conditions:
|
|
19591
|
+
|
|
19592
|
+
The above copyright notice and this permission notice shall be
|
|
19593
|
+
included in all copies or substantial portions of the Software.
|
|
19594
|
+
|
|
19595
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19596
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19597
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19598
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19599
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19600
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19601
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19602
|
+
|
|
19603
|
+
---
|
|
19604
|
+
|
|
19605
|
+
The following software may be included in this product: micromark-util-combine-extensions (2.0.1)
|
|
19606
|
+
This software contains the following license and notice below:
|
|
19607
|
+
|
|
19608
|
+
(The MIT License)
|
|
19609
|
+
|
|
19610
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19611
|
+
|
|
19612
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19613
|
+
a copy of this software and associated documentation files (the
|
|
19614
|
+
'Software'), to deal in the Software without restriction, including
|
|
19615
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19616
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19617
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19618
|
+
the following conditions:
|
|
19619
|
+
|
|
19620
|
+
The above copyright notice and this permission notice shall be
|
|
19621
|
+
included in all copies or substantial portions of the Software.
|
|
19622
|
+
|
|
19623
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19624
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19625
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19626
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19627
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19628
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19629
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19630
|
+
|
|
19631
|
+
---
|
|
19632
|
+
|
|
19633
|
+
The following software may be included in this product: micromark-util-decode-numeric-character-reference (2.0.2)
|
|
19634
|
+
This software contains the following license and notice below:
|
|
19635
|
+
|
|
19636
|
+
(The MIT License)
|
|
19637
|
+
|
|
19638
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19639
|
+
|
|
19640
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19641
|
+
a copy of this software and associated documentation files (the
|
|
19642
|
+
'Software'), to deal in the Software without restriction, including
|
|
19643
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19644
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19645
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19646
|
+
the following conditions:
|
|
19647
|
+
|
|
19648
|
+
The above copyright notice and this permission notice shall be
|
|
19649
|
+
included in all copies or substantial portions of the Software.
|
|
19650
|
+
|
|
19651
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19652
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19653
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19654
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19655
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19656
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19657
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19658
|
+
|
|
19659
|
+
---
|
|
19660
|
+
|
|
19661
|
+
The following software may be included in this product: micromark-util-decode-string (2.0.1)
|
|
19662
|
+
This software contains the following license and notice below:
|
|
19663
|
+
|
|
19664
|
+
(The MIT License)
|
|
19665
|
+
|
|
19666
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19667
|
+
|
|
19668
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19669
|
+
a copy of this software and associated documentation files (the
|
|
19670
|
+
'Software'), to deal in the Software without restriction, including
|
|
19671
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19672
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19673
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19674
|
+
the following conditions:
|
|
19675
|
+
|
|
19676
|
+
The above copyright notice and this permission notice shall be
|
|
19677
|
+
included in all copies or substantial portions of the Software.
|
|
19678
|
+
|
|
19679
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19680
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19681
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19682
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19683
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19684
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19685
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19686
|
+
|
|
19687
|
+
---
|
|
19688
|
+
|
|
19689
|
+
The following software may be included in this product: micromark-util-encode (2.0.1)
|
|
19690
|
+
This software contains the following license and notice below:
|
|
19691
|
+
|
|
19692
|
+
(The MIT License)
|
|
19693
|
+
|
|
19694
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19695
|
+
|
|
19696
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19697
|
+
a copy of this software and associated documentation files (the
|
|
19698
|
+
'Software'), to deal in the Software without restriction, including
|
|
19699
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19700
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19701
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19702
|
+
the following conditions:
|
|
19703
|
+
|
|
19704
|
+
The above copyright notice and this permission notice shall be
|
|
19705
|
+
included in all copies or substantial portions of the Software.
|
|
19706
|
+
|
|
19707
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19708
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19709
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19710
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19711
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19712
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19713
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19714
|
+
|
|
19715
|
+
---
|
|
19716
|
+
|
|
19717
|
+
The following software may be included in this product: micromark-util-events-to-acorn (2.0.3)
|
|
19718
|
+
This software contains the following license and notice below:
|
|
19719
|
+
|
|
19720
|
+
(The MIT License)
|
|
19721
|
+
|
|
19722
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19723
|
+
|
|
19724
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19725
|
+
a copy of this software and associated documentation files (the
|
|
19726
|
+
'Software'), to deal in the Software without restriction, including
|
|
19727
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19728
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19729
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19730
|
+
the following conditions:
|
|
19731
|
+
|
|
19732
|
+
The above copyright notice and this permission notice shall be
|
|
19733
|
+
included in all copies or substantial portions of the Software.
|
|
19734
|
+
|
|
19735
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19736
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19737
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19738
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19739
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19740
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19741
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19742
|
+
|
|
19743
|
+
---
|
|
19744
|
+
|
|
19745
|
+
The following software may be included in this product: micromark-util-html-tag-name (2.0.1)
|
|
19746
|
+
This software contains the following license and notice below:
|
|
19747
|
+
|
|
19748
|
+
(The MIT License)
|
|
19749
|
+
|
|
19750
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19751
|
+
|
|
19752
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19753
|
+
a copy of this software and associated documentation files (the
|
|
19754
|
+
'Software'), to deal in the Software without restriction, including
|
|
19755
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19756
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19757
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19758
|
+
the following conditions:
|
|
19759
|
+
|
|
19760
|
+
The above copyright notice and this permission notice shall be
|
|
19761
|
+
included in all copies or substantial portions of the Software.
|
|
19762
|
+
|
|
19763
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19764
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19765
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19766
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19767
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19768
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19769
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19770
|
+
|
|
19771
|
+
---
|
|
19772
|
+
|
|
19773
|
+
The following software may be included in this product: micromark-util-normalize-identifier (2.0.1)
|
|
19774
|
+
This software contains the following license and notice below:
|
|
19775
|
+
|
|
19776
|
+
(The MIT License)
|
|
19777
|
+
|
|
19778
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19779
|
+
|
|
19780
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19781
|
+
a copy of this software and associated documentation files (the
|
|
19782
|
+
'Software'), to deal in the Software without restriction, including
|
|
19783
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19784
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19785
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19786
|
+
the following conditions:
|
|
19787
|
+
|
|
19788
|
+
The above copyright notice and this permission notice shall be
|
|
19789
|
+
included in all copies or substantial portions of the Software.
|
|
19790
|
+
|
|
19791
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19792
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19793
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19794
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19795
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19796
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19797
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19798
|
+
|
|
19799
|
+
---
|
|
19800
|
+
|
|
19801
|
+
The following software may be included in this product: micromark-util-resolve-all (2.0.1)
|
|
19802
|
+
This software contains the following license and notice below:
|
|
19803
|
+
|
|
19804
|
+
(The MIT License)
|
|
19805
|
+
|
|
19806
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19807
|
+
|
|
19808
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19809
|
+
a copy of this software and associated documentation files (the
|
|
19810
|
+
'Software'), to deal in the Software without restriction, including
|
|
19811
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19812
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19813
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19814
|
+
the following conditions:
|
|
19815
|
+
|
|
19816
|
+
The above copyright notice and this permission notice shall be
|
|
19817
|
+
included in all copies or substantial portions of the Software.
|
|
19818
|
+
|
|
19819
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19820
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19821
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19822
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19823
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19824
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19825
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19826
|
+
|
|
19827
|
+
---
|
|
19828
|
+
|
|
19829
|
+
The following software may be included in this product: micromark-util-sanitize-uri (2.0.1)
|
|
19830
|
+
This software contains the following license and notice below:
|
|
19831
|
+
|
|
19832
|
+
(The MIT License)
|
|
19833
|
+
|
|
19834
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
19835
|
+
|
|
19836
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
19837
|
+
a copy of this software and associated documentation files (the
|
|
19838
|
+
'Software'), to deal in the Software without restriction, including
|
|
19839
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
19840
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19841
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
19842
|
+
the following conditions:
|
|
19843
|
+
|
|
19844
|
+
The above copyright notice and this permission notice shall be
|
|
19845
|
+
included in all copies or substantial portions of the Software.
|
|
19846
|
+
|
|
19847
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
19848
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
19849
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19850
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
19851
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19852
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19853
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19854
|
+
|
|
19855
|
+
---
|
|
19856
|
+
|
|
19857
|
+
The following software may be included in this product: micromark-util-subtokenize (2.1.0)
|
|
17975
19858
|
This software contains the following license and notice below:
|
|
17976
19859
|
|
|
17977
19860
|
(The MIT License)
|
|
17978
19861
|
|
|
17979
|
-
Copyright (c)
|
|
19862
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
17980
19863
|
|
|
17981
19864
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
17982
19865
|
a copy of this software and associated documentation files (the
|
|
@@ -17999,13 +19882,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
17999
19882
|
|
|
18000
19883
|
---
|
|
18001
19884
|
|
|
18002
|
-
The following software may be included in this product:
|
|
19885
|
+
The following software may be included in this product: micromark-util-symbol (2.0.1)
|
|
18003
19886
|
This software contains the following license and notice below:
|
|
18004
19887
|
|
|
18005
19888
|
(The MIT License)
|
|
18006
19889
|
|
|
18007
|
-
Copyright (c)
|
|
18008
|
-
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
19890
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
18009
19891
|
|
|
18010
19892
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
18011
19893
|
a copy of this software and associated documentation files (the
|
|
@@ -18028,84 +19910,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
18028
19910
|
|
|
18029
19911
|
---
|
|
18030
19912
|
|
|
18031
|
-
The following software may be included in this product:
|
|
18032
|
-
This software contains the following license and notice below:
|
|
18033
|
-
|
|
18034
|
-
MIT License
|
|
18035
|
-
|
|
18036
|
-
Copyright (c) Jonathan Ong <me@jongleberry.com>
|
|
18037
|
-
Copyright (c) Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
18038
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
18039
|
-
|
|
18040
|
-
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:
|
|
18041
|
-
|
|
18042
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
18043
|
-
|
|
18044
|
-
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.
|
|
18045
|
-
|
|
18046
|
-
---
|
|
18047
|
-
|
|
18048
|
-
The following software may be included in this product: merge-stream (2.0.0)
|
|
18049
|
-
This software contains the following license and notice below:
|
|
18050
|
-
|
|
18051
|
-
The MIT License (MIT)
|
|
18052
|
-
|
|
18053
|
-
Copyright (c) Stephen Sugden <me@stephensugden.com> (stephensugden.com)
|
|
18054
|
-
|
|
18055
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
18056
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
18057
|
-
in the Software without restriction, including without limitation the rights
|
|
18058
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
18059
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
18060
|
-
furnished to do so, subject to the following conditions:
|
|
18061
|
-
|
|
18062
|
-
The above copyright notice and this permission notice shall be included in
|
|
18063
|
-
all copies or substantial portions of the Software.
|
|
18064
|
-
|
|
18065
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18066
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18067
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18068
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18069
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18070
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
18071
|
-
THE SOFTWARE.
|
|
18072
|
-
|
|
18073
|
-
---
|
|
18074
|
-
|
|
18075
|
-
The following software may be included in this product: merge2 (1.4.1)
|
|
18076
|
-
This software contains the following license and notice below:
|
|
18077
|
-
|
|
18078
|
-
The MIT License (MIT)
|
|
18079
|
-
|
|
18080
|
-
Copyright (c) 2014-2020 Teambition
|
|
18081
|
-
|
|
18082
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
18083
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
18084
|
-
in the Software without restriction, including without limitation the rights
|
|
18085
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
18086
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
18087
|
-
furnished to do so, subject to the following conditions:
|
|
18088
|
-
|
|
18089
|
-
The above copyright notice and this permission notice shall be included in all
|
|
18090
|
-
copies or substantial portions of the Software.
|
|
18091
|
-
|
|
18092
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18093
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18094
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18095
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18096
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18097
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
18098
|
-
SOFTWARE.
|
|
18099
|
-
|
|
18100
|
-
---
|
|
18101
|
-
|
|
18102
|
-
The following software may be included in this product: methods (1.1.2)
|
|
19913
|
+
The following software may be included in this product: micromark-util-types (2.0.2)
|
|
18103
19914
|
This software contains the following license and notice below:
|
|
18104
19915
|
|
|
18105
19916
|
(The MIT License)
|
|
18106
19917
|
|
|
18107
|
-
Copyright (c)
|
|
18108
|
-
Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
19918
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
18109
19919
|
|
|
18110
19920
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
18111
19921
|
a copy of this software and associated documentation files (the
|
|
@@ -19172,7 +20982,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
19172
20982
|
|
|
19173
20983
|
---
|
|
19174
20984
|
|
|
19175
|
-
The following software may be included in this product: nx (22.7.
|
|
20985
|
+
The following software may be included in this product: nx (22.7.1)
|
|
19176
20986
|
This software contains the following license and notice below:
|
|
19177
20987
|
|
|
19178
20988
|
(The MIT License)
|
|
@@ -19704,6 +21514,34 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
19704
21514
|
|
|
19705
21515
|
---
|
|
19706
21516
|
|
|
21517
|
+
The following software may be included in this product: parse-entities (4.0.2)
|
|
21518
|
+
This software contains the following license and notice below:
|
|
21519
|
+
|
|
21520
|
+
(The MIT License)
|
|
21521
|
+
|
|
21522
|
+
Copyright (c) Titus Wormer <mailto:tituswormer@gmail.com>
|
|
21523
|
+
|
|
21524
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
21525
|
+
a copy of this software and associated documentation files (the
|
|
21526
|
+
'Software'), to deal in the Software without restriction, including
|
|
21527
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
21528
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
21529
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
21530
|
+
the following conditions:
|
|
21531
|
+
|
|
21532
|
+
The above copyright notice and this permission notice shall be
|
|
21533
|
+
included in all copies or substantial portions of the Software.
|
|
21534
|
+
|
|
21535
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
21536
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
21537
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
21538
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
21539
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
21540
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
21541
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
21542
|
+
|
|
21543
|
+
---
|
|
21544
|
+
|
|
19707
21545
|
The following software may be included in this product: parse-json (5.2.0)
|
|
19708
21546
|
This software contains the following license and notice below:
|
|
19709
21547
|
|
|
@@ -20471,32 +22309,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
20471
22309
|
|
|
20472
22310
|
---
|
|
20473
22311
|
|
|
20474
|
-
The following software may be included in this product: postcss (8.5.8)
|
|
20475
|
-
This software contains the following license and notice below:
|
|
20476
|
-
|
|
20477
|
-
The MIT License (MIT)
|
|
20478
|
-
|
|
20479
|
-
Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
|
|
20480
|
-
|
|
20481
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
20482
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
20483
|
-
the Software without restriction, including without limitation the rights to
|
|
20484
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
20485
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
20486
|
-
subject to the following conditions:
|
|
20487
|
-
|
|
20488
|
-
The above copyright notice and this permission notice shall be included in all
|
|
20489
|
-
copies or substantial portions of the Software.
|
|
20490
|
-
|
|
20491
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20492
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
20493
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
20494
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
20495
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
20496
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20497
|
-
|
|
20498
|
-
---
|
|
20499
|
-
|
|
20500
22312
|
The following software may be included in this product: postcss (8.5.12)
|
|
20501
22313
|
This software contains the following license and notice below:
|
|
20502
22314
|
|
|
@@ -21582,6 +23394,115 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
21582
23394
|
|
|
21583
23395
|
---
|
|
21584
23396
|
|
|
23397
|
+
The following software may be included in this product: remark-frontmatter (5.0.0)
|
|
23398
|
+
This software contains the following license and notice below:
|
|
23399
|
+
|
|
23400
|
+
(The MIT License)
|
|
23401
|
+
|
|
23402
|
+
Copyright (c) 2017 Titus Wormer <tituswormer@gmail.com>
|
|
23403
|
+
|
|
23404
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
23405
|
+
a copy of this software and associated documentation files (the
|
|
23406
|
+
'Software'), to deal in the Software without restriction, including
|
|
23407
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
23408
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
23409
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
23410
|
+
the following conditions:
|
|
23411
|
+
|
|
23412
|
+
The above copyright notice and this permission notice shall be
|
|
23413
|
+
included in all copies or substantial portions of the Software.
|
|
23414
|
+
|
|
23415
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
23416
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
23417
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
23418
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
23419
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
23420
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
23421
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23422
|
+
|
|
23423
|
+
---
|
|
23424
|
+
|
|
23425
|
+
The following software may be included in this product: remark-mdx (3.1.1)
|
|
23426
|
+
This software contains the following license and notice below:
|
|
23427
|
+
|
|
23428
|
+
(The MIT License)
|
|
23429
|
+
|
|
23430
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
23431
|
+
|
|
23432
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
23433
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
23434
|
+
in the Software without restriction, including without limitation the rights
|
|
23435
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
23436
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
23437
|
+
furnished to do so, subject to the following conditions:
|
|
23438
|
+
|
|
23439
|
+
The above copyright notice and this permission notice shall be included in
|
|
23440
|
+
all copies or substantial portions of the Software.
|
|
23441
|
+
|
|
23442
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23443
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23444
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23445
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23446
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
23447
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
23448
|
+
THE SOFTWARE.
|
|
23449
|
+
|
|
23450
|
+
---
|
|
23451
|
+
|
|
23452
|
+
The following software may be included in this product: remark-parse (11.0.0)
|
|
23453
|
+
This software contains the following license and notice below:
|
|
23454
|
+
|
|
23455
|
+
(The MIT License)
|
|
23456
|
+
|
|
23457
|
+
Copyright (c) 2014 Titus Wormer <tituswormer@gmail.com>
|
|
23458
|
+
|
|
23459
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
23460
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
23461
|
+
in the Software without restriction, including without limitation the rights
|
|
23462
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
23463
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
23464
|
+
furnished to do so, subject to the following conditions:
|
|
23465
|
+
|
|
23466
|
+
The above copyright notice and this permission notice shall be included in
|
|
23467
|
+
all copies or substantial portions of the Software.
|
|
23468
|
+
|
|
23469
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23470
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23471
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23472
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23473
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
23474
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
23475
|
+
THE SOFTWARE.
|
|
23476
|
+
|
|
23477
|
+
---
|
|
23478
|
+
|
|
23479
|
+
The following software may be included in this product: remark-stringify (11.0.0)
|
|
23480
|
+
This software contains the following license and notice below:
|
|
23481
|
+
|
|
23482
|
+
(The MIT License)
|
|
23483
|
+
|
|
23484
|
+
Copyright (c) 2014 Titus Wormer <tituswormer@gmail.com>
|
|
23485
|
+
|
|
23486
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
23487
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
23488
|
+
in the Software without restriction, including without limitation the rights
|
|
23489
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
23490
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
23491
|
+
furnished to do so, subject to the following conditions:
|
|
23492
|
+
|
|
23493
|
+
The above copyright notice and this permission notice shall be included in
|
|
23494
|
+
all copies or substantial portions of the Software.
|
|
23495
|
+
|
|
23496
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23497
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23498
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23499
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23500
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
23501
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
23502
|
+
THE SOFTWARE.
|
|
23503
|
+
|
|
23504
|
+
---
|
|
23505
|
+
|
|
21585
23506
|
The following software may be included in this product: require-directory (2.1.1)
|
|
21586
23507
|
This software contains the following license and notice below:
|
|
21587
23508
|
|
|
@@ -25516,6 +27437,34 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
25516
27437
|
|
|
25517
27438
|
---
|
|
25518
27439
|
|
|
27440
|
+
The following software may be included in this product: stringify-entities (4.0.4)
|
|
27441
|
+
This software contains the following license and notice below:
|
|
27442
|
+
|
|
27443
|
+
(The MIT License)
|
|
27444
|
+
|
|
27445
|
+
Copyright (c) 2015 Titus Wormer <mailto:tituswormer@gmail.com>
|
|
27446
|
+
|
|
27447
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
27448
|
+
a copy of this software and associated documentation files (the
|
|
27449
|
+
'Software'), to deal in the Software without restriction, including
|
|
27450
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
27451
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
27452
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
27453
|
+
the following conditions:
|
|
27454
|
+
|
|
27455
|
+
The above copyright notice and this permission notice shall be
|
|
27456
|
+
included in all copies or substantial portions of the Software.
|
|
27457
|
+
|
|
27458
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
27459
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
27460
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
27461
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
27462
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
27463
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
27464
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
27465
|
+
|
|
27466
|
+
---
|
|
27467
|
+
|
|
25519
27468
|
The following software may be included in this product: strip-ansi (6.0.1)
|
|
25520
27469
|
This software contains the following license and notice below:
|
|
25521
27470
|
|
|
@@ -26345,6 +28294,33 @@ SOFTWARE.
|
|
|
26345
28294
|
|
|
26346
28295
|
---
|
|
26347
28296
|
|
|
28297
|
+
The following software may be included in this product: trough (2.2.0)
|
|
28298
|
+
This software contains the following license and notice below:
|
|
28299
|
+
|
|
28300
|
+
(The MIT License)
|
|
28301
|
+
|
|
28302
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
28303
|
+
|
|
28304
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
28305
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
28306
|
+
in the Software without restriction, including without limitation the rights
|
|
28307
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
28308
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
28309
|
+
furnished to do so, subject to the following conditions:
|
|
28310
|
+
|
|
28311
|
+
The above copyright notice and this permission notice shall be included in
|
|
28312
|
+
all copies or substantial portions of the Software.
|
|
28313
|
+
|
|
28314
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
28315
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
28316
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
28317
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
28318
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
28319
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
28320
|
+
THE SOFTWARE.
|
|
28321
|
+
|
|
28322
|
+
---
|
|
28323
|
+
|
|
26348
28324
|
The following software may be included in this product: tsconfig-paths (4.2.0)
|
|
26349
28325
|
This software contains the following license and notice below:
|
|
26350
28326
|
|
|
@@ -26736,6 +28712,173 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
26736
28712
|
|
|
26737
28713
|
---
|
|
26738
28714
|
|
|
28715
|
+
The following software may be included in this product: unified (11.0.5)
|
|
28716
|
+
This software contains the following license and notice below:
|
|
28717
|
+
|
|
28718
|
+
(The MIT License)
|
|
28719
|
+
|
|
28720
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
28721
|
+
|
|
28722
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
28723
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
28724
|
+
in the Software without restriction, including without limitation the rights
|
|
28725
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
28726
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
28727
|
+
furnished to do so, subject to the following conditions:
|
|
28728
|
+
|
|
28729
|
+
The above copyright notice and this permission notice shall be included in
|
|
28730
|
+
all copies or substantial portions of the Software.
|
|
28731
|
+
|
|
28732
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
28733
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
28734
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
28735
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
28736
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
28737
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
28738
|
+
THE SOFTWARE.
|
|
28739
|
+
|
|
28740
|
+
---
|
|
28741
|
+
|
|
28742
|
+
The following software may be included in this product: unist-util-is (6.0.1)
|
|
28743
|
+
This software contains the following license and notice below:
|
|
28744
|
+
|
|
28745
|
+
(The MIT license)
|
|
28746
|
+
|
|
28747
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
28748
|
+
|
|
28749
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
28750
|
+
a copy of this software and associated documentation files (the
|
|
28751
|
+
'Software'), to deal in the Software without restriction, including
|
|
28752
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
28753
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
28754
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
28755
|
+
the following conditions:
|
|
28756
|
+
|
|
28757
|
+
The above copyright notice and this permission notice shall be
|
|
28758
|
+
included in all copies or substantial portions of the Software.
|
|
28759
|
+
|
|
28760
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
28761
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
28762
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
28763
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
28764
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
28765
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
28766
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
28767
|
+
|
|
28768
|
+
---
|
|
28769
|
+
|
|
28770
|
+
The following software may be included in this product: unist-util-position-from-estree (2.0.0)
|
|
28771
|
+
This software contains the following license and notice below:
|
|
28772
|
+
|
|
28773
|
+
(The MIT License)
|
|
28774
|
+
|
|
28775
|
+
Copyright (c) 2021 Titus Wormer <tituswormer@gmail.com>
|
|
28776
|
+
|
|
28777
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
28778
|
+
a copy of this software and associated documentation files (the
|
|
28779
|
+
'Software'), to deal in the Software without restriction, including
|
|
28780
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
28781
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
28782
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
28783
|
+
the following conditions:
|
|
28784
|
+
|
|
28785
|
+
The above copyright notice and this permission notice shall be
|
|
28786
|
+
included in all copies or substantial portions of the Software.
|
|
28787
|
+
|
|
28788
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
28789
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
28790
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
28791
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
28792
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
28793
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
28794
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
28795
|
+
|
|
28796
|
+
---
|
|
28797
|
+
|
|
28798
|
+
The following software may be included in this product: unist-util-stringify-position (4.0.0)
|
|
28799
|
+
This software contains the following license and notice below:
|
|
28800
|
+
|
|
28801
|
+
(The MIT License)
|
|
28802
|
+
|
|
28803
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
28804
|
+
|
|
28805
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
28806
|
+
a copy of this software and associated documentation files (the
|
|
28807
|
+
'Software'), to deal in the Software without restriction, including
|
|
28808
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
28809
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
28810
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
28811
|
+
the following conditions:
|
|
28812
|
+
|
|
28813
|
+
The above copyright notice and this permission notice shall be
|
|
28814
|
+
included in all copies or substantial portions of the Software.
|
|
28815
|
+
|
|
28816
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
28817
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
28818
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
28819
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
28820
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
28821
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
28822
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
28823
|
+
|
|
28824
|
+
---
|
|
28825
|
+
|
|
28826
|
+
The following software may be included in this product: unist-util-visit (5.1.0)
|
|
28827
|
+
This software contains the following license and notice below:
|
|
28828
|
+
|
|
28829
|
+
(The MIT License)
|
|
28830
|
+
|
|
28831
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
28832
|
+
|
|
28833
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
28834
|
+
a copy of this software and associated documentation files (the
|
|
28835
|
+
'Software'), to deal in the Software without restriction, including
|
|
28836
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
28837
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
28838
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
28839
|
+
the following conditions:
|
|
28840
|
+
|
|
28841
|
+
The above copyright notice and this permission notice shall be
|
|
28842
|
+
included in all copies or substantial portions of the Software.
|
|
28843
|
+
|
|
28844
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
28845
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
28846
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
28847
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
28848
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
28849
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
28850
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
28851
|
+
|
|
28852
|
+
---
|
|
28853
|
+
|
|
28854
|
+
The following software may be included in this product: unist-util-visit-parents (6.0.2)
|
|
28855
|
+
This software contains the following license and notice below:
|
|
28856
|
+
|
|
28857
|
+
(The MIT License)
|
|
28858
|
+
|
|
28859
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
28860
|
+
|
|
28861
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
28862
|
+
a copy of this software and associated documentation files (the
|
|
28863
|
+
'Software'), to deal in the Software without restriction, including
|
|
28864
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
28865
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
28866
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
28867
|
+
the following conditions:
|
|
28868
|
+
|
|
28869
|
+
The above copyright notice and this permission notice shall be
|
|
28870
|
+
included in all copies or substantial portions of the Software.
|
|
28871
|
+
|
|
28872
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
28873
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
28874
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
28875
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
28876
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
28877
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
28878
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
28879
|
+
|
|
28880
|
+
---
|
|
28881
|
+
|
|
26739
28882
|
The following software may be included in this product: universalify (0.1.2)
|
|
26740
28883
|
This software contains the following license and notice below:
|
|
26741
28884
|
|
|
@@ -27143,6 +29286,61 @@ THE SOFTWARE
|
|
|
27143
29286
|
|
|
27144
29287
|
---
|
|
27145
29288
|
|
|
29289
|
+
The following software may be included in this product: vfile (6.0.3)
|
|
29290
|
+
This software contains the following license and notice below:
|
|
29291
|
+
|
|
29292
|
+
(The MIT License)
|
|
29293
|
+
|
|
29294
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
29295
|
+
|
|
29296
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
29297
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
29298
|
+
in the Software without restriction, including without limitation the rights
|
|
29299
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
29300
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
29301
|
+
furnished to do so, subject to the following conditions:
|
|
29302
|
+
|
|
29303
|
+
The above copyright notice and this permission notice shall be included in
|
|
29304
|
+
all copies or substantial portions of the Software.
|
|
29305
|
+
|
|
29306
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
29307
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
29308
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
29309
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
29310
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
29311
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
29312
|
+
THE SOFTWARE.
|
|
29313
|
+
|
|
29314
|
+
---
|
|
29315
|
+
|
|
29316
|
+
The following software may be included in this product: vfile-message (4.0.3)
|
|
29317
|
+
This software contains the following license and notice below:
|
|
29318
|
+
|
|
29319
|
+
(The MIT License)
|
|
29320
|
+
|
|
29321
|
+
Copyright (c) Titus Wormer <tituswormer@gmail.com>
|
|
29322
|
+
|
|
29323
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
29324
|
+
a copy of this software and associated documentation files (the
|
|
29325
|
+
'Software'), to deal in the Software without restriction, including
|
|
29326
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
29327
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
29328
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
29329
|
+
the following conditions:
|
|
29330
|
+
|
|
29331
|
+
The above copyright notice and this permission notice shall be
|
|
29332
|
+
included in all copies or substantial portions of the Software.
|
|
29333
|
+
|
|
29334
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
29335
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
29336
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
29337
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
29338
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
29339
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
29340
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
29341
|
+
|
|
29342
|
+
---
|
|
29343
|
+
|
|
27146
29344
|
The following software may be included in this product: vite (8.0.10)
|
|
27147
29345
|
This software contains the following license and notice below:
|
|
27148
29346
|
|
|
@@ -30703,7 +32901,7 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|
|
30703
32901
|
|
|
30704
32902
|
---
|
|
30705
32903
|
|
|
30706
|
-
The following software may be included in this product: zod (4.
|
|
32904
|
+
The following software may be included in this product: zod (4.4.1)
|
|
30707
32905
|
This software contains the following license and notice below:
|
|
30708
32906
|
|
|
30709
32907
|
MIT License
|
|
@@ -30730,6 +32928,34 @@ SOFTWARE.
|
|
|
30730
32928
|
|
|
30731
32929
|
---
|
|
30732
32930
|
|
|
32931
|
+
The following software may be included in this product: zwitch (2.0.4)
|
|
32932
|
+
This software contains the following license and notice below:
|
|
32933
|
+
|
|
32934
|
+
(The MIT License)
|
|
32935
|
+
|
|
32936
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
32937
|
+
|
|
32938
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
32939
|
+
a copy of this software and associated documentation files (the
|
|
32940
|
+
'Software'), to deal in the Software without restriction, including
|
|
32941
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
32942
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
32943
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
32944
|
+
the following conditions:
|
|
32945
|
+
|
|
32946
|
+
The above copyright notice and this permission notice shall be
|
|
32947
|
+
included in all copies or substantial portions of the Software.
|
|
32948
|
+
|
|
32949
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
32950
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
32951
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
32952
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
32953
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
32954
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
32955
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
32956
|
+
|
|
32957
|
+
---
|
|
32958
|
+
|
|
30733
32959
|
The following software may be included in this product: @csstools/color-helpers (6.0.2)
|
|
30734
32960
|
This software contains the following license and notice below:
|
|
30735
32961
|
|
|
@@ -32909,7 +35135,7 @@ limitations under the License.
|
|
|
32909
35135
|
|
|
32910
35136
|
---
|
|
32911
35137
|
|
|
32912
|
-
The following software may be included in this product: @swc/core (1.15.
|
|
35138
|
+
The following software may be included in this product: @swc/core (1.15.32)
|
|
32913
35139
|
This software contains the following license and notice below:
|
|
32914
35140
|
|
|
32915
35141
|
Copyright (c) 강동윤
|