@skyramp/mcp 0.3.2 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. package/build/index.js +47 -2
  2. package/build/playwright/PlaywrightTraceService.d.ts +8 -0
  3. package/build/playwright/PlaywrightTraceService.js +1 -0
  4. package/build/playwright/registerPlaywrightTools.js +42 -1
  5. package/build/prompts/enhance-assertions/sharedAssertionRules.js +19 -0
  6. package/build/prompts/pom-aware-code-reuse.js +17 -8
  7. package/build/prompts/test-maintenance/actionsInstructions.js +2 -2
  8. package/build/prompts/test-recommendation/analysisOutputPrompt.js +1 -4
  9. package/build/prompts/test-recommendation/recommendationSections.d.ts +1 -1
  10. package/build/prompts/test-recommendation/recommendationSections.js +5 -5
  11. package/build/prompts/test-recommendation/test-recommendation-prompt.js +13 -7
  12. package/build/prompts/testbot/testbot-prompts.d.ts +2 -12
  13. package/build/prompts/testbot/testbot-prompts.js +28 -16
  14. package/build/recommendation/discriminators.d.ts +7 -1
  15. package/build/recommendation/discriminators.js +16 -3
  16. package/build/resources/testbotResource.js +20 -4
  17. package/build/services/ScenarioGenerationService.js +5 -2
  18. package/build/services/TestExecutionService.d.ts +13 -8
  19. package/build/services/TestExecutionService.js +73 -26
  20. package/build/services/TestGenerationService.js +24 -9
  21. package/build/services/containerEnv.d.ts +12 -1
  22. package/build/services/containerEnv.js +118 -1
  23. package/build/tools/executeSkyrampTestTool.d.ts +9 -0
  24. package/build/tools/executeSkyrampTestTool.js +20 -6
  25. package/build/tools/execution-video-state.d.ts +21 -0
  26. package/build/tools/execution-video-state.js +51 -0
  27. package/build/tools/generate-tests/generateBatchScenarioRestTool.js +31 -11
  28. package/build/tools/generate-tests/planGuard.d.ts +5 -5
  29. package/build/tools/generate-tests/planGuard.js +5 -17
  30. package/build/tools/queryProxyMocksTool.js +0 -1
  31. package/build/tools/submitReportTool.d.ts +83 -10
  32. package/build/tools/submitReportTool.js +179 -29
  33. package/build/tools/test-management/actionsTool.js +52 -41
  34. package/build/tools/test-management/analyzeChangesTool.d.ts +11 -0
  35. package/build/tools/test-management/analyzeChangesTool.js +37 -33
  36. package/build/tools/test-management/analyzeTestHealthTool.js +3 -3
  37. package/build/tools/test-management/registerTestPlanTool.js +113 -31
  38. package/build/types/TestAnalysis.d.ts +7 -3
  39. package/build/types/TestExecution.d.ts +14 -0
  40. package/build/types/TestTypes.js +3 -2
  41. package/build/types/TestbotPromptOptions.d.ts +34 -0
  42. package/build/types/TestbotPromptOptions.js +1 -0
  43. package/build/types/TestbotReport.d.ts +10 -0
  44. package/build/types/TestbotReport.js +10 -1
  45. package/build/types/index.d.ts +2 -0
  46. package/build/types/index.js +1 -0
  47. package/build/utils/AnalysisStateManager.d.ts +36 -2
  48. package/build/utils/AnalysisStateManager.js +34 -13
  49. package/build/utils/frontendSelectors.js +0 -1
  50. package/build/utils/gitStaging.d.ts +5 -0
  51. package/build/utils/gitStaging.js +1 -1
  52. package/build/utils/pom-catalog.d.ts +23 -0
  53. package/build/utils/pom-catalog.js +30 -0
  54. package/build/utils/pom-scope/pom-files.d.ts +14 -0
  55. package/build/utils/pom-scope/pom-files.js +32 -6
  56. package/build/utils/pom-scope/testIdDiscovery.d.ts +40 -0
  57. package/build/utils/pom-scope/testIdDiscovery.js +104 -0
  58. package/build/utils/reportVerification.d.ts +7 -2
  59. package/build/utils/reportVerification.js +9 -3
  60. package/build/utils/scenarioDrafting.js +7 -1
  61. package/build/utils/skyrampMdContent.d.ts +1 -1
  62. package/build/utils/skyrampMdContent.js +1 -1
  63. package/build/utils/urlPath.d.ts +37 -0
  64. package/build/utils/urlPath.js +55 -0
  65. package/build/utils/utils.d.ts +45 -0
  66. package/build/utils/utils.js +50 -0
  67. package/build/utils/versions.d.ts +3 -3
  68. package/build/utils/versions.js +1 -1
  69. package/build/utils/workspaceAuth.d.ts +15 -15
  70. package/build/utils/workspaceAuth.js +32 -17
  71. package/build/workspace/queryParamResolution.d.ts +93 -0
  72. package/build/workspace/queryParamResolution.js +201 -0
  73. package/build/workspace/workspace.d.ts +104 -0
  74. package/build/workspace/workspace.js +24 -0
  75. package/node_modules/playwright/ThirdPartyNotices.txt +319 -266
  76. package/node_modules/playwright/lib/dom-analyzer/blueprint.js +154 -27
  77. package/node_modules/playwright/lib/dom-analyzer/crawler.js +2 -2
  78. package/node_modules/playwright/lib/mcp/browser/tools/pageBlueprint.js +1 -1
  79. package/node_modules/playwright/lib/mcp/browser/tools/sitemap.js +6 -2
  80. package/node_modules/playwright/lib/mcp/skyramp/loadTraceTool.js +3 -2
  81. package/node_modules/playwright/lib/mcp/skyramp/resultCode.js +4 -3
  82. package/node_modules/playwright/lib/mcp/skyramp/skyRampImport.js +15 -3
  83. package/node_modules/playwright/lib/mcp/skyramp/specImport.js +781 -0
  84. package/node_modules/playwright/lib/mcp/skyramp/traceRecordingBackend.js +14 -3
  85. package/node_modules/playwright/lib/mcp/test/resultCode.test.js +2 -1
  86. package/node_modules/playwright/lib/mcp/test/skyRampExport.js +1 -1
  87. package/node_modules/playwright/lib/mcp/test/skyRampExport.test.js +30 -0
  88. package/node_modules/playwright/lib/transform/babelBundleImpl.js +200 -199
  89. package/node_modules/playwright/node_modules/playwright-core/ThirdPartyNotices.txt +3 -3
  90. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/.package-lock.json +3 -3
  91. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/adapter/aws-lambda/handler.js +16 -25
  92. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/adapter/bun/websocket.js +3 -1
  93. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/adapter/lambda-edge/handler.js +20 -4
  94. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +16 -25
  95. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/websocket.js +3 -1
  96. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +20 -4
  97. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/client/client.js +10 -1
  98. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/client/utils.js +1 -1
  99. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/helper/css/common.js +3 -1
  100. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/helper/css/index.js +9 -1
  101. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/jsx/base.js +8 -14
  102. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/jsx/components.js +41 -21
  103. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/jsx/context.js +131 -5
  104. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/jsx/streaming.js +9 -7
  105. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +1 -1
  106. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/middleware/cache/index.js +1 -1
  107. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/middleware/compress/index.js +2 -1
  108. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/middleware/cors/index.js +2 -5
  109. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/middleware/etag/index.js +2 -1
  110. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/middleware/language/language.js +10 -32
  111. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/middleware/method-override/index.js +5 -3
  112. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/middleware/serve-static/index.js +2 -2
  113. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/middleware/timing/timing.js +3 -1
  114. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/router/trie-router/node.js +9 -0
  115. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/utils/body.js +12 -4
  116. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/utils/buffer.js +2 -1
  117. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/utils/ipaddr.js +6 -1
  118. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/cjs/validator/validator.js +3 -3
  119. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/client/client.js +10 -1
  120. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/client/utils.js +1 -1
  121. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/helper/css/common.js +3 -1
  122. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/helper/css/index.js +9 -1
  123. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/jsx/base.js +15 -15
  124. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/jsx/components.js +42 -22
  125. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/jsx/context.js +129 -5
  126. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/jsx/streaming.js +10 -8
  127. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/middleware/bearer-auth/index.js +1 -1
  128. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/middleware/cache/index.js +1 -1
  129. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/middleware/compress/index.js +2 -1
  130. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/middleware/cors/index.js +2 -5
  131. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/middleware/etag/index.js +2 -1
  132. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/middleware/language/language.js +10 -32
  133. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/middleware/method-override/index.js +5 -3
  134. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/middleware/serve-static/index.js +2 -2
  135. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/middleware/timing/timing.js +3 -1
  136. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/router/trie-router/node.js +9 -0
  137. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +1 -1
  138. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +1 -1
  139. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/types/helper/websocket/index.d.ts +1 -1
  140. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/types/jsx/base.d.ts +1 -3
  141. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/types/jsx/context.d.ts +39 -0
  142. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +2 -2
  143. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/types/middleware/language/language.d.ts +18 -0
  144. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/types/utils/body.d.ts +1 -1
  145. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/types/utils/types.d.ts +1 -1
  146. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/utils/body.js +12 -4
  147. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/utils/buffer.js +2 -1
  148. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/utils/ipaddr.js +6 -1
  149. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/validator/validator.js +3 -3
  150. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/package.json +29 -22
  151. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/package-lock.json +3 -3
  152. package/node_modules/playwright/node_modules/playwright-core/lib/generated/pollingRecorderSource.js +1 -1
  153. package/node_modules/playwright/node_modules/playwright-core/lib/server/codegen/skyramp/jsonlReader.js +5 -1
  154. package/node_modules/playwright/node_modules/playwright-core/lib/server/codegen/skyramp/specReader.js +781 -0
  155. package/node_modules/playwright/node_modules/playwright-core/lib/server/recorder/recorderApp.js +25 -6
  156. package/node_modules/playwright/node_modules/playwright-core/lib/server/recorder/skyramp/replayEngine.js +3 -1
  157. package/node_modules/playwright/node_modules/playwright-core/lib/utils.js +2 -0
  158. package/node_modules/playwright/node_modules/playwright-core/lib/vite/htmlReport/index.html +253 -27
  159. package/node_modules/playwright/node_modules/playwright-core/lib/vite/recorder/assets/{codeMirrorModule-D0BjbCb7.js → codeMirrorModule-DtudTj_v.js} +1 -1
  160. package/node_modules/playwright/node_modules/playwright-core/lib/vite/recorder/assets/index-BpDwp16L.js +422 -0
  161. package/node_modules/playwright/node_modules/playwright-core/lib/vite/recorder/index.html +1 -1
  162. package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/assets/{codeMirrorModule-Bzd72-bG.js → codeMirrorModule-FNMuBzX1.js} +1 -1
  163. package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-Co9upU5h.js +1035 -0
  164. package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/index.DXNIQ_dx.js +2 -0
  165. package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/index.html +2 -2
  166. package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/uiMode.CIKB3XSv.js +5 -0
  167. package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/uiMode.html +2 -2
  168. package/node_modules/playwright/node_modules/playwright-core/package.json +1 -1
  169. package/node_modules/playwright/node_modules/playwright-core/src/generated/pollingRecorderSource.ts +1 -1
  170. package/node_modules/playwright/node_modules/playwright-core/src/server/codegen/skyramp/jsonlReader.ts +4 -0
  171. package/node_modules/playwright/node_modules/playwright-core/src/server/codegen/skyramp/specReader.ts +1028 -0
  172. package/node_modules/playwright/node_modules/playwright-core/src/server/recorder/recorderApp.ts +31 -8
  173. package/node_modules/playwright/node_modules/playwright-core/src/server/recorder/skyramp/replayEngine.ts +1 -0
  174. package/node_modules/playwright/node_modules/playwright-core/src/utils.ts +1 -0
  175. package/node_modules/playwright/package.json +1 -1
  176. package/package.json +10 -6
  177. package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/hono/dist/tsconfig.build.tsbuildinfo +0 -1
  178. package/node_modules/playwright/node_modules/playwright-core/lib/vite/recorder/assets/index-lvTRGFx-.js +0 -193
  179. package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-DzxTioTK.js +0 -809
  180. package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/index.BGc30U3S.js +0 -2
  181. package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/uiMode.IaDrb29A.js +0 -5
@@ -4,28 +4,28 @@ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
4
4
 
5
5
  This project incorporates components from the projects listed below. The original copyright notices and the licenses under which Microsoft received such components are set forth below. Microsoft reserves all rights not expressly granted herein, whether by implication, estoppel or otherwise.
6
6
 
7
- - @ampproject/remapping@2.2.1 (https://github.com/ampproject/remapping)
8
7
  - @babel/code-frame@7.27.1 (https://github.com/babel/babel)
9
- - @babel/compat-data@7.28.0 (https://github.com/babel/babel)
10
- - @babel/core@7.28.0 (https://github.com/babel/babel)
11
- - @babel/generator@7.28.0 (https://github.com/babel/babel)
8
+ - @babel/code-frame@7.29.7 (https://github.com/babel/babel)
9
+ - @babel/compat-data@7.29.7 (https://github.com/babel/babel)
10
+ - @babel/core@7.29.6 (https://github.com/babel/babel)
11
+ - @babel/generator@7.29.7 (https://github.com/babel/babel)
12
12
  - @babel/helper-annotate-as-pure@7.27.3 (https://github.com/babel/babel)
13
- - @babel/helper-compilation-targets@7.27.2 (https://github.com/babel/babel)
13
+ - @babel/helper-compilation-targets@7.29.7 (https://github.com/babel/babel)
14
14
  - @babel/helper-create-class-features-plugin@7.27.1 (https://github.com/babel/babel)
15
- - @babel/helper-globals@7.28.0 (https://github.com/babel/babel)
15
+ - @babel/helper-globals@7.29.7 (https://github.com/babel/babel)
16
16
  - @babel/helper-member-expression-to-functions@7.27.1 (https://github.com/babel/babel)
17
- - @babel/helper-module-imports@7.27.1 (https://github.com/babel/babel)
18
- - @babel/helper-module-transforms@7.27.3 (https://github.com/babel/babel)
17
+ - @babel/helper-module-imports@7.29.7 (https://github.com/babel/babel)
18
+ - @babel/helper-module-transforms@7.29.7 (https://github.com/babel/babel)
19
19
  - @babel/helper-optimise-call-expression@7.27.1 (https://github.com/babel/babel)
20
20
  - @babel/helper-plugin-utils@7.27.1 (https://github.com/babel/babel)
21
21
  - @babel/helper-replace-supers@7.27.1 (https://github.com/babel/babel)
22
22
  - @babel/helper-skip-transparent-expression-wrappers@7.27.1 (https://github.com/babel/babel)
23
- - @babel/helper-string-parser@7.27.1 (https://github.com/babel/babel)
24
- - @babel/helper-validator-identifier@7.27.1 (https://github.com/babel/babel)
23
+ - @babel/helper-string-parser@7.29.7 (https://github.com/babel/babel)
25
24
  - @babel/helper-validator-identifier@7.28.5 (https://github.com/babel/babel)
26
- - @babel/helper-validator-option@7.27.1 (https://github.com/babel/babel)
27
- - @babel/helpers@7.28.2 (https://github.com/babel/babel)
28
- - @babel/parser@7.28.0 (https://github.com/babel/babel)
25
+ - @babel/helper-validator-identifier@7.29.7 (https://github.com/babel/babel)
26
+ - @babel/helper-validator-option@7.29.7 (https://github.com/babel/babel)
27
+ - @babel/helpers@7.29.7 (https://github.com/babel/babel)
28
+ - @babel/parser@7.29.7 (https://github.com/babel/babel)
29
29
  - @babel/plugin-proposal-decorators@7.28.0 (https://github.com/babel/babel)
30
30
  - @babel/plugin-syntax-async-generators@7.8.4 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators)
31
31
  - @babel/plugin-syntax-decorators@7.27.1 (https://github.com/babel/babel)
@@ -50,9 +50,9 @@ This project incorporates components from the projects listed below. The origina
50
50
  - @babel/plugin-transform-react-jsx@7.27.1 (https://github.com/babel/babel)
51
51
  - @babel/plugin-transform-typescript@7.28.0 (https://github.com/babel/babel)
52
52
  - @babel/preset-typescript@7.27.1 (https://github.com/babel/babel)
53
- - @babel/template@7.27.2 (https://github.com/babel/babel)
54
- - @babel/traverse@7.28.0 (https://github.com/babel/babel)
55
- - @babel/types@7.28.2 (https://github.com/babel/babel)
53
+ - @babel/template@7.29.7 (https://github.com/babel/babel)
54
+ - @babel/traverse@7.29.7 (https://github.com/babel/babel)
55
+ - @babel/types@7.29.7 (https://github.com/babel/babel)
56
56
  - @jest/diff-sequences@30.0.1 (https://github.com/jestjs/jest)
57
57
  - @jest/expect-utils@30.2.0 (https://github.com/jestjs/jest)
58
58
  - @jest/get-type@30.1.0 (https://github.com/jestjs/jest)
@@ -60,6 +60,7 @@ This project incorporates components from the projects listed below. The origina
60
60
  - @jest/schemas@30.0.5 (https://github.com/jestjs/jest)
61
61
  - @jest/types@30.2.0 (https://github.com/jestjs/jest)
62
62
  - @jridgewell/gen-mapping@0.3.12 (https://github.com/jridgewell/sourcemaps)
63
+ - @jridgewell/remapping@2.3.5 (https://github.com/jridgewell/sourcemaps)
63
64
  - @jridgewell/resolve-uri@3.1.1 (https://github.com/jridgewell/resolve-uri)
64
65
  - @jridgewell/sourcemap-codec@1.5.4 (https://github.com/jridgewell/sourcemaps)
65
66
  - @jridgewell/trace-mapping@0.3.29 (https://github.com/jridgewell/sourcemaps)
@@ -80,11 +81,12 @@ This project incorporates components from the projects listed below. The origina
80
81
  - ansi-styles@5.2.0 (https://github.com/chalk/ansi-styles)
81
82
  - anymatch@3.1.3 (https://github.com/micromatch/anymatch)
82
83
  - bail@2.0.2 (https://github.com/wooorm/bail)
84
+ - baseline-browser-mapping@2.10.43 (https://github.com/web-platform-dx/baseline-browser-mapping)
83
85
  - binary-extensions@2.2.0 (https://github.com/sindresorhus/binary-extensions)
84
86
  - braces@3.0.3 (https://github.com/micromatch/braces)
85
- - browserslist@4.25.1 (https://github.com/browserslist/browserslist)
87
+ - browserslist@4.28.6 (https://github.com/browserslist/browserslist)
86
88
  - buffer-from@1.1.2 (https://github.com/LinusU/buffer-from)
87
- - caniuse-lite@1.0.30001731 (https://github.com/browserslist/caniuse-lite)
89
+ - caniuse-lite@1.0.30001805 (https://github.com/browserslist/caniuse-lite)
88
90
  - chalk@4.1.2 (https://github.com/chalk/chalk)
89
91
  - character-entities@2.0.2 (https://github.com/wooorm/character-entities)
90
92
  - chokidar@3.6.0 (https://github.com/paulmillr/chokidar)
@@ -98,7 +100,7 @@ This project incorporates components from the projects listed below. The origina
98
100
  - decode-named-character-reference@1.2.0 (https://github.com/wooorm/decode-named-character-reference)
99
101
  - dequal@2.0.3 (https://github.com/lukeed/dequal)
100
102
  - devlop@1.1.0 (https://github.com/wooorm/devlop)
101
- - electron-to-chromium@1.5.192 (https://github.com/kilian/electron-to-chromium)
103
+ - electron-to-chromium@1.5.389 (https://github.com/Kilian/electron-to-chromium)
102
104
  - enquirer@2.3.6 (https://github.com/enquirer/enquirer)
103
105
  - escalade@3.2.0 (https://github.com/lukeed/escalade)
104
106
  - escape-string-regexp@2.0.0 (https://github.com/sindresorhus/escape-string-regexp)
@@ -150,7 +152,7 @@ This project incorporates components from the projects listed below. The origina
150
152
  - micromark@4.0.2 (https://github.com/micromark/micromark/tree/main/packages/micromark)
151
153
  - micromatch@4.0.8 (https://github.com/micromatch/micromatch)
152
154
  - ms@2.1.3 (https://github.com/vercel/ms)
153
- - node-releases@2.0.19 (https://github.com/chicoxyzzy/node-releases)
155
+ - node-releases@2.0.51 (https://github.com/chicoxyzzy/node-releases)
154
156
  - normalize-path@3.0.0 (https://github.com/jonschlinkert/normalize-path)
155
157
  - picocolors@1.1.1 (https://github.com/alexeyraspopov/picocolors)
156
158
  - picomatch@2.3.2 (https://github.com/micromatch/picomatch)
@@ -171,218 +173,39 @@ This project incorporates components from the projects listed below. The origina
171
173
  - undici-types@7.16.0 (https://github.com/nodejs/undici)
172
174
  - unified@11.0.5 (https://github.com/unifiedjs/unified)
173
175
  - unist-util-stringify-position@4.0.0 (https://github.com/syntax-tree/unist-util-stringify-position)
174
- - update-browserslist-db@1.1.3 (https://github.com/browserslist/update-db)
176
+ - update-browserslist-db@1.2.3 (https://github.com/browserslist/update-db)
175
177
  - vfile-message@4.0.3 (https://github.com/vfile/vfile-message)
176
178
  - vfile@6.0.3 (https://github.com/vfile/vfile)
177
179
  - yallist@3.1.1 (https://github.com/isaacs/yallist)
178
180
 
179
- %% @ampproject/remapping@2.2.1 NOTICES AND INFORMATION BEGIN HERE
181
+ %% @babel/code-frame@7.27.1 NOTICES AND INFORMATION BEGIN HERE
180
182
  =========================================
181
- Apache License
182
- Version 2.0, January 2004
183
- http://www.apache.org/licenses/
184
-
185
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
186
-
187
- 1. Definitions.
188
-
189
- "License" shall mean the terms and conditions for use, reproduction,
190
- and distribution as defined by Sections 1 through 9 of this document.
191
-
192
- "Licensor" shall mean the copyright owner or entity authorized by
193
- the copyright owner that is granting the License.
194
-
195
- "Legal Entity" shall mean the union of the acting entity and all
196
- other entities that control, are controlled by, or are under common
197
- control with that entity. For the purposes of this definition,
198
- "control" means (i) the power, direct or indirect, to cause the
199
- direction or management of such entity, whether by contract or
200
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
201
- outstanding shares, or (iii) beneficial ownership of such entity.
202
-
203
- "You" (or "Your") shall mean an individual or Legal Entity
204
- exercising permissions granted by this License.
205
-
206
- "Source" form shall mean the preferred form for making modifications,
207
- including but not limited to software source code, documentation
208
- source, and configuration files.
209
-
210
- "Object" form shall mean any form resulting from mechanical
211
- transformation or translation of a Source form, including but
212
- not limited to compiled object code, generated documentation,
213
- and conversions to other media types.
214
-
215
- "Work" shall mean the work of authorship, whether in Source or
216
- Object form, made available under the License, as indicated by a
217
- copyright notice that is included in or attached to the work
218
- (an example is provided in the Appendix below).
219
-
220
- "Derivative Works" shall mean any work, whether in Source or Object
221
- form, that is based on (or derived from) the Work and for which the
222
- editorial revisions, annotations, elaborations, or other modifications
223
- represent, as a whole, an original work of authorship. For the purposes
224
- of this License, Derivative Works shall not include works that remain
225
- separable from, or merely link (or bind by name) to the interfaces of,
226
- the Work and Derivative Works thereof.
227
-
228
- "Contribution" shall mean any work of authorship, including
229
- the original version of the Work and any modifications or additions
230
- to that Work or Derivative Works thereof, that is intentionally
231
- submitted to Licensor for inclusion in the Work by the copyright owner
232
- or by an individual or Legal Entity authorized to submit on behalf of
233
- the copyright owner. For the purposes of this definition, "submitted"
234
- means any form of electronic, verbal, or written communication sent
235
- to the Licensor or its representatives, including but not limited to
236
- communication on electronic mailing lists, source code control systems,
237
- and issue tracking systems that are managed by, or on behalf of, the
238
- Licensor for the purpose of discussing and improving the Work, but
239
- excluding communication that is conspicuously marked or otherwise
240
- designated in writing by the copyright owner as "Not a Contribution."
241
-
242
- "Contributor" shall mean Licensor and any individual or Legal Entity
243
- on behalf of whom a Contribution has been received by Licensor and
244
- subsequently incorporated within the Work.
245
-
246
- 2. Grant of Copyright License. Subject to the terms and conditions of
247
- this License, each Contributor hereby grants to You a perpetual,
248
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
249
- copyright license to reproduce, prepare Derivative Works of,
250
- publicly display, publicly perform, sublicense, and distribute the
251
- Work and such Derivative Works in Source or Object form.
252
-
253
- 3. Grant of Patent License. Subject to the terms and conditions of
254
- this License, each Contributor hereby grants to You a perpetual,
255
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
256
- (except as stated in this section) patent license to make, have made,
257
- use, offer to sell, sell, import, and otherwise transfer the Work,
258
- where such license applies only to those patent claims licensable
259
- by such Contributor that are necessarily infringed by their
260
- Contribution(s) alone or by combination of their Contribution(s)
261
- with the Work to which such Contribution(s) was submitted. If You
262
- institute patent litigation against any entity (including a
263
- cross-claim or counterclaim in a lawsuit) alleging that the Work
264
- or a Contribution incorporated within the Work constitutes direct
265
- or contributory patent infringement, then any patent licenses
266
- granted to You under this License for that Work shall terminate
267
- as of the date such litigation is filed.
268
-
269
- 4. Redistribution. You may reproduce and distribute copies of the
270
- Work or Derivative Works thereof in any medium, with or without
271
- modifications, and in Source or Object form, provided that You
272
- meet the following conditions:
273
-
274
- (a) You must give any other recipients of the Work or
275
- Derivative Works a copy of this License; and
276
-
277
- (b) You must cause any modified files to carry prominent notices
278
- stating that You changed the files; and
279
-
280
- (c) You must retain, in the Source form of any Derivative Works
281
- that You distribute, all copyright, patent, trademark, and
282
- attribution notices from the Source form of the Work,
283
- excluding those notices that do not pertain to any part of
284
- the Derivative Works; and
285
-
286
- (d) If the Work includes a "NOTICE" text file as part of its
287
- distribution, then any Derivative Works that You distribute must
288
- include a readable copy of the attribution notices contained
289
- within such NOTICE file, excluding those notices that do not
290
- pertain to any part of the Derivative Works, in at least one
291
- of the following places: within a NOTICE text file distributed
292
- as part of the Derivative Works; within the Source form or
293
- documentation, if provided along with the Derivative Works; or,
294
- within a display generated by the Derivative Works, if and
295
- wherever such third-party notices normally appear. The contents
296
- of the NOTICE file are for informational purposes only and
297
- do not modify the License. You may add Your own attribution
298
- notices within Derivative Works that You distribute, alongside
299
- or as an addendum to the NOTICE text from the Work, provided
300
- that such additional attribution notices cannot be construed
301
- as modifying the License.
302
-
303
- You may add Your own copyright statement to Your modifications and
304
- may provide additional or different license terms and conditions
305
- for use, reproduction, or distribution of Your modifications, or
306
- for any such Derivative Works as a whole, provided Your use,
307
- reproduction, and distribution of the Work otherwise complies with
308
- the conditions stated in this License.
309
-
310
- 5. Submission of Contributions. Unless You explicitly state otherwise,
311
- any Contribution intentionally submitted for inclusion in the Work
312
- by You to the Licensor shall be under the terms and conditions of
313
- this License, without any additional terms or conditions.
314
- Notwithstanding the above, nothing herein shall supersede or modify
315
- the terms of any separate license agreement you may have executed
316
- with Licensor regarding such Contributions.
317
-
318
- 6. Trademarks. This License does not grant permission to use the trade
319
- names, trademarks, service marks, or product names of the Licensor,
320
- except as required for reasonable and customary use in describing the
321
- origin of the Work and reproducing the content of the NOTICE file.
322
-
323
- 7. Disclaimer of Warranty. Unless required by applicable law or
324
- agreed to in writing, Licensor provides the Work (and each
325
- Contributor provides its Contributions) on an "AS IS" BASIS,
326
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
327
- implied, including, without limitation, any warranties or conditions
328
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
329
- PARTICULAR PURPOSE. You are solely responsible for determining the
330
- appropriateness of using or redistributing the Work and assume any
331
- risks associated with Your exercise of permissions under this License.
332
-
333
- 8. Limitation of Liability. In no event and under no legal theory,
334
- whether in tort (including negligence), contract, or otherwise,
335
- unless required by applicable law (such as deliberate and grossly
336
- negligent acts) or agreed to in writing, shall any Contributor be
337
- liable to You for damages, including any direct, indirect, special,
338
- incidental, or consequential damages of any character arising as a
339
- result of this License or out of the use or inability to use the
340
- Work (including but not limited to damages for loss of goodwill,
341
- work stoppage, computer failure or malfunction, or any and all
342
- other commercial damages or losses), even if such Contributor
343
- has been advised of the possibility of such damages.
344
-
345
- 9. Accepting Warranty or Additional Liability. While redistributing
346
- the Work or Derivative Works thereof, You may choose to offer,
347
- and charge a fee for, acceptance of support, warranty, indemnity,
348
- or other liability obligations and/or rights consistent with this
349
- License. However, in accepting such obligations, You may act only
350
- on Your own behalf and on Your sole responsibility, not on behalf
351
- of any other Contributor, and only if You agree to indemnify,
352
- defend, and hold each Contributor harmless for any liability
353
- incurred by, or claims asserted against, such Contributor by reason
354
- of your accepting any such warranty or additional liability.
355
-
356
- END OF TERMS AND CONDITIONS
357
-
358
- APPENDIX: How to apply the Apache License to your work.
359
-
360
- To apply the Apache License to your work, attach the following
361
- boilerplate notice, with the fields enclosed by brackets "[]"
362
- replaced with your own identifying information. (Don't include
363
- the brackets!) The text should be enclosed in the appropriate
364
- comment syntax for the file format. We also recommend that a
365
- file or class name and description of purpose be included on the
366
- same "printed page" as the copyright notice for easier
367
- identification within third-party archives.
183
+ MIT License
368
184
 
369
- Copyright [yyyy] [name of copyright owner]
185
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
370
186
 
371
- Licensed under the Apache License, Version 2.0 (the "License");
372
- you may not use this file except in compliance with the License.
373
- You may obtain a copy of the License at
187
+ Permission is hereby granted, free of charge, to any person obtaining
188
+ a copy of this software and associated documentation files (the
189
+ "Software"), to deal in the Software without restriction, including
190
+ without limitation the rights to use, copy, modify, merge, publish,
191
+ distribute, sublicense, and/or sell copies of the Software, and to
192
+ permit persons to whom the Software is furnished to do so, subject to
193
+ the following conditions:
374
194
 
375
- http://www.apache.org/licenses/LICENSE-2.0
195
+ The above copyright notice and this permission notice shall be
196
+ included in all copies or substantial portions of the Software.
376
197
 
377
- Unless required by applicable law or agreed to in writing, software
378
- distributed under the License is distributed on an "AS IS" BASIS,
379
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
380
- See the License for the specific language governing permissions and
381
- limitations under the License.
198
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
199
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
200
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
201
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
202
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
203
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
204
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
382
205
  =========================================
383
- END OF @ampproject/remapping@2.2.1 AND INFORMATION
206
+ END OF @babel/code-frame@7.27.1 AND INFORMATION
384
207
 
385
- %% @babel/code-frame@7.27.1 NOTICES AND INFORMATION BEGIN HERE
208
+ %% @babel/code-frame@7.29.7 NOTICES AND INFORMATION BEGIN HERE
386
209
  =========================================
387
210
  MIT License
388
211
 
@@ -407,9 +230,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
407
230
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
408
231
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
409
232
  =========================================
410
- END OF @babel/code-frame@7.27.1 AND INFORMATION
233
+ END OF @babel/code-frame@7.29.7 AND INFORMATION
411
234
 
412
- %% @babel/compat-data@7.28.0 NOTICES AND INFORMATION BEGIN HERE
235
+ %% @babel/compat-data@7.29.7 NOTICES AND INFORMATION BEGIN HERE
413
236
  =========================================
414
237
  MIT License
415
238
 
@@ -434,9 +257,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
434
257
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
435
258
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
436
259
  =========================================
437
- END OF @babel/compat-data@7.28.0 AND INFORMATION
260
+ END OF @babel/compat-data@7.29.7 AND INFORMATION
438
261
 
439
- %% @babel/core@7.28.0 NOTICES AND INFORMATION BEGIN HERE
262
+ %% @babel/core@7.29.6 NOTICES AND INFORMATION BEGIN HERE
440
263
  =========================================
441
264
  MIT License
442
265
 
@@ -461,9 +284,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
461
284
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
462
285
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
463
286
  =========================================
464
- END OF @babel/core@7.28.0 AND INFORMATION
287
+ END OF @babel/core@7.29.6 AND INFORMATION
465
288
 
466
- %% @babel/generator@7.28.0 NOTICES AND INFORMATION BEGIN HERE
289
+ %% @babel/generator@7.29.7 NOTICES AND INFORMATION BEGIN HERE
467
290
  =========================================
468
291
  MIT License
469
292
 
@@ -488,7 +311,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
488
311
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
489
312
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
490
313
  =========================================
491
- END OF @babel/generator@7.28.0 AND INFORMATION
314
+ END OF @babel/generator@7.29.7 AND INFORMATION
492
315
 
493
316
  %% @babel/helper-annotate-as-pure@7.27.3 NOTICES AND INFORMATION BEGIN HERE
494
317
  =========================================
@@ -517,7 +340,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
517
340
  =========================================
518
341
  END OF @babel/helper-annotate-as-pure@7.27.3 AND INFORMATION
519
342
 
520
- %% @babel/helper-compilation-targets@7.27.2 NOTICES AND INFORMATION BEGIN HERE
343
+ %% @babel/helper-compilation-targets@7.29.7 NOTICES AND INFORMATION BEGIN HERE
521
344
  =========================================
522
345
  MIT License
523
346
 
@@ -542,7 +365,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
542
365
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
543
366
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
544
367
  =========================================
545
- END OF @babel/helper-compilation-targets@7.27.2 AND INFORMATION
368
+ END OF @babel/helper-compilation-targets@7.29.7 AND INFORMATION
546
369
 
547
370
  %% @babel/helper-create-class-features-plugin@7.27.1 NOTICES AND INFORMATION BEGIN HERE
548
371
  =========================================
@@ -571,7 +394,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
571
394
  =========================================
572
395
  END OF @babel/helper-create-class-features-plugin@7.27.1 AND INFORMATION
573
396
 
574
- %% @babel/helper-globals@7.28.0 NOTICES AND INFORMATION BEGIN HERE
397
+ %% @babel/helper-globals@7.29.7 NOTICES AND INFORMATION BEGIN HERE
575
398
  =========================================
576
399
  MIT License
577
400
 
@@ -596,7 +419,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
596
419
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
597
420
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
598
421
  =========================================
599
- END OF @babel/helper-globals@7.28.0 AND INFORMATION
422
+ END OF @babel/helper-globals@7.29.7 AND INFORMATION
600
423
 
601
424
  %% @babel/helper-member-expression-to-functions@7.27.1 NOTICES AND INFORMATION BEGIN HERE
602
425
  =========================================
@@ -625,7 +448,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
625
448
  =========================================
626
449
  END OF @babel/helper-member-expression-to-functions@7.27.1 AND INFORMATION
627
450
 
628
- %% @babel/helper-module-imports@7.27.1 NOTICES AND INFORMATION BEGIN HERE
451
+ %% @babel/helper-module-imports@7.29.7 NOTICES AND INFORMATION BEGIN HERE
629
452
  =========================================
630
453
  MIT License
631
454
 
@@ -650,9 +473,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
650
473
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
651
474
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
652
475
  =========================================
653
- END OF @babel/helper-module-imports@7.27.1 AND INFORMATION
476
+ END OF @babel/helper-module-imports@7.29.7 AND INFORMATION
654
477
 
655
- %% @babel/helper-module-transforms@7.27.3 NOTICES AND INFORMATION BEGIN HERE
478
+ %% @babel/helper-module-transforms@7.29.7 NOTICES AND INFORMATION BEGIN HERE
656
479
  =========================================
657
480
  MIT License
658
481
 
@@ -677,7 +500,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
677
500
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
678
501
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
679
502
  =========================================
680
- END OF @babel/helper-module-transforms@7.27.3 AND INFORMATION
503
+ END OF @babel/helper-module-transforms@7.29.7 AND INFORMATION
681
504
 
682
505
  %% @babel/helper-optimise-call-expression@7.27.1 NOTICES AND INFORMATION BEGIN HERE
683
506
  =========================================
@@ -787,7 +610,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
787
610
  =========================================
788
611
  END OF @babel/helper-skip-transparent-expression-wrappers@7.27.1 AND INFORMATION
789
612
 
790
- %% @babel/helper-string-parser@7.27.1 NOTICES AND INFORMATION BEGIN HERE
613
+ %% @babel/helper-string-parser@7.29.7 NOTICES AND INFORMATION BEGIN HERE
791
614
  =========================================
792
615
  MIT License
793
616
 
@@ -812,9 +635,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
812
635
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
813
636
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
814
637
  =========================================
815
- END OF @babel/helper-string-parser@7.27.1 AND INFORMATION
638
+ END OF @babel/helper-string-parser@7.29.7 AND INFORMATION
816
639
 
817
- %% @babel/helper-validator-identifier@7.27.1 NOTICES AND INFORMATION BEGIN HERE
640
+ %% @babel/helper-validator-identifier@7.28.5 NOTICES AND INFORMATION BEGIN HERE
818
641
  =========================================
819
642
  MIT License
820
643
 
@@ -839,9 +662,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
839
662
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
840
663
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
841
664
  =========================================
842
- END OF @babel/helper-validator-identifier@7.27.1 AND INFORMATION
665
+ END OF @babel/helper-validator-identifier@7.28.5 AND INFORMATION
843
666
 
844
- %% @babel/helper-validator-identifier@7.28.5 NOTICES AND INFORMATION BEGIN HERE
667
+ %% @babel/helper-validator-identifier@7.29.7 NOTICES AND INFORMATION BEGIN HERE
845
668
  =========================================
846
669
  MIT License
847
670
 
@@ -866,9 +689,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
866
689
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
867
690
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
868
691
  =========================================
869
- END OF @babel/helper-validator-identifier@7.28.5 AND INFORMATION
692
+ END OF @babel/helper-validator-identifier@7.29.7 AND INFORMATION
870
693
 
871
- %% @babel/helper-validator-option@7.27.1 NOTICES AND INFORMATION BEGIN HERE
694
+ %% @babel/helper-validator-option@7.29.7 NOTICES AND INFORMATION BEGIN HERE
872
695
  =========================================
873
696
  MIT License
874
697
 
@@ -893,9 +716,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
893
716
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
894
717
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
895
718
  =========================================
896
- END OF @babel/helper-validator-option@7.27.1 AND INFORMATION
719
+ END OF @babel/helper-validator-option@7.29.7 AND INFORMATION
897
720
 
898
- %% @babel/helpers@7.28.2 NOTICES AND INFORMATION BEGIN HERE
721
+ %% @babel/helpers@7.29.7 NOTICES AND INFORMATION BEGIN HERE
899
722
  =========================================
900
723
  MIT License
901
724
 
@@ -921,9 +744,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
921
744
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
922
745
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
923
746
  =========================================
924
- END OF @babel/helpers@7.28.2 AND INFORMATION
747
+ END OF @babel/helpers@7.29.7 AND INFORMATION
925
748
 
926
- %% @babel/parser@7.28.0 NOTICES AND INFORMATION BEGIN HERE
749
+ %% @babel/parser@7.29.7 NOTICES AND INFORMATION BEGIN HERE
927
750
  =========================================
928
751
  Copyright (C) 2012-2014 by various contributors (see AUTHORS)
929
752
 
@@ -945,7 +768,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
945
768
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
946
769
  THE SOFTWARE.
947
770
  =========================================
948
- END OF @babel/parser@7.28.0 AND INFORMATION
771
+ END OF @babel/parser@7.29.7 AND INFORMATION
949
772
 
950
773
  %% @babel/plugin-proposal-decorators@7.28.0 NOTICES AND INFORMATION BEGIN HERE
951
774
  =========================================
@@ -1595,7 +1418,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1595
1418
  =========================================
1596
1419
  END OF @babel/preset-typescript@7.27.1 AND INFORMATION
1597
1420
 
1598
- %% @babel/template@7.27.2 NOTICES AND INFORMATION BEGIN HERE
1421
+ %% @babel/template@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1599
1422
  =========================================
1600
1423
  MIT License
1601
1424
 
@@ -1620,9 +1443,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1620
1443
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1621
1444
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1622
1445
  =========================================
1623
- END OF @babel/template@7.27.2 AND INFORMATION
1446
+ END OF @babel/template@7.29.7 AND INFORMATION
1624
1447
 
1625
- %% @babel/traverse@7.28.0 NOTICES AND INFORMATION BEGIN HERE
1448
+ %% @babel/traverse@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1626
1449
  =========================================
1627
1450
  MIT License
1628
1451
 
@@ -1647,9 +1470,9 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1647
1470
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1648
1471
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1649
1472
  =========================================
1650
- END OF @babel/traverse@7.28.0 AND INFORMATION
1473
+ END OF @babel/traverse@7.29.7 AND INFORMATION
1651
1474
 
1652
- %% @babel/types@7.28.2 NOTICES AND INFORMATION BEGIN HERE
1475
+ %% @babel/types@7.29.7 NOTICES AND INFORMATION BEGIN HERE
1653
1476
  =========================================
1654
1477
  MIT License
1655
1478
 
@@ -1674,7 +1497,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1674
1497
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1675
1498
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1676
1499
  =========================================
1677
- END OF @babel/types@7.28.2 AND INFORMATION
1500
+ END OF @babel/types@7.29.7 AND INFORMATION
1678
1501
 
1679
1502
  %% @jest/diff-sequences@30.0.1 NOTICES AND INFORMATION BEGIN HERE
1680
1503
  =========================================
@@ -1862,6 +1685,30 @@ SOFTWARE.
1862
1685
  =========================================
1863
1686
  END OF @jridgewell/gen-mapping@0.3.12 AND INFORMATION
1864
1687
 
1688
+ %% @jridgewell/remapping@2.3.5 NOTICES AND INFORMATION BEGIN HERE
1689
+ =========================================
1690
+ Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
1691
+
1692
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1693
+ of this software and associated documentation files (the "Software"), to deal
1694
+ in the Software without restriction, including without limitation the rights
1695
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1696
+ copies of the Software, and to permit persons to whom the Software is
1697
+ furnished to do so, subject to the following conditions:
1698
+
1699
+ The above copyright notice and this permission notice shall be included in
1700
+ all copies or substantial portions of the Software.
1701
+
1702
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1703
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1704
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1705
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1706
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1707
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1708
+ SOFTWARE.
1709
+ =========================================
1710
+ END OF @jridgewell/remapping@2.3.5 AND INFORMATION
1711
+
1865
1712
  %% @jridgewell/resolve-uri@3.1.1 NOTICES AND INFORMATION BEGIN HERE
1866
1713
  =========================================
1867
1714
  Copyright 2019 Justin Ridgewell <jridgewell@google.com>
@@ -2351,6 +2198,212 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2351
2198
  =========================================
2352
2199
  END OF bail@2.0.2 AND INFORMATION
2353
2200
 
2201
+ %% baseline-browser-mapping@2.10.43 NOTICES AND INFORMATION BEGIN HERE
2202
+ =========================================
2203
+ Apache License
2204
+ Version 2.0, January 2004
2205
+ http://www.apache.org/licenses/
2206
+
2207
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2208
+
2209
+ 1. Definitions.
2210
+
2211
+ "License" shall mean the terms and conditions for use, reproduction,
2212
+ and distribution as defined by Sections 1 through 9 of this document.
2213
+
2214
+ "Licensor" shall mean the copyright owner or entity authorized by
2215
+ the copyright owner that is granting the License.
2216
+
2217
+ "Legal Entity" shall mean the union of the acting entity and all
2218
+ other entities that control, are controlled by, or are under common
2219
+ control with that entity. For the purposes of this definition,
2220
+ "control" means (i) the power, direct or indirect, to cause the
2221
+ direction or management of such entity, whether by contract or
2222
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2223
+ outstanding shares, or (iii) beneficial ownership of such entity.
2224
+
2225
+ "You" (or "Your") shall mean an individual or Legal Entity
2226
+ exercising permissions granted by this License.
2227
+
2228
+ "Source" form shall mean the preferred form for making modifications,
2229
+ including but not limited to software source code, documentation
2230
+ source, and configuration files.
2231
+
2232
+ "Object" form shall mean any form resulting from mechanical
2233
+ transformation or translation of a Source form, including but
2234
+ not limited to compiled object code, generated documentation,
2235
+ and conversions to other media types.
2236
+
2237
+ "Work" shall mean the work of authorship, whether in Source or
2238
+ Object form, made available under the License, as indicated by a
2239
+ copyright notice that is included in or attached to the work
2240
+ (an example is provided in the Appendix below).
2241
+
2242
+ "Derivative Works" shall mean any work, whether in Source or Object
2243
+ form, that is based on (or derived from) the Work and for which the
2244
+ editorial revisions, annotations, elaborations, or other modifications
2245
+ represent, as a whole, an original work of authorship. For the purposes
2246
+ of this License, Derivative Works shall not include works that remain
2247
+ separable from, or merely link (or bind by name) to the interfaces of,
2248
+ the Work and Derivative Works thereof.
2249
+
2250
+ "Contribution" shall mean any work of authorship, including
2251
+ the original version of the Work and any modifications or additions
2252
+ to that Work or Derivative Works thereof, that is intentionally
2253
+ submitted to Licensor for inclusion in the Work by the copyright owner
2254
+ or by an individual or Legal Entity authorized to submit on behalf of
2255
+ the copyright owner. For the purposes of this definition, "submitted"
2256
+ means any form of electronic, verbal, or written communication sent
2257
+ to the Licensor or its representatives, including but not limited to
2258
+ communication on electronic mailing lists, source code control systems,
2259
+ and issue tracking systems that are managed by, or on behalf of, the
2260
+ Licensor for the purpose of discussing and improving the Work, but
2261
+ excluding communication that is conspicuously marked or otherwise
2262
+ designated in writing by the copyright owner as "Not a Contribution."
2263
+
2264
+ "Contributor" shall mean Licensor and any individual or Legal Entity
2265
+ on behalf of whom a Contribution has been received by Licensor and
2266
+ subsequently incorporated within the Work.
2267
+
2268
+ 2. Grant of Copyright License. Subject to the terms and conditions of
2269
+ this License, each Contributor hereby grants to You a perpetual,
2270
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2271
+ copyright license to reproduce, prepare Derivative Works of,
2272
+ publicly display, publicly perform, sublicense, and distribute the
2273
+ Work and such Derivative Works in Source or Object form.
2274
+
2275
+ 3. Grant of Patent License. Subject to the terms and conditions of
2276
+ this License, each Contributor hereby grants to You a perpetual,
2277
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2278
+ (except as stated in this section) patent license to make, have made,
2279
+ use, offer to sell, sell, import, and otherwise transfer the Work,
2280
+ where such license applies only to those patent claims licensable
2281
+ by such Contributor that are necessarily infringed by their
2282
+ Contribution(s) alone or by combination of their Contribution(s)
2283
+ with the Work to which such Contribution(s) was submitted. If You
2284
+ institute patent litigation against any entity (including a
2285
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2286
+ or a Contribution incorporated within the Work constitutes direct
2287
+ or contributory patent infringement, then any patent licenses
2288
+ granted to You under this License for that Work shall terminate
2289
+ as of the date such litigation is filed.
2290
+
2291
+ 4. Redistribution. You may reproduce and distribute copies of the
2292
+ Work or Derivative Works thereof in any medium, with or without
2293
+ modifications, and in Source or Object form, provided that You
2294
+ meet the following conditions:
2295
+
2296
+ (a) You must give any other recipients of the Work or
2297
+ Derivative Works a copy of this License; and
2298
+
2299
+ (b) You must cause any modified files to carry prominent notices
2300
+ stating that You changed the files; and
2301
+
2302
+ (c) You must retain, in the Source form of any Derivative Works
2303
+ that You distribute, all copyright, patent, trademark, and
2304
+ attribution notices from the Source form of the Work,
2305
+ excluding those notices that do not pertain to any part of
2306
+ the Derivative Works; and
2307
+
2308
+ (d) If the Work includes a "NOTICE" text file as part of its
2309
+ distribution, then any Derivative Works that You distribute must
2310
+ include a readable copy of the attribution notices contained
2311
+ within such NOTICE file, excluding those notices that do not
2312
+ pertain to any part of the Derivative Works, in at least one
2313
+ of the following places: within a NOTICE text file distributed
2314
+ as part of the Derivative Works; within the Source form or
2315
+ documentation, if provided along with the Derivative Works; or,
2316
+ within a display generated by the Derivative Works, if and
2317
+ wherever such third-party notices normally appear. The contents
2318
+ of the NOTICE file are for informational purposes only and
2319
+ do not modify the License. You may add Your own attribution
2320
+ notices within Derivative Works that You distribute, alongside
2321
+ or as an addendum to the NOTICE text from the Work, provided
2322
+ that such additional attribution notices cannot be construed
2323
+ as modifying the License.
2324
+
2325
+ You may add Your own copyright statement to Your modifications and
2326
+ may provide additional or different license terms and conditions
2327
+ for use, reproduction, or distribution of Your modifications, or
2328
+ for any such Derivative Works as a whole, provided Your use,
2329
+ reproduction, and distribution of the Work otherwise complies with
2330
+ the conditions stated in this License.
2331
+
2332
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2333
+ any Contribution intentionally submitted for inclusion in the Work
2334
+ by You to the Licensor shall be under the terms and conditions of
2335
+ this License, without any additional terms or conditions.
2336
+ Notwithstanding the above, nothing herein shall supersede or modify
2337
+ the terms of any separate license agreement you may have executed
2338
+ with Licensor regarding such Contributions.
2339
+
2340
+ 6. Trademarks. This License does not grant permission to use the trade
2341
+ names, trademarks, service marks, or product names of the Licensor,
2342
+ except as required for reasonable and customary use in describing the
2343
+ origin of the Work and reproducing the content of the NOTICE file.
2344
+
2345
+ 7. Disclaimer of Warranty. Unless required by applicable law or
2346
+ agreed to in writing, Licensor provides the Work (and each
2347
+ Contributor provides its Contributions) on an "AS IS" BASIS,
2348
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2349
+ implied, including, without limitation, any warranties or conditions
2350
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2351
+ PARTICULAR PURPOSE. You are solely responsible for determining the
2352
+ appropriateness of using or redistributing the Work and assume any
2353
+ risks associated with Your exercise of permissions under this License.
2354
+
2355
+ 8. Limitation of Liability. In no event and under no legal theory,
2356
+ whether in tort (including negligence), contract, or otherwise,
2357
+ unless required by applicable law (such as deliberate and grossly
2358
+ negligent acts) or agreed to in writing, shall any Contributor be
2359
+ liable to You for damages, including any direct, indirect, special,
2360
+ incidental, or consequential damages of any character arising as a
2361
+ result of this License or out of the use or inability to use the
2362
+ Work (including but not limited to damages for loss of goodwill,
2363
+ work stoppage, computer failure or malfunction, or any and all
2364
+ other commercial damages or losses), even if such Contributor
2365
+ has been advised of the possibility of such damages.
2366
+
2367
+ 9. Accepting Warranty or Additional Liability. While redistributing
2368
+ the Work or Derivative Works thereof, You may choose to offer,
2369
+ and charge a fee for, acceptance of support, warranty, indemnity,
2370
+ or other liability obligations and/or rights consistent with this
2371
+ License. However, in accepting such obligations, You may act only
2372
+ on Your own behalf and on Your sole responsibility, not on behalf
2373
+ of any other Contributor, and only if You agree to indemnify,
2374
+ defend, and hold each Contributor harmless for any liability
2375
+ incurred by, or claims asserted against, such Contributor by reason
2376
+ of your accepting any such warranty or additional liability.
2377
+
2378
+ END OF TERMS AND CONDITIONS
2379
+
2380
+ APPENDIX: How to apply the Apache License to your work.
2381
+
2382
+ To apply the Apache License to your work, attach the following
2383
+ boilerplate notice, with the fields enclosed by brackets "[]"
2384
+ replaced with your own identifying information. (Don't include
2385
+ the brackets!) The text should be enclosed in the appropriate
2386
+ comment syntax for the file format. We also recommend that a
2387
+ file or class name and description of purpose be included on the
2388
+ same "printed page" as the copyright notice for easier
2389
+ identification within third-party archives.
2390
+
2391
+ Copyright [yyyy] [name of copyright owner]
2392
+
2393
+ Licensed under the Apache License, Version 2.0 (the "License");
2394
+ you may not use this file except in compliance with the License.
2395
+ You may obtain a copy of the License at
2396
+
2397
+ http://www.apache.org/licenses/LICENSE-2.0
2398
+
2399
+ Unless required by applicable law or agreed to in writing, software
2400
+ distributed under the License is distributed on an "AS IS" BASIS,
2401
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2402
+ See the License for the specific language governing permissions and
2403
+ limitations under the License.
2404
+ =========================================
2405
+ END OF baseline-browser-mapping@2.10.43 AND INFORMATION
2406
+
2354
2407
  %% binary-extensions@2.2.0 NOTICES AND INFORMATION BEGIN HERE
2355
2408
  =========================================
2356
2409
  MIT License
@@ -2391,11 +2444,11 @@ THE SOFTWARE.
2391
2444
  =========================================
2392
2445
  END OF braces@3.0.3 AND INFORMATION
2393
2446
 
2394
- %% browserslist@4.25.1 NOTICES AND INFORMATION BEGIN HERE
2447
+ %% browserslist@4.28.6 NOTICES AND INFORMATION BEGIN HERE
2395
2448
  =========================================
2396
2449
  The MIT License (MIT)
2397
2450
 
2398
- Copyright 2014 Andrey Sitnik <andrey@sitnik.ru> and other contributors
2451
+ Copyright 2014 Andrey Sitnik <andrey@sitnik.es> and other contributors
2399
2452
 
2400
2453
  Permission is hereby granted, free of charge, to any person obtaining a copy of
2401
2454
  this software and associated documentation files (the "Software"), to deal in
@@ -2414,7 +2467,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2414
2467
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2415
2468
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2416
2469
  =========================================
2417
- END OF browserslist@4.25.1 AND INFORMATION
2470
+ END OF browserslist@4.28.6 AND INFORMATION
2418
2471
 
2419
2472
  %% buffer-from@1.1.2 NOTICES AND INFORMATION BEGIN HERE
2420
2473
  =========================================
@@ -2442,7 +2495,7 @@ SOFTWARE.
2442
2495
  =========================================
2443
2496
  END OF buffer-from@1.1.2 AND INFORMATION
2444
2497
 
2445
- %% caniuse-lite@1.0.30001731 NOTICES AND INFORMATION BEGIN HERE
2498
+ %% caniuse-lite@1.0.30001805 NOTICES AND INFORMATION BEGIN HERE
2446
2499
  =========================================
2447
2500
  Attribution 4.0 International
2448
2501
 
@@ -2840,7 +2893,7 @@ public licenses.
2840
2893
 
2841
2894
  Creative Commons may be contacted at creativecommons.org.
2842
2895
  =========================================
2843
- END OF caniuse-lite@1.0.30001731 AND INFORMATION
2896
+ END OF caniuse-lite@1.0.30001805 AND INFORMATION
2844
2897
 
2845
2898
  %% chalk@4.1.2 NOTICES AND INFORMATION BEGIN HERE
2846
2899
  =========================================
@@ -3155,7 +3208,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3155
3208
  =========================================
3156
3209
  END OF devlop@1.1.0 AND INFORMATION
3157
3210
 
3158
- %% electron-to-chromium@1.5.192 NOTICES AND INFORMATION BEGIN HERE
3211
+ %% electron-to-chromium@1.5.389 NOTICES AND INFORMATION BEGIN HERE
3159
3212
  =========================================
3160
3213
  Copyright 2018 Kilian Valkhof
3161
3214
 
@@ -3163,7 +3216,7 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
3163
3216
 
3164
3217
  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3165
3218
  =========================================
3166
- END OF electron-to-chromium@1.5.192 AND INFORMATION
3219
+ END OF electron-to-chromium@1.5.389 AND INFORMATION
3167
3220
 
3168
3221
  %% enquirer@2.3.6 NOTICES AND INFORMATION BEGIN HERE
3169
3222
  =========================================
@@ -4419,7 +4472,7 @@ SOFTWARE.
4419
4472
  =========================================
4420
4473
  END OF ms@2.1.3 AND INFORMATION
4421
4474
 
4422
- %% node-releases@2.0.19 NOTICES AND INFORMATION BEGIN HERE
4475
+ %% node-releases@2.0.51 NOTICES AND INFORMATION BEGIN HERE
4423
4476
  =========================================
4424
4477
  The MIT License
4425
4478
 
@@ -4443,7 +4496,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4443
4496
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
4444
4497
  THE SOFTWARE.
4445
4498
  =========================================
4446
- END OF node-releases@2.0.19 AND INFORMATION
4499
+ END OF node-releases@2.0.51 AND INFORMATION
4447
4500
 
4448
4501
  %% normalize-path@3.0.0 NOTICES AND INFORMATION BEGIN HERE
4449
4502
  =========================================
@@ -4937,7 +4990,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4937
4990
  =========================================
4938
4991
  END OF unist-util-stringify-position@4.0.0 AND INFORMATION
4939
4992
 
4940
- %% update-browserslist-db@1.1.3 NOTICES AND INFORMATION BEGIN HERE
4993
+ %% update-browserslist-db@1.2.3 NOTICES AND INFORMATION BEGIN HERE
4941
4994
  =========================================
4942
4995
  The MIT License (MIT)
4943
4996
 
@@ -4960,7 +5013,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
4960
5013
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
4961
5014
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4962
5015
  =========================================
4963
- END OF update-browserslist-db@1.1.3 AND INFORMATION
5016
+ END OF update-browserslist-db@1.2.3 AND INFORMATION
4964
5017
 
4965
5018
  %% vfile-message@4.0.3 NOTICES AND INFORMATION BEGIN HERE
4966
5019
  =========================================
@@ -5037,6 +5090,6 @@ END OF yallist@3.1.1 AND INFORMATION
5037
5090
 
5038
5091
  SUMMARY BEGIN HERE
5039
5092
  =========================================
5040
- Total Packages: 171
5093
+ Total Packages: 173
5041
5094
  =========================================
5042
5095
  END OF SUMMARY