rechrome 1.19.0 → 1.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (497) hide show
  1. package/README.md +8 -3
  2. package/package.json +5 -3
  3. package/rech.js +27 -12
  4. package/rech.ts +27 -12
  5. package/serve.js +4 -1
  6. package/serve.ts +4 -1
  7. package/vendor/playwright-cli/node_modules/playwright-core/README.md +3 -0
  8. package/vendor/playwright-cli/node_modules/playwright-core/ThirdPartyNotices.txt +13 -0
  9. package/vendor/playwright-cli/node_modules/playwright-core/bin/install_media_pack.ps1 +5 -0
  10. package/vendor/playwright-cli/node_modules/playwright-core/bin/install_webkit_wsl.ps1 +33 -0
  11. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_beta_linux.sh +42 -0
  12. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_beta_mac.sh +13 -0
  13. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_beta_win.ps1 +24 -0
  14. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_stable_linux.sh +42 -0
  15. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_stable_mac.sh +12 -0
  16. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_stable_win.ps1 +24 -0
  17. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_beta_linux.sh +48 -0
  18. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_beta_mac.sh +11 -0
  19. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_beta_win.ps1 +23 -0
  20. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_dev_linux.sh +48 -0
  21. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_dev_mac.sh +11 -0
  22. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1 +23 -0
  23. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_stable_linux.sh +48 -0
  24. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_stable_mac.sh +11 -0
  25. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_stable_win.ps1 +24 -0
  26. package/vendor/playwright-cli/node_modules/playwright-core/browsers.json +81 -0
  27. package/vendor/playwright-cli/node_modules/playwright-core/cli.js +21 -0
  28. package/vendor/playwright-cli/node_modules/playwright-core/index.d.ts +17 -0
  29. package/vendor/playwright-cli/node_modules/playwright-core/index.js +32 -0
  30. package/vendor/playwright-cli/node_modules/playwright-core/index.mjs +28 -0
  31. package/vendor/playwright-cli/node_modules/playwright-core/lib/androidServerImpl.js +65 -0
  32. package/vendor/playwright-cli/node_modules/playwright-core/lib/bootstrap.js +77 -0
  33. package/vendor/playwright-cli/node_modules/playwright-core/lib/browserServerImpl.js +120 -0
  34. package/vendor/playwright-cli/node_modules/playwright-core/lib/cli/driver.js +98 -0
  35. package/vendor/playwright-cli/node_modules/playwright-core/lib/cli/program.js +597 -0
  36. package/vendor/playwright-cli/node_modules/playwright-core/lib/cli/programWithTestStub.js +74 -0
  37. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/android.js +361 -0
  38. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/api.js +137 -0
  39. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/artifact.js +79 -0
  40. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/browser.js +169 -0
  41. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/browserContext.js +583 -0
  42. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/browserType.js +153 -0
  43. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/cdpSession.js +55 -0
  44. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/channelOwner.js +194 -0
  45. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/clientHelper.js +64 -0
  46. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/clientInstrumentation.js +55 -0
  47. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/clientStackTrace.js +69 -0
  48. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/clock.js +68 -0
  49. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/connect.js +143 -0
  50. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/connection.js +322 -0
  51. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/consoleMessage.js +61 -0
  52. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/coverage.js +44 -0
  53. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/debugger.js +57 -0
  54. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/dialog.js +56 -0
  55. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/disposable.js +76 -0
  56. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/download.js +62 -0
  57. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/electron.js +138 -0
  58. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/elementHandle.js +281 -0
  59. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/errors.js +77 -0
  60. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/eventEmitter.js +314 -0
  61. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/events.js +103 -0
  62. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/fetch.js +367 -0
  63. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/fileChooser.js +46 -0
  64. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/fileUtils.js +34 -0
  65. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/frame.js +404 -0
  66. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/harRouter.js +99 -0
  67. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/input.js +84 -0
  68. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/jsHandle.js +105 -0
  69. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/jsonPipe.js +39 -0
  70. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/localUtils.js +60 -0
  71. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/locator.js +367 -0
  72. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/network.js +750 -0
  73. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/page.js +729 -0
  74. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/platform.js +77 -0
  75. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/playwright.js +71 -0
  76. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/screencast.js +48 -0
  77. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/selectors.js +57 -0
  78. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/stream.js +39 -0
  79. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/timeoutSettings.js +79 -0
  80. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/tracing.js +126 -0
  81. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/types.js +28 -0
  82. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/video.js +68 -0
  83. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/waiter.js +142 -0
  84. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/webError.js +39 -0
  85. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/worker.js +85 -0
  86. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/writableStream.js +39 -0
  87. package/vendor/playwright-cli/node_modules/playwright-core/lib/coreBundle.js +68170 -0
  88. package/vendor/playwright-cli/node_modules/playwright-core/lib/electron/loader.js +67 -0
  89. package/vendor/playwright-cli/node_modules/playwright-core/lib/entry/cliDaemon.js +5 -0
  90. package/vendor/playwright-cli/node_modules/playwright-core/lib/entry/dashboardApp.js +3 -0
  91. package/vendor/playwright-cli/node_modules/playwright-core/lib/entry/mcp.js +10 -0
  92. package/vendor/playwright-cli/node_modules/playwright-core/lib/entry/oopBrowserDownload.js +3 -0
  93. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/bindingsControllerSource.js +28 -0
  94. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/clockSource.js +28 -0
  95. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/injectedScriptSource.js +28 -0
  96. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/pollingRecorderSource.js +28 -0
  97. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/storageScriptSource.js +28 -0
  98. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/utilityScriptSource.js +28 -0
  99. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/webSocketMockSource.js +336 -0
  100. package/vendor/playwright-cli/node_modules/playwright-core/lib/inProcessFactory.js +60 -0
  101. package/vendor/playwright-cli/node_modules/playwright-core/lib/inprocess.js +3 -0
  102. package/vendor/playwright-cli/node_modules/playwright-core/lib/mcpBundle.js +81 -0
  103. package/vendor/playwright-cli/node_modules/playwright-core/lib/mcpBundleImpl/index.js +91 -0
  104. package/vendor/playwright-cli/node_modules/playwright-core/lib/outofprocess.js +76 -0
  105. package/vendor/playwright-cli/node_modules/playwright-core/lib/package.js +50 -0
  106. package/vendor/playwright-cli/node_modules/playwright-core/lib/protocol/serializers.js +197 -0
  107. package/vendor/playwright-cli/node_modules/playwright-core/lib/protocol/validator.js +3034 -0
  108. package/vendor/playwright-cli/node_modules/playwright-core/lib/protocol/validatorPrimitives.js +193 -0
  109. package/vendor/playwright-cli/node_modules/playwright-core/lib/remote/playwrightConnection.js +131 -0
  110. package/vendor/playwright-cli/node_modules/playwright-core/lib/remote/playwrightPipeServer.js +100 -0
  111. package/vendor/playwright-cli/node_modules/playwright-core/lib/remote/playwrightServer.js +339 -0
  112. package/vendor/playwright-cli/node_modules/playwright-core/lib/remote/playwrightWebSocketServer.js +73 -0
  113. package/vendor/playwright-cli/node_modules/playwright-core/lib/remote/serverTransport.js +96 -0
  114. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/android/android.js +465 -0
  115. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/android/backendAdb.js +177 -0
  116. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/artifact.js +127 -0
  117. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiBrowser.js +571 -0
  118. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiChromium.js +162 -0
  119. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiConnection.js +213 -0
  120. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiDeserializer.js +116 -0
  121. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiExecutionContext.js +267 -0
  122. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiFirefox.js +128 -0
  123. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiInput.js +146 -0
  124. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiNetworkManager.js +411 -0
  125. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiOverCdp.js +102 -0
  126. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiPage.js +599 -0
  127. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiPdf.js +106 -0
  128. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
  129. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiKeyboard.js +256 -0
  130. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiProtocol.js +24 -0
  131. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiProtocolCore.js +180 -0
  132. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiProtocolPermissions.js +42 -0
  133. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiSerializer.js +148 -0
  134. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/firefoxPrefs.js +261 -0
  135. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/browser.js +223 -0
  136. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/browserContext.js +703 -0
  137. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/browserType.js +338 -0
  138. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/callLog.js +82 -0
  139. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/appIcon.png +0 -0
  140. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/chromium.js +399 -0
  141. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/chromiumSwitches.js +104 -0
  142. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crBrowser.js +532 -0
  143. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crConnection.js +197 -0
  144. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crCoverage.js +235 -0
  145. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crDevTools.js +111 -0
  146. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crDragDrop.js +131 -0
  147. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crExecutionContext.js +146 -0
  148. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crInput.js +187 -0
  149. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crNetworkManager.js +708 -0
  150. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crPage.js +1004 -0
  151. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crPdf.js +121 -0
  152. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crProtocolHelper.js +145 -0
  153. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crServiceWorker.js +137 -0
  154. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/defaultFontFamilies.js +162 -0
  155. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/protocol.d.js +16 -0
  156. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/clock.js +149 -0
  157. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/csharp.js +327 -0
  158. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/java.js +274 -0
  159. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/javascript.js +247 -0
  160. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/jsonl.js +52 -0
  161. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/language.js +132 -0
  162. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/languages.js +68 -0
  163. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/python.js +279 -0
  164. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/types.js +16 -0
  165. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/console.js +61 -0
  166. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/cookieStore.js +206 -0
  167. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/debugController.js +197 -0
  168. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/debugger.js +120 -0
  169. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/deviceDescriptors.js +39 -0
  170. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/deviceDescriptorsSource.json +1779 -0
  171. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dialog.js +116 -0
  172. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/androidDispatcher.js +325 -0
  173. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/artifactDispatcher.js +118 -0
  174. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/browserContextDispatcher.js +381 -0
  175. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/browserDispatcher.js +124 -0
  176. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/browserTypeDispatcher.js +71 -0
  177. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/cdpSessionDispatcher.js +47 -0
  178. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/debugControllerDispatcher.js +78 -0
  179. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/debuggerDispatcher.js +80 -0
  180. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/dialogDispatcher.js +47 -0
  181. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/dispatcher.js +364 -0
  182. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/disposableDispatcher.js +39 -0
  183. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/electronDispatcher.js +90 -0
  184. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/elementHandlerDispatcher.js +181 -0
  185. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/frameDispatcher.js +227 -0
  186. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/jsHandleDispatcher.js +85 -0
  187. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/jsonPipeDispatcher.js +58 -0
  188. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/localUtilsDispatcher.js +185 -0
  189. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/networkDispatchers.js +214 -0
  190. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/pageDispatcher.js +434 -0
  191. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/playwrightDispatcher.js +108 -0
  192. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/streamDispatcher.js +67 -0
  193. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/tracingDispatcher.js +68 -0
  194. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/webSocketRouteDispatcher.js +164 -0
  195. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/writableStreamDispatcher.js +79 -0
  196. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/disposable.js +41 -0
  197. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dom.js +823 -0
  198. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/download.js +71 -0
  199. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/electron/electron.js +272 -0
  200. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/electron/loader.js +115 -0
  201. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/errors.js +69 -0
  202. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/fetch.js +621 -0
  203. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/fileChooser.js +43 -0
  204. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/fileUploadUtils.js +84 -0
  205. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffBrowser.js +415 -0
  206. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffConnection.js +142 -0
  207. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffExecutionContext.js +150 -0
  208. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffInput.js +175 -0
  209. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffNetworkManager.js +256 -0
  210. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffPage.js +495 -0
  211. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/firefox.js +114 -0
  212. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/protocol.d.js +16 -0
  213. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/formData.js +147 -0
  214. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/frameSelectors.js +160 -0
  215. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/frames.js +1495 -0
  216. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/har/harRecorder.js +147 -0
  217. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/har/harTracer.js +608 -0
  218. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/harBackend.js +157 -0
  219. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/helper.js +96 -0
  220. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/index.js +58 -0
  221. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/input.js +277 -0
  222. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/instrumentation.js +72 -0
  223. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/javascript.js +291 -0
  224. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/launchApp.js +127 -0
  225. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/localUtils.js +214 -0
  226. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/macEditingCommands.js +143 -0
  227. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/network.js +668 -0
  228. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/page.js +884 -0
  229. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/pipeTransport.js +89 -0
  230. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/playwright.js +69 -0
  231. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/progress.js +136 -0
  232. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/protocolError.js +52 -0
  233. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/chat.js +161 -0
  234. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/recorderApp.js +367 -0
  235. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/recorderRunner.js +138 -0
  236. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/recorderSignalProcessor.js +83 -0
  237. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/recorderUtils.js +157 -0
  238. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/throttledFile.js +57 -0
  239. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder.js +540 -0
  240. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/registry/browserFetcher.js +177 -0
  241. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/registry/dependencies.js +371 -0
  242. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/registry/index.js +1395 -0
  243. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/registry/nativeDeps.js +1281 -0
  244. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/registry/oopDownloadBrowserMain.js +127 -0
  245. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/screencast.js +216 -0
  246. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/screenshotter.js +333 -0
  247. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/selectors.js +112 -0
  248. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/socksClientCertificatesInterceptor.js +383 -0
  249. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/socksInterceptor.js +95 -0
  250. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/trace/recorder/snapshotter.js +147 -0
  251. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/trace/recorder/snapshotterInjected.js +561 -0
  252. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/trace/recorder/tracing.js +607 -0
  253. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/trace/viewer/traceViewer.js +244 -0
  254. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/transport.js +181 -0
  255. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/types.js +28 -0
  256. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/usKeyboardLayout.js +152 -0
  257. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/ascii.js +44 -0
  258. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/comparators.js +139 -0
  259. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/crypto.js +216 -0
  260. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/debug.js +42 -0
  261. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/debugLogger.js +122 -0
  262. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/disposable.js +32 -0
  263. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/env.js +73 -0
  264. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/eventsHelper.js +41 -0
  265. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/expectUtils.js +123 -0
  266. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/fileUtils.js +191 -0
  267. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/happyEyeballs.js +207 -0
  268. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/hostPlatform.js +123 -0
  269. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/httpServer.js +205 -0
  270. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/image_tools/colorUtils.js +89 -0
  271. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/image_tools/compare.js +109 -0
  272. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/image_tools/imageChannel.js +78 -0
  273. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/image_tools/stats.js +102 -0
  274. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/linuxUtils.js +71 -0
  275. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/network.js +244 -0
  276. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/nodePlatform.js +154 -0
  277. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/pipeTransport.js +84 -0
  278. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/processLauncher.js +243 -0
  279. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/profiler.js +65 -0
  280. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/socksProxy.js +511 -0
  281. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/spawnAsync.js +41 -0
  282. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/task.js +51 -0
  283. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/userAgent.js +98 -0
  284. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/wsServer.js +121 -0
  285. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/zipFile.js +74 -0
  286. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/zones.js +57 -0
  287. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/videoRecorder.js +133 -0
  288. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/protocol.d.js +16 -0
  289. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/webkit.js +108 -0
  290. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkBrowser.js +331 -0
  291. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkConnection.js +144 -0
  292. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkExecutionContext.js +154 -0
  293. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkInput.js +181 -0
  294. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkInterceptableRequest.js +197 -0
  295. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkPage.js +1164 -0
  296. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkProvisionalPage.js +83 -0
  297. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkWorkers.js +106 -0
  298. package/vendor/playwright-cli/node_modules/playwright-core/lib/serverRegistry.js +7343 -0
  299. package/vendor/playwright-cli/node_modules/playwright-core/lib/serverRegistry.js.LICENSE +354 -0
  300. package/vendor/playwright-cli/node_modules/playwright-core/lib/third_party/pixelmatch.js +255 -0
  301. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/browserBackend.js +79 -0
  302. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/common.js +63 -0
  303. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/config.js +41 -0
  304. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/console.js +66 -0
  305. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/context.js +290 -0
  306. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/cookies.js +152 -0
  307. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/devtools.js +69 -0
  308. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/dialogs.js +59 -0
  309. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/evaluate.js +64 -0
  310. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/files.js +60 -0
  311. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/form.js +64 -0
  312. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/keyboard.js +155 -0
  313. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/logFile.js +95 -0
  314. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/mouse.js +168 -0
  315. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/navigate.js +106 -0
  316. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/network.js +135 -0
  317. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/pdf.js +48 -0
  318. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/response.js +302 -0
  319. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/route.js +140 -0
  320. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/runCode.js +76 -0
  321. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/screenshot.js +88 -0
  322. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/sessionLog.js +74 -0
  323. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/snapshot.js +208 -0
  324. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/storage.js +67 -0
  325. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/tab.js +445 -0
  326. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/tabs.js +67 -0
  327. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/tool.js +47 -0
  328. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/tools.js +102 -0
  329. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/tracing.js +75 -0
  330. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/utils.js +83 -0
  331. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/verify.js +151 -0
  332. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/video.js +89 -0
  333. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/wait.js +63 -0
  334. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/webstorage.js +223 -0
  335. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/channelSessions.js +141 -0
  336. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/cli.js +6 -0
  337. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/help.json +679 -0
  338. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/minimist.js +128 -0
  339. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/output.js +343 -0
  340. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/program.js +380 -0
  341. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/registry.js +176 -0
  342. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/session.js +265 -0
  343. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/SKILL.md +388 -0
  344. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
  345. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
  346. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
  347. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/running-code.md +241 -0
  348. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/session-management.md +225 -0
  349. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/spec-driven-testing.md +305 -0
  350. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/storage-state.md +275 -0
  351. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/test-generation.md +134 -0
  352. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/tracing.md +139 -0
  353. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/video-recording.md +143 -0
  354. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-daemon/command.js +73 -0
  355. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-daemon/commands.js +933 -0
  356. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-daemon/daemon.js +178 -0
  357. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-daemon/helpGenerator.js +173 -0
  358. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-daemon/program.js +118 -0
  359. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/dashboard/appIcon.png +0 -0
  360. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/dashboard/dashboardApp.js +286 -0
  361. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/dashboard/dashboardController.js +296 -0
  362. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/exports.js +60 -0
  363. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/browserFactory.js +233 -0
  364. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/cdpRelay.js +356 -0
  365. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/cli-stub.js +7 -0
  366. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/config.d.js +16 -0
  367. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/config.js +401 -0
  368. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/configIni.js +189 -0
  369. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/extensionContextFactory.js +59 -0
  370. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/index.js +62 -0
  371. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/log.js +35 -0
  372. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/program.js +107 -0
  373. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/protocol.js +28 -0
  374. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/watchdog.js +44 -0
  375. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/SKILL.md +171 -0
  376. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/installSkill.js +48 -0
  377. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceActions.js +142 -0
  378. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceAttachments.js +69 -0
  379. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceCli.js +80 -0
  380. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceConsole.js +97 -0
  381. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceErrors.js +55 -0
  382. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceOpen.js +69 -0
  383. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceParser.js +96 -0
  384. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceRequests.js +158 -0
  385. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceScreenshot.js +68 -0
  386. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceSnapshot.js +149 -0
  387. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceUtils.js +135 -0
  388. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/connect.js +32 -0
  389. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/extension.js +78 -0
  390. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/mcp/http.js +152 -0
  391. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/mcp/server.js +230 -0
  392. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/mcp/tool.js +47 -0
  393. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/socketConnection.js +108 -0
  394. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/ariaSnapshot.js +455 -0
  395. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/assert.js +31 -0
  396. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/colors.js +72 -0
  397. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/cssParser.js +245 -0
  398. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/cssTokenizer.js +1051 -0
  399. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/formatUtils.js +64 -0
  400. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/headers.js +53 -0
  401. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/imageUtils.js +141 -0
  402. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/locatorGenerators.js +689 -0
  403. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/locatorParser.js +176 -0
  404. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/locatorUtils.js +81 -0
  405. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/lruCache.js +51 -0
  406. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/manualPromise.js +114 -0
  407. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/mimeType.js +464 -0
  408. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/multimap.js +80 -0
  409. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/protocolFormatter.js +81 -0
  410. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/protocolMetainfo.js +342 -0
  411. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/rtti.js +43 -0
  412. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/selectorParser.js +386 -0
  413. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/semaphore.js +54 -0
  414. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/stackTrace.js +158 -0
  415. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/stringUtils.js +204 -0
  416. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/time.js +49 -0
  417. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/timeoutRunner.js +66 -0
  418. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/entries.js +16 -0
  419. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/snapshotRenderer.js +502 -0
  420. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/snapshotServer.js +120 -0
  421. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/snapshotStorage.js +89 -0
  422. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/traceLoader.js +131 -0
  423. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/traceModel.js +366 -0
  424. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/traceModernizer.js +401 -0
  425. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/traceUtils.js +58 -0
  426. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV3.js +16 -0
  427. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV4.js +16 -0
  428. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV5.js +16 -0
  429. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV6.js +16 -0
  430. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV7.js +16 -0
  431. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV8.js +16 -0
  432. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/types.js +16 -0
  433. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/urlMatch.js +243 -0
  434. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/utilityScriptSerializers.js +262 -0
  435. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/yaml.js +84 -0
  436. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils.js +113 -0
  437. package/vendor/playwright-cli/node_modules/playwright-core/lib/utilsBundle.js +86478 -0
  438. package/vendor/playwright-cli/node_modules/playwright-core/lib/utilsBundle.js.LICENSE +2058 -0
  439. package/vendor/playwright-cli/node_modules/playwright-core/lib/utilsBundleImpl/index.js +218 -0
  440. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf +0 -0
  441. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg +1 -0
  442. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg +1 -0
  443. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg +1 -0
  444. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/index-BY2S1tHT.css +1 -0
  445. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/index-DpEq2p62.js +52 -0
  446. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/safari-na3_-uQk.svg +1 -0
  447. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/index.html +29 -0
  448. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/playwright-logo.svg +24 -0
  449. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/htmlReport/index.html +16 -0
  450. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/htmlReport/report.css +1 -0
  451. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/htmlReport/report.js +72 -0
  452. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-BHYmBp6h.js +32 -0
  453. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-DYBRYzYX.css +1 -0
  454. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  455. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/assets/index-4ZiSSCmn.css +1 -0
  456. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/assets/index-DA10QRaq.js +193 -0
  457. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/index.html +29 -0
  458. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/playwright-logo.svg +9 -0
  459. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-BRrOnXSS.js +32 -0
  460. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-BtGnd8kr.js +32 -0
  461. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-CnvO0fko.js +32 -0
  462. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-BkMbME_o.js +262 -0
  463. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-BoN8TZYy.js +262 -0
  464. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-CN3cwLGD.js +262 -0
  465. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/urlMatch-BYQrIQwR.js +1 -0
  466. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/xtermModule-CsJ4vdCR.js +9 -0
  467. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/codeMirrorModule.DYBRYzYX.css +1 -0
  468. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  469. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.B4dS75f0.css +1 -0
  470. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.BDKsFU3c.css +1 -0
  471. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.DcQiWcKS.css +1 -0
  472. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/index.B2ffe31o.js +2 -0
  473. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/index.CzXZzn5A.css +1 -0
  474. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/index.Df3uWWXm.js +2 -0
  475. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/index.PqVYgODr.js +2 -0
  476. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/index.html +44 -0
  477. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/manifest.webmanifest +16 -0
  478. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/playwright-logo.svg +9 -0
  479. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/snapshot.html +10 -0
  480. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/snapshot.v8KI4P3m.js +2 -0
  481. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/sw.bundle.js +5 -0
  482. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.B-IwVgWY.js +6 -0
  483. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.BZQ54Kgt.css +1 -0
  484. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.Btcz36p_.css +1 -0
  485. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.CmAqMvmy.js +6 -0
  486. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.html +18 -0
  487. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.u9Eas4CP.js +6 -0
  488. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/xtermModule.DYP7pi_n.css +32 -0
  489. package/vendor/playwright-cli/node_modules/playwright-core/lib/xdg-open +1066 -0
  490. package/vendor/playwright-cli/node_modules/playwright-core/lib/zipBundle.js +34 -0
  491. package/vendor/playwright-cli/node_modules/playwright-core/lib/zipBundleImpl.js +5 -0
  492. package/vendor/playwright-cli/node_modules/playwright-core/package.json +34 -0
  493. package/vendor/playwright-cli/node_modules/playwright-core/types/protocol.d.ts +24565 -0
  494. package/vendor/playwright-cli/node_modules/playwright-core/types/structs.d.ts +45 -0
  495. package/vendor/playwright-cli/node_modules/playwright-core/types/types.d.ts +23879 -0
  496. package/vendor/playwright-cli/package.json +6 -0
  497. package/vendor/playwright-cli/playwright-cli.js +50 -0
@@ -0,0 +1,2058 @@
1
+ packages/playwright-core/lib/utilsBundle.js
2
+
3
+ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
4
+
5
+ The following npm packages are inlined into this bundle.
6
+
7
+ - @hono/node-server@1.19.11 (https://github.com/honojs/node-server)
8
+ - @modelcontextprotocol/sdk@1.29.0 (https://github.com/modelcontextprotocol/typescript-sdk)
9
+ - agent-base@7.1.4 (https://github.com/TooTallNate/proxy-agents)
10
+ - ajv-formats@3.0.1 (https://github.com/ajv-validator/ajv-formats)
11
+ - ajv@8.18.0 (https://github.com/ajv-validator/ajv)
12
+ - ansi-colors@4.1.3 (https://github.com/doowb/ansi-colors)
13
+ - anymatch@3.1.3 (https://github.com/micromatch/anymatch)
14
+ - balanced-match@1.0.2 (https://github.com/juliangruber/balanced-match)
15
+ - binary-extensions@2.3.0 (https://github.com/sindresorhus/binary-extensions)
16
+ - brace-expansion@1.1.12 (https://github.com/juliangruber/brace-expansion)
17
+ - braces@3.0.3 (https://github.com/micromatch/braces)
18
+ - buffer-crc32@0.2.13 (https://github.com/brianloveswords/buffer-crc32)
19
+ - buffer-from@1.1.2 (https://github.com/LinusU/buffer-from)
20
+ - bytes@3.1.2 (https://github.com/visionmedia/bytes.js)
21
+ - chokidar@3.6.0 (https://github.com/paulmillr/chokidar)
22
+ - colors@1.4.0 (https://github.com/Marak/colors.js)
23
+ - commander@13.1.0 (https://github.com/tj/commander.js)
24
+ - concat-map@0.0.1 (https://github.com/substack/node-concat-map)
25
+ - content-type@1.0.5 (https://github.com/jshttp/content-type)
26
+ - cross-spawn@7.0.6 (https://github.com/moxystudio/node-cross-spawn)
27
+ - debug@4.4.3 (https://github.com/debug-js/debug)
28
+ - define-lazy-prop@2.0.0 (https://github.com/sindresorhus/define-lazy-prop)
29
+ - diff@8.0.4 (https://github.com/kpdecker/jsdiff)
30
+ - dotenv@16.6.1 (https://github.com/motdotla/dotenv)
31
+ - end-of-stream@1.4.5 (https://github.com/mafintosh/end-of-stream)
32
+ - enquirer@2.3.6 (https://github.com/enquirer/enquirer)
33
+ - eventsource-parser@3.0.6 (https://github.com/rexxars/eventsource-parser)
34
+ - eventsource@3.0.7 (git://git@github.com/EventSource/eventsource)
35
+ - fast-deep-equal@3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
36
+ - fast-uri@3.1.0 (https://github.com/fastify/fast-uri)
37
+ - fill-range@7.1.1 (https://github.com/jonschlinkert/fill-range)
38
+ - get-east-asian-width@1.3.0 (https://github.com/sindresorhus/get-east-asian-width)
39
+ - get-stream@5.2.0 (https://github.com/sindresorhus/get-stream)
40
+ - glob-parent@5.1.2 (https://github.com/gulpjs/glob-parent)
41
+ - graceful-fs@4.2.10 (https://github.com/isaacs/node-graceful-fs)
42
+ - has-flag@4.0.0 (https://github.com/sindresorhus/has-flag)
43
+ - https-proxy-agent@7.0.6 (https://github.com/TooTallNate/proxy-agents)
44
+ - ini@6.0.0 (https://github.com/npm/ini)
45
+ - ip-address@10.2.0 (https://github.com/beaugunderson/ip-address)
46
+ - is-binary-path@2.1.0 (https://github.com/sindresorhus/is-binary-path)
47
+ - is-docker@2.2.1 (https://github.com/sindresorhus/is-docker)
48
+ - is-extglob@2.1.1 (https://github.com/jonschlinkert/is-extglob)
49
+ - is-glob@4.0.3 (https://github.com/micromatch/is-glob)
50
+ - is-number@7.0.0 (https://github.com/jonschlinkert/is-number)
51
+ - is-wsl@2.2.0 (https://github.com/sindresorhus/is-wsl)
52
+ - isexe@2.0.0 (https://github.com/isaacs/isexe)
53
+ - jpeg-js@0.4.4 (https://github.com/eugeneware/jpeg-js)
54
+ - json-schema-traverse@1.0.0 (https://github.com/epoberezkin/json-schema-traverse)
55
+ - json5@2.2.3 (https://github.com/json5/json5)
56
+ - mime@3.0.0 (https://github.com/broofa/mime)
57
+ - minimatch@3.1.5 (https://github.com/isaacs/minimatch)
58
+ - ms@2.1.3 (https://github.com/vercel/ms)
59
+ - normalize-path@3.0.0 (https://github.com/jonschlinkert/normalize-path)
60
+ - once@1.4.0 (https://github.com/isaacs/once)
61
+ - open@8.4.0 (https://github.com/sindresorhus/open)
62
+ - path-key@3.1.1 (https://github.com/sindresorhus/path-key)
63
+ - pend@1.2.0 (https://github.com/andrewrk/node-pend)
64
+ - picomatch@2.3.2 (https://github.com/micromatch/picomatch)
65
+ - pkce-challenge@5.0.0 (https://github.com/crouchcd/pkce-challenge)
66
+ - pngjs@6.0.0 (https://github.com/lukeapage/pngjs)
67
+ - progress@2.0.3 (https://github.com/visionmedia/node-progress)
68
+ - proxy-from-env@2.0.0 (https://github.com/Rob--W/proxy-from-env)
69
+ - pump@3.0.3 (https://github.com/mafintosh/pump)
70
+ - readdirp@3.6.0 (https://github.com/paulmillr/readdirp)
71
+ - retry@0.12.0 (https://github.com/tim-kos/node-retry)
72
+ - shebang-command@2.0.0 (https://github.com/kevva/shebang-command)
73
+ - shebang-regex@3.0.0 (https://github.com/sindresorhus/shebang-regex)
74
+ - signal-exit@3.0.7 (https://github.com/tapjs/signal-exit)
75
+ - smart-buffer@4.2.0 (https://github.com/JoshGlazebrook/smart-buffer)
76
+ - socks-proxy-agent@8.0.5 (https://github.com/TooTallNate/proxy-agents)
77
+ - socks@2.8.7 (https://github.com/JoshGlazebrook/socks)
78
+ - source-map-support@0.5.21 (https://github.com/evanw/node-source-map-support)
79
+ - source-map@0.6.1 (https://github.com/mozilla/source-map)
80
+ - supports-color@8.1.1 (https://github.com/chalk/supports-color)
81
+ - to-regex-range@5.0.1 (https://github.com/micromatch/to-regex-range)
82
+ - which@2.0.2 (https://github.com/isaacs/node-which)
83
+ - wrappy@1.0.2 (https://github.com/npm/wrappy)
84
+ - ws@8.17.1 (https://github.com/websockets/ws)
85
+ - yaml@2.8.3 (https://github.com/eemeli/yaml)
86
+ - yauzl@3.2.1 (https://github.com/thejoshwolfe/yauzl)
87
+ - yazl@2.5.1 (https://github.com/thejoshwolfe/yazl)
88
+ - zod-to-json-schema@3.25.1 (https://github.com/StefanTerdell/zod-to-json-schema)
89
+ - zod@4.3.6 (https://github.com/colinhacks/zod)
90
+
91
+ %% @hono/node-server@1.19.11 NOTICES AND INFORMATION BEGIN HERE
92
+ =========================================
93
+ MIT License
94
+
95
+ Copyright (c) 2022 - present, Yusuke Wada and Hono contributors
96
+
97
+ Permission is hereby granted, free of charge, to any person obtaining a copy
98
+ of this software and associated documentation files (the "Software"), to deal
99
+ in the Software without restriction, including without limitation the rights
100
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
101
+ copies of the Software, and to permit persons to whom the Software is
102
+ furnished to do so, subject to the following conditions:
103
+
104
+ The above copyright notice and this permission notice shall be included in all
105
+ copies or substantial portions of the Software.
106
+
107
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
108
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
109
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
110
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
111
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
112
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
113
+ SOFTWARE.
114
+ =========================================
115
+ END OF @hono/node-server@1.19.11 NOTICES AND INFORMATION
116
+
117
+ %% @modelcontextprotocol/sdk@1.29.0 NOTICES AND INFORMATION BEGIN HERE
118
+ =========================================
119
+ MIT License
120
+
121
+ Copyright (c) 2024 Anthropic, PBC
122
+
123
+ Permission is hereby granted, free of charge, to any person obtaining a copy
124
+ of this software and associated documentation files (the "Software"), to deal
125
+ in the Software without restriction, including without limitation the rights
126
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
127
+ copies of the Software, and to permit persons to whom the Software is
128
+ furnished to do so, subject to the following conditions:
129
+
130
+ The above copyright notice and this permission notice shall be included in all
131
+ copies or substantial portions of the Software.
132
+
133
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
134
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
135
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
136
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
137
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
138
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
139
+ SOFTWARE.
140
+ =========================================
141
+ END OF @modelcontextprotocol/sdk@1.29.0 NOTICES AND INFORMATION
142
+
143
+ %% agent-base@7.1.4 NOTICES AND INFORMATION BEGIN HERE
144
+ =========================================
145
+ (The MIT License)
146
+
147
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
148
+
149
+ Permission is hereby granted, free of charge, to any person obtaining
150
+ a copy of this software and associated documentation files (the
151
+ 'Software'), to deal in the Software without restriction, including
152
+ without limitation the rights to use, copy, modify, merge, publish,
153
+ distribute, sublicense, and/or sell copies of the Software, and to
154
+ permit persons to whom the Software is furnished to do so, subject to
155
+ the following conditions:
156
+
157
+ The above copyright notice and this permission notice shall be
158
+ included in all copies or substantial portions of the Software.
159
+
160
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
161
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
162
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
163
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
164
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
165
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
166
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
167
+ =========================================
168
+ END OF agent-base@7.1.4 NOTICES AND INFORMATION
169
+
170
+ %% ajv-formats@3.0.1 NOTICES AND INFORMATION BEGIN HERE
171
+ =========================================
172
+ MIT License
173
+
174
+ Copyright (c) 2020 Evgeny Poberezkin
175
+
176
+ Permission is hereby granted, free of charge, to any person obtaining a copy
177
+ of this software and associated documentation files (the "Software"), to deal
178
+ in the Software without restriction, including without limitation the rights
179
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
180
+ copies of the Software, and to permit persons to whom the Software is
181
+ furnished to do so, subject to the following conditions:
182
+
183
+ The above copyright notice and this permission notice shall be included in all
184
+ copies or substantial portions of the Software.
185
+
186
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
187
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
188
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
189
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
190
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
191
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
192
+ SOFTWARE.
193
+ =========================================
194
+ END OF ajv-formats@3.0.1 NOTICES AND INFORMATION
195
+
196
+ %% ajv@8.18.0 NOTICES AND INFORMATION BEGIN HERE
197
+ =========================================
198
+ The MIT License (MIT)
199
+
200
+ Copyright (c) 2015-2021 Evgeny Poberezkin
201
+
202
+ Permission is hereby granted, free of charge, to any person obtaining a copy
203
+ of this software and associated documentation files (the "Software"), to deal
204
+ in the Software without restriction, including without limitation the rights
205
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
206
+ copies of the Software, and to permit persons to whom the Software is
207
+ furnished to do so, subject to the following conditions:
208
+
209
+ The above copyright notice and this permission notice shall be included in all
210
+ copies or substantial portions of the Software.
211
+
212
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
213
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
214
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
215
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
216
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
217
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
218
+ SOFTWARE.
219
+ =========================================
220
+ END OF ajv@8.18.0 NOTICES AND INFORMATION
221
+
222
+ %% ansi-colors@4.1.3 NOTICES AND INFORMATION BEGIN HERE
223
+ =========================================
224
+ The MIT License (MIT)
225
+
226
+ Copyright (c) 2015-present, Brian Woodward.
227
+
228
+ Permission is hereby granted, free of charge, to any person obtaining a copy
229
+ of this software and associated documentation files (the "Software"), to deal
230
+ in the Software without restriction, including without limitation the rights
231
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
232
+ copies of the Software, and to permit persons to whom the Software is
233
+ furnished to do so, subject to the following conditions:
234
+
235
+ The above copyright notice and this permission notice shall be included in
236
+ all copies or substantial portions of the Software.
237
+
238
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
239
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
240
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
241
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
242
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
243
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
244
+ THE SOFTWARE.
245
+ =========================================
246
+ END OF ansi-colors@4.1.3 NOTICES AND INFORMATION
247
+
248
+ %% anymatch@3.1.3 NOTICES AND INFORMATION BEGIN HERE
249
+ =========================================
250
+ The ISC License
251
+
252
+ Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)
253
+
254
+ Permission to use, copy, modify, and/or distribute this software for any
255
+ purpose with or without fee is hereby granted, provided that the above
256
+ copyright notice and this permission notice appear in all copies.
257
+
258
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
259
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
260
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
261
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
262
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
263
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
264
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
265
+ =========================================
266
+ END OF anymatch@3.1.3 NOTICES AND INFORMATION
267
+
268
+ %% balanced-match@1.0.2 NOTICES AND INFORMATION BEGIN HERE
269
+ =========================================
270
+ (MIT)
271
+
272
+ Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
273
+
274
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
275
+ this software and associated documentation files (the "Software"), to deal in
276
+ the Software without restriction, including without limitation the rights to
277
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
278
+ of the Software, and to permit persons to whom the Software is furnished to do
279
+ so, subject to the following conditions:
280
+
281
+ The above copyright notice and this permission notice shall be included in all
282
+ copies or substantial portions of the Software.
283
+
284
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
285
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
286
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
287
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
288
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
289
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
290
+ SOFTWARE.
291
+ =========================================
292
+ END OF balanced-match@1.0.2 NOTICES AND INFORMATION
293
+
294
+ %% binary-extensions@2.3.0 NOTICES AND INFORMATION BEGIN HERE
295
+ =========================================
296
+ MIT License
297
+
298
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
299
+ Copyright (c) Paul Miller (https://paulmillr.com)
300
+
301
+ 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:
302
+
303
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
304
+
305
+ 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.
306
+ =========================================
307
+ END OF binary-extensions@2.3.0 NOTICES AND INFORMATION
308
+
309
+ %% brace-expansion@1.1.12 NOTICES AND INFORMATION BEGIN HERE
310
+ =========================================
311
+ MIT License
312
+
313
+ Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
314
+
315
+ Permission is hereby granted, free of charge, to any person obtaining a copy
316
+ of this software and associated documentation files (the "Software"), to deal
317
+ in the Software without restriction, including without limitation the rights
318
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
319
+ copies of the Software, and to permit persons to whom the Software is
320
+ furnished to do so, subject to the following conditions:
321
+
322
+ The above copyright notice and this permission notice shall be included in all
323
+ copies or substantial portions of the Software.
324
+
325
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
326
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
327
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
328
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
329
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
330
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
331
+ SOFTWARE.
332
+ =========================================
333
+ END OF brace-expansion@1.1.12 NOTICES AND INFORMATION
334
+
335
+ %% braces@3.0.3 NOTICES AND INFORMATION BEGIN HERE
336
+ =========================================
337
+ The MIT License (MIT)
338
+
339
+ Copyright (c) 2014-present, Jon Schlinkert.
340
+
341
+ Permission is hereby granted, free of charge, to any person obtaining a copy
342
+ of this software and associated documentation files (the "Software"), to deal
343
+ in the Software without restriction, including without limitation the rights
344
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
345
+ copies of the Software, and to permit persons to whom the Software is
346
+ furnished to do so, subject to the following conditions:
347
+
348
+ The above copyright notice and this permission notice shall be included in
349
+ all copies or substantial portions of the Software.
350
+
351
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
352
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
353
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
354
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
355
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
356
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
357
+ THE SOFTWARE.
358
+ =========================================
359
+ END OF braces@3.0.3 NOTICES AND INFORMATION
360
+
361
+ %% buffer-crc32@0.2.13 NOTICES AND INFORMATION BEGIN HERE
362
+ =========================================
363
+ The MIT License
364
+
365
+ Copyright (c) 2013 Brian J. Brennan
366
+
367
+ Permission is hereby granted, free of charge, to any person obtaining a copy
368
+ of this software and associated documentation files (the "Software"), to deal in
369
+ the Software without restriction, including without limitation the rights to use,
370
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
371
+ Software, and to permit persons to whom the Software is furnished to do so,
372
+ subject to the following conditions:
373
+
374
+ The above copyright notice and this permission notice shall be included in all
375
+ copies or substantial portions of the Software.
376
+
377
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
378
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
379
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
380
+ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
381
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
382
+ =========================================
383
+ END OF buffer-crc32@0.2.13 NOTICES AND INFORMATION
384
+
385
+ %% buffer-from@1.1.2 NOTICES AND INFORMATION BEGIN HERE
386
+ =========================================
387
+ MIT License
388
+
389
+ Copyright (c) 2016, 2018 Linus Unnebäck
390
+
391
+ Permission is hereby granted, free of charge, to any person obtaining a copy
392
+ of this software and associated documentation files (the "Software"), to deal
393
+ in the Software without restriction, including without limitation the rights
394
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
395
+ copies of the Software, and to permit persons to whom the Software is
396
+ furnished to do so, subject to the following conditions:
397
+
398
+ The above copyright notice and this permission notice shall be included in all
399
+ copies or substantial portions of the Software.
400
+
401
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
402
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
403
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
404
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
405
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
406
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
407
+ SOFTWARE.
408
+ =========================================
409
+ END OF buffer-from@1.1.2 NOTICES AND INFORMATION
410
+
411
+ %% bytes@3.1.2 NOTICES AND INFORMATION BEGIN HERE
412
+ =========================================
413
+ (The MIT License)
414
+
415
+ Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
416
+ Copyright (c) 2015 Jed Watson <jed.watson@me.com>
417
+
418
+ Permission is hereby granted, free of charge, to any person obtaining
419
+ a copy of this software and associated documentation files (the
420
+ 'Software'), to deal in the Software without restriction, including
421
+ without limitation the rights to use, copy, modify, merge, publish,
422
+ distribute, sublicense, and/or sell copies of the Software, and to
423
+ permit persons to whom the Software is furnished to do so, subject to
424
+ the following conditions:
425
+
426
+ The above copyright notice and this permission notice shall be
427
+ included in all copies or substantial portions of the Software.
428
+
429
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
430
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
431
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
432
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
433
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
434
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
435
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
436
+ =========================================
437
+ END OF bytes@3.1.2 NOTICES AND INFORMATION
438
+
439
+ %% chokidar@3.6.0 NOTICES AND INFORMATION BEGIN HERE
440
+ =========================================
441
+ The MIT License (MIT)
442
+
443
+ Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
444
+
445
+ Permission is hereby granted, free of charge, to any person obtaining a copy
446
+ of this software and associated documentation files (the “Software”), to deal
447
+ in the Software without restriction, including without limitation the rights
448
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
449
+ copies of the Software, and to permit persons to whom the Software is
450
+ furnished to do so, subject to the following conditions:
451
+
452
+ The above copyright notice and this permission notice shall be included in
453
+ all copies or substantial portions of the Software.
454
+
455
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
456
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
457
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
458
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
459
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
460
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
461
+ THE SOFTWARE.
462
+ =========================================
463
+ END OF chokidar@3.6.0 NOTICES AND INFORMATION
464
+
465
+ %% colors@1.4.0 NOTICES AND INFORMATION BEGIN HERE
466
+ =========================================
467
+ MIT License
468
+
469
+ Original Library
470
+ - Copyright (c) Marak Squires
471
+
472
+ Additional Functionality
473
+ - Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
474
+
475
+ Permission is hereby granted, free of charge, to any person obtaining a copy
476
+ of this software and associated documentation files (the "Software"), to deal
477
+ in the Software without restriction, including without limitation the rights
478
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
479
+ copies of the Software, and to permit persons to whom the Software is
480
+ furnished to do so, subject to the following conditions:
481
+
482
+ The above copyright notice and this permission notice shall be included in
483
+ all copies or substantial portions of the Software.
484
+
485
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
486
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
487
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
488
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
489
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
490
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
491
+ THE SOFTWARE.
492
+ =========================================
493
+ END OF colors@1.4.0 NOTICES AND INFORMATION
494
+
495
+ %% commander@13.1.0 NOTICES AND INFORMATION BEGIN HERE
496
+ =========================================
497
+ (The MIT License)
498
+
499
+ Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
500
+
501
+ Permission is hereby granted, free of charge, to any person obtaining
502
+ a copy of this software and associated documentation files (the
503
+ 'Software'), to deal in the Software without restriction, including
504
+ without limitation the rights to use, copy, modify, merge, publish,
505
+ distribute, sublicense, and/or sell copies of the Software, and to
506
+ permit persons to whom the Software is furnished to do so, subject to
507
+ the following conditions:
508
+
509
+ The above copyright notice and this permission notice shall be
510
+ included in all copies or substantial portions of the Software.
511
+
512
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
513
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
514
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
515
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
516
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
517
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
518
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
519
+ =========================================
520
+ END OF commander@13.1.0 NOTICES AND INFORMATION
521
+
522
+ %% concat-map@0.0.1 NOTICES AND INFORMATION BEGIN HERE
523
+ =========================================
524
+ This software is released under the MIT license:
525
+
526
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
527
+ this software and associated documentation files (the "Software"), to deal in
528
+ the Software without restriction, including without limitation the rights to
529
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
530
+ the Software, and to permit persons to whom the Software is furnished to do so,
531
+ subject to the following conditions:
532
+
533
+ The above copyright notice and this permission notice shall be included in all
534
+ copies or substantial portions of the Software.
535
+
536
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
537
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
538
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
539
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
540
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
541
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
542
+ =========================================
543
+ END OF concat-map@0.0.1 NOTICES AND INFORMATION
544
+
545
+ %% content-type@1.0.5 NOTICES AND INFORMATION BEGIN HERE
546
+ =========================================
547
+ (The MIT License)
548
+
549
+ Copyright (c) 2015 Douglas Christopher Wilson
550
+
551
+ Permission is hereby granted, free of charge, to any person obtaining
552
+ a copy of this software and associated documentation files (the
553
+ 'Software'), to deal in the Software without restriction, including
554
+ without limitation the rights to use, copy, modify, merge, publish,
555
+ distribute, sublicense, and/or sell copies of the Software, and to
556
+ permit persons to whom the Software is furnished to do so, subject to
557
+ the following conditions:
558
+
559
+ The above copyright notice and this permission notice shall be
560
+ included in all copies or substantial portions of the Software.
561
+
562
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
563
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
564
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
565
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
566
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
567
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
568
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
569
+ =========================================
570
+ END OF content-type@1.0.5 NOTICES AND INFORMATION
571
+
572
+ %% cross-spawn@7.0.6 NOTICES AND INFORMATION BEGIN HERE
573
+ =========================================
574
+ The MIT License (MIT)
575
+
576
+ Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
577
+
578
+ Permission is hereby granted, free of charge, to any person obtaining a copy
579
+ of this software and associated documentation files (the "Software"), to deal
580
+ in the Software without restriction, including without limitation the rights
581
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
582
+ copies of the Software, and to permit persons to whom the Software is
583
+ furnished to do so, subject to the following conditions:
584
+
585
+ The above copyright notice and this permission notice shall be included in
586
+ all copies or substantial portions of the Software.
587
+
588
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
589
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
590
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
591
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
592
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
593
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
594
+ THE SOFTWARE.
595
+ =========================================
596
+ END OF cross-spawn@7.0.6 NOTICES AND INFORMATION
597
+
598
+ %% debug@4.4.3 NOTICES AND INFORMATION BEGIN HERE
599
+ =========================================
600
+ (The MIT License)
601
+
602
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
603
+ Copyright (c) 2018-2021 Josh Junon
604
+
605
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
606
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
607
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
608
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
609
+ subject to the following conditions:
610
+
611
+ The above copyright notice and this permission notice shall be included in all copies or substantial
612
+ portions of the Software.
613
+
614
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
615
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
616
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
617
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
618
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
619
+ =========================================
620
+ END OF debug@4.4.3 NOTICES AND INFORMATION
621
+
622
+ %% define-lazy-prop@2.0.0 NOTICES AND INFORMATION BEGIN HERE
623
+ =========================================
624
+ MIT License
625
+
626
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
627
+
628
+ 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:
629
+
630
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
631
+
632
+ 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.
633
+ =========================================
634
+ END OF define-lazy-prop@2.0.0 NOTICES AND INFORMATION
635
+
636
+ %% diff@8.0.4 NOTICES AND INFORMATION BEGIN HERE
637
+ =========================================
638
+ BSD 3-Clause License
639
+
640
+ Copyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>
641
+ All rights reserved.
642
+
643
+ Redistribution and use in source and binary forms, with or without
644
+ modification, are permitted provided that the following conditions are met:
645
+
646
+ 1. Redistributions of source code must retain the above copyright notice, this
647
+ list of conditions and the following disclaimer.
648
+
649
+ 2. Redistributions in binary form must reproduce the above copyright notice,
650
+ this list of conditions and the following disclaimer in the documentation
651
+ and/or other materials provided with the distribution.
652
+
653
+ 3. Neither the name of the copyright holder nor the names of its
654
+ contributors may be used to endorse or promote products derived from
655
+ this software without specific prior written permission.
656
+
657
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
658
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
659
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
660
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
661
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
662
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
663
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
664
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
665
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
666
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
667
+ =========================================
668
+ END OF diff@8.0.4 NOTICES AND INFORMATION
669
+
670
+ %% dotenv@16.6.1 NOTICES AND INFORMATION BEGIN HERE
671
+ =========================================
672
+ Copyright (c) 2015, Scott Motte
673
+ All rights reserved.
674
+
675
+ Redistribution and use in source and binary forms, with or without
676
+ modification, are permitted provided that the following conditions are met:
677
+
678
+ * Redistributions of source code must retain the above copyright notice, this
679
+ list of conditions and the following disclaimer.
680
+
681
+ * Redistributions in binary form must reproduce the above copyright notice,
682
+ this list of conditions and the following disclaimer in the documentation
683
+ and/or other materials provided with the distribution.
684
+
685
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
686
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
687
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
688
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
689
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
690
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
691
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
692
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
693
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
694
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
695
+ =========================================
696
+ END OF dotenv@16.6.1 NOTICES AND INFORMATION
697
+
698
+ %% end-of-stream@1.4.5 NOTICES AND INFORMATION BEGIN HERE
699
+ =========================================
700
+ The MIT License (MIT)
701
+
702
+ Copyright (c) 2014 Mathias Buus
703
+
704
+ Permission is hereby granted, free of charge, to any person obtaining a copy
705
+ of this software and associated documentation files (the "Software"), to deal
706
+ in the Software without restriction, including without limitation the rights
707
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
708
+ copies of the Software, and to permit persons to whom the Software is
709
+ furnished to do so, subject to the following conditions:
710
+
711
+ The above copyright notice and this permission notice shall be included in
712
+ all copies or substantial portions of the Software.
713
+
714
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
715
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
716
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
717
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
718
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
719
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
720
+ THE SOFTWARE.
721
+ =========================================
722
+ END OF end-of-stream@1.4.5 NOTICES AND INFORMATION
723
+
724
+ %% enquirer@2.3.6 NOTICES AND INFORMATION BEGIN HERE
725
+ =========================================
726
+ The MIT License (MIT)
727
+
728
+ Copyright (c) 2016-present, Jon Schlinkert.
729
+
730
+ Permission is hereby granted, free of charge, to any person obtaining a copy
731
+ of this software and associated documentation files (the "Software"), to deal
732
+ in the Software without restriction, including without limitation the rights
733
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
734
+ copies of the Software, and to permit persons to whom the Software is
735
+ furnished to do so, subject to the following conditions:
736
+
737
+ The above copyright notice and this permission notice shall be included in
738
+ all copies or substantial portions of the Software.
739
+
740
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
741
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
742
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
743
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
744
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
745
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
746
+ THE SOFTWARE.
747
+ =========================================
748
+ END OF enquirer@2.3.6 NOTICES AND INFORMATION
749
+
750
+ %% eventsource-parser@3.0.6 NOTICES AND INFORMATION BEGIN HERE
751
+ =========================================
752
+ MIT License
753
+
754
+ Copyright (c) 2025 Espen Hovlandsdal <espen@hovlandsdal.com>
755
+
756
+ Permission is hereby granted, free of charge, to any person obtaining a copy
757
+ of this software and associated documentation files (the "Software"), to deal
758
+ in the Software without restriction, including without limitation the rights
759
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
760
+ copies of the Software, and to permit persons to whom the Software is
761
+ furnished to do so, subject to the following conditions:
762
+
763
+ The above copyright notice and this permission notice shall be included in all
764
+ copies or substantial portions of the Software.
765
+
766
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
767
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
768
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
769
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
770
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
771
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
772
+ SOFTWARE.
773
+ =========================================
774
+ END OF eventsource-parser@3.0.6 NOTICES AND INFORMATION
775
+
776
+ %% eventsource@3.0.7 NOTICES AND INFORMATION BEGIN HERE
777
+ =========================================
778
+ The MIT License
779
+
780
+ Copyright (c) EventSource GitHub organisation
781
+
782
+ Permission is hereby granted, free of charge, to any person obtaining
783
+ a copy of this software and associated documentation files (the
784
+ "Software"), to deal in the Software without restriction, including
785
+ without limitation the rights to use, copy, modify, merge, publish,
786
+ distribute, sublicense, and/or sell copies of the Software, and to
787
+ permit persons to whom the Software is furnished to do so, subject to
788
+ the following conditions:
789
+
790
+ The above copyright notice and this permission notice shall be
791
+ included in all copies or substantial portions of the Software.
792
+
793
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
794
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
795
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
796
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
797
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
798
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
799
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
800
+ =========================================
801
+ END OF eventsource@3.0.7 NOTICES AND INFORMATION
802
+
803
+ %% fast-deep-equal@3.1.3 NOTICES AND INFORMATION BEGIN HERE
804
+ =========================================
805
+ MIT License
806
+
807
+ Copyright (c) 2017 Evgeny Poberezkin
808
+
809
+ Permission is hereby granted, free of charge, to any person obtaining a copy
810
+ of this software and associated documentation files (the "Software"), to deal
811
+ in the Software without restriction, including without limitation the rights
812
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
813
+ copies of the Software, and to permit persons to whom the Software is
814
+ furnished to do so, subject to the following conditions:
815
+
816
+ The above copyright notice and this permission notice shall be included in all
817
+ copies or substantial portions of the Software.
818
+
819
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
820
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
821
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
822
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
823
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
824
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
825
+ SOFTWARE.
826
+ =========================================
827
+ END OF fast-deep-equal@3.1.3 NOTICES AND INFORMATION
828
+
829
+ %% fast-uri@3.1.0 NOTICES AND INFORMATION BEGIN HERE
830
+ =========================================
831
+ Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
832
+ Copyright (c) 2021-present The Fastify team
833
+ All rights reserved.
834
+
835
+ The Fastify team members are listed at https://github.com/fastify/fastify#team.
836
+
837
+ Redistribution and use in source and binary forms, with or without
838
+ modification, are permitted provided that the following conditions are met:
839
+ * Redistributions of source code must retain the above copyright
840
+ notice, this list of conditions and the following disclaimer.
841
+ * Redistributions in binary form must reproduce the above copyright
842
+ notice, this list of conditions and the following disclaimer in the
843
+ documentation and/or other materials provided with the distribution.
844
+ * The names of any contributors may not be used to endorse or promote
845
+ products derived from this software without specific prior written
846
+ permission.
847
+
848
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
849
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
850
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
851
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY
852
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
853
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
854
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
855
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
856
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
857
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
858
+
859
+ * * *
860
+
861
+ The complete list of contributors can be found at:
862
+ - https://github.com/garycourt/uri-js/graphs/contributors
863
+ =========================================
864
+ END OF fast-uri@3.1.0 NOTICES AND INFORMATION
865
+
866
+ %% fill-range@7.1.1 NOTICES AND INFORMATION BEGIN HERE
867
+ =========================================
868
+ The MIT License (MIT)
869
+
870
+ Copyright (c) 2014-present, Jon Schlinkert.
871
+
872
+ Permission is hereby granted, free of charge, to any person obtaining a copy
873
+ of this software and associated documentation files (the "Software"), to deal
874
+ in the Software without restriction, including without limitation the rights
875
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
876
+ copies of the Software, and to permit persons to whom the Software is
877
+ furnished to do so, subject to the following conditions:
878
+
879
+ The above copyright notice and this permission notice shall be included in
880
+ all copies or substantial portions of the Software.
881
+
882
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
883
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
884
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
885
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
886
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
887
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
888
+ THE SOFTWARE.
889
+ =========================================
890
+ END OF fill-range@7.1.1 NOTICES AND INFORMATION
891
+
892
+ %% get-east-asian-width@1.3.0 NOTICES AND INFORMATION BEGIN HERE
893
+ =========================================
894
+ MIT License
895
+
896
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
897
+
898
+ 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:
899
+
900
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
901
+
902
+ 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.
903
+ =========================================
904
+ END OF get-east-asian-width@1.3.0 NOTICES AND INFORMATION
905
+
906
+ %% get-stream@5.2.0 NOTICES AND INFORMATION BEGIN HERE
907
+ =========================================
908
+ MIT License
909
+
910
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
911
+
912
+ 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:
913
+
914
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
915
+
916
+ 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.
917
+ =========================================
918
+ END OF get-stream@5.2.0 NOTICES AND INFORMATION
919
+
920
+ %% glob-parent@5.1.2 NOTICES AND INFORMATION BEGIN HERE
921
+ =========================================
922
+ The ISC License
923
+
924
+ Copyright (c) 2015, 2019 Elan Shanker
925
+
926
+ Permission to use, copy, modify, and/or distribute this software for any
927
+ purpose with or without fee is hereby granted, provided that the above
928
+ copyright notice and this permission notice appear in all copies.
929
+
930
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
931
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
932
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
933
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
934
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
935
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
936
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
937
+ =========================================
938
+ END OF glob-parent@5.1.2 NOTICES AND INFORMATION
939
+
940
+ %% graceful-fs@4.2.10 NOTICES AND INFORMATION BEGIN HERE
941
+ =========================================
942
+ The ISC License
943
+
944
+ Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
945
+
946
+ Permission to use, copy, modify, and/or distribute this software for any
947
+ purpose with or without fee is hereby granted, provided that the above
948
+ copyright notice and this permission notice appear in all copies.
949
+
950
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
951
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
952
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
953
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
954
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
955
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
956
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
957
+ =========================================
958
+ END OF graceful-fs@4.2.10 NOTICES AND INFORMATION
959
+
960
+ %% has-flag@4.0.0 NOTICES AND INFORMATION BEGIN HERE
961
+ =========================================
962
+ MIT License
963
+
964
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
965
+
966
+ 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:
967
+
968
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
969
+
970
+ 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.
971
+ =========================================
972
+ END OF has-flag@4.0.0 NOTICES AND INFORMATION
973
+
974
+ %% https-proxy-agent@7.0.6 NOTICES AND INFORMATION BEGIN HERE
975
+ =========================================
976
+ (The MIT License)
977
+
978
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
979
+
980
+ Permission is hereby granted, free of charge, to any person obtaining
981
+ a copy of this software and associated documentation files (the
982
+ 'Software'), to deal in the Software without restriction, including
983
+ without limitation the rights to use, copy, modify, merge, publish,
984
+ distribute, sublicense, and/or sell copies of the Software, and to
985
+ permit persons to whom the Software is furnished to do so, subject to
986
+ the following conditions:
987
+
988
+ The above copyright notice and this permission notice shall be
989
+ included in all copies or substantial portions of the Software.
990
+
991
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
992
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
993
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
994
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
995
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
996
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
997
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
998
+ =========================================
999
+ END OF https-proxy-agent@7.0.6 NOTICES AND INFORMATION
1000
+
1001
+ %% ini@6.0.0 NOTICES AND INFORMATION BEGIN HERE
1002
+ =========================================
1003
+ The ISC License
1004
+
1005
+ Copyright (c) Isaac Z. Schlueter and Contributors
1006
+
1007
+ Permission to use, copy, modify, and/or distribute this software for any
1008
+ purpose with or without fee is hereby granted, provided that the above
1009
+ copyright notice and this permission notice appear in all copies.
1010
+
1011
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1012
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1013
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1014
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1015
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1016
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1017
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1018
+ =========================================
1019
+ END OF ini@6.0.0 NOTICES AND INFORMATION
1020
+
1021
+ %% ip-address@10.2.0 NOTICES AND INFORMATION BEGIN HERE
1022
+ =========================================
1023
+ Copyright (C) 2011 by Beau Gunderson
1024
+
1025
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1026
+ of this software and associated documentation files (the "Software"), to deal
1027
+ in the Software without restriction, including without limitation the rights
1028
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1029
+ copies of the Software, and to permit persons to whom the Software is
1030
+ furnished to do so, subject to the following conditions:
1031
+
1032
+ The above copyright notice and this permission notice shall be included in
1033
+ all copies or substantial portions of the Software.
1034
+
1035
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1036
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1037
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1038
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1039
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1040
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1041
+ THE SOFTWARE.
1042
+ =========================================
1043
+ END OF ip-address@10.2.0 NOTICES AND INFORMATION
1044
+
1045
+ %% is-binary-path@2.1.0 NOTICES AND INFORMATION BEGIN HERE
1046
+ =========================================
1047
+ MIT License
1048
+
1049
+ Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
1050
+
1051
+ 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:
1052
+
1053
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1054
+
1055
+ 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.
1056
+ =========================================
1057
+ END OF is-binary-path@2.1.0 NOTICES AND INFORMATION
1058
+
1059
+ %% is-docker@2.2.1 NOTICES AND INFORMATION BEGIN HERE
1060
+ =========================================
1061
+ MIT License
1062
+
1063
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1064
+
1065
+ 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:
1066
+
1067
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1068
+
1069
+ 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.
1070
+ =========================================
1071
+ END OF is-docker@2.2.1 NOTICES AND INFORMATION
1072
+
1073
+ %% is-extglob@2.1.1 NOTICES AND INFORMATION BEGIN HERE
1074
+ =========================================
1075
+ The MIT License (MIT)
1076
+
1077
+ Copyright (c) 2014-2016, Jon Schlinkert
1078
+
1079
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1080
+ of this software and associated documentation files (the "Software"), to deal
1081
+ in the Software without restriction, including without limitation the rights
1082
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1083
+ copies of the Software, and to permit persons to whom the Software is
1084
+ furnished to do so, subject to the following conditions:
1085
+
1086
+ The above copyright notice and this permission notice shall be included in
1087
+ all copies or substantial portions of the Software.
1088
+
1089
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1090
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1091
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1092
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1093
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1094
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1095
+ THE SOFTWARE.
1096
+ =========================================
1097
+ END OF is-extglob@2.1.1 NOTICES AND INFORMATION
1098
+
1099
+ %% is-glob@4.0.3 NOTICES AND INFORMATION BEGIN HERE
1100
+ =========================================
1101
+ The MIT License (MIT)
1102
+
1103
+ Copyright (c) 2014-2017, Jon Schlinkert.
1104
+
1105
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1106
+ of this software and associated documentation files (the "Software"), to deal
1107
+ in the Software without restriction, including without limitation the rights
1108
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1109
+ copies of the Software, and to permit persons to whom the Software is
1110
+ furnished to do so, subject to the following conditions:
1111
+
1112
+ The above copyright notice and this permission notice shall be included in
1113
+ all copies or substantial portions of the Software.
1114
+
1115
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1116
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1117
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1118
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1119
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1120
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1121
+ THE SOFTWARE.
1122
+ =========================================
1123
+ END OF is-glob@4.0.3 NOTICES AND INFORMATION
1124
+
1125
+ %% is-number@7.0.0 NOTICES AND INFORMATION BEGIN HERE
1126
+ =========================================
1127
+ The MIT License (MIT)
1128
+
1129
+ Copyright (c) 2014-present, Jon Schlinkert.
1130
+
1131
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1132
+ of this software and associated documentation files (the "Software"), to deal
1133
+ in the Software without restriction, including without limitation the rights
1134
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1135
+ copies of the Software, and to permit persons to whom the Software is
1136
+ furnished to do so, subject to the following conditions:
1137
+
1138
+ The above copyright notice and this permission notice shall be included in
1139
+ all copies or substantial portions of the Software.
1140
+
1141
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1142
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1143
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1144
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1145
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1146
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1147
+ THE SOFTWARE.
1148
+ =========================================
1149
+ END OF is-number@7.0.0 NOTICES AND INFORMATION
1150
+
1151
+ %% is-wsl@2.2.0 NOTICES AND INFORMATION BEGIN HERE
1152
+ =========================================
1153
+ MIT License
1154
+
1155
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1156
+
1157
+ 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:
1158
+
1159
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1160
+
1161
+ 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.
1162
+ =========================================
1163
+ END OF is-wsl@2.2.0 NOTICES AND INFORMATION
1164
+
1165
+ %% isexe@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1166
+ =========================================
1167
+ The ISC License
1168
+
1169
+ Copyright (c) Isaac Z. Schlueter and Contributors
1170
+
1171
+ Permission to use, copy, modify, and/or distribute this software for any
1172
+ purpose with or without fee is hereby granted, provided that the above
1173
+ copyright notice and this permission notice appear in all copies.
1174
+
1175
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1176
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1177
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1178
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1179
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1180
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1181
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1182
+ =========================================
1183
+ END OF isexe@2.0.0 NOTICES AND INFORMATION
1184
+
1185
+ %% jpeg-js@0.4.4 NOTICES AND INFORMATION BEGIN HERE
1186
+ =========================================
1187
+ Copyright (c) 2014, Eugene Ware
1188
+ All rights reserved.
1189
+
1190
+ Redistribution and use in source and binary forms, with or without
1191
+ modification, are permitted provided that the following conditions are met:
1192
+
1193
+ 1. Redistributions of source code must retain the above copyright
1194
+ notice, this list of conditions and the following disclaimer.
1195
+ 2. Redistributions in binary form must reproduce the above copyright
1196
+ notice, this list of conditions and the following disclaimer in the
1197
+ documentation and/or other materials provided with the distribution.
1198
+ 3. Neither the name of Eugene Ware nor the names of its contributors
1199
+ may be used to endorse or promote products derived from this software
1200
+ without specific prior written permission.
1201
+
1202
+ THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
1203
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1204
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1205
+ DISCLAIMED. IN NO EVENT SHALL EUGENE WARE BE LIABLE FOR ANY
1206
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1207
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1208
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1209
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1210
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1211
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1212
+ =========================================
1213
+ END OF jpeg-js@0.4.4 NOTICES AND INFORMATION
1214
+
1215
+ %% json-schema-traverse@1.0.0 NOTICES AND INFORMATION BEGIN HERE
1216
+ =========================================
1217
+ MIT License
1218
+
1219
+ Copyright (c) 2017 Evgeny Poberezkin
1220
+
1221
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1222
+ of this software and associated documentation files (the "Software"), to deal
1223
+ in the Software without restriction, including without limitation the rights
1224
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1225
+ copies of the Software, and to permit persons to whom the Software is
1226
+ furnished to do so, subject to the following conditions:
1227
+
1228
+ The above copyright notice and this permission notice shall be included in all
1229
+ copies or substantial portions of the Software.
1230
+
1231
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1232
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1233
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1234
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1235
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1236
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1237
+ SOFTWARE.
1238
+ =========================================
1239
+ END OF json-schema-traverse@1.0.0 NOTICES AND INFORMATION
1240
+
1241
+ %% json5@2.2.3 NOTICES AND INFORMATION BEGIN HERE
1242
+ =========================================
1243
+ MIT License
1244
+
1245
+ Copyright (c) 2012-2018 Aseem Kishore, and [others].
1246
+
1247
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1248
+ of this software and associated documentation files (the "Software"), to deal
1249
+ in the Software without restriction, including without limitation the rights
1250
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1251
+ copies of the Software, and to permit persons to whom the Software is
1252
+ furnished to do so, subject to the following conditions:
1253
+
1254
+ The above copyright notice and this permission notice shall be included in all
1255
+ copies or substantial portions of the Software.
1256
+
1257
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1258
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1259
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1260
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1261
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1262
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1263
+ SOFTWARE.
1264
+
1265
+ [others]: https://github.com/json5/json5/contributors
1266
+ =========================================
1267
+ END OF json5@2.2.3 NOTICES AND INFORMATION
1268
+
1269
+ %% mime@3.0.0 NOTICES AND INFORMATION BEGIN HERE
1270
+ =========================================
1271
+ The MIT License (MIT)
1272
+
1273
+ Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
1274
+
1275
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1276
+ of this software and associated documentation files (the "Software"), to deal
1277
+ in the Software without restriction, including without limitation the rights
1278
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1279
+ copies of the Software, and to permit persons to whom the Software is
1280
+ furnished to do so, subject to the following conditions:
1281
+
1282
+ The above copyright notice and this permission notice shall be included in
1283
+ all copies or substantial portions of the Software.
1284
+
1285
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1286
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1287
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1288
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1289
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1290
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1291
+ THE SOFTWARE.
1292
+ =========================================
1293
+ END OF mime@3.0.0 NOTICES AND INFORMATION
1294
+
1295
+ %% minimatch@3.1.5 NOTICES AND INFORMATION BEGIN HERE
1296
+ =========================================
1297
+ The ISC License
1298
+
1299
+ Copyright (c) Isaac Z. Schlueter and Contributors
1300
+
1301
+ Permission to use, copy, modify, and/or distribute this software for any
1302
+ purpose with or without fee is hereby granted, provided that the above
1303
+ copyright notice and this permission notice appear in all copies.
1304
+
1305
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1306
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1307
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1308
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1309
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1310
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1311
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1312
+ =========================================
1313
+ END OF minimatch@3.1.5 NOTICES AND INFORMATION
1314
+
1315
+ %% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
1316
+ =========================================
1317
+ The MIT License (MIT)
1318
+
1319
+ Copyright (c) 2020 Vercel, Inc.
1320
+
1321
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1322
+ of this software and associated documentation files (the "Software"), to deal
1323
+ in the Software without restriction, including without limitation the rights
1324
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1325
+ copies of the Software, and to permit persons to whom the Software is
1326
+ furnished to do so, subject to the following conditions:
1327
+
1328
+ The above copyright notice and this permission notice shall be included in all
1329
+ copies or substantial portions of the Software.
1330
+
1331
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1332
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1333
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1334
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1335
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1336
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1337
+ SOFTWARE.
1338
+ =========================================
1339
+ END OF ms@2.1.3 NOTICES AND INFORMATION
1340
+
1341
+ %% normalize-path@3.0.0 NOTICES AND INFORMATION BEGIN HERE
1342
+ =========================================
1343
+ The MIT License (MIT)
1344
+
1345
+ Copyright (c) 2014-2018, Jon Schlinkert.
1346
+
1347
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1348
+ of this software and associated documentation files (the "Software"), to deal
1349
+ in the Software without restriction, including without limitation the rights
1350
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1351
+ copies of the Software, and to permit persons to whom the Software is
1352
+ furnished to do so, subject to the following conditions:
1353
+
1354
+ The above copyright notice and this permission notice shall be included in
1355
+ all copies or substantial portions of the Software.
1356
+
1357
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1358
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1359
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1360
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1361
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1362
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1363
+ THE SOFTWARE.
1364
+ =========================================
1365
+ END OF normalize-path@3.0.0 NOTICES AND INFORMATION
1366
+
1367
+ %% once@1.4.0 NOTICES AND INFORMATION BEGIN HERE
1368
+ =========================================
1369
+ The ISC License
1370
+
1371
+ Copyright (c) Isaac Z. Schlueter and Contributors
1372
+
1373
+ Permission to use, copy, modify, and/or distribute this software for any
1374
+ purpose with or without fee is hereby granted, provided that the above
1375
+ copyright notice and this permission notice appear in all copies.
1376
+
1377
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1378
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1379
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1380
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1381
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1382
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1383
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1384
+ =========================================
1385
+ END OF once@1.4.0 NOTICES AND INFORMATION
1386
+
1387
+ %% open@8.4.0 NOTICES AND INFORMATION BEGIN HERE
1388
+ =========================================
1389
+ MIT License
1390
+
1391
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1392
+
1393
+ 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:
1394
+
1395
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1396
+
1397
+ 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.
1398
+ =========================================
1399
+ END OF open@8.4.0 NOTICES AND INFORMATION
1400
+
1401
+ %% path-key@3.1.1 NOTICES AND INFORMATION BEGIN HERE
1402
+ =========================================
1403
+ MIT License
1404
+
1405
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1406
+
1407
+ 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:
1408
+
1409
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1410
+
1411
+ 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.
1412
+ =========================================
1413
+ END OF path-key@3.1.1 NOTICES AND INFORMATION
1414
+
1415
+ %% pend@1.2.0 NOTICES AND INFORMATION BEGIN HERE
1416
+ =========================================
1417
+ The MIT License (Expat)
1418
+
1419
+ Copyright (c) 2014 Andrew Kelley
1420
+
1421
+ Permission is hereby granted, free of charge, to any person
1422
+ obtaining a copy of this software and associated documentation files
1423
+ (the "Software"), to deal in the Software without restriction,
1424
+ including without limitation the rights to use, copy, modify, merge,
1425
+ publish, distribute, sublicense, and/or sell copies of the Software,
1426
+ and to permit persons to whom the Software is furnished to do so,
1427
+ subject to the following conditions:
1428
+
1429
+ The above copyright notice and this permission notice shall be
1430
+ included in all copies or substantial portions of the Software.
1431
+
1432
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1433
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1434
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1435
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
1436
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
1437
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1438
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1439
+ SOFTWARE.
1440
+ =========================================
1441
+ END OF pend@1.2.0 NOTICES AND INFORMATION
1442
+
1443
+ %% picomatch@2.3.2 NOTICES AND INFORMATION BEGIN HERE
1444
+ =========================================
1445
+ The MIT License (MIT)
1446
+
1447
+ Copyright (c) 2017-present, Jon Schlinkert.
1448
+
1449
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1450
+ of this software and associated documentation files (the "Software"), to deal
1451
+ in the Software without restriction, including without limitation the rights
1452
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1453
+ copies of the Software, and to permit persons to whom the Software is
1454
+ furnished to do so, subject to the following conditions:
1455
+
1456
+ The above copyright notice and this permission notice shall be included in
1457
+ all copies or substantial portions of the Software.
1458
+
1459
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1460
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1461
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1462
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1463
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1464
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1465
+ THE SOFTWARE.
1466
+ =========================================
1467
+ END OF picomatch@2.3.2 NOTICES AND INFORMATION
1468
+
1469
+ %% pkce-challenge@5.0.0 NOTICES AND INFORMATION BEGIN HERE
1470
+ =========================================
1471
+ MIT License
1472
+
1473
+ Copyright (c) 2019
1474
+
1475
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1476
+ of this software and associated documentation files (the "Software"), to deal
1477
+ in the Software without restriction, including without limitation the rights
1478
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1479
+ copies of the Software, and to permit persons to whom the Software is
1480
+ furnished to do so, subject to the following conditions:
1481
+
1482
+ The above copyright notice and this permission notice shall be included in all
1483
+ copies or substantial portions of the Software.
1484
+
1485
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1486
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1487
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1488
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1489
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1490
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1491
+ SOFTWARE.
1492
+ =========================================
1493
+ END OF pkce-challenge@5.0.0 NOTICES AND INFORMATION
1494
+
1495
+ %% pngjs@6.0.0 NOTICES AND INFORMATION BEGIN HERE
1496
+ =========================================
1497
+ pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
1498
+ pngjs derived work Copyright (c) 2012 Kuba Niegowski
1499
+
1500
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1501
+ of this software and associated documentation files (the "Software"), to deal
1502
+ in the Software without restriction, including without limitation the rights
1503
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1504
+ copies of the Software, and to permit persons to whom the Software is
1505
+ furnished to do so, subject to the following conditions:
1506
+
1507
+ The above copyright notice and this permission notice shall be included in
1508
+ all copies or substantial portions of the Software.
1509
+
1510
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1511
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1512
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1513
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1514
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1515
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1516
+ THE SOFTWARE.
1517
+ =========================================
1518
+ END OF pngjs@6.0.0 NOTICES AND INFORMATION
1519
+
1520
+ %% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
1521
+ =========================================
1522
+ (The MIT License)
1523
+
1524
+ Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
1525
+
1526
+ Permission is hereby granted, free of charge, to any person obtaining
1527
+ a copy of this software and associated documentation files (the
1528
+ 'Software'), to deal in the Software without restriction, including
1529
+ without limitation the rights to use, copy, modify, merge, publish,
1530
+ distribute, sublicense, and/or sell copies of the Software, and to
1531
+ permit persons to whom the Software is furnished to do so, subject to
1532
+ the following conditions:
1533
+
1534
+ The above copyright notice and this permission notice shall be
1535
+ included in all copies or substantial portions of the Software.
1536
+
1537
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1538
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1539
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1540
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1541
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1542
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1543
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1544
+ =========================================
1545
+ END OF progress@2.0.3 NOTICES AND INFORMATION
1546
+
1547
+ %% proxy-from-env@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1548
+ =========================================
1549
+ The MIT License
1550
+
1551
+ Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
1552
+
1553
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1554
+ this software and associated documentation files (the "Software"), to deal in
1555
+ the Software without restriction, including without limitation the rights to
1556
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1557
+ of the Software, and to permit persons to whom the Software is furnished to do
1558
+ so, subject to the following conditions:
1559
+
1560
+ The above copyright notice and this permission notice shall be included in all
1561
+ copies or substantial portions of the Software.
1562
+
1563
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1564
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1565
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1566
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1567
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1568
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1569
+ =========================================
1570
+ END OF proxy-from-env@2.0.0 NOTICES AND INFORMATION
1571
+
1572
+ %% pump@3.0.3 NOTICES AND INFORMATION BEGIN HERE
1573
+ =========================================
1574
+ The MIT License (MIT)
1575
+
1576
+ Copyright (c) 2014 Mathias Buus
1577
+
1578
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1579
+ of this software and associated documentation files (the "Software"), to deal
1580
+ in the Software without restriction, including without limitation the rights
1581
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1582
+ copies of the Software, and to permit persons to whom the Software is
1583
+ furnished to do so, subject to the following conditions:
1584
+
1585
+ The above copyright notice and this permission notice shall be included in
1586
+ all copies or substantial portions of the Software.
1587
+
1588
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1589
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1590
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1591
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1592
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1593
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1594
+ THE SOFTWARE.
1595
+ =========================================
1596
+ END OF pump@3.0.3 NOTICES AND INFORMATION
1597
+
1598
+ %% readdirp@3.6.0 NOTICES AND INFORMATION BEGIN HERE
1599
+ =========================================
1600
+ MIT License
1601
+
1602
+ Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)
1603
+
1604
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1605
+ of this software and associated documentation files (the "Software"), to deal
1606
+ in the Software without restriction, including without limitation the rights
1607
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1608
+ copies of the Software, and to permit persons to whom the Software is
1609
+ furnished to do so, subject to the following conditions:
1610
+
1611
+ The above copyright notice and this permission notice shall be included in all
1612
+ copies or substantial portions of the Software.
1613
+
1614
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1615
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1616
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1617
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1618
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1619
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1620
+ SOFTWARE.
1621
+ =========================================
1622
+ END OF readdirp@3.6.0 NOTICES AND INFORMATION
1623
+
1624
+ %% retry@0.12.0 NOTICES AND INFORMATION BEGIN HERE
1625
+ =========================================
1626
+ Copyright (c) 2011:
1627
+ Tim Koschützki (tim@debuggable.com)
1628
+ Felix Geisendörfer (felix@debuggable.com)
1629
+
1630
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1631
+ of this software and associated documentation files (the "Software"), to deal
1632
+ in the Software without restriction, including without limitation the rights
1633
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1634
+ copies of the Software, and to permit persons to whom the Software is
1635
+ furnished to do so, subject to the following conditions:
1636
+
1637
+ The above copyright notice and this permission notice shall be included in
1638
+ all copies or substantial portions of the Software.
1639
+
1640
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1641
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1642
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1643
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1644
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1645
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1646
+ THE SOFTWARE.
1647
+ =========================================
1648
+ END OF retry@0.12.0 NOTICES AND INFORMATION
1649
+
1650
+ %% shebang-command@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1651
+ =========================================
1652
+ MIT License
1653
+
1654
+ Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
1655
+
1656
+ 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:
1657
+
1658
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1659
+
1660
+ 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.
1661
+ =========================================
1662
+ END OF shebang-command@2.0.0 NOTICES AND INFORMATION
1663
+
1664
+ %% shebang-regex@3.0.0 NOTICES AND INFORMATION BEGIN HERE
1665
+ =========================================
1666
+ MIT License
1667
+
1668
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1669
+
1670
+ 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:
1671
+
1672
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1673
+
1674
+ 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.
1675
+ =========================================
1676
+ END OF shebang-regex@3.0.0 NOTICES AND INFORMATION
1677
+
1678
+ %% signal-exit@3.0.7 NOTICES AND INFORMATION BEGIN HERE
1679
+ =========================================
1680
+ The ISC License
1681
+
1682
+ Copyright (c) 2015, Contributors
1683
+
1684
+ Permission to use, copy, modify, and/or distribute this software
1685
+ for any purpose with or without fee is hereby granted, provided
1686
+ that the above copyright notice and this permission notice
1687
+ appear in all copies.
1688
+
1689
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1690
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
1691
+ OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
1692
+ LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
1693
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
1694
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
1695
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1696
+ =========================================
1697
+ END OF signal-exit@3.0.7 NOTICES AND INFORMATION
1698
+
1699
+ %% smart-buffer@4.2.0 NOTICES AND INFORMATION BEGIN HERE
1700
+ =========================================
1701
+ The MIT License (MIT)
1702
+
1703
+ Copyright (c) 2013-2017 Josh Glazebrook
1704
+
1705
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1706
+ this software and associated documentation files (the "Software"), to deal in
1707
+ the Software without restriction, including without limitation the rights to
1708
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1709
+ the Software, and to permit persons to whom the Software is furnished to do so,
1710
+ subject to the following conditions:
1711
+
1712
+ The above copyright notice and this permission notice shall be included in all
1713
+ copies or substantial portions of the Software.
1714
+
1715
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1716
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1717
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1718
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1719
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1720
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1721
+ =========================================
1722
+ END OF smart-buffer@4.2.0 NOTICES AND INFORMATION
1723
+
1724
+ %% socks-proxy-agent@8.0.5 NOTICES AND INFORMATION BEGIN HERE
1725
+ =========================================
1726
+ (The MIT License)
1727
+
1728
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1729
+
1730
+ Permission is hereby granted, free of charge, to any person obtaining
1731
+ a copy of this software and associated documentation files (the
1732
+ 'Software'), to deal in the Software without restriction, including
1733
+ without limitation the rights to use, copy, modify, merge, publish,
1734
+ distribute, sublicense, and/or sell copies of the Software, and to
1735
+ permit persons to whom the Software is furnished to do so, subject to
1736
+ the following conditions:
1737
+
1738
+ The above copyright notice and this permission notice shall be
1739
+ included in all copies or substantial portions of the Software.
1740
+
1741
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1742
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1743
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1744
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1745
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1746
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1747
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1748
+ =========================================
1749
+ END OF socks-proxy-agent@8.0.5 NOTICES AND INFORMATION
1750
+
1751
+ %% socks@2.8.7 NOTICES AND INFORMATION BEGIN HERE
1752
+ =========================================
1753
+ The MIT License (MIT)
1754
+
1755
+ Copyright (c) 2013 Josh Glazebrook
1756
+
1757
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1758
+ this software and associated documentation files (the "Software"), to deal in
1759
+ the Software without restriction, including without limitation the rights to
1760
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1761
+ the Software, and to permit persons to whom the Software is furnished to do so,
1762
+ subject to the following conditions:
1763
+
1764
+ The above copyright notice and this permission notice shall be included in all
1765
+ copies or substantial portions of the Software.
1766
+
1767
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1768
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1769
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1770
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1771
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1772
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1773
+ =========================================
1774
+ END OF socks@2.8.7 NOTICES AND INFORMATION
1775
+
1776
+ %% source-map-support@0.5.21 NOTICES AND INFORMATION BEGIN HERE
1777
+ =========================================
1778
+ The MIT License (MIT)
1779
+
1780
+ Copyright (c) 2014 Evan Wallace
1781
+
1782
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1783
+ of this software and associated documentation files (the "Software"), to deal
1784
+ in the Software without restriction, including without limitation the rights
1785
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1786
+ copies of the Software, and to permit persons to whom the Software is
1787
+ furnished to do so, subject to the following conditions:
1788
+
1789
+ The above copyright notice and this permission notice shall be included in all
1790
+ copies or substantial portions of the Software.
1791
+
1792
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1793
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1794
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1795
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1796
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1797
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1798
+ SOFTWARE.
1799
+ =========================================
1800
+ END OF source-map-support@0.5.21 NOTICES AND INFORMATION
1801
+
1802
+ %% source-map@0.6.1 NOTICES AND INFORMATION BEGIN HERE
1803
+ =========================================
1804
+ Copyright (c) 2009-2011, Mozilla Foundation and contributors
1805
+ All rights reserved.
1806
+
1807
+ Redistribution and use in source and binary forms, with or without
1808
+ modification, are permitted provided that the following conditions are met:
1809
+
1810
+ * Redistributions of source code must retain the above copyright notice, this
1811
+ list of conditions and the following disclaimer.
1812
+
1813
+ * Redistributions in binary form must reproduce the above copyright notice,
1814
+ this list of conditions and the following disclaimer in the documentation
1815
+ and/or other materials provided with the distribution.
1816
+
1817
+ * Neither the names of the Mozilla Foundation nor the names of project
1818
+ contributors may be used to endorse or promote products derived from this
1819
+ software without specific prior written permission.
1820
+
1821
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1822
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1823
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1824
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1825
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1826
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1827
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1828
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1829
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1830
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1831
+ =========================================
1832
+ END OF source-map@0.6.1 NOTICES AND INFORMATION
1833
+
1834
+ %% supports-color@8.1.1 NOTICES AND INFORMATION BEGIN HERE
1835
+ =========================================
1836
+ MIT License
1837
+
1838
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1839
+
1840
+ 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:
1841
+
1842
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1843
+
1844
+ 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.
1845
+ =========================================
1846
+ END OF supports-color@8.1.1 NOTICES AND INFORMATION
1847
+
1848
+ %% to-regex-range@5.0.1 NOTICES AND INFORMATION BEGIN HERE
1849
+ =========================================
1850
+ The MIT License (MIT)
1851
+
1852
+ Copyright (c) 2015-present, Jon Schlinkert.
1853
+
1854
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1855
+ of this software and associated documentation files (the "Software"), to deal
1856
+ in the Software without restriction, including without limitation the rights
1857
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1858
+ copies of the Software, and to permit persons to whom the Software is
1859
+ furnished to do so, subject to the following conditions:
1860
+
1861
+ The above copyright notice and this permission notice shall be included in
1862
+ all copies or substantial portions of the Software.
1863
+
1864
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1865
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1866
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1867
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1868
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1869
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1870
+ THE SOFTWARE.
1871
+ =========================================
1872
+ END OF to-regex-range@5.0.1 NOTICES AND INFORMATION
1873
+
1874
+ %% which@2.0.2 NOTICES AND INFORMATION BEGIN HERE
1875
+ =========================================
1876
+ The ISC License
1877
+
1878
+ Copyright (c) Isaac Z. Schlueter and Contributors
1879
+
1880
+ Permission to use, copy, modify, and/or distribute this software for any
1881
+ purpose with or without fee is hereby granted, provided that the above
1882
+ copyright notice and this permission notice appear in all copies.
1883
+
1884
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1885
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1886
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1887
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1888
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1889
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1890
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1891
+ =========================================
1892
+ END OF which@2.0.2 NOTICES AND INFORMATION
1893
+
1894
+ %% wrappy@1.0.2 NOTICES AND INFORMATION BEGIN HERE
1895
+ =========================================
1896
+ The ISC License
1897
+
1898
+ Copyright (c) Isaac Z. Schlueter and Contributors
1899
+
1900
+ Permission to use, copy, modify, and/or distribute this software for any
1901
+ purpose with or without fee is hereby granted, provided that the above
1902
+ copyright notice and this permission notice appear in all copies.
1903
+
1904
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1905
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1906
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1907
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1908
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1909
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1910
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1911
+ =========================================
1912
+ END OF wrappy@1.0.2 NOTICES AND INFORMATION
1913
+
1914
+ %% ws@8.17.1 NOTICES AND INFORMATION BEGIN HERE
1915
+ =========================================
1916
+ Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
1917
+ Copyright (c) 2013 Arnout Kazemier and contributors
1918
+ Copyright (c) 2016 Luigi Pinca and contributors
1919
+
1920
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1921
+ this software and associated documentation files (the "Software"), to deal in
1922
+ the Software without restriction, including without limitation the rights to
1923
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1924
+ the Software, and to permit persons to whom the Software is furnished to do so,
1925
+ subject to the following conditions:
1926
+
1927
+ The above copyright notice and this permission notice shall be included in all
1928
+ copies or substantial portions of the Software.
1929
+
1930
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1931
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1932
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1933
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1934
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1935
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1936
+ =========================================
1937
+ END OF ws@8.17.1 NOTICES AND INFORMATION
1938
+
1939
+ %% yaml@2.8.3 NOTICES AND INFORMATION BEGIN HERE
1940
+ =========================================
1941
+ Copyright Eemeli Aro <eemeli@gmail.com>
1942
+
1943
+ Permission to use, copy, modify, and/or distribute this software for any purpose
1944
+ with or without fee is hereby granted, provided that the above copyright notice
1945
+ and this permission notice appear in all copies.
1946
+
1947
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1948
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
1949
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1950
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
1951
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
1952
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
1953
+ THIS SOFTWARE.
1954
+ =========================================
1955
+ END OF yaml@2.8.3 NOTICES AND INFORMATION
1956
+
1957
+ %% yauzl@3.2.1 NOTICES AND INFORMATION BEGIN HERE
1958
+ =========================================
1959
+ The MIT License (MIT)
1960
+
1961
+ Copyright (c) 2014 Josh Wolfe
1962
+
1963
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1964
+ of this software and associated documentation files (the "Software"), to deal
1965
+ in the Software without restriction, including without limitation the rights
1966
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1967
+ copies of the Software, and to permit persons to whom the Software is
1968
+ furnished to do so, subject to the following conditions:
1969
+
1970
+ The above copyright notice and this permission notice shall be included in all
1971
+ copies or substantial portions of the Software.
1972
+
1973
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1974
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1975
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1976
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1977
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1978
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1979
+ SOFTWARE.
1980
+ =========================================
1981
+ END OF yauzl@3.2.1 NOTICES AND INFORMATION
1982
+
1983
+ %% yazl@2.5.1 NOTICES AND INFORMATION BEGIN HERE
1984
+ =========================================
1985
+ The MIT License (MIT)
1986
+
1987
+ Copyright (c) 2014 Josh Wolfe
1988
+
1989
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1990
+ of this software and associated documentation files (the "Software"), to deal
1991
+ in the Software without restriction, including without limitation the rights
1992
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1993
+ copies of the Software, and to permit persons to whom the Software is
1994
+ furnished to do so, subject to the following conditions:
1995
+
1996
+ The above copyright notice and this permission notice shall be included in all
1997
+ copies or substantial portions of the Software.
1998
+
1999
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2000
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2001
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2002
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2003
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2004
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2005
+ SOFTWARE.
2006
+ =========================================
2007
+ END OF yazl@2.5.1 NOTICES AND INFORMATION
2008
+
2009
+ %% zod-to-json-schema@3.25.1 NOTICES AND INFORMATION BEGIN HERE
2010
+ =========================================
2011
+ ISC License
2012
+
2013
+ Copyright (c) 2020, Stefan Terdell
2014
+
2015
+ Permission to use, copy, modify, and/or distribute this software for any
2016
+ purpose with or without fee is hereby granted, provided that the above
2017
+ copyright notice and this permission notice appear in all copies.
2018
+
2019
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2020
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2021
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2022
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2023
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2024
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2025
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2026
+ =========================================
2027
+ END OF zod-to-json-schema@3.25.1 NOTICES AND INFORMATION
2028
+
2029
+ %% zod@4.3.6 NOTICES AND INFORMATION BEGIN HERE
2030
+ =========================================
2031
+ MIT License
2032
+
2033
+ Copyright (c) 2025 Colin McDonnell
2034
+
2035
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2036
+ of this software and associated documentation files (the "Software"), to deal
2037
+ in the Software without restriction, including without limitation the rights
2038
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2039
+ copies of the Software, and to permit persons to whom the Software is
2040
+ furnished to do so, subject to the following conditions:
2041
+
2042
+ The above copyright notice and this permission notice shall be included in all
2043
+ copies or substantial portions of the Software.
2044
+
2045
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2046
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2047
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2048
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2049
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2050
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2051
+ SOFTWARE.
2052
+ =========================================
2053
+ END OF zod@4.3.6 NOTICES AND INFORMATION
2054
+
2055
+ SUMMARY
2056
+ =========================================
2057
+ Total Packages: 83
2058
+ =========================================