@aws/nx-plugin 0.112.1 → 0.114.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 +957 -429
- package/generators.json +33 -1
- package/package.json +1 -1
- package/src/connection/generator.d.ts +2 -2
- package/src/connection/generator.js +19 -0
- package/src/connection/generator.js.map +1 -1
- package/src/py/project/generator.js +4 -0
- package/src/py/project/generator.js.map +1 -1
- package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +42 -20
- package/src/py/strands-agent/a2a-connection/files/agent-connection/app/__targetAgentSnakeCase___client.py.template +6 -13
- package/src/py/strands-agent/a2a-connection/generator.js +1 -1
- package/src/py/strands-agent/files/a2a/main.py.template +24 -3
- package/src/py/strands-agent/files/ag-ui/main.py.template +3 -2
- package/src/py/strands-agent/files/common/agent.py.template +1 -2
- package/src/py/strands-agent/files/http/main.py.template +32 -13
- package/src/py/strands-agent/generator.js +11 -0
- package/src/py/strands-agent/generator.js.map +1 -1
- package/src/py/strands-agent/mcp-connection/__snapshots__/generator.spec.ts.snap +66 -59
- package/src/py/strands-agent/mcp-connection/files/agent-connection/app/__mcpServerSnakeCase___client.py.template +6 -14
- package/src/py/strands-agent/mcp-connection/generator.js +3 -3
- package/src/smithy/project/__snapshots__/generator.spec.ts.snap +2 -2
- package/src/smithy/project/files/build.Dockerfile.template +1 -1
- package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +4 -3
- package/src/ts/mcp-server/files/http.ts.template +1 -1
- package/src/ts/mcp-server/files/server.ts.template +1 -1
- package/src/ts/mcp-server/files/stdio.ts.template +2 -1
- package/src/ts/nx-plugin/__snapshots__/generator.spec.ts.snap +3 -2
- package/src/ts/rdb/__snapshots__/generator.spec.ts.snap +54 -44
- package/src/ts/rdb/files/src/prisma.ts.template +54 -46
- package/src/ts/rdb/generator.js +3 -0
- package/src/ts/rdb/generator.js.map +1 -1
- package/src/ts/rdb/mcp-server-connection/__snapshots__/generator.spec.ts.snap +117 -0
- package/src/ts/rdb/mcp-server-connection/generator.d.ts +10 -0
- package/src/ts/rdb/mcp-server-connection/generator.js +59 -0
- package/src/ts/rdb/mcp-server-connection/generator.js.map +1 -0
- package/src/ts/rdb/mcp-server-connection/schema.d.ts +14 -0
- package/src/ts/rdb/mcp-server-connection/schema.json +22 -0
- package/src/ts/rdb/smithy-connection/__snapshots__/generator.spec.ts.snap +286 -0
- package/src/ts/rdb/smithy-connection/generator.d.ts +10 -0
- package/src/ts/rdb/smithy-connection/generator.js +72 -0
- package/src/ts/rdb/smithy-connection/generator.js.map +1 -0
- package/src/ts/rdb/smithy-connection/schema.d.ts +12 -0
- package/src/ts/rdb/smithy-connection/schema.json +18 -0
- package/src/ts/rdb/strands-agent-connection/__snapshots__/generator.spec.ts.snap +183 -0
- package/src/ts/rdb/strands-agent-connection/generator.d.ts +10 -0
- package/src/ts/rdb/strands-agent-connection/generator.js +65 -0
- package/src/ts/rdb/strands-agent-connection/generator.js.map +1 -0
- package/src/ts/rdb/strands-agent-connection/schema.d.ts +14 -0
- package/src/ts/rdb/strands-agent-connection/schema.json +22 -0
- package/src/ts/rdb/trpc-connection/__snapshots__/generator.spec.ts.snap +75 -0
- package/src/ts/rdb/trpc-connection/files/src/middleware/__rdbNameKebab__.ts.template +32 -0
- package/src/ts/rdb/trpc-connection/generator.d.ts +10 -0
- package/src/ts/rdb/trpc-connection/generator.js +41 -0
- package/src/ts/rdb/trpc-connection/generator.js.map +1 -0
- package/src/ts/rdb/trpc-connection/schema.d.ts +12 -0
- package/src/ts/rdb/trpc-connection/schema.json +18 -0
- package/src/ts/strands-agent/__snapshots__/generator.spec.ts.snap +17 -7
- package/src/ts/strands-agent/a2a-connection/files/agent-connection/app/__targetAgentKebabCase__-client.ts.template +6 -14
- package/src/ts/strands-agent/a2a-connection/generator.js +2 -3
- package/src/ts/strands-agent/a2a-connection/generator.js.map +1 -1
- package/src/ts/strands-agent/files/a2a/index.ts.template +12 -2
- package/src/ts/strands-agent/files/common/agent.ts.template +2 -4
- package/src/ts/strands-agent/files/http/init.ts.template +12 -1
- package/src/ts/strands-agent/files/http/router.ts.template +3 -2
- package/src/ts/strands-agent/generator.js +7 -0
- package/src/ts/strands-agent/generator.js.map +1 -1
- package/src/ts/strands-agent/mcp-connection/__snapshots__/generator.spec.ts.snap +46 -71
- package/src/ts/strands-agent/mcp-connection/files/agent-connection/app/__mcpServerKebabCase__-client.ts.template +8 -19
- package/src/ts/strands-agent/mcp-connection/generator.js +1 -1
- package/src/ts/strands-agent/mcp-connection/generator.js.map +1 -1
- package/src/utils/agent-connection/agent-connection.js +22 -0
- package/src/utils/agent-connection/agent-connection.js.map +1 -1
- package/src/utils/agent-connection/files/core-a2a/agentcore-a2a-client.ts.template +46 -57
- package/src/utils/agent-connection/files/core-mcp/agentcore-mcp-client.ts.template +35 -51
- package/src/utils/agent-connection/files/core-runtime-config/session-context.ts.template +21 -0
- package/src/utils/agent-connection/files/core-runtime-config/with-session-id.ts.template +27 -0
- package/src/utils/agent-connection/files/py-core-a2a/agentcore_a2a_client.py.template +44 -15
- package/src/utils/agent-connection/files/py-core-mcp/agentcore_mcp_client.py.template +50 -43
- package/src/utils/agent-connection/files/py-core-runtime-config/session_context.py.template +22 -0
- package/src/utils/agent-connection/files/py-core-runtime-config/with_session_id.py.template +44 -0
- package/src/utils/ast.js +9 -2
- package/src/utils/ast.js.map +1 -1
- package/src/utils/bundle/bundle.js +1 -0
- package/src/utils/bundle/bundle.js.map +1 -1
package/LICENSE-THIRD-PARTY
CHANGED
|
@@ -903,6 +903,31 @@ THE SOFTWARE.
|
|
|
903
903
|
|
|
904
904
|
---
|
|
905
905
|
|
|
906
|
+
The following software may be included in this product: @babel/parser (7.29.3)
|
|
907
|
+
This software contains the following license and notice below:
|
|
908
|
+
|
|
909
|
+
Copyright (C) 2012-2014 by various contributors (see AUTHORS)
|
|
910
|
+
|
|
911
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
912
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
913
|
+
in the Software without restriction, including without limitation the rights
|
|
914
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
915
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
916
|
+
furnished to do so, subject to the following conditions:
|
|
917
|
+
|
|
918
|
+
The above copyright notice and this permission notice shall be included in
|
|
919
|
+
all copies or substantial portions of the Software.
|
|
920
|
+
|
|
921
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
922
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
923
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
924
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
925
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
926
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
927
|
+
THE SOFTWARE.
|
|
928
|
+
|
|
929
|
+
---
|
|
930
|
+
|
|
906
931
|
The following software may be included in this product: @babel/plugin-bugfix-firefox-class-in-computed-class-key (7.27.1)
|
|
907
932
|
This software contains the following license and notice below:
|
|
908
933
|
|
|
@@ -3660,66 +3685,12 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3660
3685
|
|
|
3661
3686
|
---
|
|
3662
3687
|
|
|
3663
|
-
The following software may be included in this product: @
|
|
3664
|
-
This software contains the following license and notice below:
|
|
3665
|
-
|
|
3666
|
-
MIT License
|
|
3667
|
-
|
|
3668
|
-
Copyright (c) Hey API
|
|
3669
|
-
|
|
3670
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3671
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3672
|
-
in the Software without restriction, including without limitation the rights
|
|
3673
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3674
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3675
|
-
furnished to do so, subject to the following conditions:
|
|
3676
|
-
|
|
3677
|
-
The above copyright notice and this permission notice shall be included in all
|
|
3678
|
-
copies or substantial portions of the Software.
|
|
3679
|
-
|
|
3680
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3681
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3682
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3683
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3684
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3685
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3686
|
-
SOFTWARE.
|
|
3687
|
-
|
|
3688
|
-
---
|
|
3689
|
-
|
|
3690
|
-
The following software may be included in this product: @hey-api/openapi-ts (0.64.13)
|
|
3691
|
-
This software contains the following license and notice below:
|
|
3692
|
-
|
|
3693
|
-
MIT License
|
|
3694
|
-
|
|
3695
|
-
Copyright (c) Hey API
|
|
3696
|
-
|
|
3697
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3698
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3699
|
-
in the Software without restriction, including without limitation the rights
|
|
3700
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3701
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3702
|
-
furnished to do so, subject to the following conditions:
|
|
3703
|
-
|
|
3704
|
-
The above copyright notice and this permission notice shall be included in all
|
|
3705
|
-
copies or substantial portions of the Software.
|
|
3706
|
-
|
|
3707
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3708
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3709
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3710
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3711
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3712
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3713
|
-
SOFTWARE.
|
|
3714
|
-
|
|
3715
|
-
---
|
|
3716
|
-
|
|
3717
|
-
The following software may be included in this product: @hono/node-server (1.19.9)
|
|
3688
|
+
The following software may be included in this product: @getgrit/gritql-linux-x64-musl (0.0.3)
|
|
3718
3689
|
This software contains the following license and notice below:
|
|
3719
3690
|
|
|
3720
3691
|
MIT License
|
|
3721
3692
|
|
|
3722
|
-
Copyright (c)
|
|
3693
|
+
Copyright (c) The maintainers of @getgrit/gritql-linux-x64-musl <https://github.com/biomejs/gritql#readme>
|
|
3723
3694
|
|
|
3724
3695
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
3725
3696
|
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
@@ -3738,13 +3709,12 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3738
3709
|
|
|
3739
3710
|
---
|
|
3740
3711
|
|
|
3741
|
-
The following software may be included in this product: @
|
|
3712
|
+
The following software may be included in this product: @hey-api/json-schema-ref-parser (1.0.3)
|
|
3742
3713
|
This software contains the following license and notice below:
|
|
3743
3714
|
|
|
3744
3715
|
MIT License
|
|
3745
3716
|
|
|
3746
|
-
Copyright (c)
|
|
3747
|
-
Copyright Contributors to the Jest project.
|
|
3717
|
+
Copyright (c) Hey API
|
|
3748
3718
|
|
|
3749
3719
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3750
3720
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3766,191 +3736,12 @@ SOFTWARE.
|
|
|
3766
3736
|
|
|
3767
3737
|
---
|
|
3768
3738
|
|
|
3769
|
-
The following software may be included in this product: @
|
|
3770
|
-
This software contains the following license and notice below:
|
|
3771
|
-
|
|
3772
|
-
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
3773
|
-
|
|
3774
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3775
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3776
|
-
in the Software without restriction, including without limitation the rights
|
|
3777
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3778
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3779
|
-
furnished to do so, subject to the following conditions:
|
|
3780
|
-
|
|
3781
|
-
The above copyright notice and this permission notice shall be included in
|
|
3782
|
-
all copies or substantial portions of the Software.
|
|
3783
|
-
|
|
3784
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3785
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3786
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3787
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3788
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3789
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3790
|
-
SOFTWARE.
|
|
3791
|
-
|
|
3792
|
-
---
|
|
3793
|
-
|
|
3794
|
-
The following software may be included in this product: @jridgewell/remapping (2.3.5)
|
|
3795
|
-
This software contains the following license and notice below:
|
|
3796
|
-
|
|
3797
|
-
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
3798
|
-
|
|
3799
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3800
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3801
|
-
in the Software without restriction, including without limitation the rights
|
|
3802
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3803
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3804
|
-
furnished to do so, subject to the following conditions:
|
|
3805
|
-
|
|
3806
|
-
The above copyright notice and this permission notice shall be included in
|
|
3807
|
-
all copies or substantial portions of the Software.
|
|
3808
|
-
|
|
3809
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3810
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3811
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3812
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3813
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3814
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3815
|
-
SOFTWARE.
|
|
3816
|
-
|
|
3817
|
-
---
|
|
3818
|
-
|
|
3819
|
-
The following software may be included in this product: @jridgewell/resolve-uri (3.1.2)
|
|
3820
|
-
This software contains the following license and notice below:
|
|
3821
|
-
|
|
3822
|
-
Copyright 2019 Justin Ridgewell <jridgewell@google.com>
|
|
3823
|
-
|
|
3824
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3825
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3826
|
-
in the Software without restriction, including without limitation the rights
|
|
3827
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3828
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3829
|
-
furnished to do so, subject to the following conditions:
|
|
3830
|
-
|
|
3831
|
-
The above copyright notice and this permission notice shall be included in
|
|
3832
|
-
all copies or substantial portions of the Software.
|
|
3833
|
-
|
|
3834
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3835
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3836
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3837
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3838
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3839
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3840
|
-
SOFTWARE.
|
|
3841
|
-
|
|
3842
|
-
---
|
|
3843
|
-
|
|
3844
|
-
The following software may be included in this product: @jridgewell/source-map (0.3.11)
|
|
3845
|
-
This software contains the following license and notice below:
|
|
3846
|
-
|
|
3847
|
-
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
3848
|
-
|
|
3849
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3850
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3851
|
-
in the Software without restriction, including without limitation the rights
|
|
3852
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3853
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3854
|
-
furnished to do so, subject to the following conditions:
|
|
3855
|
-
|
|
3856
|
-
The above copyright notice and this permission notice shall be included in
|
|
3857
|
-
all copies or substantial portions of the Software.
|
|
3858
|
-
|
|
3859
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3860
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3861
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3862
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3863
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3864
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3865
|
-
SOFTWARE.
|
|
3866
|
-
|
|
3867
|
-
---
|
|
3868
|
-
|
|
3869
|
-
The following software may be included in this product: @jridgewell/sourcemap-codec (1.5.5)
|
|
3870
|
-
This software contains the following license and notice below:
|
|
3871
|
-
|
|
3872
|
-
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
3873
|
-
|
|
3874
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3875
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3876
|
-
in the Software without restriction, including without limitation the rights
|
|
3877
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3878
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3879
|
-
furnished to do so, subject to the following conditions:
|
|
3880
|
-
|
|
3881
|
-
The above copyright notice and this permission notice shall be included in
|
|
3882
|
-
all copies or substantial portions of the Software.
|
|
3883
|
-
|
|
3884
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3885
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3886
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3887
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3888
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3889
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3890
|
-
SOFTWARE.
|
|
3891
|
-
|
|
3892
|
-
---
|
|
3893
|
-
|
|
3894
|
-
The following software may be included in this product: @jridgewell/trace-mapping (0.3.31)
|
|
3895
|
-
This software contains the following license and notice below:
|
|
3896
|
-
|
|
3897
|
-
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
3898
|
-
|
|
3899
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3900
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3901
|
-
in the Software without restriction, including without limitation the rights
|
|
3902
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3903
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3904
|
-
furnished to do so, subject to the following conditions:
|
|
3905
|
-
|
|
3906
|
-
The above copyright notice and this permission notice shall be included in
|
|
3907
|
-
all copies or substantial portions of the Software.
|
|
3908
|
-
|
|
3909
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3910
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3911
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3912
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3913
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3914
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3915
|
-
SOFTWARE.
|
|
3916
|
-
|
|
3917
|
-
---
|
|
3918
|
-
|
|
3919
|
-
The following software may be included in this product: @jsdevtools/ono (7.1.3)
|
|
3920
|
-
This software contains the following license and notice below:
|
|
3921
|
-
|
|
3922
|
-
The MIT License (MIT)
|
|
3923
|
-
|
|
3924
|
-
Copyright (c) 2015 James Messinger
|
|
3925
|
-
|
|
3926
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3927
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3928
|
-
in the Software without restriction, including without limitation the rights
|
|
3929
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3930
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3931
|
-
furnished to do so, subject to the following conditions:
|
|
3932
|
-
|
|
3933
|
-
The above copyright notice and this permission notice shall be included in
|
|
3934
|
-
all copies or substantial portions of the Software.
|
|
3935
|
-
|
|
3936
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3937
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3938
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3939
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3940
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3941
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3942
|
-
THE SOFTWARE.
|
|
3943
|
-
|
|
3944
|
-
.
|
|
3945
|
-
|
|
3946
|
-
---
|
|
3947
|
-
|
|
3948
|
-
The following software may be included in this product: @modelcontextprotocol/sdk (1.29.0)
|
|
3739
|
+
The following software may be included in this product: @hey-api/openapi-ts (0.64.13)
|
|
3949
3740
|
This software contains the following license and notice below:
|
|
3950
3741
|
|
|
3951
3742
|
MIT License
|
|
3952
3743
|
|
|
3953
|
-
Copyright (c)
|
|
3744
|
+
Copyright (c) Hey API
|
|
3954
3745
|
|
|
3955
3746
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3956
3747
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3972,12 +3763,37 @@ SOFTWARE.
|
|
|
3972
3763
|
|
|
3973
3764
|
---
|
|
3974
3765
|
|
|
3975
|
-
The following software may be included in this product: @
|
|
3766
|
+
The following software may be included in this product: @hono/node-server (1.19.9)
|
|
3976
3767
|
This software contains the following license and notice below:
|
|
3977
3768
|
|
|
3978
3769
|
MIT License
|
|
3979
3770
|
|
|
3980
|
-
Copyright (c)
|
|
3771
|
+
Copyright (c) Yusuke Wada
|
|
3772
|
+
|
|
3773
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
3774
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
3775
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3776
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
3777
|
+
following conditions:
|
|
3778
|
+
|
|
3779
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
3780
|
+
portions of the Software.
|
|
3781
|
+
|
|
3782
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
3783
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
3784
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3785
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
3786
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3787
|
+
|
|
3788
|
+
---
|
|
3789
|
+
|
|
3790
|
+
The following software may be included in this product: @jest/diff-sequences (30.0.1)
|
|
3791
|
+
This software contains the following license and notice below:
|
|
3792
|
+
|
|
3793
|
+
MIT License
|
|
3794
|
+
|
|
3795
|
+
Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3796
|
+
Copyright Contributors to the Jest project.
|
|
3981
3797
|
|
|
3982
3798
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3983
3799
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -3999,12 +3815,35 @@ SOFTWARE.
|
|
|
3999
3815
|
|
|
4000
3816
|
---
|
|
4001
3817
|
|
|
4002
|
-
The following software may be included in this product: @
|
|
3818
|
+
The following software may be included in this product: @jridgewell/gen-mapping (0.3.13)
|
|
4003
3819
|
This software contains the following license and notice below:
|
|
4004
3820
|
|
|
4005
|
-
|
|
3821
|
+
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
4006
3822
|
|
|
4007
|
-
|
|
3823
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3824
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3825
|
+
in the Software without restriction, including without limitation the rights
|
|
3826
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3827
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3828
|
+
furnished to do so, subject to the following conditions:
|
|
3829
|
+
|
|
3830
|
+
The above copyright notice and this permission notice shall be included in
|
|
3831
|
+
all copies or substantial portions of the Software.
|
|
3832
|
+
|
|
3833
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3834
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3835
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3836
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3837
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3838
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3839
|
+
SOFTWARE.
|
|
3840
|
+
|
|
3841
|
+
---
|
|
3842
|
+
|
|
3843
|
+
The following software may be included in this product: @jridgewell/remapping (2.3.5)
|
|
3844
|
+
This software contains the following license and notice below:
|
|
3845
|
+
|
|
3846
|
+
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
4008
3847
|
|
|
4009
3848
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4010
3849
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4013,8 +3852,8 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
4013
3852
|
copies of the Software, and to permit persons to whom the Software is
|
|
4014
3853
|
furnished to do so, subject to the following conditions:
|
|
4015
3854
|
|
|
4016
|
-
The above copyright notice and this permission notice shall be included in
|
|
4017
|
-
copies or substantial portions of the Software.
|
|
3855
|
+
The above copyright notice and this permission notice shall be included in
|
|
3856
|
+
all copies or substantial portions of the Software.
|
|
4018
3857
|
|
|
4019
3858
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4020
3859
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
@@ -4026,12 +3865,141 @@ SOFTWARE.
|
|
|
4026
3865
|
|
|
4027
3866
|
---
|
|
4028
3867
|
|
|
4029
|
-
The following software may be included in this product: @
|
|
3868
|
+
The following software may be included in this product: @jridgewell/resolve-uri (3.1.2)
|
|
3869
|
+
This software contains the following license and notice below:
|
|
3870
|
+
|
|
3871
|
+
Copyright 2019 Justin Ridgewell <jridgewell@google.com>
|
|
3872
|
+
|
|
3873
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3874
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3875
|
+
in the Software without restriction, including without limitation the rights
|
|
3876
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3877
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3878
|
+
furnished to do so, subject to the following conditions:
|
|
3879
|
+
|
|
3880
|
+
The above copyright notice and this permission notice shall be included in
|
|
3881
|
+
all copies or substantial portions of the Software.
|
|
3882
|
+
|
|
3883
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3884
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3885
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3886
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3887
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3888
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3889
|
+
SOFTWARE.
|
|
3890
|
+
|
|
3891
|
+
---
|
|
3892
|
+
|
|
3893
|
+
The following software may be included in this product: @jridgewell/source-map (0.3.11)
|
|
3894
|
+
This software contains the following license and notice below:
|
|
3895
|
+
|
|
3896
|
+
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
3897
|
+
|
|
3898
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3899
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3900
|
+
in the Software without restriction, including without limitation the rights
|
|
3901
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3902
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3903
|
+
furnished to do so, subject to the following conditions:
|
|
3904
|
+
|
|
3905
|
+
The above copyright notice and this permission notice shall be included in
|
|
3906
|
+
all copies or substantial portions of the Software.
|
|
3907
|
+
|
|
3908
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3909
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3910
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3911
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3912
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3913
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3914
|
+
SOFTWARE.
|
|
3915
|
+
|
|
3916
|
+
---
|
|
3917
|
+
|
|
3918
|
+
The following software may be included in this product: @jridgewell/sourcemap-codec (1.5.5)
|
|
3919
|
+
This software contains the following license and notice below:
|
|
3920
|
+
|
|
3921
|
+
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
3922
|
+
|
|
3923
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3924
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3925
|
+
in the Software without restriction, including without limitation the rights
|
|
3926
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3927
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3928
|
+
furnished to do so, subject to the following conditions:
|
|
3929
|
+
|
|
3930
|
+
The above copyright notice and this permission notice shall be included in
|
|
3931
|
+
all copies or substantial portions of the Software.
|
|
3932
|
+
|
|
3933
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3934
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3935
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3936
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3937
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3938
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3939
|
+
SOFTWARE.
|
|
3940
|
+
|
|
3941
|
+
---
|
|
3942
|
+
|
|
3943
|
+
The following software may be included in this product: @jridgewell/trace-mapping (0.3.31)
|
|
3944
|
+
This software contains the following license and notice below:
|
|
3945
|
+
|
|
3946
|
+
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
3947
|
+
|
|
3948
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3949
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3950
|
+
in the Software without restriction, including without limitation the rights
|
|
3951
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3952
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3953
|
+
furnished to do so, subject to the following conditions:
|
|
3954
|
+
|
|
3955
|
+
The above copyright notice and this permission notice shall be included in
|
|
3956
|
+
all copies or substantial portions of the Software.
|
|
3957
|
+
|
|
3958
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3959
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3960
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3961
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3962
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3963
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3964
|
+
SOFTWARE.
|
|
3965
|
+
|
|
3966
|
+
---
|
|
3967
|
+
|
|
3968
|
+
The following software may be included in this product: @jsdevtools/ono (7.1.3)
|
|
3969
|
+
This software contains the following license and notice below:
|
|
3970
|
+
|
|
3971
|
+
The MIT License (MIT)
|
|
3972
|
+
|
|
3973
|
+
Copyright (c) 2015 James Messinger
|
|
3974
|
+
|
|
3975
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3976
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3977
|
+
in the Software without restriction, including without limitation the rights
|
|
3978
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3979
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3980
|
+
furnished to do so, subject to the following conditions:
|
|
3981
|
+
|
|
3982
|
+
The above copyright notice and this permission notice shall be included in
|
|
3983
|
+
all copies or substantial portions of the Software.
|
|
3984
|
+
|
|
3985
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3986
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3987
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3988
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3989
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3990
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3991
|
+
THE SOFTWARE.
|
|
3992
|
+
|
|
3993
|
+
.
|
|
3994
|
+
|
|
3995
|
+
---
|
|
3996
|
+
|
|
3997
|
+
The following software may be included in this product: @modelcontextprotocol/sdk (1.29.0)
|
|
4030
3998
|
This software contains the following license and notice below:
|
|
4031
3999
|
|
|
4032
4000
|
MIT License
|
|
4033
4001
|
|
|
4034
|
-
Copyright (c)
|
|
4002
|
+
Copyright (c) 2024 Anthropic, PBC
|
|
4035
4003
|
|
|
4036
4004
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4037
4005
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4053,12 +4021,12 @@ SOFTWARE.
|
|
|
4053
4021
|
|
|
4054
4022
|
---
|
|
4055
4023
|
|
|
4056
|
-
The following software may be included in this product: @module-federation/
|
|
4024
|
+
The following software may be included in this product: @module-federation/bridge-react-webpack-plugin (0.21.6)
|
|
4057
4025
|
This software contains the following license and notice below:
|
|
4058
4026
|
|
|
4059
4027
|
MIT License
|
|
4060
4028
|
|
|
4061
|
-
Copyright (c)
|
|
4029
|
+
Copyright (c) 2020 ScriptedAlchemy LLC (Zack Jackson) Zhou Shaw (zhouxiao)
|
|
4062
4030
|
|
|
4063
4031
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4064
4032
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4080,12 +4048,12 @@ SOFTWARE.
|
|
|
4080
4048
|
|
|
4081
4049
|
---
|
|
4082
4050
|
|
|
4083
|
-
The following software may be included in this product: @module-federation/
|
|
4051
|
+
The following software may be included in this product: @module-federation/bridge-react-webpack-plugin (2.3.3)
|
|
4084
4052
|
This software contains the following license and notice below:
|
|
4085
4053
|
|
|
4086
4054
|
MIT License
|
|
4087
4055
|
|
|
4088
|
-
Copyright (c)
|
|
4056
|
+
Copyright (c) 2020 ScriptedAlchemy LLC (Zack Jackson) Zhou Shaw (zhouxiao)
|
|
4089
4057
|
|
|
4090
4058
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4091
4059
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4107,12 +4075,12 @@ SOFTWARE.
|
|
|
4107
4075
|
|
|
4108
4076
|
---
|
|
4109
4077
|
|
|
4110
|
-
The following software may be included in this product: @module-federation/
|
|
4078
|
+
The following software may be included in this product: @module-federation/cli (0.21.6)
|
|
4111
4079
|
This software contains the following license and notice below:
|
|
4112
4080
|
|
|
4113
4081
|
MIT License
|
|
4114
4082
|
|
|
4115
|
-
Copyright (c)
|
|
4083
|
+
Copyright (c) 2025-present hanric(2heal1)
|
|
4116
4084
|
|
|
4117
4085
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4118
4086
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4134,12 +4102,12 @@ SOFTWARE.
|
|
|
4134
4102
|
|
|
4135
4103
|
---
|
|
4136
4104
|
|
|
4137
|
-
The following software may be included in this product: @module-federation/
|
|
4105
|
+
The following software may be included in this product: @module-federation/cli (2.3.3)
|
|
4138
4106
|
This software contains the following license and notice below:
|
|
4139
4107
|
|
|
4140
4108
|
MIT License
|
|
4141
4109
|
|
|
4142
|
-
Copyright (c)
|
|
4110
|
+
Copyright (c) 2025-present hanric(2heal1)
|
|
4143
4111
|
|
|
4144
4112
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4145
4113
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4161,12 +4129,12 @@ SOFTWARE.
|
|
|
4161
4129
|
|
|
4162
4130
|
---
|
|
4163
4131
|
|
|
4164
|
-
The following software may be included in this product: @module-federation/
|
|
4132
|
+
The following software may be included in this product: @module-federation/data-prefetch (0.21.6)
|
|
4165
4133
|
This software contains the following license and notice below:
|
|
4166
4134
|
|
|
4167
4135
|
MIT License
|
|
4168
4136
|
|
|
4169
|
-
Copyright (c) 2024-present
|
|
4137
|
+
Copyright (c) 2024-present nieyan(nyqykk)
|
|
4170
4138
|
|
|
4171
4139
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4172
4140
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4188,12 +4156,12 @@ SOFTWARE.
|
|
|
4188
4156
|
|
|
4189
4157
|
---
|
|
4190
4158
|
|
|
4191
|
-
The following software may be included in this product: @module-federation/
|
|
4159
|
+
The following software may be included in this product: @module-federation/data-prefetch (2.3.3)
|
|
4192
4160
|
This software contains the following license and notice below:
|
|
4193
4161
|
|
|
4194
4162
|
MIT License
|
|
4195
4163
|
|
|
4196
|
-
Copyright (c)
|
|
4164
|
+
Copyright (c) 2024-present nieyan(nyqykk)
|
|
4197
4165
|
|
|
4198
4166
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4199
4167
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4215,12 +4183,12 @@ SOFTWARE.
|
|
|
4215
4183
|
|
|
4216
4184
|
---
|
|
4217
4185
|
|
|
4218
|
-
The following software may be included in this product: @module-federation/
|
|
4186
|
+
The following software may be included in this product: @module-federation/dts-plugin (0.21.6)
|
|
4219
4187
|
This software contains the following license and notice below:
|
|
4220
4188
|
|
|
4221
4189
|
MIT License
|
|
4222
4190
|
|
|
4223
|
-
Copyright (c)
|
|
4191
|
+
Copyright (c) 2024-present danpeen(dapeen.feng)
|
|
4224
4192
|
|
|
4225
4193
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4226
4194
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4242,12 +4210,12 @@ SOFTWARE.
|
|
|
4242
4210
|
|
|
4243
4211
|
---
|
|
4244
4212
|
|
|
4245
|
-
The following software may be included in this product: @module-federation/
|
|
4213
|
+
The following software may be included in this product: @module-federation/dts-plugin (2.3.3)
|
|
4246
4214
|
This software contains the following license and notice below:
|
|
4247
4215
|
|
|
4248
4216
|
MIT License
|
|
4249
4217
|
|
|
4250
|
-
Copyright (c)
|
|
4218
|
+
Copyright (c) 2024-present danpeen(dapeen.feng)
|
|
4251
4219
|
|
|
4252
4220
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4253
4221
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4269,7 +4237,7 @@ SOFTWARE.
|
|
|
4269
4237
|
|
|
4270
4238
|
---
|
|
4271
4239
|
|
|
4272
|
-
The following software may be included in this product: @module-federation/
|
|
4240
|
+
The following software may be included in this product: @module-federation/enhanced (0.21.6)
|
|
4273
4241
|
This software contains the following license and notice below:
|
|
4274
4242
|
|
|
4275
4243
|
MIT License
|
|
@@ -4296,12 +4264,12 @@ SOFTWARE.
|
|
|
4296
4264
|
|
|
4297
4265
|
---
|
|
4298
4266
|
|
|
4299
|
-
The following software may be included in this product: @module-federation/
|
|
4267
|
+
The following software may be included in this product: @module-federation/enhanced (2.3.3)
|
|
4300
4268
|
This software contains the following license and notice below:
|
|
4301
4269
|
|
|
4302
4270
|
MIT License
|
|
4303
4271
|
|
|
4304
|
-
Copyright (c)
|
|
4272
|
+
Copyright (c) 2020 ScriptedAlchemy LLC (Zack Jackson) Zhou Shaw (zhouxiao)
|
|
4305
4273
|
|
|
4306
4274
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4307
4275
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4323,12 +4291,12 @@ SOFTWARE.
|
|
|
4323
4291
|
|
|
4324
4292
|
---
|
|
4325
4293
|
|
|
4326
|
-
The following software may be included in this product: @module-federation/
|
|
4294
|
+
The following software may be included in this product: @module-federation/error-codes (0.21.6)
|
|
4327
4295
|
This software contains the following license and notice below:
|
|
4328
4296
|
|
|
4329
4297
|
MIT License
|
|
4330
4298
|
|
|
4331
|
-
Copyright (c)
|
|
4299
|
+
Copyright (c) 2020 ScriptedAlchemy LLC (Zack Jackson) Zhou Shaw (zhouxiao)
|
|
4332
4300
|
|
|
4333
4301
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4334
4302
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4350,12 +4318,12 @@ SOFTWARE.
|
|
|
4350
4318
|
|
|
4351
4319
|
---
|
|
4352
4320
|
|
|
4353
|
-
The following software may be included in this product: @module-federation/
|
|
4321
|
+
The following software may be included in this product: @module-federation/error-codes (2.3.3)
|
|
4354
4322
|
This software contains the following license and notice below:
|
|
4355
4323
|
|
|
4356
4324
|
MIT License
|
|
4357
4325
|
|
|
4358
|
-
Copyright (c)
|
|
4326
|
+
Copyright (c) 2020 ScriptedAlchemy LLC (Zack Jackson) Zhou Shaw (zhouxiao)
|
|
4359
4327
|
|
|
4360
4328
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4361
4329
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4377,12 +4345,12 @@ SOFTWARE.
|
|
|
4377
4345
|
|
|
4378
4346
|
---
|
|
4379
4347
|
|
|
4380
|
-
The following software may be included in this product: @module-federation/
|
|
4348
|
+
The following software may be included in this product: @module-federation/inject-external-runtime-core-plugin (0.21.6)
|
|
4381
4349
|
This software contains the following license and notice below:
|
|
4382
4350
|
|
|
4383
4351
|
MIT License
|
|
4384
4352
|
|
|
4385
|
-
Copyright (c) 2024-present
|
|
4353
|
+
Copyright (c) 2024-present zhanghang(2heal1)
|
|
4386
4354
|
|
|
4387
4355
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4388
4356
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4404,12 +4372,12 @@ SOFTWARE.
|
|
|
4404
4372
|
|
|
4405
4373
|
---
|
|
4406
4374
|
|
|
4407
|
-
The following software may be included in this product: @module-federation/
|
|
4375
|
+
The following software may be included in this product: @module-federation/inject-external-runtime-core-plugin (2.3.3)
|
|
4408
4376
|
This software contains the following license and notice below:
|
|
4409
4377
|
|
|
4410
4378
|
MIT License
|
|
4411
4379
|
|
|
4412
|
-
Copyright (c) 2024-present
|
|
4380
|
+
Copyright (c) 2024-present zhanghang(2heal1)
|
|
4413
4381
|
|
|
4414
4382
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4415
4383
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4431,7 +4399,7 @@ SOFTWARE.
|
|
|
4431
4399
|
|
|
4432
4400
|
---
|
|
4433
4401
|
|
|
4434
|
-
The following software may be included in this product: @module-federation/
|
|
4402
|
+
The following software may be included in this product: @module-federation/managers (0.21.6)
|
|
4435
4403
|
This software contains the following license and notice below:
|
|
4436
4404
|
|
|
4437
4405
|
MIT License
|
|
@@ -4458,12 +4426,12 @@ SOFTWARE.
|
|
|
4458
4426
|
|
|
4459
4427
|
---
|
|
4460
4428
|
|
|
4461
|
-
The following software may be included in this product: @module-federation/
|
|
4429
|
+
The following software may be included in this product: @module-federation/managers (2.3.3)
|
|
4462
4430
|
This software contains the following license and notice below:
|
|
4463
4431
|
|
|
4464
4432
|
MIT License
|
|
4465
4433
|
|
|
4466
|
-
Copyright (c)
|
|
4434
|
+
Copyright (c) 2024-present hanric(2heal1)
|
|
4467
4435
|
|
|
4468
4436
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4469
4437
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -4485,7 +4453,88 @@ SOFTWARE.
|
|
|
4485
4453
|
|
|
4486
4454
|
---
|
|
4487
4455
|
|
|
4488
|
-
The following software may be included in this product: @module-federation/
|
|
4456
|
+
The following software may be included in this product: @module-federation/manifest (0.21.6)
|
|
4457
|
+
This software contains the following license and notice below:
|
|
4458
|
+
|
|
4459
|
+
MIT License
|
|
4460
|
+
|
|
4461
|
+
Copyright (c) 2024-present hanric(2heal1)
|
|
4462
|
+
|
|
4463
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4464
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4465
|
+
in the Software without restriction, including without limitation the rights
|
|
4466
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4467
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4468
|
+
furnished to do so, subject to the following conditions:
|
|
4469
|
+
|
|
4470
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4471
|
+
copies or substantial portions of the Software.
|
|
4472
|
+
|
|
4473
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4474
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4475
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4476
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4477
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4478
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4479
|
+
SOFTWARE.
|
|
4480
|
+
|
|
4481
|
+
---
|
|
4482
|
+
|
|
4483
|
+
The following software may be included in this product: @module-federation/manifest (2.3.3)
|
|
4484
|
+
This software contains the following license and notice below:
|
|
4485
|
+
|
|
4486
|
+
MIT License
|
|
4487
|
+
|
|
4488
|
+
Copyright (c) 2024-present hanric(2heal1)
|
|
4489
|
+
|
|
4490
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4491
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4492
|
+
in the Software without restriction, including without limitation the rights
|
|
4493
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4494
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4495
|
+
furnished to do so, subject to the following conditions:
|
|
4496
|
+
|
|
4497
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4498
|
+
copies or substantial portions of the Software.
|
|
4499
|
+
|
|
4500
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4501
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4502
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4503
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4504
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4505
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4506
|
+
SOFTWARE.
|
|
4507
|
+
|
|
4508
|
+
---
|
|
4509
|
+
|
|
4510
|
+
The following software may be included in this product: @module-federation/node (2.7.25)
|
|
4511
|
+
This software contains the following license and notice below:
|
|
4512
|
+
|
|
4513
|
+
MIT License
|
|
4514
|
+
|
|
4515
|
+
Copyright (c) 2020 ScriptedAlchemy LLC (Zack Jackson) Zhou Shaw (zhouxiao)
|
|
4516
|
+
|
|
4517
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4518
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4519
|
+
in the Software without restriction, including without limitation the rights
|
|
4520
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4521
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4522
|
+
furnished to do so, subject to the following conditions:
|
|
4523
|
+
|
|
4524
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4525
|
+
copies or substantial portions of the Software.
|
|
4526
|
+
|
|
4527
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4528
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4529
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4530
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4531
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4532
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4533
|
+
SOFTWARE.
|
|
4534
|
+
|
|
4535
|
+
---
|
|
4536
|
+
|
|
4537
|
+
The following software may be included in this product: @module-federation/rspack (0.21.6)
|
|
4489
4538
|
This software contains the following license and notice below:
|
|
4490
4539
|
|
|
4491
4540
|
MIT License
|
|
@@ -5133,6 +5182,34 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5133
5182
|
|
|
5134
5183
|
---
|
|
5135
5184
|
|
|
5185
|
+
The following software may be included in this product: @nx/nx-linux-x64-musl (22.7.1)
|
|
5186
|
+
This software contains the following license and notice below:
|
|
5187
|
+
|
|
5188
|
+
(The MIT License)
|
|
5189
|
+
|
|
5190
|
+
Copyright (c) 2017-2026 Narwhal Technologies Inc.
|
|
5191
|
+
|
|
5192
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
5193
|
+
a copy of this software and associated documentation files (the
|
|
5194
|
+
'Software'), to deal in the Software without restriction, including
|
|
5195
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
5196
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
5197
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
5198
|
+
the following conditions:
|
|
5199
|
+
|
|
5200
|
+
The above copyright notice and this permission notice shall be
|
|
5201
|
+
included in all copies or substantial portions of the Software.
|
|
5202
|
+
|
|
5203
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
5204
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
5205
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
5206
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5207
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
5208
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5209
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5210
|
+
|
|
5211
|
+
---
|
|
5212
|
+
|
|
5136
5213
|
The following software may be included in this product: @nx/playwright (22.7.1)
|
|
5137
5214
|
This software contains the following license and notice below:
|
|
5138
5215
|
|
|
@@ -5408,6 +5485,30 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5408
5485
|
|
|
5409
5486
|
---
|
|
5410
5487
|
|
|
5488
|
+
The following software may be included in this product: @oxc-resolver/binding-linux-x64-musl (11.19.1)
|
|
5489
|
+
This software contains the following license and notice below:
|
|
5490
|
+
|
|
5491
|
+
MIT License
|
|
5492
|
+
|
|
5493
|
+
Copyright (c) The maintainers of @oxc-resolver/binding-linux-x64-musl <https://oxc.rs>
|
|
5494
|
+
|
|
5495
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5496
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5497
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5498
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5499
|
+
following conditions:
|
|
5500
|
+
|
|
5501
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5502
|
+
portions of the Software.
|
|
5503
|
+
|
|
5504
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5505
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5506
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5507
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5508
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5509
|
+
|
|
5510
|
+
---
|
|
5511
|
+
|
|
5411
5512
|
The following software may be included in this product: @phenomnomnominal/tsquery (6.1.4)
|
|
5412
5513
|
This software contains the following license and notice below:
|
|
5413
5514
|
|
|
@@ -5744,97 +5845,12 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5744
5845
|
|
|
5745
5846
|
---
|
|
5746
5847
|
|
|
5747
|
-
The following software may be included in this product: @rolldown/
|
|
5748
|
-
This software contains the following license and notice below:
|
|
5749
|
-
|
|
5750
|
-
MIT License
|
|
5751
|
-
|
|
5752
|
-
Copyright (c) 2024-present VoidZero Inc. & Contributors
|
|
5753
|
-
|
|
5754
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5755
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
5756
|
-
in the Software without restriction, including without limitation the rights
|
|
5757
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5758
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
5759
|
-
furnished to do so, subject to the following conditions:
|
|
5760
|
-
|
|
5761
|
-
The above copyright notice and this permission notice shall be included in all
|
|
5762
|
-
copies or substantial portions of the Software.
|
|
5763
|
-
|
|
5764
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5765
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5766
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5767
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5768
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5769
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5770
|
-
SOFTWARE.
|
|
5771
|
-
|
|
5772
|
-
end of terms and conditions
|
|
5773
|
-
|
|
5774
|
-
The licenses of externally maintained libraries from which parts of the Software is derived are listed [here](https://github.com/rolldown/rolldown/blob/main/THIRD-PARTY-LICENSE).
|
|
5775
|
-
|
|
5776
|
-
---
|
|
5777
|
-
|
|
5778
|
-
The following software may be included in this product: @rollup/plugin-babel (6.0.4)
|
|
5779
|
-
This software contains the following license and notice below:
|
|
5780
|
-
|
|
5781
|
-
The MIT License (MIT)
|
|
5782
|
-
|
|
5783
|
-
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
|
5784
|
-
|
|
5785
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5786
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
5787
|
-
in the Software without restriction, including without limitation the rights
|
|
5788
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5789
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
5790
|
-
furnished to do so, subject to the following conditions:
|
|
5791
|
-
|
|
5792
|
-
The above copyright notice and this permission notice shall be included in
|
|
5793
|
-
all copies or substantial portions of the Software.
|
|
5794
|
-
|
|
5795
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5796
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5797
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5798
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5799
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5800
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
5801
|
-
THE SOFTWARE.
|
|
5802
|
-
|
|
5803
|
-
---
|
|
5804
|
-
|
|
5805
|
-
The following software may be included in this product: @rollup/plugin-commonjs (25.0.8)
|
|
5806
|
-
This software contains the following license and notice below:
|
|
5807
|
-
|
|
5808
|
-
The MIT License (MIT)
|
|
5809
|
-
|
|
5810
|
-
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
|
5811
|
-
|
|
5812
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5813
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
5814
|
-
in the Software without restriction, including without limitation the rights
|
|
5815
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5816
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
5817
|
-
furnished to do so, subject to the following conditions:
|
|
5818
|
-
|
|
5819
|
-
The above copyright notice and this permission notice shall be included in
|
|
5820
|
-
all copies or substantial portions of the Software.
|
|
5821
|
-
|
|
5822
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5823
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5824
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5825
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5826
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5827
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
5828
|
-
THE SOFTWARE.
|
|
5829
|
-
|
|
5830
|
-
---
|
|
5831
|
-
|
|
5832
|
-
The following software may be included in this product: @rollup/plugin-image (3.0.3)
|
|
5848
|
+
The following software may be included in this product: @rolldown/binding-linux-x64-musl (1.0.0-rc.17)
|
|
5833
5849
|
This software contains the following license and notice below:
|
|
5834
5850
|
|
|
5835
5851
|
MIT License
|
|
5836
5852
|
|
|
5837
|
-
Copyright (c)
|
|
5853
|
+
Copyright (c) The maintainers of @rolldown/binding-linux-x64-musl <https://rolldown.rs/>
|
|
5838
5854
|
|
|
5839
5855
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5840
5856
|
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
@@ -5853,12 +5869,12 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5853
5869
|
|
|
5854
5870
|
---
|
|
5855
5871
|
|
|
5856
|
-
The following software may be included in this product: @
|
|
5872
|
+
The following software may be included in this product: @rolldown/pluginutils (1.0.0-rc.17)
|
|
5857
5873
|
This software contains the following license and notice below:
|
|
5858
5874
|
|
|
5859
|
-
|
|
5875
|
+
MIT License
|
|
5860
5876
|
|
|
5861
|
-
Copyright (c)
|
|
5877
|
+
Copyright (c) 2024-present VoidZero Inc. & Contributors
|
|
5862
5878
|
|
|
5863
5879
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5864
5880
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -5867,47 +5883,156 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
5867
5883
|
copies of the Software, and to permit persons to whom the Software is
|
|
5868
5884
|
furnished to do so, subject to the following conditions:
|
|
5869
5885
|
|
|
5870
|
-
The above copyright notice and this permission notice shall be included in
|
|
5871
|
-
|
|
5886
|
+
The above copyright notice and this permission notice shall be included in all
|
|
5887
|
+
copies or substantial portions of the Software.
|
|
5872
5888
|
|
|
5873
5889
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5874
5890
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5875
5891
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5876
5892
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5877
5893
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5878
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
5879
|
-
|
|
5880
|
-
|
|
5881
|
-
---
|
|
5882
|
-
|
|
5883
|
-
The following software may be included in this product: @rollup/plugin-node-resolve (15.3.1)
|
|
5884
|
-
This software contains the following license and notice below:
|
|
5885
|
-
|
|
5886
|
-
The MIT License (MIT)
|
|
5887
|
-
|
|
5888
|
-
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
|
5889
|
-
|
|
5890
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5891
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
5892
|
-
in the Software without restriction, including without limitation the rights
|
|
5893
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5894
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
5895
|
-
furnished to do so, subject to the following conditions:
|
|
5894
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5895
|
+
SOFTWARE.
|
|
5896
5896
|
|
|
5897
|
-
|
|
5898
|
-
all copies or substantial portions of the Software.
|
|
5897
|
+
end of terms and conditions
|
|
5899
5898
|
|
|
5900
|
-
|
|
5901
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5902
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5903
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5904
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5905
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
5906
|
-
THE SOFTWARE.
|
|
5899
|
+
The licenses of externally maintained libraries from which parts of the Software is derived are listed [here](https://github.com/rolldown/rolldown/blob/main/THIRD-PARTY-LICENSE).
|
|
5907
5900
|
|
|
5908
5901
|
---
|
|
5909
5902
|
|
|
5910
|
-
The following software may be included in this product: @rollup/plugin-
|
|
5903
|
+
The following software may be included in this product: @rollup/plugin-babel (6.0.4)
|
|
5904
|
+
This software contains the following license and notice below:
|
|
5905
|
+
|
|
5906
|
+
The MIT License (MIT)
|
|
5907
|
+
|
|
5908
|
+
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
|
5909
|
+
|
|
5910
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5911
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5912
|
+
in the Software without restriction, including without limitation the rights
|
|
5913
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5914
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
5915
|
+
furnished to do so, subject to the following conditions:
|
|
5916
|
+
|
|
5917
|
+
The above copyright notice and this permission notice shall be included in
|
|
5918
|
+
all copies or substantial portions of the Software.
|
|
5919
|
+
|
|
5920
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5921
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5922
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5923
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5924
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5925
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
5926
|
+
THE SOFTWARE.
|
|
5927
|
+
|
|
5928
|
+
---
|
|
5929
|
+
|
|
5930
|
+
The following software may be included in this product: @rollup/plugin-commonjs (25.0.8)
|
|
5931
|
+
This software contains the following license and notice below:
|
|
5932
|
+
|
|
5933
|
+
The MIT License (MIT)
|
|
5934
|
+
|
|
5935
|
+
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
|
5936
|
+
|
|
5937
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5938
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5939
|
+
in the Software without restriction, including without limitation the rights
|
|
5940
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5941
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
5942
|
+
furnished to do so, subject to the following conditions:
|
|
5943
|
+
|
|
5944
|
+
The above copyright notice and this permission notice shall be included in
|
|
5945
|
+
all copies or substantial portions of the Software.
|
|
5946
|
+
|
|
5947
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5948
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5949
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5950
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5951
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5952
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
5953
|
+
THE SOFTWARE.
|
|
5954
|
+
|
|
5955
|
+
---
|
|
5956
|
+
|
|
5957
|
+
The following software may be included in this product: @rollup/plugin-image (3.0.3)
|
|
5958
|
+
This software contains the following license and notice below:
|
|
5959
|
+
|
|
5960
|
+
MIT License
|
|
5961
|
+
|
|
5962
|
+
Copyright (c) Rich Harris
|
|
5963
|
+
|
|
5964
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5965
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5966
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5967
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5968
|
+
following conditions:
|
|
5969
|
+
|
|
5970
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5971
|
+
portions of the Software.
|
|
5972
|
+
|
|
5973
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5974
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5975
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5976
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5977
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5978
|
+
|
|
5979
|
+
---
|
|
5980
|
+
|
|
5981
|
+
The following software may be included in this product: @rollup/plugin-json (6.1.0)
|
|
5982
|
+
This software contains the following license and notice below:
|
|
5983
|
+
|
|
5984
|
+
The MIT License (MIT)
|
|
5985
|
+
|
|
5986
|
+
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
|
5987
|
+
|
|
5988
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5989
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5990
|
+
in the Software without restriction, including without limitation the rights
|
|
5991
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5992
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
5993
|
+
furnished to do so, subject to the following conditions:
|
|
5994
|
+
|
|
5995
|
+
The above copyright notice and this permission notice shall be included in
|
|
5996
|
+
all copies or substantial portions of the Software.
|
|
5997
|
+
|
|
5998
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5999
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6000
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6001
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6002
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6003
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
6004
|
+
THE SOFTWARE.
|
|
6005
|
+
|
|
6006
|
+
---
|
|
6007
|
+
|
|
6008
|
+
The following software may be included in this product: @rollup/plugin-node-resolve (15.3.1)
|
|
6009
|
+
This software contains the following license and notice below:
|
|
6010
|
+
|
|
6011
|
+
The MIT License (MIT)
|
|
6012
|
+
|
|
6013
|
+
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
|
|
6014
|
+
|
|
6015
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6016
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6017
|
+
in the Software without restriction, including without limitation the rights
|
|
6018
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6019
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6020
|
+
furnished to do so, subject to the following conditions:
|
|
6021
|
+
|
|
6022
|
+
The above copyright notice and this permission notice shall be included in
|
|
6023
|
+
all copies or substantial portions of the Software.
|
|
6024
|
+
|
|
6025
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6026
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6027
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6028
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6029
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6030
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
6031
|
+
THE SOFTWARE.
|
|
6032
|
+
|
|
6033
|
+
---
|
|
6034
|
+
|
|
6035
|
+
The following software may be included in this product: @rollup/plugin-typescript (12.1.4)
|
|
5911
6036
|
This software contains the following license and notice below:
|
|
5912
6037
|
|
|
5913
6038
|
The MIT License (MIT)
|
|
@@ -6009,6 +6134,30 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
6009
6134
|
|
|
6010
6135
|
---
|
|
6011
6136
|
|
|
6137
|
+
The following software may be included in this product: @rollup/rollup-linux-x64-musl (4.50.1)
|
|
6138
|
+
This software contains the following license and notice below:
|
|
6139
|
+
|
|
6140
|
+
MIT License
|
|
6141
|
+
|
|
6142
|
+
Copyright (c) Lukas Taegert-Atkinson
|
|
6143
|
+
|
|
6144
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
6145
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
6146
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6147
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
6148
|
+
following conditions:
|
|
6149
|
+
|
|
6150
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
6151
|
+
portions of the Software.
|
|
6152
|
+
|
|
6153
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
6154
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
6155
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
6156
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
6157
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
6158
|
+
|
|
6159
|
+
---
|
|
6160
|
+
|
|
6012
6161
|
The following software may be included in this product: @rspack/binding (1.6.8)
|
|
6013
6162
|
This software contains the following license and notice below:
|
|
6014
6163
|
|
|
@@ -6064,6 +6213,33 @@ SOFTWARE.
|
|
|
6064
6213
|
|
|
6065
6214
|
---
|
|
6066
6215
|
|
|
6216
|
+
The following software may be included in this product: @rspack/binding-linux-x64-musl (1.6.8)
|
|
6217
|
+
This software contains the following license and notice below:
|
|
6218
|
+
|
|
6219
|
+
MIT License
|
|
6220
|
+
|
|
6221
|
+
Copyright (c) 2022-present Bytedance Inc and its affiliates.
|
|
6222
|
+
|
|
6223
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6224
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6225
|
+
in the Software without restriction, including without limitation the rights
|
|
6226
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6227
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6228
|
+
furnished to do so, subject to the following conditions:
|
|
6229
|
+
|
|
6230
|
+
The above copyright notice and this permission notice shall be included in all
|
|
6231
|
+
copies or substantial portions of the Software.
|
|
6232
|
+
|
|
6233
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6234
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6235
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6236
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6237
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6238
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6239
|
+
SOFTWARE.
|
|
6240
|
+
|
|
6241
|
+
---
|
|
6242
|
+
|
|
6067
6243
|
The following software may be included in this product: @rspack/core (1.6.8)
|
|
6068
6244
|
This software contains the following license and notice below:
|
|
6069
6245
|
|
|
@@ -15725,7 +15901,7 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I
|
|
|
15725
15901
|
|
|
15726
15902
|
---
|
|
15727
15903
|
|
|
15728
|
-
The following software may be included in this product: immutable (4.3.
|
|
15904
|
+
The following software may be included in this product: immutable (4.3.8)
|
|
15729
15905
|
This software contains the following license and notice below:
|
|
15730
15906
|
|
|
15731
15907
|
MIT License
|
|
@@ -16736,33 +16912,6 @@ THE SOFTWARE.
|
|
|
16736
16912
|
|
|
16737
16913
|
---
|
|
16738
16914
|
|
|
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
|
-
|
|
16766
16915
|
The following software may be included in this product: js-yaml (4.1.1)
|
|
16767
16916
|
This software contains the following license and notice below:
|
|
16768
16917
|
|
|
@@ -20448,7 +20597,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
20448
20597
|
|
|
20449
20598
|
---
|
|
20450
20599
|
|
|
20451
|
-
The following software may be included in this product: needle (3.
|
|
20600
|
+
The following software may be included in this product: needle (3.5.0)
|
|
20452
20601
|
This software contains the following license and notice below:
|
|
20453
20602
|
|
|
20454
20603
|
Copyright (c) Fork, Ltd.
|
|
@@ -44177,6 +44326,385 @@ defined by the Mozilla Public License, v. 2.0.
|
|
|
44177
44326
|
|
|
44178
44327
|
---
|
|
44179
44328
|
|
|
44329
|
+
The following software may be included in this product: lightningcss-linux-x64-musl (1.32.0)
|
|
44330
|
+
This software contains the following license and notice below:
|
|
44331
|
+
|
|
44332
|
+
Mozilla Public License Version 2.0
|
|
44333
|
+
==================================
|
|
44334
|
+
|
|
44335
|
+
1. Definitions
|
|
44336
|
+
--------------
|
|
44337
|
+
|
|
44338
|
+
1.1. "Contributor"
|
|
44339
|
+
means each individual or legal entity that creates, contributes to
|
|
44340
|
+
the creation of, or owns Covered Software.
|
|
44341
|
+
|
|
44342
|
+
1.2. "Contributor Version"
|
|
44343
|
+
means the combination of the Contributions of others (if any) used
|
|
44344
|
+
by a Contributor and that particular Contributor's Contribution.
|
|
44345
|
+
|
|
44346
|
+
1.3. "Contribution"
|
|
44347
|
+
means Covered Software of a particular Contributor.
|
|
44348
|
+
|
|
44349
|
+
1.4. "Covered Software"
|
|
44350
|
+
means Source Code Form to which the initial Contributor has attached
|
|
44351
|
+
the notice in Exhibit A, the Executable Form of such Source Code
|
|
44352
|
+
Form, and Modifications of such Source Code Form, in each case
|
|
44353
|
+
including portions thereof.
|
|
44354
|
+
|
|
44355
|
+
1.5. "Incompatible With Secondary Licenses"
|
|
44356
|
+
means
|
|
44357
|
+
|
|
44358
|
+
(a) that the initial Contributor has attached the notice described
|
|
44359
|
+
in Exhibit B to the Covered Software; or
|
|
44360
|
+
|
|
44361
|
+
(b) that the Covered Software was made available under the terms of
|
|
44362
|
+
version 1.1 or earlier of the License, but not also under the
|
|
44363
|
+
terms of a Secondary License.
|
|
44364
|
+
|
|
44365
|
+
1.6. "Executable Form"
|
|
44366
|
+
means any form of the work other than Source Code Form.
|
|
44367
|
+
|
|
44368
|
+
1.7. "Larger Work"
|
|
44369
|
+
means a work that combines Covered Software with other material, in
|
|
44370
|
+
a separate file or files, that is not Covered Software.
|
|
44371
|
+
|
|
44372
|
+
1.8. "License"
|
|
44373
|
+
means this document.
|
|
44374
|
+
|
|
44375
|
+
1.9. "Licensable"
|
|
44376
|
+
means having the right to grant, to the maximum extent possible,
|
|
44377
|
+
whether at the time of the initial grant or subsequently, any and
|
|
44378
|
+
all of the rights conveyed by this License.
|
|
44379
|
+
|
|
44380
|
+
1.10. "Modifications"
|
|
44381
|
+
means any of the following:
|
|
44382
|
+
|
|
44383
|
+
(a) any file in Source Code Form that results from an addition to,
|
|
44384
|
+
deletion from, or modification of the contents of Covered
|
|
44385
|
+
Software; or
|
|
44386
|
+
|
|
44387
|
+
(b) any new file in Source Code Form that contains any Covered
|
|
44388
|
+
Software.
|
|
44389
|
+
|
|
44390
|
+
1.11. "Patent Claims" of a Contributor
|
|
44391
|
+
means any patent claim(s), including without limitation, method,
|
|
44392
|
+
process, and apparatus claims, in any patent Licensable by such
|
|
44393
|
+
Contributor that would be infringed, but for the grant of the
|
|
44394
|
+
License, by the making, using, selling, offering for sale, having
|
|
44395
|
+
made, import, or transfer of either its Contributions or its
|
|
44396
|
+
Contributor Version.
|
|
44397
|
+
|
|
44398
|
+
1.12. "Secondary License"
|
|
44399
|
+
means either the GNU General Public License, Version 2.0, the GNU
|
|
44400
|
+
Lesser General Public License, Version 2.1, the GNU Affero General
|
|
44401
|
+
Public License, Version 3.0, or any later versions of those
|
|
44402
|
+
licenses.
|
|
44403
|
+
|
|
44404
|
+
1.13. "Source Code Form"
|
|
44405
|
+
means the form of the work preferred for making modifications.
|
|
44406
|
+
|
|
44407
|
+
1.14. "You" (or "Your")
|
|
44408
|
+
means an individual or a legal entity exercising rights under this
|
|
44409
|
+
License. For legal entities, "You" includes any entity that
|
|
44410
|
+
controls, is controlled by, or is under common control with You. For
|
|
44411
|
+
purposes of this definition, "control" means (a) the power, direct
|
|
44412
|
+
or indirect, to cause the direction or management of such entity,
|
|
44413
|
+
whether by contract or otherwise, or (b) ownership of more than
|
|
44414
|
+
fifty percent (50%) of the outstanding shares or beneficial
|
|
44415
|
+
ownership of such entity.
|
|
44416
|
+
|
|
44417
|
+
2. License Grants and Conditions
|
|
44418
|
+
--------------------------------
|
|
44419
|
+
|
|
44420
|
+
2.1. Grants
|
|
44421
|
+
|
|
44422
|
+
Each Contributor hereby grants You a world-wide, royalty-free,
|
|
44423
|
+
non-exclusive license:
|
|
44424
|
+
|
|
44425
|
+
(a) under intellectual property rights (other than patent or trademark)
|
|
44426
|
+
Licensable by such Contributor to use, reproduce, make available,
|
|
44427
|
+
modify, display, perform, distribute, and otherwise exploit its
|
|
44428
|
+
Contributions, either on an unmodified basis, with Modifications, or
|
|
44429
|
+
as part of a Larger Work; and
|
|
44430
|
+
|
|
44431
|
+
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
|
44432
|
+
for sale, have made, import, and otherwise transfer either its
|
|
44433
|
+
Contributions or its Contributor Version.
|
|
44434
|
+
|
|
44435
|
+
2.2. Effective Date
|
|
44436
|
+
|
|
44437
|
+
The licenses granted in Section 2.1 with respect to any Contribution
|
|
44438
|
+
become effective for each Contribution on the date the Contributor first
|
|
44439
|
+
distributes such Contribution.
|
|
44440
|
+
|
|
44441
|
+
2.3. Limitations on Grant Scope
|
|
44442
|
+
|
|
44443
|
+
The licenses granted in this Section 2 are the only rights granted under
|
|
44444
|
+
this License. No additional rights or licenses will be implied from the
|
|
44445
|
+
distribution or licensing of Covered Software under this License.
|
|
44446
|
+
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
|
44447
|
+
Contributor:
|
|
44448
|
+
|
|
44449
|
+
(a) for any code that a Contributor has removed from Covered Software;
|
|
44450
|
+
or
|
|
44451
|
+
|
|
44452
|
+
(b) for infringements caused by: (i) Your and any other third party's
|
|
44453
|
+
modifications of Covered Software, or (ii) the combination of its
|
|
44454
|
+
Contributions with other software (except as part of its Contributor
|
|
44455
|
+
Version); or
|
|
44456
|
+
|
|
44457
|
+
(c) under Patent Claims infringed by Covered Software in the absence of
|
|
44458
|
+
its Contributions.
|
|
44459
|
+
|
|
44460
|
+
This License does not grant any rights in the trademarks, service marks,
|
|
44461
|
+
or logos of any Contributor (except as may be necessary to comply with
|
|
44462
|
+
the notice requirements in Section 3.4).
|
|
44463
|
+
|
|
44464
|
+
2.4. Subsequent Licenses
|
|
44465
|
+
|
|
44466
|
+
No Contributor makes additional grants as a result of Your choice to
|
|
44467
|
+
distribute the Covered Software under a subsequent version of this
|
|
44468
|
+
License (see Section 10.2) or under the terms of a Secondary License (if
|
|
44469
|
+
permitted under the terms of Section 3.3).
|
|
44470
|
+
|
|
44471
|
+
2.5. Representation
|
|
44472
|
+
|
|
44473
|
+
Each Contributor represents that the Contributor believes its
|
|
44474
|
+
Contributions are its original creation(s) or it has sufficient rights
|
|
44475
|
+
to grant the rights to its Contributions conveyed by this License.
|
|
44476
|
+
|
|
44477
|
+
2.6. Fair Use
|
|
44478
|
+
|
|
44479
|
+
This License is not intended to limit any rights You have under
|
|
44480
|
+
applicable copyright doctrines of fair use, fair dealing, or other
|
|
44481
|
+
equivalents.
|
|
44482
|
+
|
|
44483
|
+
2.7. Conditions
|
|
44484
|
+
|
|
44485
|
+
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
|
44486
|
+
in Section 2.1.
|
|
44487
|
+
|
|
44488
|
+
3. Responsibilities
|
|
44489
|
+
-------------------
|
|
44490
|
+
|
|
44491
|
+
3.1. Distribution of Source Form
|
|
44492
|
+
|
|
44493
|
+
All distribution of Covered Software in Source Code Form, including any
|
|
44494
|
+
Modifications that You create or to which You contribute, must be under
|
|
44495
|
+
the terms of this License. You must inform recipients that the Source
|
|
44496
|
+
Code Form of the Covered Software is governed by the terms of this
|
|
44497
|
+
License, and how they can obtain a copy of this License. You may not
|
|
44498
|
+
attempt to alter or restrict the recipients' rights in the Source Code
|
|
44499
|
+
Form.
|
|
44500
|
+
|
|
44501
|
+
3.2. Distribution of Executable Form
|
|
44502
|
+
|
|
44503
|
+
If You distribute Covered Software in Executable Form then:
|
|
44504
|
+
|
|
44505
|
+
(a) such Covered Software must also be made available in Source Code
|
|
44506
|
+
Form, as described in Section 3.1, and You must inform recipients of
|
|
44507
|
+
the Executable Form how they can obtain a copy of such Source Code
|
|
44508
|
+
Form by reasonable means in a timely manner, at a charge no more
|
|
44509
|
+
than the cost of distribution to the recipient; and
|
|
44510
|
+
|
|
44511
|
+
(b) You may distribute such Executable Form under the terms of this
|
|
44512
|
+
License, or sublicense it under different terms, provided that the
|
|
44513
|
+
license for the Executable Form does not attempt to limit or alter
|
|
44514
|
+
the recipients' rights in the Source Code Form under this License.
|
|
44515
|
+
|
|
44516
|
+
3.3. Distribution of a Larger Work
|
|
44517
|
+
|
|
44518
|
+
You may create and distribute a Larger Work under terms of Your choice,
|
|
44519
|
+
provided that You also comply with the requirements of this License for
|
|
44520
|
+
the Covered Software. If the Larger Work is a combination of Covered
|
|
44521
|
+
Software with a work governed by one or more Secondary Licenses, and the
|
|
44522
|
+
Covered Software is not Incompatible With Secondary Licenses, this
|
|
44523
|
+
License permits You to additionally distribute such Covered Software
|
|
44524
|
+
under the terms of such Secondary License(s), so that the recipient of
|
|
44525
|
+
the Larger Work may, at their option, further distribute the Covered
|
|
44526
|
+
Software under the terms of either this License or such Secondary
|
|
44527
|
+
License(s).
|
|
44528
|
+
|
|
44529
|
+
3.4. Notices
|
|
44530
|
+
|
|
44531
|
+
You may not remove or alter the substance of any license notices
|
|
44532
|
+
(including copyright notices, patent notices, disclaimers of warranty,
|
|
44533
|
+
or limitations of liability) contained within the Source Code Form of
|
|
44534
|
+
the Covered Software, except that You may alter any license notices to
|
|
44535
|
+
the extent required to remedy known factual inaccuracies.
|
|
44536
|
+
|
|
44537
|
+
3.5. Application of Additional Terms
|
|
44538
|
+
|
|
44539
|
+
You may choose to offer, and to charge a fee for, warranty, support,
|
|
44540
|
+
indemnity or liability obligations to one or more recipients of Covered
|
|
44541
|
+
Software. However, You may do so only on Your own behalf, and not on
|
|
44542
|
+
behalf of any Contributor. You must make it absolutely clear that any
|
|
44543
|
+
such warranty, support, indemnity, or liability obligation is offered by
|
|
44544
|
+
You alone, and You hereby agree to indemnify every Contributor for any
|
|
44545
|
+
liability incurred by such Contributor as a result of warranty, support,
|
|
44546
|
+
indemnity or liability terms You offer. You may include additional
|
|
44547
|
+
disclaimers of warranty and limitations of liability specific to any
|
|
44548
|
+
jurisdiction.
|
|
44549
|
+
|
|
44550
|
+
4. Inability to Comply Due to Statute or Regulation
|
|
44551
|
+
---------------------------------------------------
|
|
44552
|
+
|
|
44553
|
+
If it is impossible for You to comply with any of the terms of this
|
|
44554
|
+
License with respect to some or all of the Covered Software due to
|
|
44555
|
+
statute, judicial order, or regulation then You must: (a) comply with
|
|
44556
|
+
the terms of this License to the maximum extent possible; and (b)
|
|
44557
|
+
describe the limitations and the code they affect. Such description must
|
|
44558
|
+
be placed in a text file included with all distributions of the Covered
|
|
44559
|
+
Software under this License. Except to the extent prohibited by statute
|
|
44560
|
+
or regulation, such description must be sufficiently detailed for a
|
|
44561
|
+
recipient of ordinary skill to be able to understand it.
|
|
44562
|
+
|
|
44563
|
+
5. Termination
|
|
44564
|
+
--------------
|
|
44565
|
+
|
|
44566
|
+
5.1. The rights granted under this License will terminate automatically
|
|
44567
|
+
if You fail to comply with any of its terms. However, if You become
|
|
44568
|
+
compliant, then the rights granted under this License from a particular
|
|
44569
|
+
Contributor are reinstated (a) provisionally, unless and until such
|
|
44570
|
+
Contributor explicitly and finally terminates Your grants, and (b) on an
|
|
44571
|
+
ongoing basis, if such Contributor fails to notify You of the
|
|
44572
|
+
non-compliance by some reasonable means prior to 60 days after You have
|
|
44573
|
+
come back into compliance. Moreover, Your grants from a particular
|
|
44574
|
+
Contributor are reinstated on an ongoing basis if such Contributor
|
|
44575
|
+
notifies You of the non-compliance by some reasonable means, this is the
|
|
44576
|
+
first time You have received notice of non-compliance with this License
|
|
44577
|
+
from such Contributor, and You become compliant prior to 30 days after
|
|
44578
|
+
Your receipt of the notice.
|
|
44579
|
+
|
|
44580
|
+
5.2. If You initiate litigation against any entity by asserting a patent
|
|
44581
|
+
infringement claim (excluding declaratory judgment actions,
|
|
44582
|
+
counter-claims, and cross-claims) alleging that a Contributor Version
|
|
44583
|
+
directly or indirectly infringes any patent, then the rights granted to
|
|
44584
|
+
You by any and all Contributors for the Covered Software under Section
|
|
44585
|
+
2.1 of this License shall terminate.
|
|
44586
|
+
|
|
44587
|
+
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
|
44588
|
+
end user license agreements (excluding distributors and resellers) which
|
|
44589
|
+
have been validly granted by You or Your distributors under this License
|
|
44590
|
+
prior to termination shall survive termination.
|
|
44591
|
+
|
|
44592
|
+
************************************************************************
|
|
44593
|
+
* *
|
|
44594
|
+
* 6. Disclaimer of Warranty *
|
|
44595
|
+
* ------------------------- *
|
|
44596
|
+
* *
|
|
44597
|
+
* Covered Software is provided under this License on an "as is" *
|
|
44598
|
+
* basis, without warranty of any kind, either expressed, implied, or *
|
|
44599
|
+
* statutory, including, without limitation, warranties that the *
|
|
44600
|
+
* Covered Software is free of defects, merchantable, fit for a *
|
|
44601
|
+
* particular purpose or non-infringing. The entire risk as to the *
|
|
44602
|
+
* quality and performance of the Covered Software is with You. *
|
|
44603
|
+
* Should any Covered Software prove defective in any respect, You *
|
|
44604
|
+
* (not any Contributor) assume the cost of any necessary servicing, *
|
|
44605
|
+
* repair, or correction. This disclaimer of warranty constitutes an *
|
|
44606
|
+
* essential part of this License. No use of any Covered Software is *
|
|
44607
|
+
* authorized under this License except under this disclaimer. *
|
|
44608
|
+
* *
|
|
44609
|
+
************************************************************************
|
|
44610
|
+
|
|
44611
|
+
************************************************************************
|
|
44612
|
+
* *
|
|
44613
|
+
* 7. Limitation of Liability *
|
|
44614
|
+
* -------------------------- *
|
|
44615
|
+
* *
|
|
44616
|
+
* Under no circumstances and under no legal theory, whether tort *
|
|
44617
|
+
* (including negligence), contract, or otherwise, shall any *
|
|
44618
|
+
* Contributor, or anyone who distributes Covered Software as *
|
|
44619
|
+
* permitted above, be liable to You for any direct, indirect, *
|
|
44620
|
+
* special, incidental, or consequential damages of any character *
|
|
44621
|
+
* including, without limitation, damages for lost profits, loss of *
|
|
44622
|
+
* goodwill, work stoppage, computer failure or malfunction, or any *
|
|
44623
|
+
* and all other commercial damages or losses, even if such party *
|
|
44624
|
+
* shall have been informed of the possibility of such damages. This *
|
|
44625
|
+
* limitation of liability shall not apply to liability for death or *
|
|
44626
|
+
* personal injury resulting from such party's negligence to the *
|
|
44627
|
+
* extent applicable law prohibits such limitation. Some *
|
|
44628
|
+
* jurisdictions do not allow the exclusion or limitation of *
|
|
44629
|
+
* incidental or consequential damages, so this exclusion and *
|
|
44630
|
+
* limitation may not apply to You. *
|
|
44631
|
+
* *
|
|
44632
|
+
************************************************************************
|
|
44633
|
+
|
|
44634
|
+
8. Litigation
|
|
44635
|
+
-------------
|
|
44636
|
+
|
|
44637
|
+
Any litigation relating to this License may be brought only in the
|
|
44638
|
+
courts of a jurisdiction where the defendant maintains its principal
|
|
44639
|
+
place of business and such litigation shall be governed by laws of that
|
|
44640
|
+
jurisdiction, without reference to its conflict-of-law provisions.
|
|
44641
|
+
Nothing in this Section shall prevent a party's ability to bring
|
|
44642
|
+
cross-claims or counter-claims.
|
|
44643
|
+
|
|
44644
|
+
9. Miscellaneous
|
|
44645
|
+
----------------
|
|
44646
|
+
|
|
44647
|
+
This License represents the complete agreement concerning the subject
|
|
44648
|
+
matter hereof. If any provision of this License is held to be
|
|
44649
|
+
unenforceable, such provision shall be reformed only to the extent
|
|
44650
|
+
necessary to make it enforceable. Any law or regulation which provides
|
|
44651
|
+
that the language of a contract shall be construed against the drafter
|
|
44652
|
+
shall not be used to construe this License against a Contributor.
|
|
44653
|
+
|
|
44654
|
+
10. Versions of the License
|
|
44655
|
+
---------------------------
|
|
44656
|
+
|
|
44657
|
+
10.1. New Versions
|
|
44658
|
+
|
|
44659
|
+
Mozilla Foundation is the license steward. Except as provided in Section
|
|
44660
|
+
10.3, no one other than the license steward has the right to modify or
|
|
44661
|
+
publish new versions of this License. Each version will be given a
|
|
44662
|
+
distinguishing version number.
|
|
44663
|
+
|
|
44664
|
+
10.2. Effect of New Versions
|
|
44665
|
+
|
|
44666
|
+
You may distribute the Covered Software under the terms of the version
|
|
44667
|
+
of the License under which You originally received the Covered Software,
|
|
44668
|
+
or under the terms of any subsequent version published by the license
|
|
44669
|
+
steward.
|
|
44670
|
+
|
|
44671
|
+
10.3. Modified Versions
|
|
44672
|
+
|
|
44673
|
+
If you create software not governed by this License, and you want to
|
|
44674
|
+
create a new license for such software, you may create and use a
|
|
44675
|
+
modified version of this License if you rename the license and remove
|
|
44676
|
+
any references to the name of the license steward (except to note that
|
|
44677
|
+
such modified license differs from this License).
|
|
44678
|
+
|
|
44679
|
+
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
|
44680
|
+
Licenses
|
|
44681
|
+
|
|
44682
|
+
If You choose to distribute Source Code Form that is Incompatible With
|
|
44683
|
+
Secondary Licenses under the terms of this version of the License, the
|
|
44684
|
+
notice described in Exhibit B of this License must be attached.
|
|
44685
|
+
|
|
44686
|
+
Exhibit A - Source Code Form License Notice
|
|
44687
|
+
-------------------------------------------
|
|
44688
|
+
|
|
44689
|
+
This Source Code Form is subject to the terms of the Mozilla Public
|
|
44690
|
+
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
44691
|
+
file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
44692
|
+
|
|
44693
|
+
If it is not possible or desirable to put the notice in a particular
|
|
44694
|
+
file, then You may include the notice in a location (such as a LICENSE
|
|
44695
|
+
file in a relevant directory) where a recipient would be likely to look
|
|
44696
|
+
for such a notice.
|
|
44697
|
+
|
|
44698
|
+
You may add additional accurate notices of copyright ownership.
|
|
44699
|
+
|
|
44700
|
+
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
|
44701
|
+
---------------------------------------------------------
|
|
44702
|
+
|
|
44703
|
+
This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
44704
|
+
defined by the Mozilla Public License, v. 2.0.
|
|
44705
|
+
|
|
44706
|
+
---
|
|
44707
|
+
|
|
44180
44708
|
The following software may be included in this product: pip-requirements-js (1.0.3)
|
|
44181
44709
|
This software contains the following license and notice below:
|
|
44182
44710
|
|