@aws/nx-plugin 1.0.0-rc.2 → 1.0.0-rc.4

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 (74) hide show
  1. package/LICENSE-THIRD-PARTY +716 -570
  2. package/generators.json +34 -0
  3. package/package.json +8 -8
  4. package/src/connection/generator.d.ts +1 -1
  5. package/src/connection/generator.js +19 -0
  6. package/src/connection/generator.js.map +1 -1
  7. package/src/infra/app/__snapshots__/generator.spec.ts.snap +17 -17
  8. package/src/preset/__snapshots__/generator.spec.ts.snap +73 -3
  9. package/src/preset/generator.d.ts +1 -1
  10. package/src/preset/generator.js +5 -1
  11. package/src/preset/generator.js.map +1 -1
  12. package/src/preset/schema.d.ts +1 -0
  13. package/src/preset/schema.json +5 -0
  14. package/src/py/agent/__snapshots__/generator.spec.ts.snap +6 -6
  15. package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +3 -3
  16. package/src/smithy/project/__snapshots__/generator.spec.ts.snap +2 -0
  17. package/src/smithy/project/files/build.Dockerfile.template +1 -0
  18. package/src/ts/dynamodb/__snapshots__/generator.spec.ts.snap +1502 -0
  19. package/src/ts/dynamodb/agent-connection/__snapshots__/generator.spec.ts.snap +45 -0
  20. package/src/ts/dynamodb/agent-connection/generator.d.ts +10 -0
  21. package/src/ts/dynamodb/agent-connection/generator.js +32 -0
  22. package/src/ts/dynamodb/agent-connection/generator.js.map +1 -0
  23. package/src/ts/dynamodb/agent-connection/schema.d.ts +14 -0
  24. package/src/ts/dynamodb/agent-connection/schema.json +22 -0
  25. package/src/ts/dynamodb/files/scripts/create-local-table.ts.template +161 -0
  26. package/src/ts/dynamodb/files/scripts/pull-image.ts.template +15 -0
  27. package/src/ts/dynamodb/files/scripts/start-container.ts.template +81 -0
  28. package/src/ts/dynamodb/files/src/client.ts.template +45 -0
  29. package/src/ts/dynamodb/files/src/constants.ts.template +9 -0
  30. package/src/ts/dynamodb/files/src/entities/example.ts.template +47 -0
  31. package/src/ts/dynamodb/files/src/entities/index.ts.template +1 -0
  32. package/src/ts/dynamodb/files/src/gsi.ts.template +14 -0
  33. package/src/ts/dynamodb/files/src/index.ts.template +11 -0
  34. package/src/ts/dynamodb/generator.d.ts +10 -0
  35. package/src/ts/dynamodb/generator.js +108 -0
  36. package/src/ts/dynamodb/generator.js.map +1 -0
  37. package/src/ts/dynamodb/mcp-server-connection/__snapshots__/generator.spec.ts.snap +45 -0
  38. package/src/ts/dynamodb/mcp-server-connection/generator.d.ts +10 -0
  39. package/src/ts/dynamodb/mcp-server-connection/generator.js +32 -0
  40. package/src/ts/dynamodb/mcp-server-connection/generator.js.map +1 -0
  41. package/src/ts/dynamodb/mcp-server-connection/schema.d.ts +14 -0
  42. package/src/ts/dynamodb/mcp-server-connection/schema.json +22 -0
  43. package/src/ts/dynamodb/schema.d.ts +14 -0
  44. package/src/ts/dynamodb/schema.json +52 -0
  45. package/src/ts/dynamodb/smithy-connection/__snapshots__/generator.spec.ts.snap +23 -0
  46. package/src/ts/dynamodb/smithy-connection/generator.d.ts +10 -0
  47. package/src/ts/dynamodb/smithy-connection/generator.js +30 -0
  48. package/src/ts/dynamodb/smithy-connection/generator.js.map +1 -0
  49. package/src/ts/dynamodb/smithy-connection/schema.d.ts +12 -0
  50. package/src/ts/dynamodb/smithy-connection/schema.json +18 -0
  51. package/src/ts/dynamodb/trpc-connection/__snapshots__/generator.spec.ts.snap +23 -0
  52. package/src/ts/dynamodb/trpc-connection/generator.d.ts +10 -0
  53. package/src/ts/dynamodb/trpc-connection/generator.js +30 -0
  54. package/src/ts/dynamodb/trpc-connection/generator.js.map +1 -0
  55. package/src/ts/dynamodb/trpc-connection/schema.d.ts +12 -0
  56. package/src/ts/dynamodb/trpc-connection/schema.json +18 -0
  57. package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +3 -3
  58. package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +32 -32
  59. package/src/utils/dynamodb-constructs/dynamodb-constructs.d.ts +18 -0
  60. package/src/utils/dynamodb-constructs/dynamodb-constructs.js +57 -0
  61. package/src/utils/dynamodb-constructs/dynamodb-constructs.js.map +1 -0
  62. package/src/utils/dynamodb-constructs/files/cdk/app/dynamodb/__nameKebabCase__.ts.template +30 -0
  63. package/src/utils/dynamodb-constructs/files/cdk/core/dynamodb.ts.template +105 -0
  64. package/src/utils/dynamodb-constructs/files/terraform/app/dynamodb/__nameKebabCase__/__nameKebabCase__.tf.template +65 -0
  65. package/src/utils/dynamodb-constructs/files/terraform/core/dynamodb/dynamodb.tf.template +155 -0
  66. package/src/utils/mcp.d.ts +25 -0
  67. package/src/utils/mcp.js +81 -0
  68. package/src/utils/mcp.js.map +1 -0
  69. package/src/utils/port.d.ts +6 -0
  70. package/src/utils/port.js +23 -2
  71. package/src/utils/port.js.map +1 -1
  72. package/src/utils/versions.d.ts +52 -52
  73. package/src/utils/versions.js +51 -51
  74. package/src/utils/versions.js.map +1 -1
@@ -3417,26 +3417,26 @@ SOFTWARE.
3417
3417
 
3418
3418
  ---
3419
3419
 
3420
- The following software may be included in this product: @esbuild/linux-x64 (0.28.0)
3420
+ The following software may be included in this product: @esbuild/darwin-arm64 (0.28.0)
3421
3421
  This software contains the following license and notice below:
3422
3422
 
3423
3423
  MIT License
3424
3424
 
3425
- Copyright (c) The maintainers of @esbuild/linux-x64 <https://github.com/evanw/esbuild#readme>
3425
+ Copyright (c) The maintainers of @esbuild/darwin-arm64 <https://github.com/evanw/esbuild#readme>
3426
3426
 
3427
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3428
- associated documentation files (the "Software"), to deal in the Software without restriction, including
3429
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3430
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
3427
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3428
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
3429
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3430
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
3431
3431
  following conditions:
3432
3432
 
3433
- The above copyright notice and this permission notice shall be included in all copies or substantial
3433
+ The above copyright notice and this permission notice shall be included in all copies or substantial
3434
3434
  portions of the Software.
3435
3435
 
3436
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
3437
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
3438
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3439
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
3436
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
3437
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
3438
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3439
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
3440
3440
  USE OR OTHER DEALINGS IN THE SOFTWARE.
3441
3441
 
3442
3442
  ---
@@ -3579,29 +3579,29 @@ MIT License
3579
3579
 
3580
3580
  Copyright (c) The maintainers of @getgrit/gritql <https://github.com/biomejs/gritql#readme>
3581
3581
 
3582
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3583
- associated documentation files (the "Software"), to deal in the Software without restriction, including
3584
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3585
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
3582
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3583
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
3584
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3585
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
3586
3586
  following conditions:
3587
3587
 
3588
- The above copyright notice and this permission notice shall be included in all copies or substantial
3588
+ The above copyright notice and this permission notice shall be included in all copies or substantial
3589
3589
  portions of the Software.
3590
3590
 
3591
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
3592
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
3593
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3594
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
3591
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
3592
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
3593
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3594
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
3595
3595
  USE OR OTHER DEALINGS IN THE SOFTWARE.
3596
3596
 
3597
3597
  ---
3598
3598
 
3599
- The following software may be included in this product: @getgrit/gritql-linux-x64-gnu (0.0.3)
3599
+ The following software may be included in this product: @getgrit/gritql-darwin-arm64 (0.0.3)
3600
3600
  This software contains the following license and notice below:
3601
3601
 
3602
3602
  MIT License
3603
3603
 
3604
- Copyright (c) The maintainers of @getgrit/gritql-linux-x64-gnu <https://github.com/biomejs/gritql#readme>
3604
+ Copyright (c) The maintainers of @getgrit/gritql-darwin-arm64 <https://github.com/biomejs/gritql#readme>
3605
3605
 
3606
3606
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3607
3607
  associated documentation files (the "Software"), to deal in the Software without restriction, including
@@ -3620,6 +3620,30 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
3620
3620
 
3621
3621
  ---
3622
3622
 
3623
+ The following software may be included in this product: @getgrit/gritql-darwin-universal (0.0.3)
3624
+ This software contains the following license and notice below:
3625
+
3626
+ MIT License
3627
+
3628
+ Copyright (c) The maintainers of @getgrit/gritql-darwin-universal <https://github.com/biomejs/gritql#readme>
3629
+
3630
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3631
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
3632
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3633
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
3634
+ following conditions:
3635
+
3636
+ The above copyright notice and this permission notice shall be included in all copies or substantial
3637
+ portions of the Software.
3638
+
3639
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
3640
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
3641
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3642
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
3643
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
3644
+
3645
+ ---
3646
+
3623
3647
  The following software may be included in this product: @hey-api/json-schema-ref-parser (1.0.3)
3624
3648
  This software contains the following license and notice below:
3625
3649
 
@@ -3681,19 +3705,19 @@ MIT License
3681
3705
 
3682
3706
  Copyright (c) Yusuke Wada
3683
3707
 
3684
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3685
- associated documentation files (the "Software"), to deal in the Software without restriction, including
3686
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3687
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
3708
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3709
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
3710
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3711
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
3688
3712
  following conditions:
3689
3713
 
3690
- The above copyright notice and this permission notice shall be included in all copies or substantial
3714
+ The above copyright notice and this permission notice shall be included in all copies or substantial
3691
3715
  portions of the Software.
3692
3716
 
3693
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
3694
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
3695
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3696
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
3717
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
3718
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
3719
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3720
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
3697
3721
  USE OR OTHER DEALINGS IN THE SOFTWARE.
3698
3722
 
3699
3723
  ---
@@ -4953,7 +4977,7 @@ SOFTWARE.
4953
4977
 
4954
4978
  ---
4955
4979
 
4956
- The following software may be included in this product: @nx/devkit (22.7.2)
4980
+ The following software may be included in this product: @nx/devkit (22.7.3)
4957
4981
  This software contains the following license and notice below:
4958
4982
 
4959
4983
  (The MIT License)
@@ -4981,7 +5005,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4981
5005
 
4982
5006
  ---
4983
5007
 
4984
- The following software may be included in this product: @nx/devkit (22.7.3)
5008
+ The following software may be included in this product: @nx/devkit (22.7.5)
4985
5009
  This software contains the following license and notice below:
4986
5010
 
4987
5011
  (The MIT License)
@@ -5009,7 +5033,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5009
5033
 
5010
5034
  ---
5011
5035
 
5012
- The following software may be included in this product: @nx/eslint (22.7.3)
5036
+ The following software may be included in this product: @nx/eslint (22.7.5)
5013
5037
  This software contains the following license and notice below:
5014
5038
 
5015
5039
  (The MIT License)
@@ -5037,7 +5061,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5037
5061
 
5038
5062
  ---
5039
5063
 
5040
- The following software may be included in this product: @nx/js (22.7.3)
5064
+ The following software may be included in this product: @nx/js (22.7.5)
5041
5065
  This software contains the following license and notice below:
5042
5066
 
5043
5067
  (The MIT License)
@@ -5065,7 +5089,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5065
5089
 
5066
5090
  ---
5067
5091
 
5068
- The following software may be included in this product: @nx/module-federation (22.7.3)
5092
+ The following software may be included in this product: @nx/module-federation (22.7.5)
5069
5093
  This software contains the following license and notice below:
5070
5094
 
5071
5095
  (The MIT License)
@@ -5093,7 +5117,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5093
5117
 
5094
5118
  ---
5095
5119
 
5096
- The following software may be included in this product: @nx/nx-linux-x64-gnu (22.7.3)
5120
+ The following software may be included in this product: @nx/nx-linux-x64-gnu (22.7.5)
5097
5121
  This software contains the following license and notice below:
5098
5122
 
5099
5123
  (The MIT License)
@@ -5121,7 +5145,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5121
5145
 
5122
5146
  ---
5123
5147
 
5124
- The following software may be included in this product: @nx/playwright (22.7.3)
5148
+ The following software may be included in this product: @nx/playwright (22.7.5)
5125
5149
  This software contains the following license and notice below:
5126
5150
 
5127
5151
  (The MIT License)
@@ -5149,7 +5173,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5149
5173
 
5150
5174
  ---
5151
5175
 
5152
- The following software may be included in this product: @nx/react (22.7.3)
5176
+ The following software may be included in this product: @nx/react (22.7.5)
5153
5177
  This software contains the following license and notice below:
5154
5178
 
5155
5179
  (The MIT License)
@@ -5177,7 +5201,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5177
5201
 
5178
5202
  ---
5179
5203
 
5180
- The following software may be included in this product: @nx/rollup (22.7.3)
5204
+ The following software may be included in this product: @nx/rollup (22.7.5)
5181
5205
  This software contains the following license and notice below:
5182
5206
 
5183
5207
  (The MIT License)
@@ -5205,7 +5229,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5205
5229
 
5206
5230
  ---
5207
5231
 
5208
- The following software may be included in this product: @nx/vite (22.7.3)
5232
+ The following software may be included in this product: @nx/vite (22.7.5)
5209
5233
  This software contains the following license and notice below:
5210
5234
 
5211
5235
  (The MIT License)
@@ -5233,7 +5257,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5233
5257
 
5234
5258
  ---
5235
5259
 
5236
- The following software may be included in this product: @nx/vitest (22.7.3)
5260
+ The following software may be included in this product: @nx/vitest (22.7.5)
5237
5261
  This software contains the following license and notice below:
5238
5262
 
5239
5263
  (The MIT License)
@@ -5261,7 +5285,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5261
5285
 
5262
5286
  ---
5263
5287
 
5264
- The following software may be included in this product: @nx/web (22.7.3)
5288
+ The following software may be included in this product: @nx/web (22.7.5)
5265
5289
  This software contains the following license and notice below:
5266
5290
 
5267
5291
  (The MIT License)
@@ -5289,7 +5313,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5289
5313
 
5290
5314
  ---
5291
5315
 
5292
- The following software may be included in this product: @nx/workspace (22.7.3)
5316
+ The following software may be included in this product: @nx/workspace (22.7.5)
5293
5317
  This software contains the following license and notice below:
5294
5318
 
5295
5319
  (The MIT License)
@@ -5400,26 +5424,26 @@ SOFTWARE.
5400
5424
 
5401
5425
  ---
5402
5426
 
5403
- The following software may be included in this product: @oxc-resolver/binding-linux-x64-gnu (11.19.1)
5427
+ The following software may be included in this product: @oxc-resolver/binding-darwin-arm64 (11.19.1)
5404
5428
  This software contains the following license and notice below:
5405
5429
 
5406
5430
  MIT License
5407
5431
 
5408
- Copyright (c) The maintainers of @oxc-resolver/binding-linux-x64-gnu <https://oxc.rs>
5432
+ Copyright (c) The maintainers of @oxc-resolver/binding-darwin-arm64 <https://oxc.rs>
5409
5433
 
5410
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5411
- associated documentation files (the "Software"), to deal in the Software without restriction, including
5412
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5413
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
5434
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5435
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
5436
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5437
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
5414
5438
  following conditions:
5415
5439
 
5416
- The above copyright notice and this permission notice shall be included in all copies or substantial
5440
+ The above copyright notice and this permission notice shall be included in all copies or substantial
5417
5441
  portions of the Software.
5418
5442
 
5419
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
5420
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
5421
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
5422
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
5443
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
5444
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
5445
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
5446
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
5423
5447
  USE OR OTHER DEALINGS IN THE SOFTWARE.
5424
5448
 
5425
5449
  ---
@@ -5692,67 +5716,67 @@ MIT License
5692
5716
 
5693
5717
  Copyright (c) Luke Edwards
5694
5718
 
5695
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5696
- associated documentation files (the "Software"), to deal in the Software without restriction, including
5697
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5698
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
5719
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5720
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
5721
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5722
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
5699
5723
  following conditions:
5700
5724
 
5701
- The above copyright notice and this permission notice shall be included in all copies or substantial
5725
+ The above copyright notice and this permission notice shall be included in all copies or substantial
5702
5726
  portions of the Software.
5703
5727
 
5704
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
5705
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
5706
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
5707
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
5728
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
5729
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
5730
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
5731
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
5708
5732
  USE OR OTHER DEALINGS IN THE SOFTWARE.
5709
5733
 
5710
5734
  ---
5711
5735
 
5712
- The following software may be included in this product: @rolldown/binding-linux-x64-gnu (1.0.0-rc.15)
5736
+ The following software may be included in this product: @rolldown/binding-darwin-arm64 (1.0.0-rc.15)
5713
5737
  This software contains the following license and notice below:
5714
5738
 
5715
5739
  MIT License
5716
5740
 
5717
- Copyright (c) The maintainers of @rolldown/binding-linux-x64-gnu <https://rolldown.rs/>
5741
+ Copyright (c) The maintainers of @rolldown/binding-darwin-arm64 <https://rolldown.rs/>
5718
5742
 
5719
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5720
- associated documentation files (the "Software"), to deal in the Software without restriction, including
5721
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5722
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
5743
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5744
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
5745
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5746
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
5723
5747
  following conditions:
5724
5748
 
5725
- The above copyright notice and this permission notice shall be included in all copies or substantial
5749
+ The above copyright notice and this permission notice shall be included in all copies or substantial
5726
5750
  portions of the Software.
5727
5751
 
5728
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
5729
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
5730
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
5731
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
5752
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
5753
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
5754
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
5755
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
5732
5756
  USE OR OTHER DEALINGS IN THE SOFTWARE.
5733
5757
 
5734
5758
  ---
5735
5759
 
5736
- The following software may be included in this product: @rolldown/binding-linux-x64-gnu (1.0.2)
5760
+ The following software may be included in this product: @rolldown/binding-darwin-arm64 (1.0.2)
5737
5761
  This software contains the following license and notice below:
5738
5762
 
5739
5763
  MIT License
5740
5764
 
5741
- Copyright (c) The maintainers of @rolldown/binding-linux-x64-gnu <https://rolldown.rs/>
5765
+ Copyright (c) The maintainers of @rolldown/binding-darwin-arm64 <https://rolldown.rs/>
5742
5766
 
5743
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5744
- associated documentation files (the "Software"), to deal in the Software without restriction, including
5745
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5746
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
5767
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5768
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
5769
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5770
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
5747
5771
  following conditions:
5748
5772
 
5749
- The above copyright notice and this permission notice shall be included in all copies or substantial
5773
+ The above copyright notice and this permission notice shall be included in all copies or substantial
5750
5774
  portions of the Software.
5751
5775
 
5752
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
5753
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
5754
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
5755
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
5776
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
5777
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
5778
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
5779
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
5756
5780
  USE OR OTHER DEALINGS IN THE SOFTWARE.
5757
5781
 
5758
5782
  ---
@@ -5876,19 +5900,19 @@ MIT License
5876
5900
 
5877
5901
  Copyright (c) Rich Harris
5878
5902
 
5879
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5880
- associated documentation files (the "Software"), to deal in the Software without restriction, including
5881
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5882
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
5903
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5904
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
5905
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5906
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
5883
5907
  following conditions:
5884
5908
 
5885
- The above copyright notice and this permission notice shall be included in all copies or substantial
5909
+ The above copyright notice and this permission notice shall be included in all copies or substantial
5886
5910
  portions of the Software.
5887
5911
 
5888
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
5889
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
5890
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
5891
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
5912
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
5913
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
5914
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
5915
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
5892
5916
  USE OR OTHER DEALINGS IN THE SOFTWARE.
5893
5917
 
5894
5918
  ---
@@ -5981,19 +6005,19 @@ MIT License
5981
6005
 
5982
6006
  Copyright (c) Rich Harris
5983
6007
 
5984
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5985
- associated documentation files (the "Software"), to deal in the Software without restriction, including
5986
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5987
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
6008
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6009
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
6010
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6011
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
5988
6012
  following conditions:
5989
6013
 
5990
- The above copyright notice and this permission notice shall be included in all copies or substantial
6014
+ The above copyright notice and this permission notice shall be included in all copies or substantial
5991
6015
  portions of the Software.
5992
6016
 
5993
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
5994
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
5995
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
5996
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
6017
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
6018
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
6019
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
6020
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
5997
6021
  USE OR OTHER DEALINGS IN THE SOFTWARE.
5998
6022
 
5999
6023
  ---
@@ -6025,26 +6049,26 @@ THE SOFTWARE.
6025
6049
 
6026
6050
  ---
6027
6051
 
6028
- The following software may be included in this product: @rollup/rollup-linux-x64-gnu (4.50.1)
6052
+ The following software may be included in this product: @rollup/rollup-darwin-arm64 (4.50.1)
6029
6053
  This software contains the following license and notice below:
6030
6054
 
6031
6055
  MIT License
6032
6056
 
6033
6057
  Copyright (c) Lukas Taegert-Atkinson
6034
6058
 
6035
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6036
- associated documentation files (the "Software"), to deal in the Software without restriction, including
6037
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6038
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
6059
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6060
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
6061
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6062
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
6039
6063
  following conditions:
6040
6064
 
6041
- The above copyright notice and this permission notice shall be included in all copies or substantial
6065
+ The above copyright notice and this permission notice shall be included in all copies or substantial
6042
6066
  portions of the Software.
6043
6067
 
6044
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
6045
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
6046
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
6047
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
6068
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
6069
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
6070
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
6071
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
6048
6072
  USE OR OTHER DEALINGS IN THE SOFTWARE.
6049
6073
 
6050
6074
  ---
@@ -6077,7 +6101,7 @@ SOFTWARE.
6077
6101
 
6078
6102
  ---
6079
6103
 
6080
- The following software may be included in this product: @rspack/binding-linux-x64-gnu (1.6.8)
6104
+ The following software may be included in this product: @rspack/binding-darwin-arm64 (1.6.8)
6081
6105
  This software contains the following license and notice below:
6082
6106
 
6083
6107
  MIT License
@@ -6499,19 +6523,19 @@ MIT License
6499
6523
 
6500
6524
  Copyright (c) toyobayashi
6501
6525
 
6502
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6503
- associated documentation files (the "Software"), to deal in the Software without restriction, including
6504
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6505
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
6526
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6527
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
6528
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6529
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
6506
6530
  following conditions:
6507
6531
 
6508
- The above copyright notice and this permission notice shall be included in all copies or substantial
6532
+ The above copyright notice and this permission notice shall be included in all copies or substantial
6509
6533
  portions of the Software.
6510
6534
 
6511
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
6512
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
6513
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
6514
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
6535
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
6536
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
6537
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
6538
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
6515
6539
  USE OR OTHER DEALINGS IN THE SOFTWARE.
6516
6540
 
6517
6541
  ---
@@ -7029,7 +7053,7 @@ SOFTWARE
7029
7053
 
7030
7054
  ---
7031
7055
 
7032
- The following software may be included in this product: @types/node (25.8.0)
7056
+ The following software may be included in this product: @types/node (25.9.1)
7033
7057
  This software contains the following license and notice below:
7034
7058
 
7035
7059
  MIT License
@@ -7056,7 +7080,7 @@ SOFTWARE
7056
7080
 
7057
7081
  ---
7058
7082
 
7059
- The following software may be included in this product: @types/node (25.9.1)
7083
+ The following software may be included in this product: @types/parse-json (4.0.2)
7060
7084
  This software contains the following license and notice below:
7061
7085
 
7062
7086
  MIT License
@@ -7083,7 +7107,7 @@ SOFTWARE
7083
7107
 
7084
7108
  ---
7085
7109
 
7086
- The following software may be included in this product: @types/parse-json (4.0.2)
7110
+ The following software may be included in this product: @types/resolve (1.20.2)
7087
7111
  This software contains the following license and notice below:
7088
7112
 
7089
7113
  MIT License
@@ -7110,12 +7134,12 @@ SOFTWARE
7110
7134
 
7111
7135
  ---
7112
7136
 
7113
- The following software may be included in this product: @types/resolve (1.20.2)
7137
+ The following software may be included in this product: @types/responselike (1.0.0)
7114
7138
  This software contains the following license and notice below:
7115
7139
 
7116
7140
  MIT License
7117
7141
 
7118
- Copyright (c) Microsoft Corporation.
7142
+ Copyright (c) Microsoft Corporation. All rights reserved.
7119
7143
 
7120
7144
  Permission is hereby granted, free of charge, to any person obtaining a copy
7121
7145
  of this software and associated documentation files (the "Software"), to deal
@@ -7137,12 +7161,12 @@ SOFTWARE
7137
7161
 
7138
7162
  ---
7139
7163
 
7140
- The following software may be included in this product: @types/responselike (1.0.0)
7164
+ The following software may be included in this product: @types/semver (7.5.8)
7141
7165
  This software contains the following license and notice below:
7142
7166
 
7143
7167
  MIT License
7144
7168
 
7145
- Copyright (c) Microsoft Corporation. All rights reserved.
7169
+ Copyright (c) Microsoft Corporation.
7146
7170
 
7147
7171
  Permission is hereby granted, free of charge, to any person obtaining a copy
7148
7172
  of this software and associated documentation files (the "Software"), to deal
@@ -7164,7 +7188,7 @@ SOFTWARE
7164
7188
 
7165
7189
  ---
7166
7190
 
7167
- The following software may be included in this product: @types/semver (7.5.8)
7191
+ The following software may be included in this product: @types/unist (2.0.11)
7168
7192
  This software contains the following license and notice below:
7169
7193
 
7170
7194
  MIT License
@@ -7191,7 +7215,7 @@ SOFTWARE
7191
7215
 
7192
7216
  ---
7193
7217
 
7194
- The following software may be included in this product: @types/unist (2.0.11)
7218
+ The following software may be included in this product: @types/unist (3.0.3)
7195
7219
  This software contains the following license and notice below:
7196
7220
 
7197
7221
  MIT License
@@ -7218,12 +7242,12 @@ SOFTWARE
7218
7242
 
7219
7243
  ---
7220
7244
 
7221
- The following software may be included in this product: @types/unist (3.0.3)
7245
+ The following software may be included in this product: @verdaccio/auth (8.0.2)
7222
7246
  This software contains the following license and notice below:
7223
7247
 
7224
7248
  MIT License
7225
7249
 
7226
- Copyright (c) Microsoft Corporation.
7250
+ Copyright (c) 2025 Verdaccio contributors
7227
7251
 
7228
7252
  Permission is hereby granted, free of charge, to any person obtaining a copy
7229
7253
  of this software and associated documentation files (the "Software"), to deal
@@ -7241,11 +7265,11 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
7241
7265
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
7242
7266
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
7243
7267
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
7244
- SOFTWARE
7268
+ SOFTWARE.
7245
7269
 
7246
7270
  ---
7247
7271
 
7248
- The following software may be included in this product: @verdaccio/auth (8.0.1)
7272
+ The following software may be included in this product: @verdaccio/config (8.1.1)
7249
7273
  This software contains the following license and notice below:
7250
7274
 
7251
7275
  MIT License
@@ -7272,7 +7296,7 @@ SOFTWARE.
7272
7296
 
7273
7297
  ---
7274
7298
 
7275
- The following software may be included in this product: @verdaccio/config (8.1.0)
7299
+ The following software may be included in this product: @verdaccio/core (8.1.1)
7276
7300
  This software contains the following license and notice below:
7277
7301
 
7278
7302
  MIT License
@@ -7299,7 +7323,7 @@ SOFTWARE.
7299
7323
 
7300
7324
  ---
7301
7325
 
7302
- The following software may be included in this product: @verdaccio/core (8.0.0-next-8.29)
7326
+ The following software may be included in this product: @verdaccio/file-locking (13.0.1)
7303
7327
  This software contains the following license and notice below:
7304
7328
 
7305
7329
  MIT License
@@ -7326,7 +7350,7 @@ SOFTWARE.
7326
7350
 
7327
7351
  ---
7328
7352
 
7329
- The following software may be included in this product: @verdaccio/core (8.1.0)
7353
+ The following software may be included in this product: @verdaccio/hooks (8.0.2)
7330
7354
  This software contains the following license and notice below:
7331
7355
 
7332
7356
  MIT License
@@ -7353,12 +7377,12 @@ SOFTWARE.
7353
7377
 
7354
7378
  ---
7355
7379
 
7356
- The following software may be included in this product: @verdaccio/file-locking (10.3.3)
7380
+ The following software may be included in this product: @verdaccio/loaders (8.0.2)
7357
7381
  This software contains the following license and notice below:
7358
7382
 
7359
7383
  MIT License
7360
7384
 
7361
- Copyright (c) 2019 Verdaccio
7385
+ Copyright (c) 2025 Verdaccio contributors
7362
7386
 
7363
7387
  Permission is hereby granted, free of charge, to any person obtaining a copy
7364
7388
  of this software and associated documentation files (the "Software"), to deal
@@ -7380,12 +7404,12 @@ SOFTWARE.
7380
7404
 
7381
7405
  ---
7382
7406
 
7383
- The following software may be included in this product: @verdaccio/file-locking (13.0.0)
7407
+ The following software may be included in this product: @verdaccio/local-storage-legacy (11.3.3)
7384
7408
  This software contains the following license and notice below:
7385
7409
 
7386
7410
  MIT License
7387
7411
 
7388
- Copyright (c) 2025 Verdaccio contributors
7412
+ Copyright (c) 2019 Verdaccio
7389
7413
 
7390
7414
  Permission is hereby granted, free of charge, to any person obtaining a copy
7391
7415
  of this software and associated documentation files (the "Software"), to deal
@@ -7407,7 +7431,7 @@ SOFTWARE.
7407
7431
 
7408
7432
  ---
7409
7433
 
7410
- The following software may be included in this product: @verdaccio/hooks (8.0.1)
7434
+ The following software may be included in this product: @verdaccio/logger (8.0.2)
7411
7435
  This software contains the following license and notice below:
7412
7436
 
7413
7437
  MIT License
@@ -7434,7 +7458,7 @@ SOFTWARE.
7434
7458
 
7435
7459
  ---
7436
7460
 
7437
- The following software may be included in this product: @verdaccio/loaders (8.0.1)
7461
+ The following software may be included in this product: @verdaccio/logger-commons (8.0.2)
7438
7462
  This software contains the following license and notice below:
7439
7463
 
7440
7464
  MIT License
@@ -7461,12 +7485,12 @@ SOFTWARE.
7461
7485
 
7462
7486
  ---
7463
7487
 
7464
- The following software may be included in this product: @verdaccio/local-storage-legacy (11.3.1)
7488
+ The following software may be included in this product: @verdaccio/logger-prettify (8.0.1)
7465
7489
  This software contains the following license and notice below:
7466
7490
 
7467
7491
  MIT License
7468
7492
 
7469
- Copyright (c) 2019 Verdaccio
7493
+ Copyright (c) 2025 Verdaccio contributors
7470
7494
 
7471
7495
  Permission is hereby granted, free of charge, to any person obtaining a copy
7472
7496
  of this software and associated documentation files (the "Software"), to deal
@@ -7488,7 +7512,7 @@ SOFTWARE.
7488
7512
 
7489
7513
  ---
7490
7514
 
7491
- The following software may be included in this product: @verdaccio/logger (8.0.1)
7515
+ The following software may be included in this product: @verdaccio/middleware (8.0.2)
7492
7516
  This software contains the following license and notice below:
7493
7517
 
7494
7518
  MIT License
@@ -7515,7 +7539,7 @@ SOFTWARE.
7515
7539
 
7516
7540
  ---
7517
7541
 
7518
- The following software may be included in this product: @verdaccio/logger-commons (8.0.1)
7542
+ The following software may be included in this product: @verdaccio/package-filter (13.0.2)
7519
7543
  This software contains the following license and notice below:
7520
7544
 
7521
7545
  MIT License
@@ -7542,7 +7566,7 @@ SOFTWARE.
7542
7566
 
7543
7567
  ---
7544
7568
 
7545
- The following software may be included in this product: @verdaccio/logger-prettify (8.0.0)
7569
+ The following software may be included in this product: @verdaccio/search-indexer (8.0.2)
7546
7570
  This software contains the following license and notice below:
7547
7571
 
7548
7572
  MIT License
@@ -7569,7 +7593,7 @@ SOFTWARE.
7569
7593
 
7570
7594
  ---
7571
7595
 
7572
- The following software may be included in this product: @verdaccio/middleware (8.0.1)
7596
+ The following software may be included in this product: @verdaccio/signature (8.0.2)
7573
7597
  This software contains the following license and notice below:
7574
7598
 
7575
7599
  MIT License
@@ -7596,12 +7620,12 @@ SOFTWARE.
7596
7620
 
7597
7621
  ---
7598
7622
 
7599
- The following software may be included in this product: @verdaccio/package-filter (13.0.1)
7623
+ The following software may be included in this product: @verdaccio/streams (10.2.5)
7600
7624
  This software contains the following license and notice below:
7601
7625
 
7602
7626
  MIT License
7603
7627
 
7604
- Copyright (c) 2025 Verdaccio contributors
7628
+ Copyright (c) 2019 Verdaccio
7605
7629
 
7606
7630
  Permission is hereby granted, free of charge, to any person obtaining a copy
7607
7631
  of this software and associated documentation files (the "Software"), to deal
@@ -7623,7 +7647,7 @@ SOFTWARE.
7623
7647
 
7624
7648
  ---
7625
7649
 
7626
- The following software may be included in this product: @verdaccio/search-indexer (8.0.0)
7650
+ The following software may be included in this product: @verdaccio/tarball (13.0.2)
7627
7651
  This software contains the following license and notice below:
7628
7652
 
7629
7653
  MIT License
@@ -7650,7 +7674,7 @@ SOFTWARE.
7650
7674
 
7651
7675
  ---
7652
7676
 
7653
- The following software may be included in this product: @verdaccio/signature (8.0.1)
7677
+ The following software may be included in this product: @verdaccio/ui-theme (9.0.0-next-9.14)
7654
7678
  This software contains the following license and notice below:
7655
7679
 
7656
7680
  MIT License
@@ -7677,12 +7701,12 @@ SOFTWARE.
7677
7701
 
7678
7702
  ---
7679
7703
 
7680
- The following software may be included in this product: @verdaccio/streams (10.2.3)
7704
+ The following software may be included in this product: @verdaccio/url (13.0.2)
7681
7705
  This software contains the following license and notice below:
7682
7706
 
7683
7707
  MIT License
7684
7708
 
7685
- Copyright (c) 2019 Verdaccio
7709
+ Copyright (c) 2025 Verdaccio contributors
7686
7710
 
7687
7711
  Permission is hereby granted, free of charge, to any person obtaining a copy
7688
7712
  of this software and associated documentation files (the "Software"), to deal
@@ -7704,7 +7728,7 @@ SOFTWARE.
7704
7728
 
7705
7729
  ---
7706
7730
 
7707
- The following software may be included in this product: @verdaccio/tarball (13.0.1)
7731
+ The following software may be included in this product: @verdaccio/utils (8.1.2)
7708
7732
  This software contains the following license and notice below:
7709
7733
 
7710
7734
  MIT License
@@ -7731,12 +7755,12 @@ SOFTWARE.
7731
7755
 
7732
7756
  ---
7733
7757
 
7734
- The following software may be included in this product: @verdaccio/ui-theme (9.0.0-next-9.14)
7758
+ The following software may be included in this product: @vitest/coverage-v8 (4.1.7)
7735
7759
  This software contains the following license and notice below:
7736
7760
 
7737
7761
  MIT License
7738
7762
 
7739
- Copyright (c) 2025 Verdaccio contributors
7763
+ Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
7740
7764
 
7741
7765
  Permission is hereby granted, free of charge, to any person obtaining a copy
7742
7766
  of this software and associated documentation files (the "Software"), to deal
@@ -7758,12 +7782,12 @@ SOFTWARE.
7758
7782
 
7759
7783
  ---
7760
7784
 
7761
- The following software may be included in this product: @verdaccio/url (13.0.1)
7785
+ The following software may be included in this product: @vitest/expect (4.1.7)
7762
7786
  This software contains the following license and notice below:
7763
7787
 
7764
7788
  MIT License
7765
7789
 
7766
- Copyright (c) 2025 Verdaccio contributors
7790
+ Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
7767
7791
 
7768
7792
  Permission is hereby granted, free of charge, to any person obtaining a copy
7769
7793
  of this software and associated documentation files (the "Software"), to deal
@@ -7785,12 +7809,12 @@ SOFTWARE.
7785
7809
 
7786
7810
  ---
7787
7811
 
7788
- The following software may be included in this product: @verdaccio/utils (8.1.1)
7812
+ The following software may be included in this product: @vitest/mocker (4.1.7)
7789
7813
  This software contains the following license and notice below:
7790
7814
 
7791
7815
  MIT License
7792
7816
 
7793
- Copyright (c) 2025 Verdaccio contributors
7817
+ Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
7794
7818
 
7795
7819
  Permission is hereby granted, free of charge, to any person obtaining a copy
7796
7820
  of this software and associated documentation files (the "Software"), to deal
@@ -7812,7 +7836,7 @@ SOFTWARE.
7812
7836
 
7813
7837
  ---
7814
7838
 
7815
- The following software may be included in this product: @vitest/coverage-v8 (4.1.7)
7839
+ The following software may be included in this product: @vitest/pretty-format (4.1.7)
7816
7840
  This software contains the following license and notice below:
7817
7841
 
7818
7842
  MIT License
@@ -7839,7 +7863,7 @@ SOFTWARE.
7839
7863
 
7840
7864
  ---
7841
7865
 
7842
- The following software may be included in this product: @vitest/expect (4.1.7)
7866
+ The following software may be included in this product: @vitest/runner (4.1.7)
7843
7867
  This software contains the following license and notice below:
7844
7868
 
7845
7869
  MIT License
@@ -7866,7 +7890,7 @@ SOFTWARE.
7866
7890
 
7867
7891
  ---
7868
7892
 
7869
- The following software may be included in this product: @vitest/mocker (4.1.7)
7893
+ The following software may be included in this product: @vitest/snapshot (4.1.7)
7870
7894
  This software contains the following license and notice below:
7871
7895
 
7872
7896
  MIT License
@@ -7893,7 +7917,7 @@ SOFTWARE.
7893
7917
 
7894
7918
  ---
7895
7919
 
7896
- The following software may be included in this product: @vitest/pretty-format (4.1.7)
7920
+ The following software may be included in this product: @vitest/spy (4.1.7)
7897
7921
  This software contains the following license and notice below:
7898
7922
 
7899
7923
  MIT License
@@ -7920,7 +7944,7 @@ SOFTWARE.
7920
7944
 
7921
7945
  ---
7922
7946
 
7923
- The following software may be included in this product: @vitest/runner (4.1.7)
7947
+ The following software may be included in this product: @vitest/ui (4.1.7)
7924
7948
  This software contains the following license and notice below:
7925
7949
 
7926
7950
  MIT License
@@ -7947,7 +7971,7 @@ SOFTWARE.
7947
7971
 
7948
7972
  ---
7949
7973
 
7950
- The following software may be included in this product: @vitest/snapshot (4.1.7)
7974
+ The following software may be included in this product: @vitest/utils (4.1.7)
7951
7975
  This software contains the following license and notice below:
7952
7976
 
7953
7977
  MIT License
@@ -7974,12 +7998,12 @@ SOFTWARE.
7974
7998
 
7975
7999
  ---
7976
8000
 
7977
- The following software may be included in this product: @vitest/spy (4.1.7)
8001
+ The following software may be included in this product: @webassemblyjs/ast (1.14.1)
7978
8002
  This software contains the following license and notice below:
7979
8003
 
7980
8004
  MIT License
7981
8005
 
7982
- Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
8006
+ Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
7983
8007
 
7984
8008
  Permission is hereby granted, free of charge, to any person obtaining a copy
7985
8009
  of this software and associated documentation files (the "Software"), to deal
@@ -8001,12 +8025,12 @@ SOFTWARE.
8001
8025
 
8002
8026
  ---
8003
8027
 
8004
- The following software may be included in this product: @vitest/ui (4.1.7)
8028
+ The following software may be included in this product: @webassemblyjs/floating-point-hex-parser (1.13.2)
8005
8029
  This software contains the following license and notice below:
8006
8030
 
8007
8031
  MIT License
8008
8032
 
8009
- Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
8033
+ Copyright (c) 2017 Mauro Bringolf
8010
8034
 
8011
8035
  Permission is hereby granted, free of charge, to any person obtaining a copy
8012
8036
  of this software and associated documentation files (the "Software"), to deal
@@ -8028,12 +8052,12 @@ SOFTWARE.
8028
8052
 
8029
8053
  ---
8030
8054
 
8031
- The following software may be included in this product: @vitest/utils (4.1.7)
8055
+ The following software may be included in this product: @webassemblyjs/helper-api-error (1.13.2)
8032
8056
  This software contains the following license and notice below:
8033
8057
 
8034
8058
  MIT License
8035
8059
 
8036
- Copyright (c) 2021-Present VoidZero Inc. and Vitest contributors
8060
+ Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
8037
8061
 
8038
8062
  Permission is hereby granted, free of charge, to any person obtaining a copy
8039
8063
  of this software and associated documentation files (the "Software"), to deal
@@ -8055,7 +8079,7 @@ SOFTWARE.
8055
8079
 
8056
8080
  ---
8057
8081
 
8058
- The following software may be included in this product: @webassemblyjs/ast (1.14.1)
8082
+ The following software may be included in this product: @webassemblyjs/helper-buffer (1.14.1)
8059
8083
  This software contains the following license and notice below:
8060
8084
 
8061
8085
  MIT License
@@ -8082,12 +8106,12 @@ SOFTWARE.
8082
8106
 
8083
8107
  ---
8084
8108
 
8085
- The following software may be included in this product: @webassemblyjs/floating-point-hex-parser (1.13.2)
8109
+ The following software may be included in this product: @webassemblyjs/helper-numbers (1.13.2)
8086
8110
  This software contains the following license and notice below:
8087
8111
 
8088
8112
  MIT License
8089
8113
 
8090
- Copyright (c) 2017 Mauro Bringolf
8114
+ Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
8091
8115
 
8092
8116
  Permission is hereby granted, free of charge, to any person obtaining a copy
8093
8117
  of this software and associated documentation files (the "Software"), to deal
@@ -8109,7 +8133,7 @@ SOFTWARE.
8109
8133
 
8110
8134
  ---
8111
8135
 
8112
- The following software may be included in this product: @webassemblyjs/helper-api-error (1.13.2)
8136
+ The following software may be included in this product: @webassemblyjs/helper-wasm-bytecode (1.13.2)
8113
8137
  This software contains the following license and notice below:
8114
8138
 
8115
8139
  MIT License
@@ -8136,7 +8160,7 @@ SOFTWARE.
8136
8160
 
8137
8161
  ---
8138
8162
 
8139
- The following software may be included in this product: @webassemblyjs/helper-buffer (1.14.1)
8163
+ The following software may be included in this product: @webassemblyjs/helper-wasm-section (1.14.1)
8140
8164
  This software contains the following license and notice below:
8141
8165
 
8142
8166
  MIT License
@@ -8163,7 +8187,7 @@ SOFTWARE.
8163
8187
 
8164
8188
  ---
8165
8189
 
8166
- The following software may be included in this product: @webassemblyjs/helper-numbers (1.13.2)
8190
+ The following software may be included in this product: @webassemblyjs/ieee754 (1.13.2)
8167
8191
  This software contains the following license and notice below:
8168
8192
 
8169
8193
  MIT License
@@ -8190,7 +8214,7 @@ SOFTWARE.
8190
8214
 
8191
8215
  ---
8192
8216
 
8193
- The following software may be included in this product: @webassemblyjs/helper-wasm-bytecode (1.13.2)
8217
+ The following software may be included in this product: @webassemblyjs/utf8 (1.13.2)
8194
8218
  This software contains the following license and notice below:
8195
8219
 
8196
8220
  MIT License
@@ -8217,7 +8241,7 @@ SOFTWARE.
8217
8241
 
8218
8242
  ---
8219
8243
 
8220
- The following software may be included in this product: @webassemblyjs/helper-wasm-section (1.14.1)
8244
+ The following software may be included in this product: @webassemblyjs/wasm-edit (1.14.1)
8221
8245
  This software contains the following license and notice below:
8222
8246
 
8223
8247
  MIT License
@@ -8244,7 +8268,7 @@ SOFTWARE.
8244
8268
 
8245
8269
  ---
8246
8270
 
8247
- The following software may be included in this product: @webassemblyjs/ieee754 (1.13.2)
8271
+ The following software may be included in this product: @webassemblyjs/wasm-gen (1.14.1)
8248
8272
  This software contains the following license and notice below:
8249
8273
 
8250
8274
  MIT License
@@ -8271,7 +8295,7 @@ SOFTWARE.
8271
8295
 
8272
8296
  ---
8273
8297
 
8274
- The following software may be included in this product: @webassemblyjs/utf8 (1.13.2)
8298
+ The following software may be included in this product: @webassemblyjs/wasm-opt (1.14.1)
8275
8299
  This software contains the following license and notice below:
8276
8300
 
8277
8301
  MIT License
@@ -8298,7 +8322,7 @@ SOFTWARE.
8298
8322
 
8299
8323
  ---
8300
8324
 
8301
- The following software may be included in this product: @webassemblyjs/wasm-edit (1.14.1)
8325
+ The following software may be included in this product: @webassemblyjs/wasm-parser (1.14.1)
8302
8326
  This software contains the following license and notice below:
8303
8327
 
8304
8328
  MIT License
@@ -8325,7 +8349,7 @@ SOFTWARE.
8325
8349
 
8326
8350
  ---
8327
8351
 
8328
- The following software may be included in this product: @webassemblyjs/wasm-gen (1.14.1)
8352
+ The following software may be included in this product: @webassemblyjs/wast-printer (1.14.1)
8329
8353
  This software contains the following license and notice below:
8330
8354
 
8331
8355
  MIT License
@@ -8352,120 +8376,39 @@ SOFTWARE.
8352
8376
 
8353
8377
  ---
8354
8378
 
8355
- The following software may be included in this product: @webassemblyjs/wasm-opt (1.14.1)
8379
+ The following software may be included in this product: @zkochan/js-yaml (0.0.7)
8380
+ This software contains the following license and notice below:
8381
+
8382
+ (The MIT License)
8383
+
8384
+ Copyright (C) 2011-2015 by Vitaly Puzrin
8385
+
8386
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8387
+ of this software and associated documentation files (the "Software"), to deal
8388
+ in the Software without restriction, including without limitation the rights
8389
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8390
+ copies of the Software, and to permit persons to whom the Software is
8391
+ furnished to do so, subject to the following conditions:
8392
+
8393
+ The above copyright notice and this permission notice shall be included in
8394
+ all copies or substantial portions of the Software.
8395
+
8396
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8397
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8398
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8399
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8400
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8401
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
8402
+ THE SOFTWARE.
8403
+
8404
+ ---
8405
+
8406
+ The following software may be included in this product: abort-controller (3.0.0)
8356
8407
  This software contains the following license and notice below:
8357
8408
 
8358
8409
  MIT License
8359
8410
 
8360
- Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
8361
-
8362
- Permission is hereby granted, free of charge, to any person obtaining a copy
8363
- of this software and associated documentation files (the "Software"), to deal
8364
- in the Software without restriction, including without limitation the rights
8365
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8366
- copies of the Software, and to permit persons to whom the Software is
8367
- furnished to do so, subject to the following conditions:
8368
-
8369
- The above copyright notice and this permission notice shall be included in all
8370
- copies or substantial portions of the Software.
8371
-
8372
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8373
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8374
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8375
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8376
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8377
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
8378
- SOFTWARE.
8379
-
8380
- ---
8381
-
8382
- The following software may be included in this product: @webassemblyjs/wasm-parser (1.14.1)
8383
- This software contains the following license and notice below:
8384
-
8385
- MIT License
8386
-
8387
- Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
8388
-
8389
- Permission is hereby granted, free of charge, to any person obtaining a copy
8390
- of this software and associated documentation files (the "Software"), to deal
8391
- in the Software without restriction, including without limitation the rights
8392
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8393
- copies of the Software, and to permit persons to whom the Software is
8394
- furnished to do so, subject to the following conditions:
8395
-
8396
- The above copyright notice and this permission notice shall be included in all
8397
- copies or substantial portions of the Software.
8398
-
8399
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8400
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8401
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8402
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8403
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8404
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
8405
- SOFTWARE.
8406
-
8407
- ---
8408
-
8409
- The following software may be included in this product: @webassemblyjs/wast-printer (1.14.1)
8410
- This software contains the following license and notice below:
8411
-
8412
- MIT License
8413
-
8414
- Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
8415
-
8416
- Permission is hereby granted, free of charge, to any person obtaining a copy
8417
- of this software and associated documentation files (the "Software"), to deal
8418
- in the Software without restriction, including without limitation the rights
8419
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8420
- copies of the Software, and to permit persons to whom the Software is
8421
- furnished to do so, subject to the following conditions:
8422
-
8423
- The above copyright notice and this permission notice shall be included in all
8424
- copies or substantial portions of the Software.
8425
-
8426
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8427
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8428
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8429
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8430
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8431
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
8432
- SOFTWARE.
8433
-
8434
- ---
8435
-
8436
- The following software may be included in this product: @zkochan/js-yaml (0.0.7)
8437
- This software contains the following license and notice below:
8438
-
8439
- (The MIT License)
8440
-
8441
- Copyright (C) 2011-2015 by Vitaly Puzrin
8442
-
8443
- Permission is hereby granted, free of charge, to any person obtaining a copy
8444
- of this software and associated documentation files (the "Software"), to deal
8445
- in the Software without restriction, including without limitation the rights
8446
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8447
- copies of the Software, and to permit persons to whom the Software is
8448
- furnished to do so, subject to the following conditions:
8449
-
8450
- The above copyright notice and this permission notice shall be included in
8451
- all copies or substantial portions of the Software.
8452
-
8453
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8454
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8455
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8456
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8457
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8458
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
8459
- THE SOFTWARE.
8460
-
8461
- ---
8462
-
8463
- The following software may be included in this product: abort-controller (3.0.0)
8464
- This software contains the following license and notice below:
8465
-
8466
- MIT License
8467
-
8468
- Copyright (c) 2017 Toru Nagashima
8411
+ Copyright (c) 2017 Toru Nagashima
8469
8412
 
8470
8413
  Permission is hereby granted, free of charge, to any person obtaining a copy
8471
8414
  of this software and associated documentation files (the "Software"), to deal
@@ -8713,19 +8656,19 @@ MIT License
8713
8656
 
8714
8657
  Copyright (c) Nathan Rajlich
8715
8658
 
8716
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
8717
- associated documentation files (the "Software"), to deal in the Software without restriction, including
8718
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8719
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
8659
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
8660
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
8661
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8662
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
8720
8663
  following conditions:
8721
8664
 
8722
- The above copyright notice and this permission notice shall be included in all copies or substantial
8665
+ The above copyright notice and this permission notice shall be included in all copies or substantial
8723
8666
  portions of the Software.
8724
8667
 
8725
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
8726
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
8727
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
8728
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
8668
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
8669
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
8670
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
8671
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
8729
8672
  USE OR OTHER DEALINGS IN THE SOFTWARE.
8730
8673
 
8731
8674
  ---
@@ -8757,33 +8700,6 @@ SOFTWARE.
8757
8700
 
8758
8701
  ---
8759
8702
 
8760
- The following software may be included in this product: ajv (8.17.1)
8761
- This software contains the following license and notice below:
8762
-
8763
- The MIT License (MIT)
8764
-
8765
- Copyright (c) 2015-2021 Evgeny Poberezkin
8766
-
8767
- Permission is hereby granted, free of charge, to any person obtaining a copy
8768
- of this software and associated documentation files (the "Software"), to deal
8769
- in the Software without restriction, including without limitation the rights
8770
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8771
- copies of the Software, and to permit persons to whom the Software is
8772
- furnished to do so, subject to the following conditions:
8773
-
8774
- The above copyright notice and this permission notice shall be included in all
8775
- copies or substantial portions of the Software.
8776
-
8777
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8778
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8779
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8780
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8781
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8782
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
8783
- SOFTWARE.
8784
-
8785
- ---
8786
-
8787
8703
  The following software may be included in this product: ajv (8.18.0)
8788
8704
  This software contains the following license and notice below:
8789
8705
 
@@ -9929,6 +9845,35 @@ SOFTWARE.
9929
9845
 
9930
9846
  ---
9931
9847
 
9848
+ The following software may be included in this product: brace-expansion (5.0.6)
9849
+ This software contains the following license and notice below:
9850
+
9851
+ MIT License
9852
+
9853
+ Copyright Julian Gruber <julian@juliangruber.com>
9854
+
9855
+ TypeScript port Copyright Isaac Z. Schlueter <i@izs.me>
9856
+
9857
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9858
+ of this software and associated documentation files (the "Software"), to deal
9859
+ in the Software without restriction, including without limitation the rights
9860
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9861
+ copies of the Software, and to permit persons to whom the Software is
9862
+ furnished to do so, subject to the following conditions:
9863
+
9864
+ The above copyright notice and this permission notice shall be included in all
9865
+ copies or substantial portions of the Software.
9866
+
9867
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9868
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9869
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9870
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9871
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9872
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
9873
+ SOFTWARE.
9874
+
9875
+ ---
9876
+
9932
9877
  The following software may be included in this product: braces (3.0.3)
9933
9878
  This software contains the following license and notice below:
9934
9879
 
@@ -9963,19 +9908,19 @@ MIT License
9963
9908
 
9964
9909
  Copyright (c) Devon Govett
9965
9910
 
9966
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
9967
- associated documentation files (the "Software"), to deal in the Software without restriction, including
9968
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9969
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
9911
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
9912
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
9913
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9914
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
9970
9915
  following conditions:
9971
9916
 
9972
- The above copyright notice and this permission notice shall be included in all copies or substantial
9917
+ The above copyright notice and this permission notice shall be included in all copies or substantial
9973
9918
  portions of the Software.
9974
9919
 
9975
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
9976
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
9977
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
9978
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
9920
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
9921
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
9922
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
9923
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
9979
9924
  USE OR OTHER DEALINGS IN THE SOFTWARE.
9980
9925
 
9981
9926
  ---
@@ -11950,19 +11895,19 @@ MIT License
11950
11895
 
11951
11896
  Copyright (c) Nathan Rajlich
11952
11897
 
11953
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
11954
- associated documentation files (the "Software"), to deal in the Software without restriction, including
11955
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11956
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
11898
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
11899
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
11900
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11901
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
11957
11902
  following conditions:
11958
11903
 
11959
- The above copyright notice and this permission notice shall be included in all copies or substantial
11904
+ The above copyright notice and this permission notice shall be included in all copies or substantial
11960
11905
  portions of the Software.
11961
11906
 
11962
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
11963
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
11964
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
11965
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
11907
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
11908
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
11909
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
11910
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
11966
11911
  USE OR OTHER DEALINGS IN THE SOFTWARE.
11967
11912
 
11968
11913
  ---
@@ -12692,19 +12637,19 @@ MIT License
12692
12637
 
12693
12638
  Copyright (c) Masaki Komagata
12694
12639
 
12695
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
12696
- associated documentation files (the "Software"), to deal in the Software without restriction, including
12697
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12698
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
12640
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
12641
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
12642
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12643
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
12699
12644
  following conditions:
12700
12645
 
12701
- The above copyright notice and this permission notice shall be included in all copies or substantial
12646
+ The above copyright notice and this permission notice shall be included in all copies or substantial
12702
12647
  portions of the Software.
12703
12648
 
12704
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
12705
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
12706
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
12707
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
12649
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
12650
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
12651
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
12652
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
12708
12653
  USE OR OTHER DEALINGS IN THE SOFTWARE.
12709
12654
 
12710
12655
  ---
@@ -14367,19 +14312,19 @@ MIT License
14367
14312
 
14368
14313
  Copyright (c) Sami Samhuri
14369
14314
 
14370
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
14371
- associated documentation files (the "Software"), to deal in the Software without restriction, including
14372
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14373
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
14315
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
14316
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
14317
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14318
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
14374
14319
  following conditions:
14375
14320
 
14376
- The above copyright notice and this permission notice shall be included in all copies or substantial
14321
+ The above copyright notice and this permission notice shall be included in all copies or substantial
14377
14322
  portions of the Software.
14378
14323
 
14379
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
14380
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
14381
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14382
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
14324
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
14325
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
14326
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14327
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
14383
14328
  USE OR OTHER DEALINGS IN THE SOFTWARE.
14384
14329
 
14385
14330
  ---
@@ -14635,6 +14580,34 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE
14635
14580
 
14636
14581
  ---
14637
14582
 
14583
+ The following software may be included in this product: fsevents (2.3.3)
14584
+ This software contains the following license and notice below:
14585
+
14586
+ MIT License
14587
+ -----------
14588
+
14589
+ Copyright (C) 2010-2020 by Philipp Dunkel, Ben Noordhuis, Elan Shankar, Paul Miller
14590
+
14591
+ Permission is hereby granted, free of charge, to any person obtaining a copy
14592
+ of this software and associated documentation files (the "Software"), to deal
14593
+ in the Software without restriction, including without limitation the rights
14594
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14595
+ copies of the Software, and to permit persons to whom the Software is
14596
+ furnished to do so, subject to the following conditions:
14597
+
14598
+ The above copyright notice and this permission notice shall be included in
14599
+ all copies or substantial portions of the Software.
14600
+
14601
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14602
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14603
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14604
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
14605
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
14606
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
14607
+ THE SOFTWARE.
14608
+
14609
+ ---
14610
+
14638
14611
  The following software may be included in this product: function-bind (1.1.2)
14639
14612
  This software contains the following license and notice below:
14640
14613
 
@@ -15541,19 +15514,19 @@ MIT License
15541
15514
 
15542
15515
  Copyright (c) Nathan Rajlich
15543
15516
 
15544
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
15545
- associated documentation files (the "Software"), to deal in the Software without restriction, including
15546
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15547
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
15517
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
15518
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
15519
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15520
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
15548
15521
  following conditions:
15549
15522
 
15550
- The above copyright notice and this permission notice shall be included in all copies or substantial
15523
+ The above copyright notice and this permission notice shall be included in all copies or substantial
15551
15524
  portions of the Software.
15552
15525
 
15553
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15554
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
15555
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
15556
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
15526
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15527
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
15528
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
15529
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
15557
15530
  USE OR OTHER DEALINGS IN THE SOFTWARE.
15558
15531
 
15559
15532
  ---
@@ -15712,19 +15685,19 @@ MIT License
15712
15685
 
15713
15686
  Copyright (c) Jens Taylor
15714
15687
 
15715
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
15716
- associated documentation files (the "Software"), to deal in the Software without restriction, including
15717
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15718
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
15688
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
15689
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
15690
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15691
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
15719
15692
  following conditions:
15720
15693
 
15721
- The above copyright notice and this permission notice shall be included in all copies or substantial
15694
+ The above copyright notice and this permission notice shall be included in all copies or substantial
15722
15695
  portions of the Software.
15723
15696
 
15724
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15725
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
15726
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
15727
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
15697
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15698
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
15699
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
15700
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
15728
15701
  USE OR OTHER DEALINGS IN THE SOFTWARE.
15729
15702
 
15730
15703
  ---
@@ -16034,19 +16007,19 @@ MIT License
16034
16007
 
16035
16008
  Copyright (c) Kevin Mårtensson
16036
16009
 
16037
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
16038
- associated documentation files (the "Software"), to deal in the Software without restriction, including
16039
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16040
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
16010
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
16011
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
16012
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16013
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
16041
16014
  following conditions:
16042
16015
 
16043
- The above copyright notice and this permission notice shall be included in all copies or substantial
16016
+ The above copyright notice and this permission notice shall be included in all copies or substantial
16044
16017
  portions of the Software.
16045
16018
 
16046
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
16047
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16048
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
16049
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
16019
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
16020
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16021
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
16022
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
16050
16023
  USE OR OTHER DEALINGS IN THE SOFTWARE.
16051
16024
 
16052
16025
  ---
@@ -16274,19 +16247,19 @@ MIT License
16274
16247
 
16275
16248
  Copyright (c) Rich Harris
16276
16249
 
16277
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
16278
- associated documentation files (the "Software"), to deal in the Software without restriction, including
16279
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16280
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
16250
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
16251
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
16252
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16253
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
16281
16254
  following conditions:
16282
16255
 
16283
- The above copyright notice and this permission notice shall be included in all copies or substantial
16256
+ The above copyright notice and this permission notice shall be included in all copies or substantial
16284
16257
  portions of the Software.
16285
16258
 
16286
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
16287
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16288
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
16289
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
16259
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
16260
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16261
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
16262
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
16290
16263
  USE OR OTHER DEALINGS IN THE SOFTWARE.
16291
16264
 
16292
16265
  ---
@@ -16674,6 +16647,33 @@ THE SOFTWARE.
16674
16647
 
16675
16648
  ---
16676
16649
 
16650
+ The following software may be included in this product: js-yaml (4.2.0)
16651
+ This software contains the following license and notice below:
16652
+
16653
+ (The MIT License)
16654
+
16655
+ Copyright (C) 2011-2015 by Vitaly Puzrin
16656
+
16657
+ Permission is hereby granted, free of charge, to any person obtaining a copy
16658
+ of this software and associated documentation files (the "Software"), to deal
16659
+ in the Software without restriction, including without limitation the rights
16660
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16661
+ copies of the Software, and to permit persons to whom the Software is
16662
+ furnished to do so, subject to the following conditions:
16663
+
16664
+ The above copyright notice and this permission notice shall be included in
16665
+ all copies or substantial portions of the Software.
16666
+
16667
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16668
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16669
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16670
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16671
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16672
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
16673
+ THE SOFTWARE.
16674
+
16675
+ ---
16676
+
16677
16677
  The following software may be included in this product: jsbn (0.1.1)
16678
16678
  This software contains the following license and notice below:
16679
16679
 
@@ -17197,19 +17197,19 @@ MIT License
17197
17197
 
17198
17198
  Copyright (c) Jared Wray
17199
17199
 
17200
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
17201
- associated documentation files (the "Software"), to deal in the Software without restriction, including
17202
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17203
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
17200
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
17201
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
17202
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17203
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
17204
17204
  following conditions:
17205
17205
 
17206
- The above copyright notice and this permission notice shall be included in all copies or substantial
17206
+ The above copyright notice and this permission notice shall be included in all copies or substantial
17207
17207
  portions of the Software.
17208
17208
 
17209
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
17210
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
17211
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17212
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
17209
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
17210
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
17211
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17212
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
17213
17213
  USE OR OTHER DEALINGS IN THE SOFTWARE.
17214
17214
 
17215
17215
  ---
@@ -17249,19 +17249,19 @@ MIT License
17249
17249
 
17250
17250
  Copyright (c) The maintainers of koa-compose <https://github.com/koajs/compose#readme>
17251
17251
 
17252
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
17253
- associated documentation files (the "Software"), to deal in the Software without restriction, including
17254
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17255
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
17252
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
17253
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
17254
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17255
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
17256
17256
  following conditions:
17257
17257
 
17258
- The above copyright notice and this permission notice shall be included in all copies or substantial
17258
+ The above copyright notice and this permission notice shall be included in all copies or substantial
17259
17259
  portions of the Software.
17260
17260
 
17261
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
17262
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
17263
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17264
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
17261
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
17262
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
17263
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17264
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
17265
17265
  USE OR OTHER DEALINGS IN THE SOFTWARE.
17266
17266
 
17267
17267
  ---
@@ -18254,19 +18254,19 @@ MIT License
18254
18254
 
18255
18255
  Copyright (c) Christian Tellnes
18256
18256
 
18257
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
18258
- associated documentation files (the "Software"), to deal in the Software without restriction, including
18259
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18260
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
18257
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
18258
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
18259
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18260
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
18261
18261
  following conditions:
18262
18262
 
18263
- The above copyright notice and this permission notice shall be included in all copies or substantial
18263
+ The above copyright notice and this permission notice shall be included in all copies or substantial
18264
18264
  portions of the Software.
18265
18265
 
18266
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
18267
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
18268
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18269
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18266
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
18267
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
18268
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18269
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18270
18270
  USE OR OTHER DEALINGS IN THE SOFTWARE.
18271
18271
 
18272
18272
  ---
@@ -20246,19 +20246,19 @@ MIT License
20246
20246
 
20247
20247
  Copyright (c) Lauri Rooden
20248
20248
 
20249
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
20250
- associated documentation files (the "Software"), to deal in the Software without restriction, including
20251
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
20252
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
20249
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
20250
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
20251
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
20252
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
20253
20253
  following conditions:
20254
20254
 
20255
- The above copyright notice and this permission notice shall be included in all copies or substantial
20255
+ The above copyright notice and this permission notice shall be included in all copies or substantial
20256
20256
  portions of the Software.
20257
20257
 
20258
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
20259
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
20260
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20261
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20258
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
20259
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
20260
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20261
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20262
20262
  USE OR OTHER DEALINGS IN THE SOFTWARE.
20263
20263
 
20264
20264
  ---
@@ -20772,7 +20772,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
20772
20772
 
20773
20773
  ---
20774
20774
 
20775
- The following software may be included in this product: nx (22.7.3)
20775
+ The following software may be included in this product: nx (22.7.5)
20776
20776
  This software contains the following license and notice below:
20777
20777
 
20778
20778
  (The MIT License)
@@ -21155,19 +21155,19 @@ MIT License
21155
21155
 
21156
21156
  Copyright (c) The maintainers of oxc-resolver <https://oxc.rs>
21157
21157
 
21158
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
21159
- associated documentation files (the "Software"), to deal in the Software without restriction, including
21160
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
21161
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
21158
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
21159
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
21160
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
21161
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
21162
21162
  following conditions:
21163
21163
 
21164
- The above copyright notice and this permission notice shall be included in all copies or substantial
21164
+ The above copyright notice and this permission notice shall be included in all copies or substantial
21165
21165
  portions of the Software.
21166
21166
 
21167
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
21168
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
21169
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
21170
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21167
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
21168
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
21169
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
21170
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21171
21171
  USE OR OTHER DEALINGS IN THE SOFTWARE.
21172
21172
 
21173
21173
  ---
@@ -22778,7 +22778,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
22778
22778
 
22779
22779
  ---
22780
22780
 
22781
- The following software may be included in this product: react (19.2.6)
22781
+ The following software may be included in this product: react (19.2.7)
22782
22782
  This software contains the following license and notice below:
22783
22783
 
22784
22784
  MIT License
@@ -22805,7 +22805,7 @@ SOFTWARE.
22805
22805
 
22806
22806
  ---
22807
22807
 
22808
- The following software may be included in this product: react-dom (19.2.6)
22808
+ The following software may be included in this product: react-dom (19.2.7)
22809
22809
  This software contains the following license and notice below:
22810
22810
 
22811
22811
  MIT License
@@ -24603,19 +24603,19 @@ MIT License
24603
24603
 
24604
24604
  Copyright (c) Vadim Demedes
24605
24605
 
24606
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
24607
- associated documentation files (the "Software"), to deal in the Software without restriction, including
24608
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24609
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
24606
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
24607
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
24608
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24609
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
24610
24610
  following conditions:
24611
24611
 
24612
- The above copyright notice and this permission notice shall be included in all copies or substantial
24612
+ The above copyright notice and this permission notice shall be included in all copies or substantial
24613
24613
  portions of the Software.
24614
24614
 
24615
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
24616
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
24617
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24618
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24615
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
24616
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
24617
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24618
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24619
24619
  USE OR OTHER DEALINGS IN THE SOFTWARE.
24620
24620
 
24621
24621
  ---
@@ -24885,19 +24885,19 @@ MIT License
24885
24885
 
24886
24886
  Copyright (c) Luke Edwards
24887
24887
 
24888
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
24889
- associated documentation files (the "Software"), to deal in the Software without restriction, including
24890
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24891
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
24888
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
24889
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
24890
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24891
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
24892
24892
  following conditions:
24893
24893
 
24894
- The above copyright notice and this permission notice shall be included in all copies or substantial
24894
+ The above copyright notice and this permission notice shall be included in all copies or substantial
24895
24895
  portions of the Software.
24896
24896
 
24897
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
24898
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
24899
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24900
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24897
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
24898
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
24899
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24900
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24901
24901
  USE OR OTHER DEALINGS IN THE SOFTWARE.
24902
24902
 
24903
24903
  ---
@@ -25110,19 +25110,19 @@ MIT License
25110
25110
 
25111
25111
  Copyright (c) Roman Shtylman
25112
25112
 
25113
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
25114
- associated documentation files (the "Software"), to deal in the Software without restriction, including
25115
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25116
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
25113
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
25114
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
25115
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25116
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
25117
25117
  following conditions:
25118
25118
 
25119
- The above copyright notice and this permission notice shall be included in all copies or substantial
25119
+ The above copyright notice and this permission notice shall be included in all copies or substantial
25120
25120
  portions of the Software.
25121
25121
 
25122
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
25123
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
25124
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
25125
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
25122
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
25123
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
25124
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
25125
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
25126
25126
  USE OR OTHER DEALINGS IN THE SOFTWARE.
25127
25127
 
25128
25128
  ---
@@ -25645,19 +25645,19 @@ MIT License
25645
25645
 
25646
25646
  Copyright (c) Rich Harris
25647
25647
 
25648
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
25649
- associated documentation files (the "Software"), to deal in the Software without restriction, including
25650
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25651
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
25648
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
25649
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
25650
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25651
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
25652
25652
  following conditions:
25653
25653
 
25654
- The above copyright notice and this permission notice shall be included in all copies or substantial
25654
+ The above copyright notice and this permission notice shall be included in all copies or substantial
25655
25655
  portions of the Software.
25656
25656
 
25657
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
25658
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
25659
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
25660
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
25657
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
25658
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
25659
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
25660
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
25661
25661
  USE OR OTHER DEALINGS IN THE SOFTWARE.
25662
25662
 
25663
25663
  ---
@@ -26124,7 +26124,7 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTH
26124
26124
 
26125
26125
  ---
26126
26126
 
26127
- The following software may be included in this product: tmp (0.2.4)
26127
+ The following software may be included in this product: tmp (0.2.6)
26128
26128
  This software contains the following license and notice below:
26129
26129
 
26130
26130
  The MIT License (MIT)
@@ -26239,19 +26239,19 @@ MIT License
26239
26239
 
26240
26240
  Copyright (c) Sebastian Mayr
26241
26241
 
26242
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
26243
- associated documentation files (the "Software"), to deal in the Software without restriction, including
26244
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26245
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
26242
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
26243
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
26244
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26245
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
26246
26246
  following conditions:
26247
26247
 
26248
- The above copyright notice and this permission notice shall be included in all copies or substantial
26248
+ The above copyright notice and this permission notice shall be included in all copies or substantial
26249
26249
  portions of the Software.
26250
26250
 
26251
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
26252
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
26253
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
26254
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
26251
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
26252
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
26253
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
26254
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
26255
26255
  USE OR OTHER DEALINGS IN THE SOFTWARE.
26256
26256
 
26257
26257
  ---
@@ -26391,7 +26391,7 @@ SOFTWARE.
26391
26391
 
26392
26392
  ---
26393
26393
 
26394
- The following software may be included in this product: tsx (4.22.3)
26394
+ The following software may be included in this product: tsx (4.22.4)
26395
26395
  This software contains the following license and notice below:
26396
26396
 
26397
26397
  MIT License
@@ -27196,7 +27196,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27196
27196
 
27197
27197
  ---
27198
27198
 
27199
- The following software may be included in this product: verdaccio (6.7.1)
27199
+ The following software may be included in this product: verdaccio (6.7.2)
27200
27200
  This software contains the following license and notice below:
27201
27201
 
27202
27202
  MIT License
@@ -27223,7 +27223,7 @@ SOFTWARE.
27223
27223
 
27224
27224
  ---
27225
27225
 
27226
- The following software may be included in this product: verdaccio-audit (13.0.1)
27226
+ The following software may be included in this product: verdaccio-audit (13.0.2)
27227
27227
  This software contains the following license and notice below:
27228
27228
 
27229
27229
  MIT License
@@ -27250,7 +27250,7 @@ SOFTWARE.
27250
27250
 
27251
27251
  ---
27252
27252
 
27253
- The following software may be included in this product: verdaccio-htpasswd (13.0.1)
27253
+ The following software may be included in this product: verdaccio-htpasswd (13.0.2)
27254
27254
  This software contains the following license and notice below:
27255
27255
 
27256
27256
  MIT License
@@ -35675,7 +35675,7 @@ limitations under the License.
35675
35675
 
35676
35676
  ---
35677
35677
 
35678
- The following software may be included in this product: @swc/helpers (0.5.21)
35678
+ The following software may be included in this product: @swc/helpers (0.5.23)
35679
35679
  This software contains the following license and notice below:
35680
35680
 
35681
35681
  Apache License
@@ -38712,6 +38712,213 @@ END OF TERMS AND CONDITIONS
38712
38712
 
38713
38713
  ---
38714
38714
 
38715
+ The following software may be included in this product: fuse.js (7.3.0)
38716
+ This software contains the following license and notice below:
38717
+
38718
+ Apache License
38719
+ Version 2.0, January 2004
38720
+ http://www.apache.org/licenses/
38721
+
38722
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
38723
+
38724
+ 1. Definitions.
38725
+
38726
+ "License" shall mean the terms and conditions for use, reproduction,
38727
+ and distribution as defined by Sections 1 through 9 of this document.
38728
+
38729
+ "Licensor" shall mean the copyright owner or entity authorized by
38730
+ the copyright owner that is granting the License.
38731
+
38732
+ "Legal Entity" shall mean the union of the acting entity and all
38733
+ other entities that control, are controlled by, or are under common
38734
+ control with that entity. For the purposes of this definition,
38735
+ "control" means (i) the power, direct or indirect, to cause the
38736
+ direction or management of such entity, whether by contract or
38737
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
38738
+ outstanding shares, or (iii) beneficial ownership of such entity.
38739
+
38740
+ "You" (or "Your") shall mean an individual or Legal Entity
38741
+ exercising permissions granted by this License.
38742
+
38743
+ "Source" form shall mean the preferred form for making modifications,
38744
+ including but not limited to software source code, documentation
38745
+ source, and configuration files.
38746
+
38747
+ "Object" form shall mean any form resulting from mechanical
38748
+ transformation or translation of a Source form, including but
38749
+ not limited to compiled object code, generated documentation,
38750
+ and conversions to other media types.
38751
+
38752
+ "Work" shall mean the work of authorship, whether in Source or
38753
+ Object form, made available under the License, as indicated by a
38754
+ copyright notice that is included in or attached to the work
38755
+ (an example is provided in the Appendix below).
38756
+
38757
+ "Derivative Works" shall mean any work, whether in Source or Object
38758
+ form, that is based on (or derived from) the Work and for which the
38759
+ editorial revisions, annotations, elaborations, or other modifications
38760
+ represent, as a whole, an original work of authorship. For the purposes
38761
+ of this License, Derivative Works shall not include works that remain
38762
+ separable from, or merely link (or bind by name) to the interfaces of,
38763
+ the Work and Derivative Works thereof.
38764
+
38765
+ "Contribution" shall mean any work of authorship, including
38766
+ the original version of the Work and any modifications or additions
38767
+ to that Work or Derivative Works thereof, that is intentionally
38768
+ submitted to Licensor for inclusion in the Work by the copyright owner
38769
+ or by an individual or Legal Entity authorized to submit on behalf of
38770
+ the copyright owner. For the purposes of this definition, "submitted"
38771
+ means any form of electronic, verbal, or written communication sent
38772
+ to the Licensor or its representatives, including but not limited to
38773
+ communication on electronic mailing lists, source code control systems,
38774
+ and issue tracking systems that are managed by, or on behalf of, the
38775
+ Licensor for the purpose of discussing and improving the Work, but
38776
+ excluding communication that is conspicuously marked or otherwise
38777
+ designated in writing by the copyright owner as "Not a Contribution."
38778
+
38779
+ "Contributor" shall mean Licensor and any individual or Legal Entity
38780
+ on behalf of whom a Contribution has been received by Licensor and
38781
+ subsequently incorporated within the Work.
38782
+
38783
+ 2. Grant of Copyright License. Subject to the terms and conditions of
38784
+ this License, each Contributor hereby grants to You a perpetual,
38785
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
38786
+ copyright license to reproduce, prepare Derivative Works of,
38787
+ publicly display, publicly perform, sublicense, and distribute the
38788
+ Work and such Derivative Works in Source or Object form.
38789
+
38790
+ 3. Grant of Patent License. Subject to the terms and conditions of
38791
+ this License, each Contributor hereby grants to You a perpetual,
38792
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
38793
+ (except as stated in this section) patent license to make, have made,
38794
+ use, offer to sell, sell, import, and otherwise transfer the Work,
38795
+ where such license applies only to those patent claims licensable
38796
+ by such Contributor that are necessarily infringed by their
38797
+ Contribution(s) alone or by combination of their Contribution(s)
38798
+ with the Work to which such Contribution(s) was submitted. If You
38799
+ institute patent litigation against any entity (including a
38800
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
38801
+ or a Contribution incorporated within the Work constitutes direct
38802
+ or contributory patent infringement, then any patent licenses
38803
+ granted to You under this License for that Work shall terminate
38804
+ as of the date such litigation is filed.
38805
+
38806
+ 4. Redistribution. You may reproduce and distribute copies of the
38807
+ Work or Derivative Works thereof in any medium, with or without
38808
+ modifications, and in Source or Object form, provided that You
38809
+ meet the following conditions:
38810
+
38811
+ (a) You must give any other recipients of the Work or
38812
+ Derivative Works a copy of this License; and
38813
+
38814
+ (b) You must cause any modified files to carry prominent notices
38815
+ stating that You changed the files; and
38816
+
38817
+ (c) You must retain, in the Source form of any Derivative Works
38818
+ that You distribute, all copyright, patent, trademark, and
38819
+ attribution notices from the Source form of the Work,
38820
+ excluding those notices that do not pertain to any part of
38821
+ the Derivative Works; and
38822
+
38823
+ (d) If the Work includes a "NOTICE" text file as part of its
38824
+ distribution, then any Derivative Works that You distribute must
38825
+ include a readable copy of the attribution notices contained
38826
+ within such NOTICE file, excluding those notices that do not
38827
+ pertain to any part of the Derivative Works, in at least one
38828
+ of the following places: within a NOTICE text file distributed
38829
+ as part of the Derivative Works; within the Source form or
38830
+ documentation, if provided along with the Derivative Works; or,
38831
+ within a display generated by the Derivative Works, if and
38832
+ wherever such third-party notices normally appear. The contents
38833
+ of the NOTICE file are for informational purposes only and
38834
+ do not modify the License. You may add Your own attribution
38835
+ notices within Derivative Works that You distribute, alongside
38836
+ or as an addendum to the NOTICE text from the Work, provided
38837
+ that such additional attribution notices cannot be construed
38838
+ as modifying the License.
38839
+
38840
+ You may add Your own copyright statement to Your modifications and
38841
+ may provide additional or different license terms and conditions
38842
+ for use, reproduction, or distribution of Your modifications, or
38843
+ for any such Derivative Works as a whole, provided Your use,
38844
+ reproduction, and distribution of the Work otherwise complies with
38845
+ the conditions stated in this License.
38846
+
38847
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
38848
+ any Contribution intentionally submitted for inclusion in the Work
38849
+ by You to the Licensor shall be under the terms and conditions of
38850
+ this License, without any additional terms or conditions.
38851
+ Notwithstanding the above, nothing herein shall supersede or modify
38852
+ the terms of any separate license agreement you may have executed
38853
+ with Licensor regarding such Contributions.
38854
+
38855
+ 6. Trademarks. This License does not grant permission to use the trade
38856
+ names, trademarks, service marks, or product names of the Licensor,
38857
+ except as required for reasonable and customary use in describing the
38858
+ origin of the Work and reproducing the content of the NOTICE file.
38859
+
38860
+ 7. Disclaimer of Warranty. Unless required by applicable law or
38861
+ agreed to in writing, Licensor provides the Work (and each
38862
+ Contributor provides its Contributions) on an "AS IS" BASIS,
38863
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
38864
+ implied, including, without limitation, any warranties or conditions
38865
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
38866
+ PARTICULAR PURPOSE. You are solely responsible for determining the
38867
+ appropriateness of using or redistributing the Work and assume any
38868
+ risks associated with Your exercise of permissions under this License.
38869
+
38870
+ 8. Limitation of Liability. In no event and under no legal theory,
38871
+ whether in tort (including negligence), contract, or otherwise,
38872
+ unless required by applicable law (such as deliberate and grossly
38873
+ negligent acts) or agreed to in writing, shall any Contributor be
38874
+ liable to You for damages, including any direct, indirect, special,
38875
+ incidental, or consequential damages of any character arising as a
38876
+ result of this License or out of the use or inability to use the
38877
+ Work (including but not limited to damages for loss of goodwill,
38878
+ work stoppage, computer failure or malfunction, or any and all
38879
+ other commercial damages or losses), even if such Contributor
38880
+ has been advised of the possibility of such damages.
38881
+
38882
+ 9. Accepting Warranty or Additional Liability. While redistributing
38883
+ the Work or Derivative Works thereof, You may choose to offer,
38884
+ and charge a fee for, acceptance of support, warranty, indemnity,
38885
+ or other liability obligations and/or rights consistent with this
38886
+ License. However, in accepting such obligations, You may act only
38887
+ on Your own behalf and on Your sole responsibility, not on behalf
38888
+ of any other Contributor, and only if You agree to indemnify,
38889
+ defend, and hold each Contributor harmless for any liability
38890
+ incurred by, or claims asserted against, such Contributor by reason
38891
+ of your accepting any such warranty or additional liability.
38892
+
38893
+ END OF TERMS AND CONDITIONS
38894
+
38895
+ APPENDIX: How to apply the Apache License to your work.
38896
+
38897
+ To apply the Apache License to your work, attach the following
38898
+ boilerplate notice, with the fields enclosed by brackets "{}"
38899
+ replaced with your own identifying information. (Don't include
38900
+ the brackets!) The text should be enclosed in the appropriate
38901
+ comment syntax for the file format. We also recommend that a
38902
+ file or class name and description of purpose be included on the
38903
+ same "printed page" as the copyright notice for easier
38904
+ identification within third-party archives.
38905
+
38906
+ Copyright 2017 Kirollos Risk
38907
+
38908
+ Licensed under the Apache License, Version 2.0 (the "License");
38909
+ you may not use this file except in compliance with the License.
38910
+ You may obtain a copy of the License at
38911
+
38912
+ http://www.apache.org/licenses/LICENSE-2.0
38913
+
38914
+ Unless required by applicable law or agreed to in writing, software
38915
+ distributed under the License is distributed on an "AS IS" BASIS,
38916
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
38917
+ See the License for the specific language governing permissions and
38918
+ limitations under the License.
38919
+
38920
+ ---
38921
+
38715
38922
  The following software may be included in this product: log4js (6.9.1)
38716
38923
  This software contains the following license and notice below:
38717
38924
 
@@ -40162,27 +40369,6 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40162
40369
 
40163
40370
  ---
40164
40371
 
40165
- The following software may be included in this product: minimatch (7.4.6)
40166
- This software contains the following license and notice below:
40167
-
40168
- The ISC License
40169
-
40170
- Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors
40171
-
40172
- Permission to use, copy, modify, and/or distribute this software for any
40173
- purpose with or without fee is hereby granted, provided that the above
40174
- copyright notice and this permission notice appear in all copies.
40175
-
40176
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
40177
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
40178
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
40179
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
40180
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
40181
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
40182
- IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40183
-
40184
- ---
40185
-
40186
40372
  The following software may be included in this product: minimatch (7.4.9)
40187
40373
  This software contains the following license and notice below:
40188
40374
 
@@ -40425,27 +40611,6 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40425
40611
 
40426
40612
  ---
40427
40613
 
40428
- The following software may be included in this product: semver (7.7.3)
40429
- This software contains the following license and notice below:
40430
-
40431
- The ISC License
40432
-
40433
- Copyright (c) Isaac Z. Schlueter and Contributors
40434
-
40435
- Permission to use, copy, modify, and/or distribute this software for any
40436
- purpose with or without fee is hereby granted, provided that the above
40437
- copyright notice and this permission notice appear in all copies.
40438
-
40439
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
40440
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
40441
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
40442
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
40443
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
40444
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
40445
- IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40446
-
40447
- ---
40448
-
40449
40614
  The following software may be included in this product: semver (7.7.4)
40450
40615
  This software contains the following license and notice below:
40451
40616
 
@@ -40753,26 +40918,7 @@ THIS SOFTWARE.
40753
40918
 
40754
40919
  ---
40755
40920
 
40756
- The following software may be included in this product: yaml (2.8.0)
40757
- This software contains the following license and notice below:
40758
-
40759
- Copyright Eemeli Aro <eemeli@gmail.com>
40760
-
40761
- Permission to use, copy, modify, and/or distribute this software for any purpose
40762
- with or without fee is hereby granted, provided that the above copyright notice
40763
- and this permission notice appear in all copies.
40764
-
40765
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
40766
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
40767
- FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
40768
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
40769
- OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
40770
- TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
40771
- THIS SOFTWARE.
40772
-
40773
- ---
40774
-
40775
- The following software may be included in this product: yaml (2.8.3)
40921
+ The following software may be included in this product: yaml (2.9.0)
40776
40922
  This software contains the following license and notice below:
40777
40923
 
40778
40924
  Copyright Eemeli Aro <eemeli@gmail.com>
@@ -40832,7 +40978,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40832
40978
 
40833
40979
  ---
40834
40980
 
40835
- The following software may be included in this product: @swc/core-linux-x64-gnu (1.15.40)
40981
+ The following software may be included in this product: @swc/core-darwin-arm64 (1.15.40)
40836
40982
  This software contains the following license and notice below:
40837
40983
 
40838
40984
  Apache License
@@ -44065,7 +44211,7 @@ defined by the Mozilla Public License, v. 2.0.
44065
44211
 
44066
44212
  ---
44067
44213
 
44068
- The following software may be included in this product: lightningcss-linux-x64-gnu (1.32.0)
44214
+ The following software may be included in this product: lightningcss-darwin-arm64 (1.32.0)
44069
44215
  This software contains the following license and notice below:
44070
44216
 
44071
44217
  Mozilla Public License Version 2.0