@aws/nx-plugin 0.83.0 → 0.84.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.
Files changed (70) hide show
  1. package/LICENSE-THIRD-PARTY +580 -724
  2. package/generators.json +16 -8
  3. package/package.json +1 -1
  4. package/src/connection/generator.d.ts +12 -0
  5. package/src/connection/generator.js +27 -8
  6. package/src/connection/generator.js.map +1 -1
  7. package/src/infra/app/schema.d.ts +1 -0
  8. package/src/infra/app/schema.json +5 -0
  9. package/src/py/fast-api/__snapshots__/generator.spec.ts.snap +3 -0
  10. package/src/py/fast-api/generator.js +2 -0
  11. package/src/py/fast-api/generator.js.map +1 -1
  12. package/src/py/fast-api/schema.d.ts +1 -0
  13. package/src/py/fast-api/schema.json +5 -0
  14. package/src/py/mcp-server/generator.js +14 -0
  15. package/src/py/mcp-server/generator.js.map +1 -1
  16. package/src/py/project/generator.d.ts +1 -0
  17. package/src/py/project/generator.js +10 -2
  18. package/src/py/project/generator.js.map +1 -1
  19. package/src/py/project/schema.d.ts +1 -0
  20. package/src/py/project/schema.json +5 -0
  21. package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +5 -5
  22. package/src/py/strands-agent/files/app/agent.py.template +5 -5
  23. package/src/py/strands-agent/generator.js +13 -0
  24. package/src/py/strands-agent/generator.js.map +1 -1
  25. package/src/smithy/ts/api/schema.d.ts +1 -0
  26. package/src/smithy/ts/api/schema.json +5 -0
  27. package/src/terraform/project/schema.d.ts +1 -0
  28. package/src/terraform/project/schema.json +5 -0
  29. package/src/trpc/backend/generator.js +1 -0
  30. package/src/trpc/backend/generator.js.map +1 -1
  31. package/src/trpc/backend/schema.d.ts +1 -0
  32. package/src/trpc/backend/schema.json +5 -0
  33. package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +2 -2
  34. package/src/ts/mcp-server/files/Dockerfile.template +1 -1
  35. package/src/ts/mcp-server/files/server.ts.template +2 -2
  36. package/src/ts/mcp-server/files/tools/divide.ts.template +13 -0
  37. package/src/ts/mcp-server/generator.js +15 -1
  38. package/src/ts/mcp-server/generator.js.map +1 -1
  39. package/src/ts/nx-plugin/__snapshots__/generator.spec.ts.snap +24 -0
  40. package/src/ts/react-website/app/generator.js +5 -4
  41. package/src/ts/react-website/app/generator.js.map +1 -1
  42. package/src/ts/react-website/app/schema.d.ts +1 -0
  43. package/src/ts/react-website/app/schema.json +5 -0
  44. package/src/ts/strands-agent/__snapshots__/generator.spec.ts.snap +48 -153
  45. package/src/ts/strands-agent/files/app/agent-core-trpc-client.ts.template +19 -2
  46. package/src/ts/strands-agent/files/app/agent.ts.template +11 -9
  47. package/src/ts/strands-agent/files/app/index.ts.template +10 -1
  48. package/src/ts/strands-agent/files/app/init.ts.template +3 -2
  49. package/src/ts/strands-agent/files/app/router.ts.template +1 -1
  50. package/src/ts/strands-agent/files/deploy/Dockerfile.template +1 -1
  51. package/src/ts/strands-agent/generator.js +13 -1
  52. package/src/ts/strands-agent/generator.js.map +1 -1
  53. package/src/ts/strands-agent/mcp-connection/__snapshots__/generator.spec.ts.snap +231 -0
  54. package/src/ts/strands-agent/mcp-connection/files/agent-connection/app/__mcpServerKebabCase__-client.ts.template +37 -0
  55. package/src/ts/strands-agent/mcp-connection/generator.d.ts +10 -0
  56. package/src/ts/strands-agent/mcp-connection/generator.js +124 -0
  57. package/src/ts/strands-agent/mcp-connection/generator.js.map +1 -0
  58. package/src/ts/strands-agent/mcp-connection/schema.d.ts +15 -0
  59. package/src/ts/strands-agent/mcp-connection/schema.json +26 -0
  60. package/src/utils/agent-connection/agent-connection.d.ts +11 -0
  61. package/src/utils/agent-connection/agent-connection.js +35 -0
  62. package/src/utils/agent-connection/agent-connection.js.map +1 -0
  63. package/src/{ts/strands-agent/files/app/agent-core-mcp-client.ts.template → utils/agent-connection/files/core/agentcore-mcp-client.ts.template} +62 -35
  64. package/src/utils/ast.js +16 -7
  65. package/src/utils/ast.js.map +1 -1
  66. package/src/utils/identity-constructs/files/terraform/core/user-identity/identity/identity.tf.template +8 -0
  67. package/src/utils/versions.d.ts +2 -1
  68. package/src/utils/versions.js +1 -0
  69. package/src/utils/versions.js.map +1 -1
  70. package/src/ts/mcp-server/files/tools/add.ts.template +0 -13
@@ -207,7 +207,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
207
207
 
208
208
  ---
209
209
 
210
- The following software may be included in this product: @babel/core (7.28.4)
210
+ The following software may be included in this product: @babel/compat-data (7.29.0)
211
211
  This software contains the following license and notice below:
212
212
 
213
213
  MIT License
@@ -235,7 +235,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
235
235
 
236
236
  ---
237
237
 
238
- The following software may be included in this product: @babel/generator (7.28.3)
238
+ The following software may be included in this product: @babel/core (7.28.4)
239
239
  This software contains the following license and notice below:
240
240
 
241
241
  MIT License
@@ -263,7 +263,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
263
263
 
264
264
  ---
265
265
 
266
- The following software may be included in this product: @babel/helper-annotate-as-pure (7.27.3)
266
+ The following software may be included in this product: @babel/core (7.29.0)
267
267
  This software contains the following license and notice below:
268
268
 
269
269
  MIT License
@@ -291,7 +291,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
291
291
 
292
292
  ---
293
293
 
294
- The following software may be included in this product: @babel/helper-compilation-targets (7.27.2)
294
+ The following software may be included in this product: @babel/generator (7.28.3)
295
295
  This software contains the following license and notice below:
296
296
 
297
297
  MIT License
@@ -319,7 +319,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
319
319
 
320
320
  ---
321
321
 
322
- The following software may be included in this product: @babel/helper-create-class-features-plugin (7.28.3)
322
+ The following software may be included in this product: @babel/generator (7.29.1)
323
323
  This software contains the following license and notice below:
324
324
 
325
325
  MIT License
@@ -347,7 +347,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
347
347
 
348
348
  ---
349
349
 
350
- The following software may be included in this product: @babel/helper-create-regexp-features-plugin (7.27.1)
350
+ The following software may be included in this product: @babel/helper-annotate-as-pure (7.27.3)
351
351
  This software contains the following license and notice below:
352
352
 
353
353
  MIT License
@@ -375,35 +375,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
375
375
 
376
376
  ---
377
377
 
378
- The following software may be included in this product: @babel/helper-define-polyfill-provider (0.6.5)
379
- This software contains the following license and notice below:
380
-
381
- MIT License
382
-
383
- Copyright (c) 2014-present Nicolò Ribaudo and other contributors
384
-
385
- Permission is hereby granted, free of charge, to any person obtaining
386
- a copy of this software and associated documentation files (the
387
- "Software"), to deal in the Software without restriction, including
388
- without limitation the rights to use, copy, modify, merge, publish,
389
- distribute, sublicense, and/or sell copies of the Software, and to
390
- permit persons to whom the Software is furnished to do so, subject to
391
- the following conditions:
392
-
393
- The above copyright notice and this permission notice shall be
394
- included in all copies or substantial portions of the Software.
395
-
396
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
397
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
398
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
399
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
400
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
401
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
402
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
403
-
404
- ---
405
-
406
- The following software may be included in this product: @babel/helper-globals (7.28.0)
378
+ The following software may be included in this product: @babel/helper-compilation-targets (7.27.2)
407
379
  This software contains the following license and notice below:
408
380
 
409
381
  MIT License
@@ -431,7 +403,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
431
403
 
432
404
  ---
433
405
 
434
- The following software may be included in this product: @babel/helper-member-expression-to-functions (7.27.1)
406
+ The following software may be included in this product: @babel/helper-compilation-targets (7.28.6)
435
407
  This software contains the following license and notice below:
436
408
 
437
409
  MIT License
@@ -459,7 +431,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
459
431
 
460
432
  ---
461
433
 
462
- The following software may be included in this product: @babel/helper-module-imports (7.27.1)
434
+ The following software may be included in this product: @babel/helper-create-class-features-plugin (7.28.3)
463
435
  This software contains the following license and notice below:
464
436
 
465
437
  MIT License
@@ -487,7 +459,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
487
459
 
488
460
  ---
489
461
 
490
- The following software may be included in this product: @babel/helper-module-transforms (7.28.3)
462
+ The following software may be included in this product: @babel/helper-create-regexp-features-plugin (7.27.1)
491
463
  This software contains the following license and notice below:
492
464
 
493
465
  MIT License
@@ -515,12 +487,12 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
515
487
 
516
488
  ---
517
489
 
518
- The following software may be included in this product: @babel/helper-optimise-call-expression (7.27.1)
490
+ The following software may be included in this product: @babel/helper-define-polyfill-provider (0.6.5)
519
491
  This software contains the following license and notice below:
520
492
 
521
493
  MIT License
522
494
 
523
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
495
+ Copyright (c) 2014-present Nicolò Ribaudo and other contributors
524
496
 
525
497
  Permission is hereby granted, free of charge, to any person obtaining
526
498
  a copy of this software and associated documentation files (the
@@ -543,7 +515,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
543
515
 
544
516
  ---
545
517
 
546
- The following software may be included in this product: @babel/helper-plugin-utils (7.27.1)
518
+ The following software may be included in this product: @babel/helper-globals (7.28.0)
547
519
  This software contains the following license and notice below:
548
520
 
549
521
  MIT License
@@ -571,7 +543,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
571
543
 
572
544
  ---
573
545
 
574
- The following software may be included in this product: @babel/helper-remap-async-to-generator (7.27.1)
546
+ The following software may be included in this product: @babel/helper-member-expression-to-functions (7.27.1)
575
547
  This software contains the following license and notice below:
576
548
 
577
549
  MIT License
@@ -599,7 +571,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
599
571
 
600
572
  ---
601
573
 
602
- The following software may be included in this product: @babel/helper-replace-supers (7.27.1)
574
+ The following software may be included in this product: @babel/helper-module-imports (7.27.1)
603
575
  This software contains the following license and notice below:
604
576
 
605
577
  MIT License
@@ -627,7 +599,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
627
599
 
628
600
  ---
629
601
 
630
- The following software may be included in this product: @babel/helper-skip-transparent-expression-wrappers (7.27.1)
602
+ The following software may be included in this product: @babel/helper-module-imports (7.28.6)
631
603
  This software contains the following license and notice below:
632
604
 
633
605
  MIT License
@@ -655,7 +627,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
655
627
 
656
628
  ---
657
629
 
658
- The following software may be included in this product: @babel/helper-string-parser (7.27.1)
630
+ The following software may be included in this product: @babel/helper-module-transforms (7.28.3)
659
631
  This software contains the following license and notice below:
660
632
 
661
633
  MIT License
@@ -683,7 +655,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
683
655
 
684
656
  ---
685
657
 
686
- The following software may be included in this product: @babel/helper-validator-identifier (7.28.5)
658
+ The following software may be included in this product: @babel/helper-module-transforms (7.28.6)
687
659
  This software contains the following license and notice below:
688
660
 
689
661
  MIT License
@@ -711,7 +683,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
711
683
 
712
684
  ---
713
685
 
714
- The following software may be included in this product: @babel/helper-validator-option (7.27.1)
686
+ The following software may be included in this product: @babel/helper-optimise-call-expression (7.27.1)
715
687
  This software contains the following license and notice below:
716
688
 
717
689
  MIT License
@@ -739,7 +711,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
739
711
 
740
712
  ---
741
713
 
742
- The following software may be included in this product: @babel/helper-wrap-function (7.28.3)
714
+ The following software may be included in this product: @babel/helper-plugin-utils (7.27.1)
743
715
  This software contains the following license and notice below:
744
716
 
745
717
  MIT License
@@ -767,13 +739,12 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
767
739
 
768
740
  ---
769
741
 
770
- The following software may be included in this product: @babel/helpers (7.28.4)
742
+ The following software may be included in this product: @babel/helper-remap-async-to-generator (7.27.1)
771
743
  This software contains the following license and notice below:
772
744
 
773
745
  MIT License
774
746
 
775
747
  Copyright (c) 2014-present Sebastian McKenzie and other contributors
776
- Copyright (c) 2014-present, Facebook, Inc. (ONLY ./src/helpers/regenerator* files)
777
748
 
778
749
  Permission is hereby granted, free of charge, to any person obtaining
779
750
  a copy of this software and associated documentation files (the
@@ -796,32 +767,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
796
767
 
797
768
  ---
798
769
 
799
- The following software may be included in this product: @babel/parser (7.29.0)
800
- This software contains the following license and notice below:
801
-
802
- Copyright (C) 2012-2014 by various contributors (see AUTHORS)
803
-
804
- Permission is hereby granted, free of charge, to any person obtaining a copy
805
- of this software and associated documentation files (the "Software"), to deal
806
- in the Software without restriction, including without limitation the rights
807
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
808
- copies of the Software, and to permit persons to whom the Software is
809
- furnished to do so, subject to the following conditions:
810
-
811
- The above copyright notice and this permission notice shall be included in
812
- all copies or substantial portions of the Software.
813
-
814
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
815
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
816
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
817
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
818
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
819
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
820
- THE SOFTWARE.
821
-
822
- ---
823
-
824
- The following software may be included in this product: @babel/plugin-bugfix-firefox-class-in-computed-class-key (7.27.1)
770
+ The following software may be included in this product: @babel/helper-replace-supers (7.27.1)
825
771
  This software contains the following license and notice below:
826
772
 
827
773
  MIT License
@@ -849,7 +795,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
849
795
 
850
796
  ---
851
797
 
852
- The following software may be included in this product: @babel/plugin-bugfix-safari-class-field-initializer-scope (7.27.1)
798
+ The following software may be included in this product: @babel/helper-skip-transparent-expression-wrappers (7.27.1)
853
799
  This software contains the following license and notice below:
854
800
 
855
801
  MIT License
@@ -877,7 +823,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
877
823
 
878
824
  ---
879
825
 
880
- The following software may be included in this product: @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression (7.27.1)
826
+ The following software may be included in this product: @babel/helper-string-parser (7.27.1)
881
827
  This software contains the following license and notice below:
882
828
 
883
829
  MIT License
@@ -905,7 +851,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
905
851
 
906
852
  ---
907
853
 
908
- The following software may be included in this product: @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining (7.27.1)
854
+ The following software may be included in this product: @babel/helper-validator-identifier (7.28.5)
909
855
  This software contains the following license and notice below:
910
856
 
911
857
  MIT License
@@ -933,7 +879,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
933
879
 
934
880
  ---
935
881
 
936
- The following software may be included in this product: @babel/plugin-bugfix-v8-static-class-fields-redefine-readonly (7.28.3)
882
+ The following software may be included in this product: @babel/helper-validator-option (7.27.1)
937
883
  This software contains the following license and notice below:
938
884
 
939
885
  MIT License
@@ -961,7 +907,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
961
907
 
962
908
  ---
963
909
 
964
- The following software may be included in this product: @babel/plugin-proposal-decorators (7.28.0)
910
+ The following software may be included in this product: @babel/helper-wrap-function (7.28.3)
965
911
  This software contains the following license and notice below:
966
912
 
967
913
  MIT License
@@ -989,12 +935,13 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
989
935
 
990
936
  ---
991
937
 
992
- The following software may be included in this product: @babel/plugin-proposal-private-property-in-object (7.21.0-placeholder-for-preset-env.2)
938
+ The following software may be included in this product: @babel/helpers (7.28.4)
993
939
  This software contains the following license and notice below:
994
940
 
995
941
  MIT License
996
942
 
997
943
  Copyright (c) 2014-present Sebastian McKenzie and other contributors
944
+ Copyright (c) 2014-present, Facebook, Inc. (ONLY ./src/helpers/regenerator* files)
998
945
 
999
946
  Permission is hereby granted, free of charge, to any person obtaining
1000
947
  a copy of this software and associated documentation files (the
@@ -1017,12 +964,13 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1017
964
 
1018
965
  ---
1019
966
 
1020
- The following software may be included in this product: @babel/plugin-syntax-decorators (7.27.1)
967
+ The following software may be included in this product: @babel/helpers (7.29.2)
1021
968
  This software contains the following license and notice below:
1022
969
 
1023
970
  MIT License
1024
971
 
1025
972
  Copyright (c) 2014-present Sebastian McKenzie and other contributors
973
+ Copyright (c) 2014-present, Facebook, Inc. (ONLY ./src/helpers/regenerator* files)
1026
974
 
1027
975
  Permission is hereby granted, free of charge, to any person obtaining
1028
976
  a copy of this software and associated documentation files (the
@@ -1045,35 +993,32 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1045
993
 
1046
994
  ---
1047
995
 
1048
- The following software may be included in this product: @babel/plugin-syntax-import-assertions (7.27.1)
996
+ The following software may be included in this product: @babel/parser (7.29.0)
1049
997
  This software contains the following license and notice below:
1050
998
 
1051
- MIT License
1052
-
1053
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
999
+ Copyright (C) 2012-2014 by various contributors (see AUTHORS)
1054
1000
 
1055
- Permission is hereby granted, free of charge, to any person obtaining
1056
- a copy of this software and associated documentation files (the
1057
- "Software"), to deal in the Software without restriction, including
1058
- without limitation the rights to use, copy, modify, merge, publish,
1059
- distribute, sublicense, and/or sell copies of the Software, and to
1060
- permit persons to whom the Software is furnished to do so, subject to
1061
- the following conditions:
1001
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1002
+ of this software and associated documentation files (the "Software"), to deal
1003
+ in the Software without restriction, including without limitation the rights
1004
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1005
+ copies of the Software, and to permit persons to whom the Software is
1006
+ furnished to do so, subject to the following conditions:
1062
1007
 
1063
- The above copyright notice and this permission notice shall be
1064
- included in all copies or substantial portions of the Software.
1008
+ The above copyright notice and this permission notice shall be included in
1009
+ all copies or substantial portions of the Software.
1065
1010
 
1066
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1067
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1068
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1069
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1070
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1071
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1072
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1011
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1012
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1013
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1014
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1015
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1016
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1017
+ THE SOFTWARE.
1073
1018
 
1074
1019
  ---
1075
1020
 
1076
- The following software may be included in this product: @babel/plugin-syntax-import-attributes (7.27.1)
1021
+ The following software may be included in this product: @babel/plugin-bugfix-firefox-class-in-computed-class-key (7.27.1)
1077
1022
  This software contains the following license and notice below:
1078
1023
 
1079
1024
  MIT License
@@ -1101,7 +1046,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1101
1046
 
1102
1047
  ---
1103
1048
 
1104
- The following software may be included in this product: @babel/plugin-syntax-jsx (7.27.1)
1049
+ The following software may be included in this product: @babel/plugin-bugfix-safari-class-field-initializer-scope (7.27.1)
1105
1050
  This software contains the following license and notice below:
1106
1051
 
1107
1052
  MIT License
@@ -1129,7 +1074,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1129
1074
 
1130
1075
  ---
1131
1076
 
1132
- The following software may be included in this product: @babel/plugin-syntax-typescript (7.27.1)
1077
+ The following software may be included in this product: @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression (7.27.1)
1133
1078
  This software contains the following license and notice below:
1134
1079
 
1135
1080
  MIT License
@@ -1157,7 +1102,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1157
1102
 
1158
1103
  ---
1159
1104
 
1160
- The following software may be included in this product: @babel/plugin-syntax-unicode-sets-regex (7.18.6)
1105
+ The following software may be included in this product: @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining (7.27.1)
1161
1106
  This software contains the following license and notice below:
1162
1107
 
1163
1108
  MIT License
@@ -1185,7 +1130,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1185
1130
 
1186
1131
  ---
1187
1132
 
1188
- The following software may be included in this product: @babel/plugin-transform-arrow-functions (7.27.1)
1133
+ The following software may be included in this product: @babel/plugin-bugfix-v8-static-class-fields-redefine-readonly (7.28.3)
1189
1134
  This software contains the following license and notice below:
1190
1135
 
1191
1136
  MIT License
@@ -1213,7 +1158,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1213
1158
 
1214
1159
  ---
1215
1160
 
1216
- The following software may be included in this product: @babel/plugin-transform-async-generator-functions (7.28.0)
1161
+ The following software may be included in this product: @babel/plugin-proposal-decorators (7.28.0)
1217
1162
  This software contains the following license and notice below:
1218
1163
 
1219
1164
  MIT License
@@ -1241,7 +1186,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1241
1186
 
1242
1187
  ---
1243
1188
 
1244
- The following software may be included in this product: @babel/plugin-transform-async-to-generator (7.27.1)
1189
+ The following software may be included in this product: @babel/plugin-proposal-private-property-in-object (7.21.0-placeholder-for-preset-env.2)
1245
1190
  This software contains the following license and notice below:
1246
1191
 
1247
1192
  MIT License
@@ -1269,7 +1214,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1269
1214
 
1270
1215
  ---
1271
1216
 
1272
- The following software may be included in this product: @babel/plugin-transform-block-scoped-functions (7.27.1)
1217
+ The following software may be included in this product: @babel/plugin-syntax-decorators (7.27.1)
1273
1218
  This software contains the following license and notice below:
1274
1219
 
1275
1220
  MIT License
@@ -1297,7 +1242,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1297
1242
 
1298
1243
  ---
1299
1244
 
1300
- The following software may be included in this product: @babel/plugin-transform-block-scoping (7.28.4)
1245
+ The following software may be included in this product: @babel/plugin-syntax-import-assertions (7.27.1)
1301
1246
  This software contains the following license and notice below:
1302
1247
 
1303
1248
  MIT License
@@ -1325,7 +1270,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1325
1270
 
1326
1271
  ---
1327
1272
 
1328
- The following software may be included in this product: @babel/plugin-transform-class-properties (7.27.1)
1273
+ The following software may be included in this product: @babel/plugin-syntax-import-attributes (7.27.1)
1329
1274
  This software contains the following license and notice below:
1330
1275
 
1331
1276
  MIT License
@@ -1353,7 +1298,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1353
1298
 
1354
1299
  ---
1355
1300
 
1356
- The following software may be included in this product: @babel/plugin-transform-class-static-block (7.28.3)
1301
+ The following software may be included in this product: @babel/plugin-syntax-jsx (7.27.1)
1357
1302
  This software contains the following license and notice below:
1358
1303
 
1359
1304
  MIT License
@@ -1381,7 +1326,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1381
1326
 
1382
1327
  ---
1383
1328
 
1384
- The following software may be included in this product: @babel/plugin-transform-classes (7.28.4)
1329
+ The following software may be included in this product: @babel/plugin-syntax-typescript (7.27.1)
1385
1330
  This software contains the following license and notice below:
1386
1331
 
1387
1332
  MIT License
@@ -1409,7 +1354,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1409
1354
 
1410
1355
  ---
1411
1356
 
1412
- The following software may be included in this product: @babel/plugin-transform-computed-properties (7.27.1)
1357
+ The following software may be included in this product: @babel/plugin-syntax-unicode-sets-regex (7.18.6)
1413
1358
  This software contains the following license and notice below:
1414
1359
 
1415
1360
  MIT License
@@ -1437,7 +1382,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1437
1382
 
1438
1383
  ---
1439
1384
 
1440
- The following software may be included in this product: @babel/plugin-transform-destructuring (7.28.0)
1385
+ The following software may be included in this product: @babel/plugin-transform-arrow-functions (7.27.1)
1441
1386
  This software contains the following license and notice below:
1442
1387
 
1443
1388
  MIT License
@@ -1465,7 +1410,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1465
1410
 
1466
1411
  ---
1467
1412
 
1468
- The following software may be included in this product: @babel/plugin-transform-dotall-regex (7.27.1)
1413
+ The following software may be included in this product: @babel/plugin-transform-async-generator-functions (7.28.0)
1469
1414
  This software contains the following license and notice below:
1470
1415
 
1471
1416
  MIT License
@@ -1493,7 +1438,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1493
1438
 
1494
1439
  ---
1495
1440
 
1496
- The following software may be included in this product: @babel/plugin-transform-duplicate-keys (7.27.1)
1441
+ The following software may be included in this product: @babel/plugin-transform-async-to-generator (7.27.1)
1497
1442
  This software contains the following license and notice below:
1498
1443
 
1499
1444
  MIT License
@@ -1521,7 +1466,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1521
1466
 
1522
1467
  ---
1523
1468
 
1524
- The following software may be included in this product: @babel/plugin-transform-duplicate-named-capturing-groups-regex (7.27.1)
1469
+ The following software may be included in this product: @babel/plugin-transform-block-scoped-functions (7.27.1)
1525
1470
  This software contains the following license and notice below:
1526
1471
 
1527
1472
  MIT License
@@ -1549,7 +1494,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1549
1494
 
1550
1495
  ---
1551
1496
 
1552
- The following software may be included in this product: @babel/plugin-transform-dynamic-import (7.27.1)
1497
+ The following software may be included in this product: @babel/plugin-transform-block-scoping (7.28.4)
1553
1498
  This software contains the following license and notice below:
1554
1499
 
1555
1500
  MIT License
@@ -1577,7 +1522,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1577
1522
 
1578
1523
  ---
1579
1524
 
1580
- The following software may be included in this product: @babel/plugin-transform-explicit-resource-management (7.28.0)
1525
+ The following software may be included in this product: @babel/plugin-transform-class-properties (7.27.1)
1581
1526
  This software contains the following license and notice below:
1582
1527
 
1583
1528
  MIT License
@@ -1605,7 +1550,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1605
1550
 
1606
1551
  ---
1607
1552
 
1608
- The following software may be included in this product: @babel/plugin-transform-exponentiation-operator (7.27.1)
1553
+ The following software may be included in this product: @babel/plugin-transform-class-static-block (7.28.3)
1609
1554
  This software contains the following license and notice below:
1610
1555
 
1611
1556
  MIT License
@@ -1633,7 +1578,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1633
1578
 
1634
1579
  ---
1635
1580
 
1636
- The following software may be included in this product: @babel/plugin-transform-export-namespace-from (7.27.1)
1581
+ The following software may be included in this product: @babel/plugin-transform-classes (7.28.4)
1637
1582
  This software contains the following license and notice below:
1638
1583
 
1639
1584
  MIT License
@@ -1661,7 +1606,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1661
1606
 
1662
1607
  ---
1663
1608
 
1664
- The following software may be included in this product: @babel/plugin-transform-for-of (7.27.1)
1609
+ The following software may be included in this product: @babel/plugin-transform-computed-properties (7.27.1)
1665
1610
  This software contains the following license and notice below:
1666
1611
 
1667
1612
  MIT License
@@ -1689,7 +1634,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1689
1634
 
1690
1635
  ---
1691
1636
 
1692
- The following software may be included in this product: @babel/plugin-transform-function-name (7.27.1)
1637
+ The following software may be included in this product: @babel/plugin-transform-destructuring (7.28.0)
1693
1638
  This software contains the following license and notice below:
1694
1639
 
1695
1640
  MIT License
@@ -1717,7 +1662,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1717
1662
 
1718
1663
  ---
1719
1664
 
1720
- The following software may be included in this product: @babel/plugin-transform-json-strings (7.27.1)
1665
+ The following software may be included in this product: @babel/plugin-transform-dotall-regex (7.27.1)
1721
1666
  This software contains the following license and notice below:
1722
1667
 
1723
1668
  MIT License
@@ -1745,7 +1690,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1745
1690
 
1746
1691
  ---
1747
1692
 
1748
- The following software may be included in this product: @babel/plugin-transform-literals (7.27.1)
1693
+ The following software may be included in this product: @babel/plugin-transform-duplicate-keys (7.27.1)
1749
1694
  This software contains the following license and notice below:
1750
1695
 
1751
1696
  MIT License
@@ -1773,7 +1718,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1773
1718
 
1774
1719
  ---
1775
1720
 
1776
- The following software may be included in this product: @babel/plugin-transform-logical-assignment-operators (7.27.1)
1721
+ The following software may be included in this product: @babel/plugin-transform-duplicate-named-capturing-groups-regex (7.27.1)
1777
1722
  This software contains the following license and notice below:
1778
1723
 
1779
1724
  MIT License
@@ -1801,7 +1746,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1801
1746
 
1802
1747
  ---
1803
1748
 
1804
- The following software may be included in this product: @babel/plugin-transform-member-expression-literals (7.27.1)
1749
+ The following software may be included in this product: @babel/plugin-transform-dynamic-import (7.27.1)
1805
1750
  This software contains the following license and notice below:
1806
1751
 
1807
1752
  MIT License
@@ -1829,7 +1774,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1829
1774
 
1830
1775
  ---
1831
1776
 
1832
- The following software may be included in this product: @babel/plugin-transform-modules-amd (7.27.1)
1777
+ The following software may be included in this product: @babel/plugin-transform-explicit-resource-management (7.28.0)
1833
1778
  This software contains the following license and notice below:
1834
1779
 
1835
1780
  MIT License
@@ -1857,7 +1802,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1857
1802
 
1858
1803
  ---
1859
1804
 
1860
- The following software may be included in this product: @babel/plugin-transform-modules-commonjs (7.27.1)
1805
+ The following software may be included in this product: @babel/plugin-transform-exponentiation-operator (7.27.1)
1861
1806
  This software contains the following license and notice below:
1862
1807
 
1863
1808
  MIT License
@@ -1885,7 +1830,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1885
1830
 
1886
1831
  ---
1887
1832
 
1888
- The following software may be included in this product: @babel/plugin-transform-modules-systemjs (7.27.1)
1833
+ The following software may be included in this product: @babel/plugin-transform-export-namespace-from (7.27.1)
1889
1834
  This software contains the following license and notice below:
1890
1835
 
1891
1836
  MIT License
@@ -1913,7 +1858,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1913
1858
 
1914
1859
  ---
1915
1860
 
1916
- The following software may be included in this product: @babel/plugin-transform-modules-umd (7.27.1)
1861
+ The following software may be included in this product: @babel/plugin-transform-for-of (7.27.1)
1917
1862
  This software contains the following license and notice below:
1918
1863
 
1919
1864
  MIT License
@@ -1941,7 +1886,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1941
1886
 
1942
1887
  ---
1943
1888
 
1944
- The following software may be included in this product: @babel/plugin-transform-named-capturing-groups-regex (7.27.1)
1889
+ The following software may be included in this product: @babel/plugin-transform-function-name (7.27.1)
1945
1890
  This software contains the following license and notice below:
1946
1891
 
1947
1892
  MIT License
@@ -1969,7 +1914,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1969
1914
 
1970
1915
  ---
1971
1916
 
1972
- The following software may be included in this product: @babel/plugin-transform-new-target (7.27.1)
1917
+ The following software may be included in this product: @babel/plugin-transform-json-strings (7.27.1)
1973
1918
  This software contains the following license and notice below:
1974
1919
 
1975
1920
  MIT License
@@ -1997,7 +1942,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1997
1942
 
1998
1943
  ---
1999
1944
 
2000
- The following software may be included in this product: @babel/plugin-transform-nullish-coalescing-operator (7.27.1)
1945
+ The following software may be included in this product: @babel/plugin-transform-literals (7.27.1)
2001
1946
  This software contains the following license and notice below:
2002
1947
 
2003
1948
  MIT License
@@ -2025,7 +1970,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2025
1970
 
2026
1971
  ---
2027
1972
 
2028
- The following software may be included in this product: @babel/plugin-transform-numeric-separator (7.27.1)
1973
+ The following software may be included in this product: @babel/plugin-transform-logical-assignment-operators (7.27.1)
2029
1974
  This software contains the following license and notice below:
2030
1975
 
2031
1976
  MIT License
@@ -2053,7 +1998,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2053
1998
 
2054
1999
  ---
2055
2000
 
2056
- The following software may be included in this product: @babel/plugin-transform-object-rest-spread (7.28.4)
2001
+ The following software may be included in this product: @babel/plugin-transform-member-expression-literals (7.27.1)
2057
2002
  This software contains the following license and notice below:
2058
2003
 
2059
2004
  MIT License
@@ -2081,7 +2026,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2081
2026
 
2082
2027
  ---
2083
2028
 
2084
- The following software may be included in this product: @babel/plugin-transform-object-super (7.27.1)
2029
+ The following software may be included in this product: @babel/plugin-transform-modules-amd (7.27.1)
2085
2030
  This software contains the following license and notice below:
2086
2031
 
2087
2032
  MIT License
@@ -2109,7 +2054,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2109
2054
 
2110
2055
  ---
2111
2056
 
2112
- The following software may be included in this product: @babel/plugin-transform-optional-catch-binding (7.27.1)
2057
+ The following software may be included in this product: @babel/plugin-transform-modules-commonjs (7.27.1)
2113
2058
  This software contains the following license and notice below:
2114
2059
 
2115
2060
  MIT License
@@ -2137,7 +2082,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2137
2082
 
2138
2083
  ---
2139
2084
 
2140
- The following software may be included in this product: @babel/plugin-transform-optional-chaining (7.27.1)
2085
+ The following software may be included in this product: @babel/plugin-transform-modules-systemjs (7.27.1)
2141
2086
  This software contains the following license and notice below:
2142
2087
 
2143
2088
  MIT License
@@ -2165,7 +2110,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2165
2110
 
2166
2111
  ---
2167
2112
 
2168
- The following software may be included in this product: @babel/plugin-transform-parameters (7.27.7)
2113
+ The following software may be included in this product: @babel/plugin-transform-modules-umd (7.27.1)
2169
2114
  This software contains the following license and notice below:
2170
2115
 
2171
2116
  MIT License
@@ -2193,7 +2138,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2193
2138
 
2194
2139
  ---
2195
2140
 
2196
- The following software may be included in this product: @babel/plugin-transform-private-methods (7.27.1)
2141
+ The following software may be included in this product: @babel/plugin-transform-named-capturing-groups-regex (7.27.1)
2197
2142
  This software contains the following license and notice below:
2198
2143
 
2199
2144
  MIT License
@@ -2221,7 +2166,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2221
2166
 
2222
2167
  ---
2223
2168
 
2224
- The following software may be included in this product: @babel/plugin-transform-private-property-in-object (7.27.1)
2169
+ The following software may be included in this product: @babel/plugin-transform-new-target (7.27.1)
2225
2170
  This software contains the following license and notice below:
2226
2171
 
2227
2172
  MIT License
@@ -2249,7 +2194,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2249
2194
 
2250
2195
  ---
2251
2196
 
2252
- The following software may be included in this product: @babel/plugin-transform-property-literals (7.27.1)
2197
+ The following software may be included in this product: @babel/plugin-transform-nullish-coalescing-operator (7.27.1)
2253
2198
  This software contains the following license and notice below:
2254
2199
 
2255
2200
  MIT License
@@ -2277,7 +2222,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2277
2222
 
2278
2223
  ---
2279
2224
 
2280
- The following software may be included in this product: @babel/plugin-transform-react-constant-elements (7.27.1)
2225
+ The following software may be included in this product: @babel/plugin-transform-numeric-separator (7.27.1)
2281
2226
  This software contains the following license and notice below:
2282
2227
 
2283
2228
  MIT License
@@ -2305,7 +2250,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2305
2250
 
2306
2251
  ---
2307
2252
 
2308
- The following software may be included in this product: @babel/plugin-transform-react-display-name (7.28.0)
2253
+ The following software may be included in this product: @babel/plugin-transform-object-rest-spread (7.28.4)
2309
2254
  This software contains the following license and notice below:
2310
2255
 
2311
2256
  MIT License
@@ -2333,7 +2278,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2333
2278
 
2334
2279
  ---
2335
2280
 
2336
- The following software may be included in this product: @babel/plugin-transform-react-jsx (7.27.1)
2281
+ The following software may be included in this product: @babel/plugin-transform-object-super (7.27.1)
2337
2282
  This software contains the following license and notice below:
2338
2283
 
2339
2284
  MIT License
@@ -2361,7 +2306,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2361
2306
 
2362
2307
  ---
2363
2308
 
2364
- The following software may be included in this product: @babel/plugin-transform-react-jsx-development (7.27.1)
2309
+ The following software may be included in this product: @babel/plugin-transform-optional-catch-binding (7.27.1)
2365
2310
  This software contains the following license and notice below:
2366
2311
 
2367
2312
  MIT License
@@ -2389,7 +2334,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2389
2334
 
2390
2335
  ---
2391
2336
 
2392
- The following software may be included in this product: @babel/plugin-transform-react-pure-annotations (7.27.1)
2337
+ The following software may be included in this product: @babel/plugin-transform-optional-chaining (7.27.1)
2393
2338
  This software contains the following license and notice below:
2394
2339
 
2395
2340
  MIT License
@@ -2417,13 +2362,12 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2417
2362
 
2418
2363
  ---
2419
2364
 
2420
- The following software may be included in this product: @babel/plugin-transform-regenerator (7.28.4)
2365
+ The following software may be included in this product: @babel/plugin-transform-parameters (7.27.7)
2421
2366
  This software contains the following license and notice below:
2422
2367
 
2423
2368
  MIT License
2424
2369
 
2425
2370
  Copyright (c) 2014-present Sebastian McKenzie and other contributors
2426
- Copyright (c) 2014-present Facebook, Inc.
2427
2371
 
2428
2372
  Permission is hereby granted, free of charge, to any person obtaining
2429
2373
  a copy of this software and associated documentation files (the
@@ -2446,7 +2390,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2446
2390
 
2447
2391
  ---
2448
2392
 
2449
- The following software may be included in this product: @babel/plugin-transform-regexp-modifiers (7.27.1)
2393
+ The following software may be included in this product: @babel/plugin-transform-private-methods (7.27.1)
2450
2394
  This software contains the following license and notice below:
2451
2395
 
2452
2396
  MIT License
@@ -2474,7 +2418,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2474
2418
 
2475
2419
  ---
2476
2420
 
2477
- The following software may be included in this product: @babel/plugin-transform-reserved-words (7.27.1)
2421
+ The following software may be included in this product: @babel/plugin-transform-private-property-in-object (7.27.1)
2478
2422
  This software contains the following license and notice below:
2479
2423
 
2480
2424
  MIT License
@@ -2502,7 +2446,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2502
2446
 
2503
2447
  ---
2504
2448
 
2505
- The following software may be included in this product: @babel/plugin-transform-runtime (7.28.3)
2449
+ The following software may be included in this product: @babel/plugin-transform-property-literals (7.27.1)
2506
2450
  This software contains the following license and notice below:
2507
2451
 
2508
2452
  MIT License
@@ -2530,7 +2474,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2530
2474
 
2531
2475
  ---
2532
2476
 
2533
- The following software may be included in this product: @babel/plugin-transform-shorthand-properties (7.27.1)
2477
+ The following software may be included in this product: @babel/plugin-transform-react-constant-elements (7.27.1)
2534
2478
  This software contains the following license and notice below:
2535
2479
 
2536
2480
  MIT License
@@ -2558,7 +2502,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2558
2502
 
2559
2503
  ---
2560
2504
 
2561
- The following software may be included in this product: @babel/plugin-transform-spread (7.27.1)
2505
+ The following software may be included in this product: @babel/plugin-transform-react-display-name (7.28.0)
2562
2506
  This software contains the following license and notice below:
2563
2507
 
2564
2508
  MIT License
@@ -2586,7 +2530,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2586
2530
 
2587
2531
  ---
2588
2532
 
2589
- The following software may be included in this product: @babel/plugin-transform-sticky-regex (7.27.1)
2533
+ The following software may be included in this product: @babel/plugin-transform-react-jsx (7.27.1)
2590
2534
  This software contains the following license and notice below:
2591
2535
 
2592
2536
  MIT License
@@ -2614,7 +2558,260 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2614
2558
 
2615
2559
  ---
2616
2560
 
2617
- The following software may be included in this product: @babel/plugin-transform-template-literals (7.27.1)
2561
+ The following software may be included in this product: @babel/plugin-transform-react-jsx-development (7.27.1)
2562
+ This software contains the following license and notice below:
2563
+
2564
+ MIT License
2565
+
2566
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
2567
+
2568
+ Permission is hereby granted, free of charge, to any person obtaining
2569
+ a copy of this software and associated documentation files (the
2570
+ "Software"), to deal in the Software without restriction, including
2571
+ without limitation the rights to use, copy, modify, merge, publish,
2572
+ distribute, sublicense, and/or sell copies of the Software, and to
2573
+ permit persons to whom the Software is furnished to do so, subject to
2574
+ the following conditions:
2575
+
2576
+ The above copyright notice and this permission notice shall be
2577
+ included in all copies or substantial portions of the Software.
2578
+
2579
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2580
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2581
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2582
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2583
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2584
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2585
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2586
+
2587
+ ---
2588
+
2589
+ The following software may be included in this product: @babel/plugin-transform-react-pure-annotations (7.27.1)
2590
+ This software contains the following license and notice below:
2591
+
2592
+ MIT License
2593
+
2594
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
2595
+
2596
+ Permission is hereby granted, free of charge, to any person obtaining
2597
+ a copy of this software and associated documentation files (the
2598
+ "Software"), to deal in the Software without restriction, including
2599
+ without limitation the rights to use, copy, modify, merge, publish,
2600
+ distribute, sublicense, and/or sell copies of the Software, and to
2601
+ permit persons to whom the Software is furnished to do so, subject to
2602
+ the following conditions:
2603
+
2604
+ The above copyright notice and this permission notice shall be
2605
+ included in all copies or substantial portions of the Software.
2606
+
2607
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2608
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2609
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2610
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2611
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2612
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2613
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2614
+
2615
+ ---
2616
+
2617
+ The following software may be included in this product: @babel/plugin-transform-regenerator (7.28.4)
2618
+ This software contains the following license and notice below:
2619
+
2620
+ MIT License
2621
+
2622
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
2623
+ Copyright (c) 2014-present Facebook, Inc.
2624
+
2625
+ Permission is hereby granted, free of charge, to any person obtaining
2626
+ a copy of this software and associated documentation files (the
2627
+ "Software"), to deal in the Software without restriction, including
2628
+ without limitation the rights to use, copy, modify, merge, publish,
2629
+ distribute, sublicense, and/or sell copies of the Software, and to
2630
+ permit persons to whom the Software is furnished to do so, subject to
2631
+ the following conditions:
2632
+
2633
+ The above copyright notice and this permission notice shall be
2634
+ included in all copies or substantial portions of the Software.
2635
+
2636
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2637
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2638
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2639
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2640
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2641
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2642
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2643
+
2644
+ ---
2645
+
2646
+ The following software may be included in this product: @babel/plugin-transform-regexp-modifiers (7.27.1)
2647
+ This software contains the following license and notice below:
2648
+
2649
+ MIT License
2650
+
2651
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
2652
+
2653
+ Permission is hereby granted, free of charge, to any person obtaining
2654
+ a copy of this software and associated documentation files (the
2655
+ "Software"), to deal in the Software without restriction, including
2656
+ without limitation the rights to use, copy, modify, merge, publish,
2657
+ distribute, sublicense, and/or sell copies of the Software, and to
2658
+ permit persons to whom the Software is furnished to do so, subject to
2659
+ the following conditions:
2660
+
2661
+ The above copyright notice and this permission notice shall be
2662
+ included in all copies or substantial portions of the Software.
2663
+
2664
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2665
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2666
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2667
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2668
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2669
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2670
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2671
+
2672
+ ---
2673
+
2674
+ The following software may be included in this product: @babel/plugin-transform-reserved-words (7.27.1)
2675
+ This software contains the following license and notice below:
2676
+
2677
+ MIT License
2678
+
2679
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
2680
+
2681
+ Permission is hereby granted, free of charge, to any person obtaining
2682
+ a copy of this software and associated documentation files (the
2683
+ "Software"), to deal in the Software without restriction, including
2684
+ without limitation the rights to use, copy, modify, merge, publish,
2685
+ distribute, sublicense, and/or sell copies of the Software, and to
2686
+ permit persons to whom the Software is furnished to do so, subject to
2687
+ the following conditions:
2688
+
2689
+ The above copyright notice and this permission notice shall be
2690
+ included in all copies or substantial portions of the Software.
2691
+
2692
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2693
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2694
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2695
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2696
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2697
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2698
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2699
+
2700
+ ---
2701
+
2702
+ The following software may be included in this product: @babel/plugin-transform-runtime (7.28.3)
2703
+ This software contains the following license and notice below:
2704
+
2705
+ MIT License
2706
+
2707
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
2708
+
2709
+ Permission is hereby granted, free of charge, to any person obtaining
2710
+ a copy of this software and associated documentation files (the
2711
+ "Software"), to deal in the Software without restriction, including
2712
+ without limitation the rights to use, copy, modify, merge, publish,
2713
+ distribute, sublicense, and/or sell copies of the Software, and to
2714
+ permit persons to whom the Software is furnished to do so, subject to
2715
+ the following conditions:
2716
+
2717
+ The above copyright notice and this permission notice shall be
2718
+ included in all copies or substantial portions of the Software.
2719
+
2720
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2721
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2722
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2723
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2724
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2725
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2726
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2727
+
2728
+ ---
2729
+
2730
+ The following software may be included in this product: @babel/plugin-transform-shorthand-properties (7.27.1)
2731
+ This software contains the following license and notice below:
2732
+
2733
+ MIT License
2734
+
2735
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
2736
+
2737
+ Permission is hereby granted, free of charge, to any person obtaining
2738
+ a copy of this software and associated documentation files (the
2739
+ "Software"), to deal in the Software without restriction, including
2740
+ without limitation the rights to use, copy, modify, merge, publish,
2741
+ distribute, sublicense, and/or sell copies of the Software, and to
2742
+ permit persons to whom the Software is furnished to do so, subject to
2743
+ the following conditions:
2744
+
2745
+ The above copyright notice and this permission notice shall be
2746
+ included in all copies or substantial portions of the Software.
2747
+
2748
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2749
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2750
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2751
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2752
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2753
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2754
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2755
+
2756
+ ---
2757
+
2758
+ The following software may be included in this product: @babel/plugin-transform-spread (7.27.1)
2759
+ This software contains the following license and notice below:
2760
+
2761
+ MIT License
2762
+
2763
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
2764
+
2765
+ Permission is hereby granted, free of charge, to any person obtaining
2766
+ a copy of this software and associated documentation files (the
2767
+ "Software"), to deal in the Software without restriction, including
2768
+ without limitation the rights to use, copy, modify, merge, publish,
2769
+ distribute, sublicense, and/or sell copies of the Software, and to
2770
+ permit persons to whom the Software is furnished to do so, subject to
2771
+ the following conditions:
2772
+
2773
+ The above copyright notice and this permission notice shall be
2774
+ included in all copies or substantial portions of the Software.
2775
+
2776
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2777
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2778
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2779
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2780
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2781
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2782
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2783
+
2784
+ ---
2785
+
2786
+ The following software may be included in this product: @babel/plugin-transform-sticky-regex (7.27.1)
2787
+ This software contains the following license and notice below:
2788
+
2789
+ MIT License
2790
+
2791
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
2792
+
2793
+ Permission is hereby granted, free of charge, to any person obtaining
2794
+ a copy of this software and associated documentation files (the
2795
+ "Software"), to deal in the Software without restriction, including
2796
+ without limitation the rights to use, copy, modify, merge, publish,
2797
+ distribute, sublicense, and/or sell copies of the Software, and to
2798
+ permit persons to whom the Software is furnished to do so, subject to
2799
+ the following conditions:
2800
+
2801
+ The above copyright notice and this permission notice shall be
2802
+ included in all copies or substantial portions of the Software.
2803
+
2804
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2805
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2806
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2807
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2808
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2809
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2810
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2811
+
2812
+ ---
2813
+
2814
+ The following software may be included in this product: @babel/plugin-transform-template-literals (7.27.1)
2618
2815
  This software contains the following license and notice below:
2619
2816
 
2620
2817
  MIT License
@@ -2977,6 +3174,34 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2977
3174
 
2978
3175
  ---
2979
3176
 
3177
+ The following software may be included in this product: @babel/template (7.28.6)
3178
+ This software contains the following license and notice below:
3179
+
3180
+ MIT License
3181
+
3182
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
3183
+
3184
+ Permission is hereby granted, free of charge, to any person obtaining
3185
+ a copy of this software and associated documentation files (the
3186
+ "Software"), to deal in the Software without restriction, including
3187
+ without limitation the rights to use, copy, modify, merge, publish,
3188
+ distribute, sublicense, and/or sell copies of the Software, and to
3189
+ permit persons to whom the Software is furnished to do so, subject to
3190
+ the following conditions:
3191
+
3192
+ The above copyright notice and this permission notice shall be
3193
+ included in all copies or substantial portions of the Software.
3194
+
3195
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
3196
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3197
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3198
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
3199
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3200
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
3201
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3202
+
3203
+ ---
3204
+
2980
3205
  The following software may be included in this product: @babel/traverse (7.28.4)
2981
3206
  This software contains the following license and notice below:
2982
3207
 
@@ -3005,6 +3230,34 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3005
3230
 
3006
3231
  ---
3007
3232
 
3233
+ The following software may be included in this product: @babel/traverse (7.29.0)
3234
+ This software contains the following license and notice below:
3235
+
3236
+ MIT License
3237
+
3238
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
3239
+
3240
+ Permission is hereby granted, free of charge, to any person obtaining
3241
+ a copy of this software and associated documentation files (the
3242
+ "Software"), to deal in the Software without restriction, including
3243
+ without limitation the rights to use, copy, modify, merge, publish,
3244
+ distribute, sublicense, and/or sell copies of the Software, and to
3245
+ permit persons to whom the Software is furnished to do so, subject to
3246
+ the following conditions:
3247
+
3248
+ The above copyright notice and this permission notice shall be
3249
+ included in all copies or substantial portions of the Software.
3250
+
3251
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
3252
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3253
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3254
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
3255
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3256
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
3257
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3258
+
3259
+ ---
3260
+
3008
3261
  The following software may be included in this product: @babel/types (7.29.0)
3009
3262
  This software contains the following license and notice below:
3010
3263
 
@@ -3218,12 +3471,12 @@ SOFTWARE.
3218
3471
 
3219
3472
  ---
3220
3473
 
3221
- The following software may be included in this product: @esbuild/darwin-arm64 (0.27.3)
3474
+ The following software may be included in this product: @esbuild/linux-arm64 (0.27.3)
3222
3475
  This software contains the following license and notice below:
3223
3476
 
3224
3477
  MIT License
3225
3478
 
3226
- Copyright (c) The maintainers of @esbuild/darwin-arm64 <https://github.com/evanw/esbuild#readme>
3479
+ Copyright (c) The maintainers of @esbuild/linux-arm64 <https://github.com/evanw/esbuild#readme>
3227
3480
 
3228
3481
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3229
3482
  associated documentation files (the "Software"), to deal in the Software without restriction, including
@@ -4415,7 +4668,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4415
4668
 
4416
4669
  ---
4417
4670
 
4418
- The following software may be included in this product: @nx/nx-darwin-arm64 (22.5.3)
4671
+ The following software may be included in this product: @nx/nx-linux-arm64-gnu (22.5.3)
4419
4672
  This software contains the following license and notice below:
4420
4673
 
4421
4674
  (The MIT License)
@@ -5133,7 +5386,7 @@ THE SOFTWARE.
5133
5386
 
5134
5387
  ---
5135
5388
 
5136
- The following software may be included in this product: @rollup/rollup-darwin-arm64 (4.50.1)
5389
+ The following software may be included in this product: @rollup/rollup-linux-arm64-gnu (4.50.1)
5137
5390
  This software contains the following license and notice below:
5138
5391
 
5139
5392
  MIT License
@@ -5185,7 +5438,7 @@ SOFTWARE.
5185
5438
 
5186
5439
  ---
5187
5440
 
5188
- The following software may be included in this product: @rspack/binding-darwin-arm64 (1.6.8)
5441
+ The following software may be included in this product: @rspack/binding-linux-arm64-gnu (1.6.8)
5189
5442
  This software contains the following license and notice below:
5190
5443
 
5191
5444
  MIT License
@@ -12950,34 +13203,6 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE
12950
13203
 
12951
13204
  ---
12952
13205
 
12953
- The following software may be included in this product: fsevents (2.3.3)
12954
- This software contains the following license and notice below:
12955
-
12956
- MIT License
12957
- -----------
12958
-
12959
- Copyright (C) 2010-2020 by Philipp Dunkel, Ben Noordhuis, Elan Shankar, Paul Miller
12960
-
12961
- Permission is hereby granted, free of charge, to any person obtaining a copy
12962
- of this software and associated documentation files (the "Software"), to deal
12963
- in the Software without restriction, including without limitation the rights
12964
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12965
- copies of the Software, and to permit persons to whom the Software is
12966
- furnished to do so, subject to the following conditions:
12967
-
12968
- The above copyright notice and this permission notice shall be included in
12969
- all copies or substantial portions of the Software.
12970
-
12971
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12972
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12973
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
12974
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
12975
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
12976
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
12977
- THE SOFTWARE.
12978
-
12979
- ---
12980
-
12981
13206
  The following software may be included in this product: function-bind (1.1.2)
12982
13207
  This software contains the following license and notice below:
12983
13208
 
@@ -25323,7 +25548,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25323
25548
 
25324
25549
  ---
25325
25550
 
25326
- The following software may be included in this product: ufo (1.6.1)
25551
+ The following software may be included in this product: ufo (1.6.3)
25327
25552
  This software contains the following license and notice below:
25328
25553
 
25329
25554
  MIT License
@@ -30817,565 +31042,196 @@ limitations under the License.
30817
31042
 
30818
31043
  ---
30819
31044
 
30820
- The following software may be included in this product: @humanwhocodes/module-importer (1.0.1)
30821
- This software contains the following license and notice below:
30822
-
30823
- Apache License
30824
- Version 2.0, January 2004
30825
- http://www.apache.org/licenses/
30826
-
30827
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
30828
-
30829
- 1. Definitions.
30830
-
30831
- "License" shall mean the terms and conditions for use, reproduction,
30832
- and distribution as defined by Sections 1 through 9 of this document.
30833
-
30834
- "Licensor" shall mean the copyright owner or entity authorized by
30835
- the copyright owner that is granting the License.
30836
-
30837
- "Legal Entity" shall mean the union of the acting entity and all
30838
- other entities that control, are controlled by, or are under common
30839
- control with that entity. For the purposes of this definition,
30840
- "control" means (i) the power, direct or indirect, to cause the
30841
- direction or management of such entity, whether by contract or
30842
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
30843
- outstanding shares, or (iii) beneficial ownership of such entity.
30844
-
30845
- "You" (or "Your") shall mean an individual or Legal Entity
30846
- exercising permissions granted by this License.
30847
-
30848
- "Source" form shall mean the preferred form for making modifications,
30849
- including but not limited to software source code, documentation
30850
- source, and configuration files.
30851
-
30852
- "Object" form shall mean any form resulting from mechanical
30853
- transformation or translation of a Source form, including but
30854
- not limited to compiled object code, generated documentation,
30855
- and conversions to other media types.
30856
-
30857
- "Work" shall mean the work of authorship, whether in Source or
30858
- Object form, made available under the License, as indicated by a
30859
- copyright notice that is included in or attached to the work
30860
- (an example is provided in the Appendix below).
30861
-
30862
- "Derivative Works" shall mean any work, whether in Source or Object
30863
- form, that is based on (or derived from) the Work and for which the
30864
- editorial revisions, annotations, elaborations, or other modifications
30865
- represent, as a whole, an original work of authorship. For the purposes
30866
- of this License, Derivative Works shall not include works that remain
30867
- separable from, or merely link (or bind by name) to the interfaces of,
30868
- the Work and Derivative Works thereof.
30869
-
30870
- "Contribution" shall mean any work of authorship, including
30871
- the original version of the Work and any modifications or additions
30872
- to that Work or Derivative Works thereof, that is intentionally
30873
- submitted to Licensor for inclusion in the Work by the copyright owner
30874
- or by an individual or Legal Entity authorized to submit on behalf of
30875
- the copyright owner. For the purposes of this definition, "submitted"
30876
- means any form of electronic, verbal, or written communication sent
30877
- to the Licensor or its representatives, including but not limited to
30878
- communication on electronic mailing lists, source code control systems,
30879
- and issue tracking systems that are managed by, or on behalf of, the
30880
- Licensor for the purpose of discussing and improving the Work, but
30881
- excluding communication that is conspicuously marked or otherwise
30882
- designated in writing by the copyright owner as "Not a Contribution."
30883
-
30884
- "Contributor" shall mean Licensor and any individual or Legal Entity
30885
- on behalf of whom a Contribution has been received by Licensor and
30886
- subsequently incorporated within the Work.
30887
-
30888
- 2. Grant of Copyright License. Subject to the terms and conditions of
30889
- this License, each Contributor hereby grants to You a perpetual,
30890
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
30891
- copyright license to reproduce, prepare Derivative Works of,
30892
- publicly display, publicly perform, sublicense, and distribute the
30893
- Work and such Derivative Works in Source or Object form.
30894
-
30895
- 3. Grant of Patent License. Subject to the terms and conditions of
30896
- this License, each Contributor hereby grants to You a perpetual,
30897
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
30898
- (except as stated in this section) patent license to make, have made,
30899
- use, offer to sell, sell, import, and otherwise transfer the Work,
30900
- where such license applies only to those patent claims licensable
30901
- by such Contributor that are necessarily infringed by their
30902
- Contribution(s) alone or by combination of their Contribution(s)
30903
- with the Work to which such Contribution(s) was submitted. If You
30904
- institute patent litigation against any entity (including a
30905
- cross-claim or counterclaim in a lawsuit) alleging that the Work
30906
- or a Contribution incorporated within the Work constitutes direct
30907
- or contributory patent infringement, then any patent licenses
30908
- granted to You under this License for that Work shall terminate
30909
- as of the date such litigation is filed.
30910
-
30911
- 4. Redistribution. You may reproduce and distribute copies of the
30912
- Work or Derivative Works thereof in any medium, with or without
30913
- modifications, and in Source or Object form, provided that You
30914
- meet the following conditions:
30915
-
30916
- (a) You must give any other recipients of the Work or
30917
- Derivative Works a copy of this License; and
30918
-
30919
- (b) You must cause any modified files to carry prominent notices
30920
- stating that You changed the files; and
30921
-
30922
- (c) You must retain, in the Source form of any Derivative Works
30923
- that You distribute, all copyright, patent, trademark, and
30924
- attribution notices from the Source form of the Work,
30925
- excluding those notices that do not pertain to any part of
30926
- the Derivative Works; and
30927
-
30928
- (d) If the Work includes a "NOTICE" text file as part of its
30929
- distribution, then any Derivative Works that You distribute must
30930
- include a readable copy of the attribution notices contained
30931
- within such NOTICE file, excluding those notices that do not
30932
- pertain to any part of the Derivative Works, in at least one
30933
- of the following places: within a NOTICE text file distributed
30934
- as part of the Derivative Works; within the Source form or
30935
- documentation, if provided along with the Derivative Works; or,
30936
- within a display generated by the Derivative Works, if and
30937
- wherever such third-party notices normally appear. The contents
30938
- of the NOTICE file are for informational purposes only and
30939
- do not modify the License. You may add Your own attribution
30940
- notices within Derivative Works that You distribute, alongside
30941
- or as an addendum to the NOTICE text from the Work, provided
30942
- that such additional attribution notices cannot be construed
30943
- as modifying the License.
30944
-
30945
- You may add Your own copyright statement to Your modifications and
30946
- may provide additional or different license terms and conditions
30947
- for use, reproduction, or distribution of Your modifications, or
30948
- for any such Derivative Works as a whole, provided Your use,
30949
- reproduction, and distribution of the Work otherwise complies with
30950
- the conditions stated in this License.
30951
-
30952
- 5. Submission of Contributions. Unless You explicitly state otherwise,
30953
- any Contribution intentionally submitted for inclusion in the Work
30954
- by You to the Licensor shall be under the terms and conditions of
30955
- this License, without any additional terms or conditions.
30956
- Notwithstanding the above, nothing herein shall supersede or modify
30957
- the terms of any separate license agreement you may have executed
30958
- with Licensor regarding such Contributions.
30959
-
30960
- 6. Trademarks. This License does not grant permission to use the trade
30961
- names, trademarks, service marks, or product names of the Licensor,
30962
- except as required for reasonable and customary use in describing the
30963
- origin of the Work and reproducing the content of the NOTICE file.
30964
-
30965
- 7. Disclaimer of Warranty. Unless required by applicable law or
30966
- agreed to in writing, Licensor provides the Work (and each
30967
- Contributor provides its Contributions) on an "AS IS" BASIS,
30968
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
30969
- implied, including, without limitation, any warranties or conditions
30970
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
30971
- PARTICULAR PURPOSE. You are solely responsible for determining the
30972
- appropriateness of using or redistributing the Work and assume any
30973
- risks associated with Your exercise of permissions under this License.
30974
-
30975
- 8. Limitation of Liability. In no event and under no legal theory,
30976
- whether in tort (including negligence), contract, or otherwise,
30977
- unless required by applicable law (such as deliberate and grossly
30978
- negligent acts) or agreed to in writing, shall any Contributor be
30979
- liable to You for damages, including any direct, indirect, special,
30980
- incidental, or consequential damages of any character arising as a
30981
- result of this License or out of the use or inability to use the
30982
- Work (including but not limited to damages for loss of goodwill,
30983
- work stoppage, computer failure or malfunction, or any and all
30984
- other commercial damages or losses), even if such Contributor
30985
- has been advised of the possibility of such damages.
30986
-
30987
- 9. Accepting Warranty or Additional Liability. While redistributing
30988
- the Work or Derivative Works thereof, You may choose to offer,
30989
- and charge a fee for, acceptance of support, warranty, indemnity,
30990
- or other liability obligations and/or rights consistent with this
30991
- License. However, in accepting such obligations, You may act only
30992
- on Your own behalf and on Your sole responsibility, not on behalf
30993
- of any other Contributor, and only if You agree to indemnify,
30994
- defend, and hold each Contributor harmless for any liability
30995
- incurred by, or claims asserted against, such Contributor by reason
30996
- of your accepting any such warranty or additional liability.
30997
-
30998
- END OF TERMS AND CONDITIONS
30999
-
31000
- APPENDIX: How to apply the Apache License to your work.
31001
-
31002
- To apply the Apache License to your work, attach the following
31003
- boilerplate notice, with the fields enclosed by brackets "[]"
31004
- replaced with your own identifying information. (Don't include
31005
- the brackets!) The text should be enclosed in the appropriate
31006
- comment syntax for the file format. We also recommend that a
31007
- file or class name and description of purpose be included on the
31008
- same "printed page" as the copyright notice for easier
31009
- identification within third-party archives.
31010
-
31011
- Copyright [yyyy] [name of copyright owner]
31012
-
31013
- Licensed under the Apache License, Version 2.0 (the "License");
31014
- you may not use this file except in compliance with the License.
31015
- You may obtain a copy of the License at
31016
-
31017
- http://www.apache.org/licenses/LICENSE-2.0
31018
-
31019
- Unless required by applicable law or agreed to in writing, software
31020
- distributed under the License is distributed on an "AS IS" BASIS,
31021
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31022
- See the License for the specific language governing permissions and
31023
- limitations under the License.
31024
-
31025
- ---
31026
-
31027
- The following software may be included in this product: @humanwhocodes/retry (0.4.3)
31028
- This software contains the following license and notice below:
31029
-
31030
- Apache License
31031
- Version 2.0, January 2004
31032
- http://www.apache.org/licenses/
31033
-
31034
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
31035
-
31036
- 1. Definitions.
31037
-
31038
- "License" shall mean the terms and conditions for use, reproduction,
31039
- and distribution as defined by Sections 1 through 9 of this document.
31040
-
31041
- "Licensor" shall mean the copyright owner or entity authorized by
31042
- the copyright owner that is granting the License.
31043
-
31044
- "Legal Entity" shall mean the union of the acting entity and all
31045
- other entities that control, are controlled by, or are under common
31046
- control with that entity. For the purposes of this definition,
31047
- "control" means (i) the power, direct or indirect, to cause the
31048
- direction or management of such entity, whether by contract or
31049
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
31050
- outstanding shares, or (iii) beneficial ownership of such entity.
31051
-
31052
- "You" (or "Your") shall mean an individual or Legal Entity
31053
- exercising permissions granted by this License.
31054
-
31055
- "Source" form shall mean the preferred form for making modifications,
31056
- including but not limited to software source code, documentation
31057
- source, and configuration files.
31058
-
31059
- "Object" form shall mean any form resulting from mechanical
31060
- transformation or translation of a Source form, including but
31061
- not limited to compiled object code, generated documentation,
31062
- and conversions to other media types.
31063
-
31064
- "Work" shall mean the work of authorship, whether in Source or
31065
- Object form, made available under the License, as indicated by a
31066
- copyright notice that is included in or attached to the work
31067
- (an example is provided in the Appendix below).
31068
-
31069
- "Derivative Works" shall mean any work, whether in Source or Object
31070
- form, that is based on (or derived from) the Work and for which the
31071
- editorial revisions, annotations, elaborations, or other modifications
31072
- represent, as a whole, an original work of authorship. For the purposes
31073
- of this License, Derivative Works shall not include works that remain
31074
- separable from, or merely link (or bind by name) to the interfaces of,
31075
- the Work and Derivative Works thereof.
31076
-
31077
- "Contribution" shall mean any work of authorship, including
31078
- the original version of the Work and any modifications or additions
31079
- to that Work or Derivative Works thereof, that is intentionally
31080
- submitted to Licensor for inclusion in the Work by the copyright owner
31081
- or by an individual or Legal Entity authorized to submit on behalf of
31082
- the copyright owner. For the purposes of this definition, "submitted"
31083
- means any form of electronic, verbal, or written communication sent
31084
- to the Licensor or its representatives, including but not limited to
31085
- communication on electronic mailing lists, source code control systems,
31086
- and issue tracking systems that are managed by, or on behalf of, the
31087
- Licensor for the purpose of discussing and improving the Work, but
31088
- excluding communication that is conspicuously marked or otherwise
31089
- designated in writing by the copyright owner as "Not a Contribution."
31090
-
31091
- "Contributor" shall mean Licensor and any individual or Legal Entity
31092
- on behalf of whom a Contribution has been received by Licensor and
31093
- subsequently incorporated within the Work.
31094
-
31095
- 2. Grant of Copyright License. Subject to the terms and conditions of
31096
- this License, each Contributor hereby grants to You a perpetual,
31097
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
31098
- copyright license to reproduce, prepare Derivative Works of,
31099
- publicly display, publicly perform, sublicense, and distribute the
31100
- Work and such Derivative Works in Source or Object form.
31101
-
31102
- 3. Grant of Patent License. Subject to the terms and conditions of
31103
- this License, each Contributor hereby grants to You a perpetual,
31104
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
31105
- (except as stated in this section) patent license to make, have made,
31106
- use, offer to sell, sell, import, and otherwise transfer the Work,
31107
- where such license applies only to those patent claims licensable
31108
- by such Contributor that are necessarily infringed by their
31109
- Contribution(s) alone or by combination of their Contribution(s)
31110
- with the Work to which such Contribution(s) was submitted. If You
31111
- institute patent litigation against any entity (including a
31112
- cross-claim or counterclaim in a lawsuit) alleging that the Work
31113
- or a Contribution incorporated within the Work constitutes direct
31114
- or contributory patent infringement, then any patent licenses
31115
- granted to You under this License for that Work shall terminate
31116
- as of the date such litigation is filed.
31117
-
31118
- 4. Redistribution. You may reproduce and distribute copies of the
31119
- Work or Derivative Works thereof in any medium, with or without
31120
- modifications, and in Source or Object form, provided that You
31121
- meet the following conditions:
31122
-
31123
- (a) You must give any other recipients of the Work or
31124
- Derivative Works a copy of this License; and
31125
-
31126
- (b) You must cause any modified files to carry prominent notices
31127
- stating that You changed the files; and
31128
-
31129
- (c) You must retain, in the Source form of any Derivative Works
31130
- that You distribute, all copyright, patent, trademark, and
31131
- attribution notices from the Source form of the Work,
31132
- excluding those notices that do not pertain to any part of
31133
- the Derivative Works; and
31134
-
31135
- (d) If the Work includes a "NOTICE" text file as part of its
31136
- distribution, then any Derivative Works that You distribute must
31137
- include a readable copy of the attribution notices contained
31138
- within such NOTICE file, excluding those notices that do not
31139
- pertain to any part of the Derivative Works, in at least one
31140
- of the following places: within a NOTICE text file distributed
31141
- as part of the Derivative Works; within the Source form or
31142
- documentation, if provided along with the Derivative Works; or,
31143
- within a display generated by the Derivative Works, if and
31144
- wherever such third-party notices normally appear. The contents
31145
- of the NOTICE file are for informational purposes only and
31146
- do not modify the License. You may add Your own attribution
31147
- notices within Derivative Works that You distribute, alongside
31148
- or as an addendum to the NOTICE text from the Work, provided
31149
- that such additional attribution notices cannot be construed
31150
- as modifying the License.
31151
-
31152
- You may add Your own copyright statement to Your modifications and
31153
- may provide additional or different license terms and conditions
31154
- for use, reproduction, or distribution of Your modifications, or
31155
- for any such Derivative Works as a whole, provided Your use,
31156
- reproduction, and distribution of the Work otherwise complies with
31157
- the conditions stated in this License.
31158
-
31159
- 5. Submission of Contributions. Unless You explicitly state otherwise,
31160
- any Contribution intentionally submitted for inclusion in the Work
31161
- by You to the Licensor shall be under the terms and conditions of
31162
- this License, without any additional terms or conditions.
31163
- Notwithstanding the above, nothing herein shall supersede or modify
31164
- the terms of any separate license agreement you may have executed
31165
- with Licensor regarding such Contributions.
31166
-
31167
- 6. Trademarks. This License does not grant permission to use the trade
31168
- names, trademarks, service marks, or product names of the Licensor,
31169
- except as required for reasonable and customary use in describing the
31170
- origin of the Work and reproducing the content of the NOTICE file.
31171
-
31172
- 7. Disclaimer of Warranty. Unless required by applicable law or
31173
- agreed to in writing, Licensor provides the Work (and each
31174
- Contributor provides its Contributions) on an "AS IS" BASIS,
31175
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
31176
- implied, including, without limitation, any warranties or conditions
31177
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
31178
- PARTICULAR PURPOSE. You are solely responsible for determining the
31179
- appropriateness of using or redistributing the Work and assume any
31180
- risks associated with Your exercise of permissions under this License.
31181
-
31182
- 8. Limitation of Liability. In no event and under no legal theory,
31183
- whether in tort (including negligence), contract, or otherwise,
31184
- unless required by applicable law (such as deliberate and grossly
31185
- negligent acts) or agreed to in writing, shall any Contributor be
31186
- liable to You for damages, including any direct, indirect, special,
31187
- incidental, or consequential damages of any character arising as a
31188
- result of this License or out of the use or inability to use the
31189
- Work (including but not limited to damages for loss of goodwill,
31190
- work stoppage, computer failure or malfunction, or any and all
31191
- other commercial damages or losses), even if such Contributor
31192
- has been advised of the possibility of such damages.
31193
-
31194
- 9. Accepting Warranty or Additional Liability. While redistributing
31195
- the Work or Derivative Works thereof, You may choose to offer,
31196
- and charge a fee for, acceptance of support, warranty, indemnity,
31197
- or other liability obligations and/or rights consistent with this
31198
- License. However, in accepting such obligations, You may act only
31199
- on Your own behalf and on Your sole responsibility, not on behalf
31200
- of any other Contributor, and only if You agree to indemnify,
31201
- defend, and hold each Contributor harmless for any liability
31202
- incurred by, or claims asserted against, such Contributor by reason
31203
- of your accepting any such warranty or additional liability.
31204
-
31205
- END OF TERMS AND CONDITIONS
31206
-
31207
- APPENDIX: How to apply the Apache License to your work.
31208
-
31209
- To apply the Apache License to your work, attach the following
31210
- boilerplate notice, with the fields enclosed by brackets "[]"
31211
- replaced with your own identifying information. (Don't include
31212
- the brackets!) The text should be enclosed in the appropriate
31213
- comment syntax for the file format. We also recommend that a
31214
- file or class name and description of purpose be included on the
31215
- same "printed page" as the copyright notice for easier
31216
- identification within third-party archives.
31217
-
31218
- Copyright [yyyy] [name of copyright owner]
31219
-
31220
- Licensed under the Apache License, Version 2.0 (the "License");
31221
- you may not use this file except in compliance with the License.
31222
- You may obtain a copy of the License at
31223
-
31224
- http://www.apache.org/licenses/LICENSE-2.0
31225
-
31226
- Unless required by applicable law or agreed to in writing, software
31227
- distributed under the License is distributed on an "AS IS" BASIS,
31228
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31229
- See the License for the specific language governing permissions and
31230
- limitations under the License.
31231
-
31232
- ---
31233
-
31234
- The following software may be included in this product: @swc/core (1.7.26)
31235
- This software contains the following license and notice below:
31236
-
31237
- Copyright (c) 강동윤
31238
-
31239
- Apache License
31240
- Version 2.0, January 2004
31241
- http://www.apache.org/licenses/
31242
-
31243
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
31244
-
31245
- 1. Definitions.
31246
-
31247
- "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
31248
-
31249
- "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
31250
-
31251
- "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
31252
-
31253
- "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
31254
-
31255
- "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
31256
-
31257
- "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
31258
-
31259
- "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
31260
-
31261
- "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
31262
-
31263
- "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
31264
-
31265
- "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
31266
-
31267
- 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
31268
-
31269
- 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
31270
-
31271
- 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
31272
-
31273
- (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
31274
-
31275
- (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
31276
-
31277
- (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
31278
-
31279
- (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
31280
-
31281
- You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
31282
-
31283
- 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
31284
-
31285
- 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
31286
-
31287
- 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
31288
-
31289
- 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
31290
-
31291
- 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
31292
-
31293
- END OF TERMS AND CONDITIONS
31294
-
31295
- APPENDIX: How to apply the Apache License to your work.
31296
-
31297
- To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
31298
-
31299
- Copyright [yyyy] [name of copyright owner]
31300
-
31301
- Licensed under the Apache License, Version 2.0 (the "License");
31302
- you may not use this file except in compliance with the License.
31303
- You may obtain a copy of the License at
31304
-
31305
- http://www.apache.org/licenses/LICENSE-2.0
31306
-
31307
- Unless required by applicable law or agreed to in writing, software
31308
- distributed under the License is distributed on an "AS IS" BASIS,
31309
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31310
- See the License for the specific language governing permissions and
31311
- limitations under the License.
31312
-
31313
- ---
31314
-
31315
- The following software may be included in this product: @swc/counter (0.1.3)
31045
+ The following software may be included in this product: @humanwhocodes/module-importer (1.0.1)
31316
31046
  This software contains the following license and notice below:
31317
31047
 
31318
- Copyright (c) 강동윤
31319
-
31320
31048
  Apache License
31321
- Version 2.0, January 2004
31322
- http://www.apache.org/licenses/
31049
+ Version 2.0, January 2004
31050
+ http://www.apache.org/licenses/
31323
31051
 
31324
31052
  TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
31325
31053
 
31326
31054
  1. Definitions.
31327
31055
 
31328
- "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
31056
+ "License" shall mean the terms and conditions for use, reproduction,
31057
+ and distribution as defined by Sections 1 through 9 of this document.
31329
31058
 
31330
- "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
31059
+ "Licensor" shall mean the copyright owner or entity authorized by
31060
+ the copyright owner that is granting the License.
31331
31061
 
31332
- "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
31062
+ "Legal Entity" shall mean the union of the acting entity and all
31063
+ other entities that control, are controlled by, or are under common
31064
+ control with that entity. For the purposes of this definition,
31065
+ "control" means (i) the power, direct or indirect, to cause the
31066
+ direction or management of such entity, whether by contract or
31067
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
31068
+ outstanding shares, or (iii) beneficial ownership of such entity.
31333
31069
 
31334
- "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
31070
+ "You" (or "Your") shall mean an individual or Legal Entity
31071
+ exercising permissions granted by this License.
31335
31072
 
31336
- "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
31073
+ "Source" form shall mean the preferred form for making modifications,
31074
+ including but not limited to software source code, documentation
31075
+ source, and configuration files.
31337
31076
 
31338
- "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
31077
+ "Object" form shall mean any form resulting from mechanical
31078
+ transformation or translation of a Source form, including but
31079
+ not limited to compiled object code, generated documentation,
31080
+ and conversions to other media types.
31339
31081
 
31340
- "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
31082
+ "Work" shall mean the work of authorship, whether in Source or
31083
+ Object form, made available under the License, as indicated by a
31084
+ copyright notice that is included in or attached to the work
31085
+ (an example is provided in the Appendix below).
31341
31086
 
31342
- "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
31087
+ "Derivative Works" shall mean any work, whether in Source or Object
31088
+ form, that is based on (or derived from) the Work and for which the
31089
+ editorial revisions, annotations, elaborations, or other modifications
31090
+ represent, as a whole, an original work of authorship. For the purposes
31091
+ of this License, Derivative Works shall not include works that remain
31092
+ separable from, or merely link (or bind by name) to the interfaces of,
31093
+ the Work and Derivative Works thereof.
31343
31094
 
31344
- "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
31095
+ "Contribution" shall mean any work of authorship, including
31096
+ the original version of the Work and any modifications or additions
31097
+ to that Work or Derivative Works thereof, that is intentionally
31098
+ submitted to Licensor for inclusion in the Work by the copyright owner
31099
+ or by an individual or Legal Entity authorized to submit on behalf of
31100
+ the copyright owner. For the purposes of this definition, "submitted"
31101
+ means any form of electronic, verbal, or written communication sent
31102
+ to the Licensor or its representatives, including but not limited to
31103
+ communication on electronic mailing lists, source code control systems,
31104
+ and issue tracking systems that are managed by, or on behalf of, the
31105
+ Licensor for the purpose of discussing and improving the Work, but
31106
+ excluding communication that is conspicuously marked or otherwise
31107
+ designated in writing by the copyright owner as "Not a Contribution."
31345
31108
 
31346
- "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
31109
+ "Contributor" shall mean Licensor and any individual or Legal Entity
31110
+ on behalf of whom a Contribution has been received by Licensor and
31111
+ subsequently incorporated within the Work.
31347
31112
 
31348
- 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
31113
+ 2. Grant of Copyright License. Subject to the terms and conditions of
31114
+ this License, each Contributor hereby grants to You a perpetual,
31115
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
31116
+ copyright license to reproduce, prepare Derivative Works of,
31117
+ publicly display, publicly perform, sublicense, and distribute the
31118
+ Work and such Derivative Works in Source or Object form.
31349
31119
 
31350
- 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
31120
+ 3. Grant of Patent License. Subject to the terms and conditions of
31121
+ this License, each Contributor hereby grants to You a perpetual,
31122
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
31123
+ (except as stated in this section) patent license to make, have made,
31124
+ use, offer to sell, sell, import, and otherwise transfer the Work,
31125
+ where such license applies only to those patent claims licensable
31126
+ by such Contributor that are necessarily infringed by their
31127
+ Contribution(s) alone or by combination of their Contribution(s)
31128
+ with the Work to which such Contribution(s) was submitted. If You
31129
+ institute patent litigation against any entity (including a
31130
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
31131
+ or a Contribution incorporated within the Work constitutes direct
31132
+ or contributory patent infringement, then any patent licenses
31133
+ granted to You under this License for that Work shall terminate
31134
+ as of the date such litigation is filed.
31351
31135
 
31352
- 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
31136
+ 4. Redistribution. You may reproduce and distribute copies of the
31137
+ Work or Derivative Works thereof in any medium, with or without
31138
+ modifications, and in Source or Object form, provided that You
31139
+ meet the following conditions:
31353
31140
 
31354
- (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
31141
+ (a) You must give any other recipients of the Work or
31142
+ Derivative Works a copy of this License; and
31355
31143
 
31356
- (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
31144
+ (b) You must cause any modified files to carry prominent notices
31145
+ stating that You changed the files; and
31357
31146
 
31358
- (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
31147
+ (c) You must retain, in the Source form of any Derivative Works
31148
+ that You distribute, all copyright, patent, trademark, and
31149
+ attribution notices from the Source form of the Work,
31150
+ excluding those notices that do not pertain to any part of
31151
+ the Derivative Works; and
31359
31152
 
31360
- (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
31153
+ (d) If the Work includes a "NOTICE" text file as part of its
31154
+ distribution, then any Derivative Works that You distribute must
31155
+ include a readable copy of the attribution notices contained
31156
+ within such NOTICE file, excluding those notices that do not
31157
+ pertain to any part of the Derivative Works, in at least one
31158
+ of the following places: within a NOTICE text file distributed
31159
+ as part of the Derivative Works; within the Source form or
31160
+ documentation, if provided along with the Derivative Works; or,
31161
+ within a display generated by the Derivative Works, if and
31162
+ wherever such third-party notices normally appear. The contents
31163
+ of the NOTICE file are for informational purposes only and
31164
+ do not modify the License. You may add Your own attribution
31165
+ notices within Derivative Works that You distribute, alongside
31166
+ or as an addendum to the NOTICE text from the Work, provided
31167
+ that such additional attribution notices cannot be construed
31168
+ as modifying the License.
31361
31169
 
31362
- You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
31170
+ You may add Your own copyright statement to Your modifications and
31171
+ may provide additional or different license terms and conditions
31172
+ for use, reproduction, or distribution of Your modifications, or
31173
+ for any such Derivative Works as a whole, provided Your use,
31174
+ reproduction, and distribution of the Work otherwise complies with
31175
+ the conditions stated in this License.
31363
31176
 
31364
- 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
31177
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
31178
+ any Contribution intentionally submitted for inclusion in the Work
31179
+ by You to the Licensor shall be under the terms and conditions of
31180
+ this License, without any additional terms or conditions.
31181
+ Notwithstanding the above, nothing herein shall supersede or modify
31182
+ the terms of any separate license agreement you may have executed
31183
+ with Licensor regarding such Contributions.
31365
31184
 
31366
- 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
31185
+ 6. Trademarks. This License does not grant permission to use the trade
31186
+ names, trademarks, service marks, or product names of the Licensor,
31187
+ except as required for reasonable and customary use in describing the
31188
+ origin of the Work and reproducing the content of the NOTICE file.
31367
31189
 
31368
- 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
31190
+ 7. Disclaimer of Warranty. Unless required by applicable law or
31191
+ agreed to in writing, Licensor provides the Work (and each
31192
+ Contributor provides its Contributions) on an "AS IS" BASIS,
31193
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
31194
+ implied, including, without limitation, any warranties or conditions
31195
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
31196
+ PARTICULAR PURPOSE. You are solely responsible for determining the
31197
+ appropriateness of using or redistributing the Work and assume any
31198
+ risks associated with Your exercise of permissions under this License.
31369
31199
 
31370
- 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
31200
+ 8. Limitation of Liability. In no event and under no legal theory,
31201
+ whether in tort (including negligence), contract, or otherwise,
31202
+ unless required by applicable law (such as deliberate and grossly
31203
+ negligent acts) or agreed to in writing, shall any Contributor be
31204
+ liable to You for damages, including any direct, indirect, special,
31205
+ incidental, or consequential damages of any character arising as a
31206
+ result of this License or out of the use or inability to use the
31207
+ Work (including but not limited to damages for loss of goodwill,
31208
+ work stoppage, computer failure or malfunction, or any and all
31209
+ other commercial damages or losses), even if such Contributor
31210
+ has been advised of the possibility of such damages.
31371
31211
 
31372
- 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
31212
+ 9. Accepting Warranty or Additional Liability. While redistributing
31213
+ the Work or Derivative Works thereof, You may choose to offer,
31214
+ and charge a fee for, acceptance of support, warranty, indemnity,
31215
+ or other liability obligations and/or rights consistent with this
31216
+ License. However, in accepting such obligations, You may act only
31217
+ on Your own behalf and on Your sole responsibility, not on behalf
31218
+ of any other Contributor, and only if You agree to indemnify,
31219
+ defend, and hold each Contributor harmless for any liability
31220
+ incurred by, or claims asserted against, such Contributor by reason
31221
+ of your accepting any such warranty or additional liability.
31373
31222
 
31374
31223
  END OF TERMS AND CONDITIONS
31375
31224
 
31376
31225
  APPENDIX: How to apply the Apache License to your work.
31377
31226
 
31378
- To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
31227
+ To apply the Apache License to your work, attach the following
31228
+ boilerplate notice, with the fields enclosed by brackets "[]"
31229
+ replaced with your own identifying information. (Don't include
31230
+ the brackets!) The text should be enclosed in the appropriate
31231
+ comment syntax for the file format. We also recommend that a
31232
+ file or class name and description of purpose be included on the
31233
+ same "printed page" as the copyright notice for easier
31234
+ identification within third-party archives.
31379
31235
 
31380
31236
  Copyright [yyyy] [name of copyright owner]
31381
31237
 
@@ -31383,7 +31239,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
31383
31239
  you may not use this file except in compliance with the License.
31384
31240
  You may obtain a copy of the License at
31385
31241
 
31386
- http://www.apache.org/licenses/LICENSE-2.0
31242
+ http://www.apache.org/licenses/LICENSE-2.0
31387
31243
 
31388
31244
  Unless required by applicable law or agreed to in writing, software
31389
31245
  distributed under the License is distributed on an "AS IS" BASIS,
@@ -31393,7 +31249,7 @@ limitations under the License.
31393
31249
 
31394
31250
  ---
31395
31251
 
31396
- The following software may be included in this product: @swc/helpers (0.5.17)
31252
+ The following software may be included in this product: @humanwhocodes/retry (0.4.3)
31397
31253
  This software contains the following license and notice below:
31398
31254
 
31399
31255
  Apache License
@@ -31584,13 +31440,13 @@ APPENDIX: How to apply the Apache License to your work.
31584
31440
  same "printed page" as the copyright notice for easier
31585
31441
  identification within third-party archives.
31586
31442
 
31587
- Copyright 2024 SWC contributors.
31443
+ Copyright [yyyy] [name of copyright owner]
31588
31444
 
31589
31445
  Licensed under the Apache License, Version 2.0 (the "License");
31590
31446
  you may not use this file except in compliance with the License.
31591
31447
  You may obtain a copy of the License at
31592
31448
 
31593
- http://www.apache.org/licenses/LICENSE-2.0
31449
+ http://www.apache.org/licenses/LICENSE-2.0
31594
31450
 
31595
31451
  Unless required by applicable law or agreed to in writing, software
31596
31452
  distributed under the License is distributed on an "AS IS" BASIS,
@@ -31600,7 +31456,7 @@ limitations under the License.
31600
31456
 
31601
31457
  ---
31602
31458
 
31603
- The following software may be included in this product: @swc/types (0.1.25)
31459
+ The following software may be included in this product: @swc/helpers (0.5.17)
31604
31460
  This software contains the following license and notice below:
31605
31461
 
31606
31462
  Apache License
@@ -39813,7 +39669,7 @@ defined by the Mozilla Public License, v. 2.0.
39813
39669
 
39814
39670
  ---
39815
39671
 
39816
- The following software may be included in this product: lightningcss-darwin-arm64 (1.31.1)
39672
+ The following software may be included in this product: lightningcss-linux-arm64-gnu (1.31.1)
39817
39673
  This software contains the following license and notice below:
39818
39674
 
39819
39675
  Mozilla Public License Version 2.0