@aws/nx-plugin 1.0.0-rc.71 → 1.0.0-rc.73

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 (168) hide show
  1. package/LICENSE-THIRD-PARTY +210 -730
  2. package/migrations.json +34 -19
  3. package/package.json +4 -4
  4. package/src/agentcore-gateway/__snapshots__/generator.spec.ts.snap +1 -1
  5. package/src/agentcore-harness/generator.d.ts +1 -1
  6. package/src/infra/app/__snapshots__/generator.spec.ts.snap +3 -3
  7. package/src/infra/app/generator.d.ts +1 -1
  8. package/src/init/generator.d.ts +1 -1
  9. package/src/license/config.d.ts +9 -0
  10. package/src/license/config.js +28 -0
  11. package/src/license/config.js.map +1 -1
  12. package/src/license/dependency-check/collectors/collector.js.map +1 -1
  13. package/src/license/dependency-check/evaluator.js +55 -10
  14. package/src/license/dependency-check/evaluator.js.map +1 -1
  15. package/src/license/generator.js +3 -17
  16. package/src/license/generator.js.map +1 -1
  17. package/src/license/known-exceptions.d.ts +0 -1
  18. package/src/license/known-exceptions.js +1 -23
  19. package/src/license/known-exceptions.js.map +1 -1
  20. package/src/migrations/latest/apt-security-updates-in-container-images/__snapshots__/migration.spec.ts.snap +90 -0
  21. package/src/migrations/latest/apt-security-updates-in-container-images/metadata.json +3 -0
  22. package/src/migrations/latest/apt-security-updates-in-container-images/migration.js +90 -0
  23. package/src/migrations/latest/apt-security-updates-in-container-images/migration.js.map +1 -0
  24. package/src/migrations/latest/remove-mcp-inspector-license-exceptions/metadata.json +3 -0
  25. package/src/migrations/latest/remove-mcp-inspector-license-exceptions/migration.d.ts +6 -0
  26. package/src/migrations/latest/remove-mcp-inspector-license-exceptions/migration.js +38 -0
  27. package/src/migrations/latest/remove-mcp-inspector-license-exceptions/migration.js.map +1 -0
  28. package/src/migrations/v1.0.0-rc.67/0001-smithy-server-package-rename/migration.js.map +1 -0
  29. package/src/migrations/v1.0.0-rc.68/0001-translate-script-whole-file-writes/migration.js.map +1 -0
  30. package/src/migrations/{latest/py-agent-a2a-lifespan-construction → v1.0.0-rc.70/0001-py-agent-a2a-lifespan-construction}/migration.js +14 -2
  31. package/src/migrations/v1.0.0-rc.70/0001-py-agent-a2a-lifespan-construction/migration.js.map +1 -0
  32. package/src/migrations/v1.0.0-rc.71/0001-py-agent-a2a-httpx-client-per-call/migration.d.ts +6 -0
  33. package/src/migrations/v1.0.0-rc.71/0001-py-agent-a2a-httpx-client-per-call/migration.js.map +1 -0
  34. package/src/migrations/v1.0.0-rc.72/0001-py-agent-session-management-support/metadata.json +3 -0
  35. package/src/migrations/v1.0.0-rc.72/0001-py-agent-session-management-support/migration.d.ts +2 -0
  36. package/src/migrations/v1.0.0-rc.72/0001-py-agent-session-management-support/migration.js +308 -0
  37. package/src/migrations/v1.0.0-rc.72/0001-py-agent-session-management-support/migration.js.map +1 -0
  38. package/src/preset/__snapshots__/generator.spec.ts.snap +2 -2
  39. package/src/preset/generator.d.ts +1 -1
  40. package/src/py/agent/__snapshots__/generator.constructs.spec.ts.snap +626 -10
  41. package/src/py/agent/__snapshots__/generator.core.spec.ts.snap +186 -0
  42. package/src/py/agent/__snapshots__/generator.frameworks.spec.ts.snap +55 -11
  43. package/src/py/agent/__snapshots__/generator.protocols.spec.ts.snap +669 -4
  44. package/src/py/agent/a2a-connection/generator.js +5 -11
  45. package/src/py/agent/a2a-connection/generator.js.map +1 -1
  46. package/src/py/agent/files/deploy/Dockerfile.template +7 -0
  47. package/src/py/agent/files/langchain/common/__init__.py.template +0 -0
  48. package/src/py/agent/files/langchain/common/agent.py.template +3 -3
  49. package/src/py/agent/files/langchain/common/session.py.template +61 -0
  50. package/src/py/agent/files/strands/ag-ui/main.py.template +5 -1
  51. package/src/py/agent/files/strands/common/agent.py.template +9 -2
  52. package/src/py/agent/files/strands/common/session.py.template +36 -0
  53. package/src/py/agent/generator.d.ts +11 -1
  54. package/src/py/agent/generator.js +78 -28
  55. package/src/py/agent/generator.js.map +1 -1
  56. package/src/py/agent/mcp-connection/__snapshots__/generator.spec.ts.snap +2 -0
  57. package/src/py/agent/react-connection/generator.d.ts +1 -1
  58. package/src/py/agent/schema.d.js.map +1 -1
  59. package/src/py/agent/schema.d.ts +1 -1
  60. package/src/py/agent/schema.json +3 -3
  61. package/src/py/fast-api/react/generator.d.ts +1 -1
  62. package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +5 -5
  63. package/src/py/mcp-server/files/deploy/Dockerfile.template +7 -0
  64. package/src/py/mcp-server/generator.js +8 -3
  65. package/src/py/mcp-server/generator.js.map +1 -1
  66. package/src/py/rdb/__snapshots__/generator.spec.ts.snap +7 -5
  67. package/src/py/rdb/generator.js +36 -2
  68. package/src/py/rdb/generator.js.map +1 -1
  69. package/src/smithy/project/__snapshots__/generator.spec.ts.snap +14 -14
  70. package/src/smithy/project/generator.d.ts +1 -1
  71. package/src/smithy/react-connection/generator.d.ts +1 -1
  72. package/src/smithy/ts/api/__snapshots__/generator.spec.ts.snap +1 -1
  73. package/src/terraform/project/generator.d.ts +1 -1
  74. package/src/trpc/react/generator.d.ts +1 -1
  75. package/src/ts/agent/__snapshots__/generator.spec.ts.snap +36 -8
  76. package/src/ts/agent/a2a-connection/generator.d.ts +1 -1
  77. package/src/ts/agent/a2a-connection/generator.js +4 -2
  78. package/src/ts/agent/a2a-connection/generator.js.map +1 -1
  79. package/src/ts/agent/files/deploy/Dockerfile.template +7 -0
  80. package/src/ts/agent/gateway-connection/generator.d.ts +1 -1
  81. package/src/ts/agent/mcp-connection/generator.d.ts +1 -1
  82. package/src/ts/agent/react-connection/generator.d.ts +1 -1
  83. package/src/ts/astro-docs/generator.d.ts +1 -1
  84. package/src/ts/dcr-proxy/generator.d.ts +1 -1
  85. package/src/ts/dynamodb/generator.d.ts +1 -1
  86. package/src/ts/lambda-function/generator.d.ts +1 -1
  87. package/src/ts/lib/generator.d.ts +1 -1
  88. package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +2 -2
  89. package/src/ts/mcp-server/files/Dockerfile.template +7 -0
  90. package/src/ts/mcp-server/generator.js +8 -3
  91. package/src/ts/mcp-server/generator.js.map +1 -1
  92. package/src/ts/nx-generator/generator.d.ts +1 -1
  93. package/src/ts/nx-migration/generator.d.ts +1 -1
  94. package/src/ts/nx-plugin/generator.d.ts +1 -1
  95. package/src/ts/rdb/__snapshots__/generator.spec.ts.snap +8 -6
  96. package/src/ts/rdb/generator.d.ts +1 -1
  97. package/src/ts/rdb/generator.js +29 -2
  98. package/src/ts/rdb/generator.js.map +1 -1
  99. package/src/ts/react-website/agui/generator.d.ts +1 -1
  100. package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +15 -15
  101. package/src/ts/react-website/app/generator.js +4 -2
  102. package/src/ts/react-website/app/generator.js.map +1 -1
  103. package/src/ts/react-website/cognito-auth/__snapshots__/generator.terraform.spec.ts.snap +1 -1
  104. package/src/utils/agent-connection/agent-connection.d.ts +10 -0
  105. package/src/utils/agent-connection/agent-connection.js +20 -9
  106. package/src/utils/agent-connection/agent-connection.js.map +1 -1
  107. package/src/utils/agent-connection/files/core-runtime-config/runtime-config.ts.template +5 -3
  108. package/src/utils/agent-connection/files/py-core-langchain/s3/s3_checkpoint_saver_langchain.py.template +360 -0
  109. package/src/utils/agent-connection/files/py-core-runtime-config/runtime_config.py.template +2 -4
  110. package/src/utils/agent-connection/files/py-core-strands/base/tool_errors_strands.py.template +24 -0
  111. package/src/utils/agent-core-constructs/agent-core-constructs.d.ts +1 -1
  112. package/src/utils/agent-core-constructs/agent-core-constructs.js.map +1 -1
  113. package/src/utils/agent-core-constructs/files/cdk/app/agent-core/__nameKebabCase__/__nameKebabCase__.ts.template +113 -13
  114. package/src/utils/agent-core-constructs/files/terraform/app/agent-core/__nameKebabCase__/__nameKebabCase__.tf.template +76 -7
  115. package/src/utils/ast.d.ts +29 -0
  116. package/src/utils/ast.js +31 -0
  117. package/src/utils/ast.js.map +1 -1
  118. package/src/utils/metrics.js +2 -2
  119. package/src/utils/metrics.js.map +1 -1
  120. package/src/utils/versions.d.ts +75 -72
  121. package/src/utils/versions.js +72 -69
  122. package/src/utils/versions.js.map +1 -1
  123. package/src/migrations/latest/py-agent-a2a-httpx-client-per-call/migration.js.map +0 -1
  124. package/src/migrations/latest/py-agent-a2a-lifespan-construction/migration.js.map +0 -1
  125. package/src/migrations/latest/smithy-server-package-rename/migration.js.map +0 -1
  126. package/src/migrations/latest/translate-script-whole-file-writes/migration.js.map +0 -1
  127. package/src/py/rdb/files/__name__/__init__.py.template +0 -3
  128. package/src/py/rdb/files/config.json.template +0 -14
  129. package/src/ts/rdb/files/config.json.template +0 -14
  130. package/src/ts/rdb/files/src/index.ts.template +0 -1
  131. /package/src/migrations/latest/{py-agent-a2a-httpx-client-per-call → apt-security-updates-in-container-images}/migration.d.ts +0 -0
  132. /package/src/migrations/{latest/smithy-server-package-rename → v1.0.0-rc.67/0001-smithy-server-package-rename}/metadata.json +0 -0
  133. /package/src/migrations/{latest/py-agent-a2a-lifespan-construction → v1.0.0-rc.67/0001-smithy-server-package-rename}/migration.d.ts +0 -0
  134. /package/src/migrations/{latest/smithy-server-package-rename → v1.0.0-rc.67/0001-smithy-server-package-rename}/migration.js +0 -0
  135. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/build-system-prompt.ts.fixture +0 -0
  136. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/build-user-prompt.ts.fixture +0 -0
  137. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/config-path.ts.fixture +0 -0
  138. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/file-to-translate.ts.fixture +0 -0
  139. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/get-files-to-translate.ts.fixture +0 -0
  140. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/header.ts.fixture +0 -0
  141. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/log.ts.fixture +0 -0
  142. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/main-call.ts.fixture +0 -0
  143. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/main.ts.fixture +0 -0
  144. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/project-root.ts.fixture +0 -0
  145. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/run-with-concurrency.ts.fixture +0 -0
  146. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/scripts-dir.ts.fixture +0 -0
  147. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/files/translate-file-for-language.ts.fixture +0 -0
  148. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/already-migrated.grit +0 -0
  149. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/build-system-prompt.grit +0 -0
  150. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/build-user-prompt.grit +0 -0
  151. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/config-path.grit +0 -0
  152. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/file-to-translate.grit +0 -0
  153. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/get-files-to-translate.grit +0 -0
  154. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/log.grit +0 -0
  155. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/main-call.grit +0 -0
  156. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/main.grit +0 -0
  157. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/project-root.grit +0 -0
  158. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/run-with-concurrency.grit +0 -0
  159. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/grit/translate-file-for-language.grit +0 -0
  160. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/metadata.json +0 -0
  161. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/migration.d.ts +0 -0
  162. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/migration.js +0 -0
  163. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/test-fixtures/released-script-first.ts.fixture +0 -0
  164. /package/src/migrations/{latest/translate-script-whole-file-writes → v1.0.0-rc.68/0001-translate-script-whole-file-writes}/test-fixtures/released-script.ts.fixture +0 -0
  165. /package/src/migrations/{latest/py-agent-a2a-lifespan-construction → v1.0.0-rc.70/0001-py-agent-a2a-lifespan-construction}/metadata.json +0 -0
  166. /package/src/migrations/{latest/smithy-server-package-rename → v1.0.0-rc.70/0001-py-agent-a2a-lifespan-construction}/migration.d.ts +0 -0
  167. /package/src/migrations/{latest/py-agent-a2a-httpx-client-per-call → v1.0.0-rc.71/0001-py-agent-a2a-httpx-client-per-call}/metadata.json +0 -0
  168. /package/src/migrations/{latest/py-agent-a2a-httpx-client-per-call → v1.0.0-rc.71/0001-py-agent-a2a-httpx-client-per-call}/migration.js +0 -0
@@ -217,7 +217,7 @@ OTHER DEALINGS IN THE SOFTWARE.
217
217
 
218
218
  ---
219
219
 
220
- The following software may be included in this product: @astral-sh/ruff-wasm-nodejs (0.16.2)
220
+ The following software may be included in this product: @astral-sh/ruff-wasm-nodejs (0.16.3)
221
221
  This software contains the following license and notice below:
222
222
 
223
223
  MIT License
@@ -3868,30 +3868,6 @@ SOFTWARE.
3868
3868
 
3869
3869
  ---
3870
3870
 
3871
- The following software may be included in this product: @esbuild/linux-x64 (0.28.1)
3872
- This software contains the following license and notice below:
3873
-
3874
- MIT License
3875
-
3876
- Copyright (c) The maintainers of @esbuild/linux-x64 <https://github.com/evanw/esbuild#readme>
3877
-
3878
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3879
- associated documentation files (the "Software"), to deal in the Software without restriction, including
3880
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3881
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
3882
- following conditions:
3883
-
3884
- The above copyright notice and this permission notice shall be included in all copies or substantial
3885
- portions of the Software.
3886
-
3887
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
3888
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
3889
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3890
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
3891
- USE OR OTHER DEALINGS IN THE SOFTWARE.
3892
-
3893
- ---
3894
-
3895
3871
  The following software may be included in this product: @esbuild/linux-x64 (0.28.2)
3896
3872
  This software contains the following license and notice below:
3897
3873
 
@@ -5767,7 +5743,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
5767
5743
 
5768
5744
  ---
5769
5745
 
5770
- The following software may be included in this product: @nxlv/python (22.2.2)
5746
+ The following software may be included in this product: @nxlv/python (23.0.0)
5771
5747
  This software contains the following license and notice below:
5772
5748
 
5773
5749
  MIT License
@@ -5794,7 +5770,7 @@ SOFTWARE.
5794
5770
 
5795
5771
  ---
5796
5772
 
5797
- The following software may be included in this product: @oxc-project/types (0.142.0)
5773
+ The following software may be included in this product: @oxc-project/types (0.144.0)
5798
5774
  This software contains the following license and notice below:
5799
5775
 
5800
5776
  MIT License
@@ -6131,7 +6107,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
6131
6107
 
6132
6108
  ---
6133
6109
 
6134
- The following software may be included in this product: @rolldown/binding-linux-x64-gnu (1.2.2)
6110
+ The following software may be included in this product: @rolldown/binding-linux-x64-gnu (1.2.4)
6135
6111
  This software contains the following license and notice below:
6136
6112
 
6137
6113
  MIT License
@@ -9549,7 +9525,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9549
9525
 
9550
9526
  ---
9551
9527
 
9552
- The following software may be included in this product: archiver (7.0.1)
9528
+ The following software may be included in this product: archiver (8.0.0)
9553
9529
  This software contains the following license and notice below:
9554
9530
 
9555
9531
  Copyright (c) 2012-2014 Chris Talkington, contributors.
@@ -9577,34 +9553,6 @@ OTHER DEALINGS IN THE SOFTWARE.
9577
9553
 
9578
9554
  ---
9579
9555
 
9580
- The following software may be included in this product: archiver-utils (5.0.2)
9581
- This software contains the following license and notice below:
9582
-
9583
- Copyright (c) 2015 Chris Talkington.
9584
-
9585
- Permission is hereby granted, free of charge, to any person
9586
- obtaining a copy of this software and associated documentation
9587
- files (the "Software"), to deal in the Software without
9588
- restriction, including without limitation the rights to use,
9589
- copy, modify, merge, publish, distribute, sublicense, and/or sell
9590
- copies of the Software, and to permit persons to whom the
9591
- Software is furnished to do so, subject to the following
9592
- conditions:
9593
-
9594
- The above copyright notice and this permission notice shall be
9595
- included in all copies or substantial portions of the Software.
9596
-
9597
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
9598
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
9599
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
9600
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
9601
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
9602
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
9603
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
9604
- OTHER DEALINGS IN THE SOFTWARE.
9605
-
9606
- ---
9607
-
9608
9556
  The following software may be included in this product: array-find-index (1.0.2)
9609
9557
  This software contains the following license and notice below:
9610
9558
 
@@ -11051,6 +10999,21 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
11051
10999
 
11052
11000
  ---
11053
11001
 
11002
+ The following software may be included in this product: chalk (5.6.2)
11003
+ This software contains the following license and notice below:
11004
+
11005
+ MIT License
11006
+
11007
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
11008
+
11009
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
11010
+
11011
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
11012
+
11013
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
11014
+
11015
+ ---
11016
+
11054
11017
  The following software may be included in this product: character-entities (2.0.2)
11055
11018
  This software contains the following license and notice below:
11056
11019
 
@@ -11616,7 +11579,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
11616
11579
 
11617
11580
  ---
11618
11581
 
11619
- The following software may be included in this product: compress-commons (6.0.2)
11582
+ The following software may be included in this product: compress-commons (7.0.1)
11620
11583
  This software contains the following license and notice below:
11621
11584
 
11622
11585
  Copyright (c) 2014 Chris Talkington, contributors.
@@ -12179,7 +12142,7 @@ SOFTWARE.
12179
12142
 
12180
12143
  ---
12181
12144
 
12182
- The following software may be included in this product: crc32-stream (6.0.0)
12145
+ The following software may be included in this product: crc32-stream (7.0.1)
12183
12146
  This software contains the following license and notice below:
12184
12147
 
12185
12148
  Copyright (c) 2014 Chris Talkington, contributors.
@@ -13631,33 +13594,6 @@ SOFTWARE.
13631
13594
 
13632
13595
  ---
13633
13596
 
13634
- The following software may be included in this product: esbuild (0.28.1)
13635
- This software contains the following license and notice below:
13636
-
13637
- MIT License
13638
-
13639
- Copyright (c) 2020 Evan Wallace
13640
-
13641
- Permission is hereby granted, free of charge, to any person obtaining a copy
13642
- of this software and associated documentation files (the "Software"), to deal
13643
- in the Software without restriction, including without limitation the rights
13644
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13645
- copies of the Software, and to permit persons to whom the Software is
13646
- furnished to do so, subject to the following conditions:
13647
-
13648
- The above copyright notice and this permission notice shall be included in all
13649
- copies or substantial portions of the Software.
13650
-
13651
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13652
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13653
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
13654
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
13655
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
13656
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
13657
- SOFTWARE.
13658
-
13659
- ---
13660
-
13661
13597
  The following software may be included in this product: esbuild (0.28.2)
13662
13598
  This software contains the following license and notice below:
13663
13599
 
@@ -16883,21 +16819,6 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
16883
16819
 
16884
16820
  ---
16885
16821
 
16886
- The following software may be included in this product: is-stream (2.0.1)
16887
- This software contains the following license and notice below:
16888
-
16889
- MIT License
16890
-
16891
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
16892
-
16893
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
16894
-
16895
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
16896
-
16897
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16898
-
16899
- ---
16900
-
16901
16822
  The following software may be included in this product: is-stream (3.0.0)
16902
16823
  This software contains the following license and notice below:
16903
16824
 
@@ -23984,7 +23905,7 @@ IN THE SOFTWARE.
23984
23905
 
23985
23906
  ---
23986
23907
 
23987
- The following software may be included in this product: rolldown (1.2.2)
23908
+ The following software may be included in this product: rolldown (1.2.4)
23988
23909
  This software contains the following license and notice below:
23989
23910
 
23990
23911
  MIT License
@@ -25905,33 +25826,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25905
25826
 
25906
25827
  ---
25907
25828
 
25908
- The following software may be included in this product: streamx (2.22.1)
25909
- This software contains the following license and notice below:
25910
-
25911
- The MIT License (MIT)
25912
-
25913
- Copyright (c) 2019 Mathias Buus
25914
-
25915
- Permission is hereby granted, free of charge, to any person obtaining a copy
25916
- of this software and associated documentation files (the "Software"), to deal
25917
- in the Software without restriction, including without limitation the rights
25918
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25919
- copies of the Software, and to permit persons to whom the Software is
25920
- furnished to do so, subject to the following conditions:
25921
-
25922
- The above copyright notice and this permission notice shall be included in
25923
- all copies or substantial portions of the Software.
25924
-
25925
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25926
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25927
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25928
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25929
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25930
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25931
- THE SOFTWARE.
25932
-
25933
- ---
25934
-
25935
25829
  The following software may be included in this product: streamx (2.28.0)
25936
25830
  This software contains the following license and notice below:
25937
25831
 
@@ -27179,7 +27073,7 @@ SOFTWARE.
27179
27073
 
27180
27074
  ---
27181
27075
 
27182
- The following software may be included in this product: tsx (4.23.11)
27076
+ The following software may be included in this product: tsx (4.23.12)
27183
27077
  This software contains the following license and notice below:
27184
27078
 
27185
27079
  MIT License
@@ -31856,7 +31750,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
31856
31750
 
31857
31751
  ---
31858
31752
 
31859
- The following software may be included in this product: zip-stream (6.0.1)
31753
+ The following software may be included in this product: zip-stream (7.0.5)
31860
31754
  This software contains the following license and notice below:
31861
31755
 
31862
31756
  Copyright (c) 2014 Chris Talkington, contributors.
@@ -33911,214 +33805,7 @@ limitations under the License.
33911
33805
 
33912
33806
  ---
33913
33807
 
33914
- The following software may be included in this product: @humanwhocodes/retry (0.4.3)
33915
- This software contains the following license and notice below:
33916
-
33917
- Apache License
33918
- Version 2.0, January 2004
33919
- http://www.apache.org/licenses/
33920
-
33921
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
33922
-
33923
- 1. Definitions.
33924
-
33925
- "License" shall mean the terms and conditions for use, reproduction,
33926
- and distribution as defined by Sections 1 through 9 of this document.
33927
-
33928
- "Licensor" shall mean the copyright owner or entity authorized by
33929
- the copyright owner that is granting the License.
33930
-
33931
- "Legal Entity" shall mean the union of the acting entity and all
33932
- other entities that control, are controlled by, or are under common
33933
- control with that entity. For the purposes of this definition,
33934
- "control" means (i) the power, direct or indirect, to cause the
33935
- direction or management of such entity, whether by contract or
33936
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
33937
- outstanding shares, or (iii) beneficial ownership of such entity.
33938
-
33939
- "You" (or "Your") shall mean an individual or Legal Entity
33940
- exercising permissions granted by this License.
33941
-
33942
- "Source" form shall mean the preferred form for making modifications,
33943
- including but not limited to software source code, documentation
33944
- source, and configuration files.
33945
-
33946
- "Object" form shall mean any form resulting from mechanical
33947
- transformation or translation of a Source form, including but
33948
- not limited to compiled object code, generated documentation,
33949
- and conversions to other media types.
33950
-
33951
- "Work" shall mean the work of authorship, whether in Source or
33952
- Object form, made available under the License, as indicated by a
33953
- copyright notice that is included in or attached to the work
33954
- (an example is provided in the Appendix below).
33955
-
33956
- "Derivative Works" shall mean any work, whether in Source or Object
33957
- form, that is based on (or derived from) the Work and for which the
33958
- editorial revisions, annotations, elaborations, or other modifications
33959
- represent, as a whole, an original work of authorship. For the purposes
33960
- of this License, Derivative Works shall not include works that remain
33961
- separable from, or merely link (or bind by name) to the interfaces of,
33962
- the Work and Derivative Works thereof.
33963
-
33964
- "Contribution" shall mean any work of authorship, including
33965
- the original version of the Work and any modifications or additions
33966
- to that Work or Derivative Works thereof, that is intentionally
33967
- submitted to Licensor for inclusion in the Work by the copyright owner
33968
- or by an individual or Legal Entity authorized to submit on behalf of
33969
- the copyright owner. For the purposes of this definition, "submitted"
33970
- means any form of electronic, verbal, or written communication sent
33971
- to the Licensor or its representatives, including but not limited to
33972
- communication on electronic mailing lists, source code control systems,
33973
- and issue tracking systems that are managed by, or on behalf of, the
33974
- Licensor for the purpose of discussing and improving the Work, but
33975
- excluding communication that is conspicuously marked or otherwise
33976
- designated in writing by the copyright owner as "Not a Contribution."
33977
-
33978
- "Contributor" shall mean Licensor and any individual or Legal Entity
33979
- on behalf of whom a Contribution has been received by Licensor and
33980
- subsequently incorporated within the Work.
33981
-
33982
- 2. Grant of Copyright License. Subject to the terms and conditions of
33983
- this License, each Contributor hereby grants to You a perpetual,
33984
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
33985
- copyright license to reproduce, prepare Derivative Works of,
33986
- publicly display, publicly perform, sublicense, and distribute the
33987
- Work and such Derivative Works in Source or Object form.
33988
-
33989
- 3. Grant of Patent License. Subject to the terms and conditions of
33990
- this License, each Contributor hereby grants to You a perpetual,
33991
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
33992
- (except as stated in this section) patent license to make, have made,
33993
- use, offer to sell, sell, import, and otherwise transfer the Work,
33994
- where such license applies only to those patent claims licensable
33995
- by such Contributor that are necessarily infringed by their
33996
- Contribution(s) alone or by combination of their Contribution(s)
33997
- with the Work to which such Contribution(s) was submitted. If You
33998
- institute patent litigation against any entity (including a
33999
- cross-claim or counterclaim in a lawsuit) alleging that the Work
34000
- or a Contribution incorporated within the Work constitutes direct
34001
- or contributory patent infringement, then any patent licenses
34002
- granted to You under this License for that Work shall terminate
34003
- as of the date such litigation is filed.
34004
-
34005
- 4. Redistribution. You may reproduce and distribute copies of the
34006
- Work or Derivative Works thereof in any medium, with or without
34007
- modifications, and in Source or Object form, provided that You
34008
- meet the following conditions:
34009
-
34010
- (a) You must give any other recipients of the Work or
34011
- Derivative Works a copy of this License; and
34012
-
34013
- (b) You must cause any modified files to carry prominent notices
34014
- stating that You changed the files; and
34015
-
34016
- (c) You must retain, in the Source form of any Derivative Works
34017
- that You distribute, all copyright, patent, trademark, and
34018
- attribution notices from the Source form of the Work,
34019
- excluding those notices that do not pertain to any part of
34020
- the Derivative Works; and
34021
-
34022
- (d) If the Work includes a "NOTICE" text file as part of its
34023
- distribution, then any Derivative Works that You distribute must
34024
- include a readable copy of the attribution notices contained
34025
- within such NOTICE file, excluding those notices that do not
34026
- pertain to any part of the Derivative Works, in at least one
34027
- of the following places: within a NOTICE text file distributed
34028
- as part of the Derivative Works; within the Source form or
34029
- documentation, if provided along with the Derivative Works; or,
34030
- within a display generated by the Derivative Works, if and
34031
- wherever such third-party notices normally appear. The contents
34032
- of the NOTICE file are for informational purposes only and
34033
- do not modify the License. You may add Your own attribution
34034
- notices within Derivative Works that You distribute, alongside
34035
- or as an addendum to the NOTICE text from the Work, provided
34036
- that such additional attribution notices cannot be construed
34037
- as modifying the License.
34038
-
34039
- You may add Your own copyright statement to Your modifications and
34040
- may provide additional or different license terms and conditions
34041
- for use, reproduction, or distribution of Your modifications, or
34042
- for any such Derivative Works as a whole, provided Your use,
34043
- reproduction, and distribution of the Work otherwise complies with
34044
- the conditions stated in this License.
34045
-
34046
- 5. Submission of Contributions. Unless You explicitly state otherwise,
34047
- any Contribution intentionally submitted for inclusion in the Work
34048
- by You to the Licensor shall be under the terms and conditions of
34049
- this License, without any additional terms or conditions.
34050
- Notwithstanding the above, nothing herein shall supersede or modify
34051
- the terms of any separate license agreement you may have executed
34052
- with Licensor regarding such Contributions.
34053
-
34054
- 6. Trademarks. This License does not grant permission to use the trade
34055
- names, trademarks, service marks, or product names of the Licensor,
34056
- except as required for reasonable and customary use in describing the
34057
- origin of the Work and reproducing the content of the NOTICE file.
34058
-
34059
- 7. Disclaimer of Warranty. Unless required by applicable law or
34060
- agreed to in writing, Licensor provides the Work (and each
34061
- Contributor provides its Contributions) on an "AS IS" BASIS,
34062
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
34063
- implied, including, without limitation, any warranties or conditions
34064
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
34065
- PARTICULAR PURPOSE. You are solely responsible for determining the
34066
- appropriateness of using or redistributing the Work and assume any
34067
- risks associated with Your exercise of permissions under this License.
34068
-
34069
- 8. Limitation of Liability. In no event and under no legal theory,
34070
- whether in tort (including negligence), contract, or otherwise,
34071
- unless required by applicable law (such as deliberate and grossly
34072
- negligent acts) or agreed to in writing, shall any Contributor be
34073
- liable to You for damages, including any direct, indirect, special,
34074
- incidental, or consequential damages of any character arising as a
34075
- result of this License or out of the use or inability to use the
34076
- Work (including but not limited to damages for loss of goodwill,
34077
- work stoppage, computer failure or malfunction, or any and all
34078
- other commercial damages or losses), even if such Contributor
34079
- has been advised of the possibility of such damages.
34080
-
34081
- 9. Accepting Warranty or Additional Liability. While redistributing
34082
- the Work or Derivative Works thereof, You may choose to offer,
34083
- and charge a fee for, acceptance of support, warranty, indemnity,
34084
- or other liability obligations and/or rights consistent with this
34085
- License. However, in accepting such obligations, You may act only
34086
- on Your own behalf and on Your sole responsibility, not on behalf
34087
- of any other Contributor, and only if You agree to indemnify,
34088
- defend, and hold each Contributor harmless for any liability
34089
- incurred by, or claims asserted against, such Contributor by reason
34090
- of your accepting any such warranty or additional liability.
34091
-
34092
- END OF TERMS AND CONDITIONS
34093
-
34094
- APPENDIX: How to apply the Apache License to your work.
34095
-
34096
- To apply the Apache License to your work, attach the following
34097
- boilerplate notice, with the fields enclosed by brackets "[]"
34098
- replaced with your own identifying information. (Don't include
34099
- the brackets!) The text should be enclosed in the appropriate
34100
- comment syntax for the file format. We also recommend that a
34101
- file or class name and description of purpose be included on the
34102
- same "printed page" as the copyright notice for easier
34103
- identification within third-party archives.
34104
-
34105
- Copyright [yyyy] [name of copyright owner]
34106
-
34107
- Licensed under the Apache License, Version 2.0 (the "License");
34108
- you may not use this file except in compliance with the License.
34109
- You may obtain a copy of the License at
34110
-
34111
- http://www.apache.org/licenses/LICENSE-2.0
34112
-
34113
- Unless required by applicable law or agreed to in writing, software
34114
- distributed under the License is distributed on an "AS IS" BASIS,
34115
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34116
- See the License for the specific language governing permissions and
34117
- limitations under the License.
34118
-
34119
- ---
34120
-
34121
- The following software may be included in this product: @opentelemetry/api (1.9.1)
33808
+ The following software may be included in this product: @humanwhocodes/retry (0.4.3)
34122
33809
  This software contains the following license and notice below:
34123
33810
 
34124
33811
  Apache License
@@ -34325,16 +34012,7 @@ limitations under the License.
34325
34012
 
34326
34013
  ---
34327
34014
 
34328
- The following software may be included in this product: @renovatebot/pep440 (5.0.0)
34329
- This software contains the following license and notice below:
34330
-
34331
- This software is made available under the terms of *either* of the licenses
34332
- found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made
34333
- under the terms of *both* these licenses.
34334
-
34335
- ---
34336
-
34337
- The following software may be included in this product: @swc/core (1.15.47)
34015
+ The following software may be included in this product: @opentelemetry/api (1.9.1)
34338
34016
  This software contains the following license and notice below:
34339
34017
 
34340
34018
  Apache License
@@ -34525,94 +34203,13 @@ APPENDIX: How to apply the Apache License to your work.
34525
34203
  same "printed page" as the copyright notice for easier
34526
34204
  identification within third-party archives.
34527
34205
 
34528
- Copyright 2024 SWC contributors.
34529
-
34530
- Licensed under the Apache License, Version 2.0 (the "License");
34531
- you may not use this file except in compliance with the License.
34532
- You may obtain a copy of the License at
34533
-
34534
- http://www.apache.org/licenses/LICENSE-2.0
34535
-
34536
- Unless required by applicable law or agreed to in writing, software
34537
- distributed under the License is distributed on an "AS IS" BASIS,
34538
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34539
- See the License for the specific language governing permissions and
34540
- limitations under the License.
34541
-
34542
- ---
34543
-
34544
- The following software may be included in this product: @swc/counter (0.1.3)
34545
- This software contains the following license and notice below:
34546
-
34547
- Copyright (c) 강동윤
34548
-
34549
- Apache License
34550
- Version 2.0, January 2004
34551
- http://www.apache.org/licenses/
34552
-
34553
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34554
-
34555
- 1. Definitions.
34556
-
34557
- "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
34558
-
34559
- "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
34560
-
34561
- "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
34562
-
34563
- "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
34564
-
34565
- "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
34566
-
34567
- "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
34568
-
34569
- "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
34570
-
34571
- "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
34572
-
34573
- "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
34574
-
34575
- "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
34576
-
34577
- 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
34578
-
34579
- 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
34580
-
34581
- 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
34582
-
34583
- (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
34584
-
34585
- (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
34586
-
34587
- (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
34588
-
34589
- (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
34590
-
34591
- You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
34592
-
34593
- 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
34594
-
34595
- 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
34596
-
34597
- 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
34598
-
34599
- 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
34600
-
34601
- 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
34602
-
34603
- END OF TERMS AND CONDITIONS
34604
-
34605
- APPENDIX: How to apply the Apache License to your work.
34606
-
34607
- To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
34608
-
34609
34206
  Copyright [yyyy] [name of copyright owner]
34610
34207
 
34611
34208
  Licensed under the Apache License, Version 2.0 (the "License");
34612
34209
  you may not use this file except in compliance with the License.
34613
34210
  You may obtain a copy of the License at
34614
34211
 
34615
- http://www.apache.org/licenses/LICENSE-2.0
34212
+ http://www.apache.org/licenses/LICENSE-2.0
34616
34213
 
34617
34214
  Unless required by applicable law or agreed to in writing, software
34618
34215
  distributed under the License is distributed on an "AS IS" BASIS,
@@ -34622,214 +34219,16 @@ limitations under the License.
34622
34219
 
34623
34220
  ---
34624
34221
 
34625
- The following software may be included in this product: @swc/helpers (0.5.23)
34222
+ The following software may be included in this product: @renovatebot/pep440 (5.0.0)
34626
34223
  This software contains the following license and notice below:
34627
34224
 
34628
- Apache License
34629
- Version 2.0, January 2004
34630
- http://www.apache.org/licenses/
34631
-
34632
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34633
-
34634
- 1. Definitions.
34635
-
34636
- "License" shall mean the terms and conditions for use, reproduction,
34637
- and distribution as defined by Sections 1 through 9 of this document.
34638
-
34639
- "Licensor" shall mean the copyright owner or entity authorized by
34640
- the copyright owner that is granting the License.
34641
-
34642
- "Legal Entity" shall mean the union of the acting entity and all
34643
- other entities that control, are controlled by, or are under common
34644
- control with that entity. For the purposes of this definition,
34645
- "control" means (i) the power, direct or indirect, to cause the
34646
- direction or management of such entity, whether by contract or
34647
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
34648
- outstanding shares, or (iii) beneficial ownership of such entity.
34649
-
34650
- "You" (or "Your") shall mean an individual or Legal Entity
34651
- exercising permissions granted by this License.
34652
-
34653
- "Source" form shall mean the preferred form for making modifications,
34654
- including but not limited to software source code, documentation
34655
- source, and configuration files.
34656
-
34657
- "Object" form shall mean any form resulting from mechanical
34658
- transformation or translation of a Source form, including but
34659
- not limited to compiled object code, generated documentation,
34660
- and conversions to other media types.
34661
-
34662
- "Work" shall mean the work of authorship, whether in Source or
34663
- Object form, made available under the License, as indicated by a
34664
- copyright notice that is included in or attached to the work
34665
- (an example is provided in the Appendix below).
34666
-
34667
- "Derivative Works" shall mean any work, whether in Source or Object
34668
- form, that is based on (or derived from) the Work and for which the
34669
- editorial revisions, annotations, elaborations, or other modifications
34670
- represent, as a whole, an original work of authorship. For the purposes
34671
- of this License, Derivative Works shall not include works that remain
34672
- separable from, or merely link (or bind by name) to the interfaces of,
34673
- the Work and Derivative Works thereof.
34674
-
34675
- "Contribution" shall mean any work of authorship, including
34676
- the original version of the Work and any modifications or additions
34677
- to that Work or Derivative Works thereof, that is intentionally
34678
- submitted to Licensor for inclusion in the Work by the copyright owner
34679
- or by an individual or Legal Entity authorized to submit on behalf of
34680
- the copyright owner. For the purposes of this definition, "submitted"
34681
- means any form of electronic, verbal, or written communication sent
34682
- to the Licensor or its representatives, including but not limited to
34683
- communication on electronic mailing lists, source code control systems,
34684
- and issue tracking systems that are managed by, or on behalf of, the
34685
- Licensor for the purpose of discussing and improving the Work, but
34686
- excluding communication that is conspicuously marked or otherwise
34687
- designated in writing by the copyright owner as "Not a Contribution."
34688
-
34689
- "Contributor" shall mean Licensor and any individual or Legal Entity
34690
- on behalf of whom a Contribution has been received by Licensor and
34691
- subsequently incorporated within the Work.
34692
-
34693
- 2. Grant of Copyright License. Subject to the terms and conditions of
34694
- this License, each Contributor hereby grants to You a perpetual,
34695
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34696
- copyright license to reproduce, prepare Derivative Works of,
34697
- publicly display, publicly perform, sublicense, and distribute the
34698
- Work and such Derivative Works in Source or Object form.
34699
-
34700
- 3. Grant of Patent License. Subject to the terms and conditions of
34701
- this License, each Contributor hereby grants to You a perpetual,
34702
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34703
- (except as stated in this section) patent license to make, have made,
34704
- use, offer to sell, sell, import, and otherwise transfer the Work,
34705
- where such license applies only to those patent claims licensable
34706
- by such Contributor that are necessarily infringed by their
34707
- Contribution(s) alone or by combination of their Contribution(s)
34708
- with the Work to which such Contribution(s) was submitted. If You
34709
- institute patent litigation against any entity (including a
34710
- cross-claim or counterclaim in a lawsuit) alleging that the Work
34711
- or a Contribution incorporated within the Work constitutes direct
34712
- or contributory patent infringement, then any patent licenses
34713
- granted to You under this License for that Work shall terminate
34714
- as of the date such litigation is filed.
34715
-
34716
- 4. Redistribution. You may reproduce and distribute copies of the
34717
- Work or Derivative Works thereof in any medium, with or without
34718
- modifications, and in Source or Object form, provided that You
34719
- meet the following conditions:
34720
-
34721
- (a) You must give any other recipients of the Work or
34722
- Derivative Works a copy of this License; and
34723
-
34724
- (b) You must cause any modified files to carry prominent notices
34725
- stating that You changed the files; and
34726
-
34727
- (c) You must retain, in the Source form of any Derivative Works
34728
- that You distribute, all copyright, patent, trademark, and
34729
- attribution notices from the Source form of the Work,
34730
- excluding those notices that do not pertain to any part of
34731
- the Derivative Works; and
34732
-
34733
- (d) If the Work includes a "NOTICE" text file as part of its
34734
- distribution, then any Derivative Works that You distribute must
34735
- include a readable copy of the attribution notices contained
34736
- within such NOTICE file, excluding those notices that do not
34737
- pertain to any part of the Derivative Works, in at least one
34738
- of the following places: within a NOTICE text file distributed
34739
- as part of the Derivative Works; within the Source form or
34740
- documentation, if provided along with the Derivative Works; or,
34741
- within a display generated by the Derivative Works, if and
34742
- wherever such third-party notices normally appear. The contents
34743
- of the NOTICE file are for informational purposes only and
34744
- do not modify the License. You may add Your own attribution
34745
- notices within Derivative Works that You distribute, alongside
34746
- or as an addendum to the NOTICE text from the Work, provided
34747
- that such additional attribution notices cannot be construed
34748
- as modifying the License.
34749
-
34750
- You may add Your own copyright statement to Your modifications and
34751
- may provide additional or different license terms and conditions
34752
- for use, reproduction, or distribution of Your modifications, or
34753
- for any such Derivative Works as a whole, provided Your use,
34754
- reproduction, and distribution of the Work otherwise complies with
34755
- the conditions stated in this License.
34756
-
34757
- 5. Submission of Contributions. Unless You explicitly state otherwise,
34758
- any Contribution intentionally submitted for inclusion in the Work
34759
- by You to the Licensor shall be under the terms and conditions of
34760
- this License, without any additional terms or conditions.
34761
- Notwithstanding the above, nothing herein shall supersede or modify
34762
- the terms of any separate license agreement you may have executed
34763
- with Licensor regarding such Contributions.
34764
-
34765
- 6. Trademarks. This License does not grant permission to use the trade
34766
- names, trademarks, service marks, or product names of the Licensor,
34767
- except as required for reasonable and customary use in describing the
34768
- origin of the Work and reproducing the content of the NOTICE file.
34769
-
34770
- 7. Disclaimer of Warranty. Unless required by applicable law or
34771
- agreed to in writing, Licensor provides the Work (and each
34772
- Contributor provides its Contributions) on an "AS IS" BASIS,
34773
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
34774
- implied, including, without limitation, any warranties or conditions
34775
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
34776
- PARTICULAR PURPOSE. You are solely responsible for determining the
34777
- appropriateness of using or redistributing the Work and assume any
34778
- risks associated with Your exercise of permissions under this License.
34779
-
34780
- 8. Limitation of Liability. In no event and under no legal theory,
34781
- whether in tort (including negligence), contract, or otherwise,
34782
- unless required by applicable law (such as deliberate and grossly
34783
- negligent acts) or agreed to in writing, shall any Contributor be
34784
- liable to You for damages, including any direct, indirect, special,
34785
- incidental, or consequential damages of any character arising as a
34786
- result of this License or out of the use or inability to use the
34787
- Work (including but not limited to damages for loss of goodwill,
34788
- work stoppage, computer failure or malfunction, or any and all
34789
- other commercial damages or losses), even if such Contributor
34790
- has been advised of the possibility of such damages.
34791
-
34792
- 9. Accepting Warranty or Additional Liability. While redistributing
34793
- the Work or Derivative Works thereof, You may choose to offer,
34794
- and charge a fee for, acceptance of support, warranty, indemnity,
34795
- or other liability obligations and/or rights consistent with this
34796
- License. However, in accepting such obligations, You may act only
34797
- on Your own behalf and on Your sole responsibility, not on behalf
34798
- of any other Contributor, and only if You agree to indemnify,
34799
- defend, and hold each Contributor harmless for any liability
34800
- incurred by, or claims asserted against, such Contributor by reason
34801
- of your accepting any such warranty or additional liability.
34802
-
34803
- END OF TERMS AND CONDITIONS
34804
-
34805
- APPENDIX: How to apply the Apache License to your work.
34806
-
34807
- To apply the Apache License to your work, attach the following
34808
- boilerplate notice, with the fields enclosed by brackets "[]"
34809
- replaced with your own identifying information. (Don't include
34810
- the brackets!) The text should be enclosed in the appropriate
34811
- comment syntax for the file format. We also recommend that a
34812
- file or class name and description of purpose be included on the
34813
- same "printed page" as the copyright notice for easier
34814
- identification within third-party archives.
34815
-
34816
- Copyright 2024 SWC contributors.
34817
-
34818
- Licensed under the Apache License, Version 2.0 (the "License");
34819
- you may not use this file except in compliance with the License.
34820
- You may obtain a copy of the License at
34821
-
34822
- http://www.apache.org/licenses/LICENSE-2.0
34823
-
34824
- Unless required by applicable law or agreed to in writing, software
34825
- distributed under the License is distributed on an "AS IS" BASIS,
34826
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34827
- See the License for the specific language governing permissions and
34828
- limitations under the License.
34225
+ This software is made available under the terms of *either* of the licenses
34226
+ found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made
34227
+ under the terms of *both* these licenses.
34829
34228
 
34830
34229
  ---
34831
34230
 
34832
- The following software may be included in this product: @swc/types (0.1.27)
34231
+ The following software may be included in this product: @swc/core (1.16.0)
34833
34232
  This software contains the following license and notice below:
34834
34233
 
34835
34234
  Apache License
@@ -35036,11 +34435,72 @@ limitations under the License.
35036
34435
 
35037
34436
  ---
35038
34437
 
35039
- The following software may be included in this product: @webassemblyjs/leb128 (1.13.2)
34438
+ The following software may be included in this product: @swc/counter (0.1.3)
35040
34439
  This software contains the following license and notice below:
35041
34440
 
35042
- Copyright 2012 The Obvious Corporation.
35043
- http://obvious.com/
34441
+ Copyright (c) 강동윤
34442
+
34443
+ Apache License
34444
+ Version 2.0, January 2004
34445
+ http://www.apache.org/licenses/
34446
+
34447
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34448
+
34449
+ 1. Definitions.
34450
+
34451
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
34452
+
34453
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
34454
+
34455
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
34456
+
34457
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
34458
+
34459
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
34460
+
34461
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
34462
+
34463
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
34464
+
34465
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
34466
+
34467
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
34468
+
34469
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
34470
+
34471
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
34472
+
34473
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
34474
+
34475
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
34476
+
34477
+ (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
34478
+
34479
+ (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
34480
+
34481
+ (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
34482
+
34483
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
34484
+
34485
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
34486
+
34487
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
34488
+
34489
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
34490
+
34491
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
34492
+
34493
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
34494
+
34495
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
34496
+
34497
+ END OF TERMS AND CONDITIONS
34498
+
34499
+ APPENDIX: How to apply the Apache License to your work.
34500
+
34501
+ To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
34502
+
34503
+ Copyright [yyyy] [name of copyright owner]
35044
34504
 
35045
34505
  Licensed under the Apache License, Version 2.0 (the "License");
35046
34506
  you may not use this file except in compliance with the License.
@@ -35054,13 +34514,15 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
35054
34514
  See the License for the specific language governing permissions and
35055
34515
  limitations under the License.
35056
34516
 
34517
+ ---
35057
34518
 
35058
- -------------------------------------------------------------------------
35059
- Apache License
34519
+ The following software may be included in this product: @swc/helpers (0.5.23)
34520
+ This software contains the following license and notice below:
34521
+
34522
+ Apache License
35060
34523
  Version 2.0, January 2004
35061
34524
  http://www.apache.org/licenses/
35062
34525
 
35063
-
35064
34526
  TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35065
34527
 
35066
34528
  1. Definitions.
@@ -35234,9 +34696,34 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35234
34696
 
35235
34697
  END OF TERMS AND CONDITIONS
35236
34698
 
34699
+ APPENDIX: How to apply the Apache License to your work.
34700
+
34701
+ To apply the Apache License to your work, attach the following
34702
+ boilerplate notice, with the fields enclosed by brackets "[]"
34703
+ replaced with your own identifying information. (Don't include
34704
+ the brackets!) The text should be enclosed in the appropriate
34705
+ comment syntax for the file format. We also recommend that a
34706
+ file or class name and description of purpose be included on the
34707
+ same "printed page" as the copyright notice for easier
34708
+ identification within third-party archives.
34709
+
34710
+ Copyright 2024 SWC contributors.
34711
+
34712
+ Licensed under the Apache License, Version 2.0 (the "License");
34713
+ you may not use this file except in compliance with the License.
34714
+ You may obtain a copy of the License at
34715
+
34716
+ http://www.apache.org/licenses/LICENSE-2.0
34717
+
34718
+ Unless required by applicable law or agreed to in writing, software
34719
+ distributed under the License is distributed on an "AS IS" BASIS,
34720
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34721
+ See the License for the specific language governing permissions and
34722
+ limitations under the License.
34723
+
35237
34724
  ---
35238
34725
 
35239
- The following software may be included in this product: @xtuc/long (4.2.2)
34726
+ The following software may be included in this product: @swc/types (0.1.28)
35240
34727
  This software contains the following license and notice below:
35241
34728
 
35242
34729
  Apache License
@@ -35427,13 +34914,13 @@ APPENDIX: How to apply the Apache License to your work.
35427
34914
  same "printed page" as the copyright notice for easier
35428
34915
  identification within third-party archives.
35429
34916
 
35430
- Copyright [yyyy] [name of copyright owner]
34917
+ Copyright 2024 SWC contributors.
35431
34918
 
35432
34919
  Licensed under the Apache License, Version 2.0 (the "License");
35433
34920
  you may not use this file except in compliance with the License.
35434
34921
  You may obtain a copy of the License at
35435
34922
 
35436
- http://www.apache.org/licenses/LICENSE-2.0
34923
+ http://www.apache.org/licenses/LICENSE-2.0
35437
34924
 
35438
34925
  Unless required by applicable law or agreed to in writing, software
35439
34926
  distributed under the License is distributed on an "AS IS" BASIS,
@@ -35443,74 +34930,31 @@ limitations under the License.
35443
34930
 
35444
34931
  ---
35445
34932
 
35446
- The following software may be included in this product: aws-sign2 (0.7.0)
34933
+ The following software may be included in this product: @webassemblyjs/leb128 (1.13.2)
35447
34934
  This software contains the following license and notice below:
35448
34935
 
35449
- Apache License
35450
-
35451
- Version 2.0, January 2004
35452
-
35453
- http://www.apache.org/licenses/
35454
-
35455
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35456
-
35457
- 1. Definitions.
35458
-
35459
- "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
35460
-
35461
- "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
35462
-
35463
- "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
35464
-
35465
- "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
35466
-
35467
- "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
35468
-
35469
- "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
35470
-
35471
- "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
35472
-
35473
- "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
35474
-
35475
- "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
35476
-
35477
- "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
35478
-
35479
- 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
35480
-
35481
- 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
35482
-
35483
- 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
35484
-
35485
- You must give any other recipients of the Work or Derivative Works a copy of this License; and
35486
-
35487
- You must cause any modified files to carry prominent notices stating that You changed the files; and
35488
-
35489
- You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
35490
-
35491
- If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
35492
-
35493
- 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
35494
-
35495
- 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
35496
-
35497
- 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
35498
-
35499
- 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
34936
+ Copyright 2012 The Obvious Corporation.
34937
+ http://obvious.com/
35500
34938
 
35501
- 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
34939
+ Licensed under the Apache License, Version 2.0 (the "License");
34940
+ you may not use this file except in compliance with the License.
34941
+ You may obtain a copy of the License at
35502
34942
 
35503
- END OF TERMS AND CONDITIONS
34943
+ http://www.apache.org/licenses/LICENSE-2.0
35504
34944
 
35505
- ---
34945
+ Unless required by applicable law or agreed to in writing, software
34946
+ distributed under the License is distributed on an "AS IS" BASIS,
34947
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34948
+ See the License for the specific language governing permissions and
34949
+ limitations under the License.
35506
34950
 
35507
- The following software may be included in this product: b4a (1.7.1)
35508
- This software contains the following license and notice below:
35509
34951
 
35510
- Apache License
34952
+ -------------------------------------------------------------------------
34953
+ Apache License
35511
34954
  Version 2.0, January 2004
35512
34955
  http://www.apache.org/licenses/
35513
34956
 
34957
+
35514
34958
  TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35515
34959
 
35516
34960
  1. Definitions.
@@ -35684,34 +35128,9 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35684
35128
 
35685
35129
  END OF TERMS AND CONDITIONS
35686
35130
 
35687
- APPENDIX: How to apply the Apache License to your work.
35688
-
35689
- To apply the Apache License to your work, attach the following
35690
- boilerplate notice, with the fields enclosed by brackets "[]"
35691
- replaced with your own identifying information. (Don't include
35692
- the brackets!) The text should be enclosed in the appropriate
35693
- comment syntax for the file format. We also recommend that a
35694
- file or class name and description of purpose be included on the
35695
- same "printed page" as the copyright notice for easier
35696
- identification within third-party archives.
35697
-
35698
- Copyright [yyyy] [name of copyright owner]
35699
-
35700
- Licensed under the Apache License, Version 2.0 (the "License");
35701
- you may not use this file except in compliance with the License.
35702
- You may obtain a copy of the License at
35703
-
35704
- http://www.apache.org/licenses/LICENSE-2.0
35705
-
35706
- Unless required by applicable law or agreed to in writing, software
35707
- distributed under the License is distributed on an "AS IS" BASIS,
35708
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
35709
- See the License for the specific language governing permissions and
35710
- limitations under the License.
35711
-
35712
35131
  ---
35713
35132
 
35714
- The following software may be included in this product: b4a (1.8.1)
35133
+ The following software may be included in this product: @xtuc/long (4.2.2)
35715
35134
  This software contains the following license and notice below:
35716
35135
 
35717
35136
  Apache License
@@ -35918,7 +35337,68 @@ limitations under the License.
35918
35337
 
35919
35338
  ---
35920
35339
 
35921
- The following software may be included in this product: bare-events (2.6.1)
35340
+ The following software may be included in this product: aws-sign2 (0.7.0)
35341
+ This software contains the following license and notice below:
35342
+
35343
+ Apache License
35344
+
35345
+ Version 2.0, January 2004
35346
+
35347
+ http://www.apache.org/licenses/
35348
+
35349
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35350
+
35351
+ 1. Definitions.
35352
+
35353
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
35354
+
35355
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
35356
+
35357
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
35358
+
35359
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
35360
+
35361
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
35362
+
35363
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
35364
+
35365
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
35366
+
35367
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
35368
+
35369
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
35370
+
35371
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
35372
+
35373
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
35374
+
35375
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
35376
+
35377
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
35378
+
35379
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
35380
+
35381
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
35382
+
35383
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
35384
+
35385
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
35386
+
35387
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
35388
+
35389
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
35390
+
35391
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
35392
+
35393
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
35394
+
35395
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
35396
+
35397
+ END OF TERMS AND CONDITIONS
35398
+
35399
+ ---
35400
+
35401
+ The following software may be included in this product: b4a (1.8.1)
35922
35402
  This software contains the following license and notice below:
35923
35403
 
35924
35404
  Apache License
@@ -39782,7 +39262,7 @@ Copyright 2015 Gareth Jones (with contributions from many other people)
39782
39262
 
39783
39263
  ---
39784
39264
 
39785
- The following software may be included in this product: readdir-glob (1.1.3)
39265
+ The following software may be included in this product: readdir-glob (3.0.0)
39786
39266
  This software contains the following license and notice below:
39787
39267
 
39788
39268
  Apache License
@@ -42482,7 +41962,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
42482
41962
 
42483
41963
  ---
42484
41964
 
42485
- The following software may be included in this product: @swc/core-linux-x64-gnu (1.15.47)
41965
+ The following software may be included in this product: @swc/core-linux-x64-gnu (1.16.0)
42486
41966
  This software contains the following license and notice below:
42487
41967
 
42488
41968
  Apache License