@treegress.com/treegress-browser-core 1.59.0-treegress.3

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 (439) hide show
  1. package/README.md +60 -0
  2. package/ThirdPartyNotices.txt +3759 -0
  3. package/bin/install_media_pack.ps1 +5 -0
  4. package/bin/install_webkit_wsl.ps1 +33 -0
  5. package/bin/reinstall_chrome_beta_linux.sh +42 -0
  6. package/bin/reinstall_chrome_beta_mac.sh +13 -0
  7. package/bin/reinstall_chrome_beta_win.ps1 +24 -0
  8. package/bin/reinstall_chrome_stable_linux.sh +42 -0
  9. package/bin/reinstall_chrome_stable_mac.sh +12 -0
  10. package/bin/reinstall_chrome_stable_win.ps1 +24 -0
  11. package/bin/reinstall_msedge_beta_linux.sh +48 -0
  12. package/bin/reinstall_msedge_beta_mac.sh +11 -0
  13. package/bin/reinstall_msedge_beta_win.ps1 +23 -0
  14. package/bin/reinstall_msedge_dev_linux.sh +48 -0
  15. package/bin/reinstall_msedge_dev_mac.sh +11 -0
  16. package/bin/reinstall_msedge_dev_win.ps1 +23 -0
  17. package/bin/reinstall_msedge_stable_linux.sh +48 -0
  18. package/bin/reinstall_msedge_stable_mac.sh +11 -0
  19. package/bin/reinstall_msedge_stable_win.ps1 +24 -0
  20. package/browsers.json +81 -0
  21. package/cli.js +18 -0
  22. package/index.d.ts +17 -0
  23. package/index.js +32 -0
  24. package/index.mjs +28 -0
  25. package/lib/androidServerImpl.js +65 -0
  26. package/lib/browserServerImpl.js +120 -0
  27. package/lib/cli/client/cli.js +6 -0
  28. package/lib/cli/client/program.js +375 -0
  29. package/lib/cli/client/registry.js +171 -0
  30. package/lib/cli/client/session.js +282 -0
  31. package/lib/cli/client/socketConnection.js +108 -0
  32. package/lib/cli/daemon/command.js +73 -0
  33. package/lib/cli/daemon/commands.js +879 -0
  34. package/lib/cli/daemon/daemon.js +179 -0
  35. package/lib/cli/daemon/helpGenerator.js +173 -0
  36. package/lib/cli/daemon/program.js +123 -0
  37. package/lib/cli/driver.js +98 -0
  38. package/lib/cli/program.js +598 -0
  39. package/lib/cli/programWithTestStub.js +74 -0
  40. package/lib/client/android.js +361 -0
  41. package/lib/client/api.js +137 -0
  42. package/lib/client/artifact.js +79 -0
  43. package/lib/client/browser.js +169 -0
  44. package/lib/client/browserContext.js +590 -0
  45. package/lib/client/browserType.js +153 -0
  46. package/lib/client/cdpSession.js +55 -0
  47. package/lib/client/channelOwner.js +194 -0
  48. package/lib/client/clientHelper.js +64 -0
  49. package/lib/client/clientInstrumentation.js +55 -0
  50. package/lib/client/clientStackTrace.js +69 -0
  51. package/lib/client/clock.js +68 -0
  52. package/lib/client/connect.js +152 -0
  53. package/lib/client/connection.js +322 -0
  54. package/lib/client/consoleMessage.js +61 -0
  55. package/lib/client/coverage.js +44 -0
  56. package/lib/client/dialog.js +56 -0
  57. package/lib/client/disposable.js +76 -0
  58. package/lib/client/download.js +62 -0
  59. package/lib/client/electron.js +138 -0
  60. package/lib/client/elementHandle.js +284 -0
  61. package/lib/client/errors.js +77 -0
  62. package/lib/client/eventEmitter.js +327 -0
  63. package/lib/client/events.js +103 -0
  64. package/lib/client/fetch.js +368 -0
  65. package/lib/client/fileChooser.js +46 -0
  66. package/lib/client/fileUtils.js +34 -0
  67. package/lib/client/frame.js +409 -0
  68. package/lib/client/harRouter.js +99 -0
  69. package/lib/client/input.js +84 -0
  70. package/lib/client/inspector.js +48 -0
  71. package/lib/client/jsHandle.js +109 -0
  72. package/lib/client/jsonPipe.js +39 -0
  73. package/lib/client/localUtils.js +60 -0
  74. package/lib/client/locator.js +373 -0
  75. package/lib/client/network.js +750 -0
  76. package/lib/client/page.js +750 -0
  77. package/lib/client/pageAgent.js +64 -0
  78. package/lib/client/platform.js +77 -0
  79. package/lib/client/playwright.js +71 -0
  80. package/lib/client/selectors.js +55 -0
  81. package/lib/client/stream.js +39 -0
  82. package/lib/client/timeoutSettings.js +79 -0
  83. package/lib/client/tracing.js +124 -0
  84. package/lib/client/types.js +28 -0
  85. package/lib/client/video.js +65 -0
  86. package/lib/client/waiter.js +142 -0
  87. package/lib/client/webError.js +39 -0
  88. package/lib/client/worker.js +85 -0
  89. package/lib/client/writableStream.js +39 -0
  90. package/lib/devtools/appIcon.png +0 -0
  91. package/lib/devtools/devtoolsApp.js +275 -0
  92. package/lib/devtools/devtoolsController.js +289 -0
  93. package/lib/generated/bindingsControllerSource.js +28 -0
  94. package/lib/generated/clockSource.js +28 -0
  95. package/lib/generated/injectedScriptSource.js +28 -0
  96. package/lib/generated/pollingRecorderSource.js +28 -0
  97. package/lib/generated/storageScriptSource.js +28 -0
  98. package/lib/generated/utilityScriptSource.js +28 -0
  99. package/lib/generated/webSocketMockSource.js +336 -0
  100. package/lib/inProcessFactory.js +60 -0
  101. package/lib/inprocess.js +3 -0
  102. package/lib/mcp/browserFactory.js +196 -0
  103. package/lib/mcp/cdpRelay.js +353 -0
  104. package/lib/mcp/config.d.js +16 -0
  105. package/lib/mcp/config.js +399 -0
  106. package/lib/mcp/configIni.js +190 -0
  107. package/lib/mcp/exports.js +42 -0
  108. package/lib/mcp/extensionContextFactory.js +59 -0
  109. package/lib/mcp/index.js +62 -0
  110. package/lib/mcp/log.js +35 -0
  111. package/lib/mcp/program.js +111 -0
  112. package/lib/mcp/protocol.js +28 -0
  113. package/lib/mcp/sdk/http.js +152 -0
  114. package/lib/mcp/sdk/server.js +230 -0
  115. package/lib/mcp/sdk/tool.js +47 -0
  116. package/lib/mcp/watchdog.js +44 -0
  117. package/lib/mcpBundle.js +84 -0
  118. package/lib/mcpBundleImpl/index.js +147 -0
  119. package/lib/outofprocess.js +76 -0
  120. package/lib/protocol/serializers.js +197 -0
  121. package/lib/protocol/validator.js +3064 -0
  122. package/lib/protocol/validatorPrimitives.js +193 -0
  123. package/lib/remote/playwrightConnection.js +129 -0
  124. package/lib/remote/playwrightPipeServer.js +100 -0
  125. package/lib/remote/playwrightServer.js +339 -0
  126. package/lib/remote/playwrightWebSocketServer.js +73 -0
  127. package/lib/remote/serverTransport.js +96 -0
  128. package/lib/server/agent/actionRunner.js +341 -0
  129. package/lib/server/agent/actions.js +128 -0
  130. package/lib/server/agent/codegen.js +111 -0
  131. package/lib/server/agent/context.js +161 -0
  132. package/lib/server/agent/expectTools.js +156 -0
  133. package/lib/server/agent/pageAgent.js +204 -0
  134. package/lib/server/agent/performTools.js +262 -0
  135. package/lib/server/agent/tool.js +109 -0
  136. package/lib/server/android/android.js +465 -0
  137. package/lib/server/android/backendAdb.js +177 -0
  138. package/lib/server/artifact.js +127 -0
  139. package/lib/server/bidi/bidiBrowser.js +560 -0
  140. package/lib/server/bidi/bidiChromium.js +162 -0
  141. package/lib/server/bidi/bidiConnection.js +213 -0
  142. package/lib/server/bidi/bidiDeserializer.js +116 -0
  143. package/lib/server/bidi/bidiExecutionContext.js +267 -0
  144. package/lib/server/bidi/bidiFirefox.js +128 -0
  145. package/lib/server/bidi/bidiInput.js +146 -0
  146. package/lib/server/bidi/bidiNetworkManager.js +411 -0
  147. package/lib/server/bidi/bidiOverCdp.js +102 -0
  148. package/lib/server/bidi/bidiPage.js +598 -0
  149. package/lib/server/bidi/bidiPdf.js +106 -0
  150. package/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
  151. package/lib/server/bidi/third_party/bidiKeyboard.js +256 -0
  152. package/lib/server/bidi/third_party/bidiProtocol.js +24 -0
  153. package/lib/server/bidi/third_party/bidiProtocolCore.js +180 -0
  154. package/lib/server/bidi/third_party/bidiProtocolPermissions.js +42 -0
  155. package/lib/server/bidi/third_party/bidiSerializer.js +148 -0
  156. package/lib/server/bidi/third_party/firefoxPrefs.js +261 -0
  157. package/lib/server/browser.js +217 -0
  158. package/lib/server/browserContext.js +699 -0
  159. package/lib/server/browserType.js +337 -0
  160. package/lib/server/callLog.js +82 -0
  161. package/lib/server/chromium/appIcon.png +0 -0
  162. package/lib/server/chromium/chromium.js +399 -0
  163. package/lib/server/chromium/chromiumSwitches.js +104 -0
  164. package/lib/server/chromium/crBrowser.js +532 -0
  165. package/lib/server/chromium/crConnection.js +197 -0
  166. package/lib/server/chromium/crCoverage.js +235 -0
  167. package/lib/server/chromium/crDevTools.js +111 -0
  168. package/lib/server/chromium/crDragDrop.js +131 -0
  169. package/lib/server/chromium/crExecutionContext.js +146 -0
  170. package/lib/server/chromium/crInput.js +187 -0
  171. package/lib/server/chromium/crNetworkManager.js +708 -0
  172. package/lib/server/chromium/crPage.js +1004 -0
  173. package/lib/server/chromium/crPdf.js +121 -0
  174. package/lib/server/chromium/crProtocolHelper.js +145 -0
  175. package/lib/server/chromium/crServiceWorker.js +136 -0
  176. package/lib/server/chromium/defaultFontFamilies.js +162 -0
  177. package/lib/server/chromium/protocol.d.js +16 -0
  178. package/lib/server/clock.js +149 -0
  179. package/lib/server/codegen/csharp.js +327 -0
  180. package/lib/server/codegen/java.js +274 -0
  181. package/lib/server/codegen/javascript.js +247 -0
  182. package/lib/server/codegen/jsonl.js +52 -0
  183. package/lib/server/codegen/language.js +132 -0
  184. package/lib/server/codegen/languages.js +68 -0
  185. package/lib/server/codegen/python.js +279 -0
  186. package/lib/server/codegen/types.js +16 -0
  187. package/lib/server/console.js +61 -0
  188. package/lib/server/cookieStore.js +206 -0
  189. package/lib/server/debugController.js +197 -0
  190. package/lib/server/debugger.js +119 -0
  191. package/lib/server/deviceDescriptors.js +39 -0
  192. package/lib/server/deviceDescriptorsSource.json +1779 -0
  193. package/lib/server/dialog.js +116 -0
  194. package/lib/server/dispatchers/androidDispatcher.js +325 -0
  195. package/lib/server/dispatchers/artifactDispatcher.js +118 -0
  196. package/lib/server/dispatchers/browserContextDispatcher.js +377 -0
  197. package/lib/server/dispatchers/browserDispatcher.js +124 -0
  198. package/lib/server/dispatchers/browserTypeDispatcher.js +71 -0
  199. package/lib/server/dispatchers/cdpSessionDispatcher.js +47 -0
  200. package/lib/server/dispatchers/debugControllerDispatcher.js +78 -0
  201. package/lib/server/dispatchers/dialogDispatcher.js +47 -0
  202. package/lib/server/dispatchers/dispatcher.js +364 -0
  203. package/lib/server/dispatchers/disposableDispatcher.js +39 -0
  204. package/lib/server/dispatchers/electronDispatcher.js +90 -0
  205. package/lib/server/dispatchers/elementHandlerDispatcher.js +181 -0
  206. package/lib/server/dispatchers/frameDispatcher.js +227 -0
  207. package/lib/server/dispatchers/jsHandleDispatcher.js +85 -0
  208. package/lib/server/dispatchers/jsonPipeDispatcher.js +58 -0
  209. package/lib/server/dispatchers/localUtilsDispatcher.js +185 -0
  210. package/lib/server/dispatchers/networkDispatchers.js +214 -0
  211. package/lib/server/dispatchers/pageAgentDispatcher.js +106 -0
  212. package/lib/server/dispatchers/pageDispatcher.js +441 -0
  213. package/lib/server/dispatchers/playwrightDispatcher.js +108 -0
  214. package/lib/server/dispatchers/streamDispatcher.js +67 -0
  215. package/lib/server/dispatchers/tracingDispatcher.js +68 -0
  216. package/lib/server/dispatchers/webSocketRouteDispatcher.js +164 -0
  217. package/lib/server/dispatchers/writableStreamDispatcher.js +79 -0
  218. package/lib/server/disposable.js +41 -0
  219. package/lib/server/dom.js +815 -0
  220. package/lib/server/download.js +71 -0
  221. package/lib/server/electron/electron.js +272 -0
  222. package/lib/server/electron/loader.js +30 -0
  223. package/lib/server/errors.js +69 -0
  224. package/lib/server/fetch.js +621 -0
  225. package/lib/server/fileChooser.js +43 -0
  226. package/lib/server/fileUploadUtils.js +84 -0
  227. package/lib/server/firefox/ffBrowser.js +415 -0
  228. package/lib/server/firefox/ffConnection.js +142 -0
  229. package/lib/server/firefox/ffExecutionContext.js +150 -0
  230. package/lib/server/firefox/ffInput.js +159 -0
  231. package/lib/server/firefox/ffNetworkManager.js +256 -0
  232. package/lib/server/firefox/ffPage.js +495 -0
  233. package/lib/server/firefox/firefox.js +114 -0
  234. package/lib/server/firefox/protocol.d.js +16 -0
  235. package/lib/server/formData.js +147 -0
  236. package/lib/server/frameSelectors.js +160 -0
  237. package/lib/server/frames.js +1476 -0
  238. package/lib/server/har/harRecorder.js +147 -0
  239. package/lib/server/har/harTracer.js +608 -0
  240. package/lib/server/harBackend.js +157 -0
  241. package/lib/server/helper.js +96 -0
  242. package/lib/server/index.js +58 -0
  243. package/lib/server/input.js +277 -0
  244. package/lib/server/instrumentation.js +72 -0
  245. package/lib/server/javascript.js +291 -0
  246. package/lib/server/launchApp.js +127 -0
  247. package/lib/server/localUtils.js +214 -0
  248. package/lib/server/macEditingCommands.js +143 -0
  249. package/lib/server/network.js +668 -0
  250. package/lib/server/page.js +915 -0
  251. package/lib/server/pipeTransport.js +89 -0
  252. package/lib/server/playwright.js +69 -0
  253. package/lib/server/progress.js +136 -0
  254. package/lib/server/protocolError.js +52 -0
  255. package/lib/server/recorder/chat.js +161 -0
  256. package/lib/server/recorder/recorderApp.js +367 -0
  257. package/lib/server/recorder/recorderRunner.js +138 -0
  258. package/lib/server/recorder/recorderSignalProcessor.js +83 -0
  259. package/lib/server/recorder/recorderUtils.js +157 -0
  260. package/lib/server/recorder/throttledFile.js +57 -0
  261. package/lib/server/recorder.js +533 -0
  262. package/lib/server/registry/browserFetcher.js +177 -0
  263. package/lib/server/registry/dependencies.js +371 -0
  264. package/lib/server/registry/index.js +1395 -0
  265. package/lib/server/registry/nativeDeps.js +1281 -0
  266. package/lib/server/registry/oopDownloadBrowserMain.js +127 -0
  267. package/lib/server/screencast.js +214 -0
  268. package/lib/server/screenshotter.js +333 -0
  269. package/lib/server/selectors.js +112 -0
  270. package/lib/server/socksClientCertificatesInterceptor.js +383 -0
  271. package/lib/server/socksInterceptor.js +95 -0
  272. package/lib/server/trace/recorder/snapshotter.js +147 -0
  273. package/lib/server/trace/recorder/snapshotterInjected.js +561 -0
  274. package/lib/server/trace/recorder/tracing.js +607 -0
  275. package/lib/server/trace/viewer/traceParser.js +72 -0
  276. package/lib/server/trace/viewer/traceViewer.js +244 -0
  277. package/lib/server/transport.js +181 -0
  278. package/lib/server/types.js +28 -0
  279. package/lib/server/usKeyboardLayout.js +145 -0
  280. package/lib/server/utils/ascii.js +44 -0
  281. package/lib/server/utils/comparators.js +139 -0
  282. package/lib/server/utils/crypto.js +216 -0
  283. package/lib/server/utils/debug.js +42 -0
  284. package/lib/server/utils/debugLogger.js +122 -0
  285. package/lib/server/utils/env.js +73 -0
  286. package/lib/server/utils/eventsHelper.js +39 -0
  287. package/lib/server/utils/expectUtils.js +123 -0
  288. package/lib/server/utils/fileUtils.js +191 -0
  289. package/lib/server/utils/happyEyeballs.js +207 -0
  290. package/lib/server/utils/hostPlatform.js +123 -0
  291. package/lib/server/utils/httpServer.js +205 -0
  292. package/lib/server/utils/image_tools/colorUtils.js +89 -0
  293. package/lib/server/utils/image_tools/compare.js +109 -0
  294. package/lib/server/utils/image_tools/imageChannel.js +78 -0
  295. package/lib/server/utils/image_tools/stats.js +102 -0
  296. package/lib/server/utils/linuxUtils.js +71 -0
  297. package/lib/server/utils/network.js +244 -0
  298. package/lib/server/utils/nodePlatform.js +154 -0
  299. package/lib/server/utils/pipeTransport.js +84 -0
  300. package/lib/server/utils/processLauncher.js +243 -0
  301. package/lib/server/utils/profiler.js +65 -0
  302. package/lib/server/utils/socksProxy.js +511 -0
  303. package/lib/server/utils/spawnAsync.js +41 -0
  304. package/lib/server/utils/task.js +51 -0
  305. package/lib/server/utils/userAgent.js +98 -0
  306. package/lib/server/utils/wsServer.js +121 -0
  307. package/lib/server/utils/zipFile.js +74 -0
  308. package/lib/server/utils/zones.js +57 -0
  309. package/lib/server/videoRecorder.js +133 -0
  310. package/lib/server/webkit/protocol.d.js +16 -0
  311. package/lib/server/webkit/webkit.js +108 -0
  312. package/lib/server/webkit/wkBrowser.js +331 -0
  313. package/lib/server/webkit/wkConnection.js +144 -0
  314. package/lib/server/webkit/wkExecutionContext.js +154 -0
  315. package/lib/server/webkit/wkInput.js +181 -0
  316. package/lib/server/webkit/wkInterceptableRequest.js +197 -0
  317. package/lib/server/webkit/wkPage.js +1164 -0
  318. package/lib/server/webkit/wkProvisionalPage.js +83 -0
  319. package/lib/server/webkit/wkWorkers.js +106 -0
  320. package/lib/serverRegistry.js +136 -0
  321. package/lib/third_party/pixelmatch.js +255 -0
  322. package/lib/tools/browserServerBackend.js +79 -0
  323. package/lib/tools/common.js +63 -0
  324. package/lib/tools/config.js +41 -0
  325. package/lib/tools/console.js +65 -0
  326. package/lib/tools/context.js +282 -0
  327. package/lib/tools/cookies.js +152 -0
  328. package/lib/tools/customDomLocatorCompiler.js +239 -0
  329. package/lib/tools/customDomResolverDiagnostics.js +100 -0
  330. package/lib/tools/customDomSnapshotFormatter.js +658 -0
  331. package/lib/tools/devtools.js +42 -0
  332. package/lib/tools/dialogs.js +59 -0
  333. package/lib/tools/evaluate.js +61 -0
  334. package/lib/tools/exports.js +57 -0
  335. package/lib/tools/files.js +58 -0
  336. package/lib/tools/form.js +63 -0
  337. package/lib/tools/keyboard.js +151 -0
  338. package/lib/tools/logFile.js +95 -0
  339. package/lib/tools/mouse.js +170 -0
  340. package/lib/tools/navigate.js +105 -0
  341. package/lib/tools/network.js +112 -0
  342. package/lib/tools/pdf.js +48 -0
  343. package/lib/tools/response.js +278 -0
  344. package/lib/tools/route.js +140 -0
  345. package/lib/tools/runCode.js +76 -0
  346. package/lib/tools/screenshot.js +87 -0
  347. package/lib/tools/sessionLog.js +75 -0
  348. package/lib/tools/snapshot.js +209 -0
  349. package/lib/tools/storage.js +67 -0
  350. package/lib/tools/tab.js +596 -0
  351. package/lib/tools/tabs.js +67 -0
  352. package/lib/tools/tool.js +47 -0
  353. package/lib/tools/tools.js +94 -0
  354. package/lib/tools/tracing.js +75 -0
  355. package/lib/tools/utils.js +88 -0
  356. package/lib/tools/verify.js +149 -0
  357. package/lib/tools/video.js +89 -0
  358. package/lib/tools/wait.js +63 -0
  359. package/lib/tools/webstorage.js +223 -0
  360. package/lib/utils/isomorphic/aiSnapshotTypes.js +16 -0
  361. package/lib/utils/isomorphic/ariaSnapshot.js +455 -0
  362. package/lib/utils/isomorphic/assert.js +31 -0
  363. package/lib/utils/isomorphic/colors.js +72 -0
  364. package/lib/utils/isomorphic/cssParser.js +245 -0
  365. package/lib/utils/isomorphic/cssTokenizer.js +1051 -0
  366. package/lib/utils/isomorphic/headers.js +53 -0
  367. package/lib/utils/isomorphic/imageUtils.js +141 -0
  368. package/lib/utils/isomorphic/locatorGenerators.js +689 -0
  369. package/lib/utils/isomorphic/locatorParser.js +176 -0
  370. package/lib/utils/isomorphic/locatorUtils.js +81 -0
  371. package/lib/utils/isomorphic/lruCache.js +51 -0
  372. package/lib/utils/isomorphic/manualPromise.js +114 -0
  373. package/lib/utils/isomorphic/mimeType.js +464 -0
  374. package/lib/utils/isomorphic/multimap.js +80 -0
  375. package/lib/utils/isomorphic/protocolFormatter.js +81 -0
  376. package/lib/utils/isomorphic/protocolMetainfo.js +345 -0
  377. package/lib/utils/isomorphic/rtti.js +43 -0
  378. package/lib/utils/isomorphic/selectorParser.js +386 -0
  379. package/lib/utils/isomorphic/semaphore.js +54 -0
  380. package/lib/utils/isomorphic/stackTrace.js +158 -0
  381. package/lib/utils/isomorphic/stringUtils.js +204 -0
  382. package/lib/utils/isomorphic/time.js +49 -0
  383. package/lib/utils/isomorphic/timeoutRunner.js +66 -0
  384. package/lib/utils/isomorphic/trace/entries.js +16 -0
  385. package/lib/utils/isomorphic/trace/snapshotRenderer.js +502 -0
  386. package/lib/utils/isomorphic/trace/snapshotServer.js +120 -0
  387. package/lib/utils/isomorphic/trace/snapshotStorage.js +89 -0
  388. package/lib/utils/isomorphic/trace/traceLoader.js +131 -0
  389. package/lib/utils/isomorphic/trace/traceModel.js +366 -0
  390. package/lib/utils/isomorphic/trace/traceModernizer.js +401 -0
  391. package/lib/utils/isomorphic/trace/versions/traceV3.js +16 -0
  392. package/lib/utils/isomorphic/trace/versions/traceV4.js +16 -0
  393. package/lib/utils/isomorphic/trace/versions/traceV5.js +16 -0
  394. package/lib/utils/isomorphic/trace/versions/traceV6.js +16 -0
  395. package/lib/utils/isomorphic/trace/versions/traceV7.js +16 -0
  396. package/lib/utils/isomorphic/trace/versions/traceV8.js +16 -0
  397. package/lib/utils/isomorphic/traceUtils.js +58 -0
  398. package/lib/utils/isomorphic/types.js +16 -0
  399. package/lib/utils/isomorphic/urlMatch.js +243 -0
  400. package/lib/utils/isomorphic/utilityScriptSerializers.js +262 -0
  401. package/lib/utils/isomorphic/yaml.js +84 -0
  402. package/lib/utils.js +111 -0
  403. package/lib/utilsBundle.js +112 -0
  404. package/lib/utilsBundleImpl/index.js +218 -0
  405. package/lib/utilsBundleImpl/xdg-open +1066 -0
  406. package/lib/vite/devtools/assets/index-D3CVnoLM.css +1 -0
  407. package/lib/vite/devtools/assets/index-wqccfruE.js +50 -0
  408. package/lib/vite/devtools/index.html +28 -0
  409. package/lib/vite/htmlReport/index.html +84 -0
  410. package/lib/vite/recorder/assets/codeMirrorModule-4NapTJOb.js +32 -0
  411. package/lib/vite/recorder/assets/codeMirrorModule-DYBRYzYX.css +1 -0
  412. package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  413. package/lib/vite/recorder/assets/index-BSjZa4pk.css +1 -0
  414. package/lib/vite/recorder/assets/index-CD9lKVjM.js +193 -0
  415. package/lib/vite/recorder/index.html +29 -0
  416. package/lib/vite/recorder/playwright-logo.svg +9 -0
  417. package/lib/vite/traceViewer/assets/codeMirrorModule-RgXeHFoQ.js +32 -0
  418. package/lib/vite/traceViewer/assets/defaultSettingsView-DP6vvJEM.js +269 -0
  419. package/lib/vite/traceViewer/assets/xtermModule-CsJ4vdCR.js +9 -0
  420. package/lib/vite/traceViewer/codeMirrorModule.DYBRYzYX.css +1 -0
  421. package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  422. package/lib/vite/traceViewer/defaultSettingsView.DQ9U-ctL.css +1 -0
  423. package/lib/vite/traceViewer/index.BVu7tZDe.css +1 -0
  424. package/lib/vite/traceViewer/index.D8YUXFVt.js +2 -0
  425. package/lib/vite/traceViewer/index.html +43 -0
  426. package/lib/vite/traceViewer/manifest.webmanifest +16 -0
  427. package/lib/vite/traceViewer/playwright-logo.svg +9 -0
  428. package/lib/vite/traceViewer/snapshot.html +21 -0
  429. package/lib/vite/traceViewer/sw.bundle.js +5 -0
  430. package/lib/vite/traceViewer/uiMode.BIQFTUME.js +6 -0
  431. package/lib/vite/traceViewer/uiMode.Btcz36p_.css +1 -0
  432. package/lib/vite/traceViewer/uiMode.html +17 -0
  433. package/lib/vite/traceViewer/xtermModule.DYP7pi_n.css +32 -0
  434. package/lib/zipBundle.js +34 -0
  435. package/lib/zipBundleImpl.js +5 -0
  436. package/package.json +52 -0
  437. package/types/protocol.d.ts +24365 -0
  438. package/types/structs.d.ts +45 -0
  439. package/types/types.d.ts +23724 -0
@@ -0,0 +1,3759 @@
1
+ microsoft/playwright-core
2
+
3
+ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
4
+
5
+ This project incorporates components from the projects listed below. The original copyright notices and the licenses under which Microsoft received such components are set forth below. Microsoft reserves all rights not expressly granted herein, whether by implication, estoppel or otherwise.
6
+
7
+ - @hono/node-server@1.19.11 (https://github.com/honojs/node-server)
8
+ - @lowire/loop@0.0.25 (https://github.com/pavelfeldman/lowire)
9
+ - @modelcontextprotocol/sdk@1.26.0 (https://github.com/modelcontextprotocol/typescript-sdk)
10
+ - accepts@2.0.0 (https://github.com/jshttp/accepts)
11
+ - agent-base@7.1.4 (https://github.com/TooTallNate/proxy-agents)
12
+ - ajv-formats@3.0.1 (https://github.com/ajv-validator/ajv-formats)
13
+ - ajv@8.17.1 (https://github.com/ajv-validator/ajv)
14
+ - balanced-match@1.0.2 (https://github.com/juliangruber/balanced-match)
15
+ - body-parser@2.2.2 (https://github.com/expressjs/body-parser)
16
+ - brace-expansion@1.1.12 (https://github.com/juliangruber/brace-expansion)
17
+ - buffer-crc32@0.2.13 (https://github.com/brianloveswords/buffer-crc32)
18
+ - bytes@3.1.2 (https://github.com/visionmedia/bytes.js)
19
+ - call-bind-apply-helpers@1.0.2 (https://github.com/ljharb/call-bind-apply-helpers)
20
+ - call-bound@1.0.4 (https://github.com/ljharb/call-bound)
21
+ - codemirror@5.65.18 (https://github.com/codemirror/CodeMirror)
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-disposition@1.0.1 (https://github.com/jshttp/content-disposition)
26
+ - content-type@1.0.5 (https://github.com/jshttp/content-type)
27
+ - cookie-signature@1.2.2 (https://github.com/visionmedia/node-cookie-signature)
28
+ - cookie@0.7.2 (https://github.com/jshttp/cookie)
29
+ - cors@2.8.5 (https://github.com/expressjs/cors)
30
+ - cross-spawn@7.0.6 (https://github.com/moxystudio/node-cross-spawn)
31
+ - debug@4.3.4 (https://github.com/debug-js/debug)
32
+ - debug@4.4.0 (https://github.com/debug-js/debug)
33
+ - debug@4.4.3 (https://github.com/debug-js/debug)
34
+ - define-lazy-prop@2.0.0 (https://github.com/sindresorhus/define-lazy-prop)
35
+ - depd@2.0.0 (https://github.com/dougwilson/nodejs-depd)
36
+ - diff@7.0.0 (https://github.com/kpdecker/jsdiff)
37
+ - dotenv@16.4.5 (https://github.com/motdotla/dotenv)
38
+ - dunder-proto@1.0.1 (https://github.com/es-shims/dunder-proto)
39
+ - ee-first@1.1.1 (https://github.com/jonathanong/ee-first)
40
+ - encodeurl@2.0.0 (https://github.com/pillarjs/encodeurl)
41
+ - end-of-stream@1.4.4 (https://github.com/mafintosh/end-of-stream)
42
+ - es-define-property@1.0.1 (https://github.com/ljharb/es-define-property)
43
+ - es-errors@1.3.0 (https://github.com/ljharb/es-errors)
44
+ - es-object-atoms@1.1.1 (https://github.com/ljharb/es-object-atoms)
45
+ - escape-html@1.0.3 (https://github.com/component/escape-html)
46
+ - etag@1.8.1 (https://github.com/jshttp/etag)
47
+ - eventsource-parser@3.0.3 (https://github.com/rexxars/eventsource-parser)
48
+ - eventsource@3.0.7 (git://git@github.com/EventSource/eventsource)
49
+ - express-rate-limit@8.2.1 (https://github.com/express-rate-limit/express-rate-limit)
50
+ - express@5.2.1 (https://github.com/expressjs/express)
51
+ - fast-deep-equal@3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
52
+ - fast-uri@3.1.0 (https://github.com/fastify/fast-uri)
53
+ - finalhandler@2.1.1 (https://github.com/pillarjs/finalhandler)
54
+ - forwarded@0.2.0 (https://github.com/jshttp/forwarded)
55
+ - fresh@2.0.0 (https://github.com/jshttp/fresh)
56
+ - function-bind@1.1.2 (https://github.com/Raynos/function-bind)
57
+ - get-intrinsic@1.3.0 (https://github.com/ljharb/get-intrinsic)
58
+ - get-proto@1.0.1 (https://github.com/ljharb/get-proto)
59
+ - get-stream@5.2.0 (https://github.com/sindresorhus/get-stream)
60
+ - gopd@1.2.0 (https://github.com/ljharb/gopd)
61
+ - graceful-fs@4.2.10 (https://github.com/isaacs/node-graceful-fs)
62
+ - has-symbols@1.1.0 (https://github.com/inspect-js/has-symbols)
63
+ - hasown@2.0.2 (https://github.com/inspect-js/hasOwn)
64
+ - hono@4.12.5 (https://github.com/honojs/hono)
65
+ - http-errors@2.0.1 (https://github.com/jshttp/http-errors)
66
+ - https-proxy-agent@7.0.6 (https://github.com/TooTallNate/proxy-agents)
67
+ - iconv-lite@0.7.2 (https://github.com/pillarjs/iconv-lite)
68
+ - inherits@2.0.4 (https://github.com/isaacs/inherits)
69
+ - ini@6.0.0 (https://github.com/npm/ini)
70
+ - ip-address@10.0.1 (https://github.com/beaugunderson/ip-address)
71
+ - ip-address@9.0.5 (https://github.com/beaugunderson/ip-address)
72
+ - ipaddr.js@1.9.1 (https://github.com/whitequark/ipaddr.js)
73
+ - is-docker@2.2.1 (https://github.com/sindresorhus/is-docker)
74
+ - is-promise@4.0.0 (https://github.com/then/is-promise)
75
+ - is-wsl@2.2.0 (https://github.com/sindresorhus/is-wsl)
76
+ - isexe@2.0.0 (https://github.com/isaacs/isexe)
77
+ - jose@6.1.3 (https://github.com/panva/jose)
78
+ - jpeg-js@0.4.4 (https://github.com/eugeneware/jpeg-js)
79
+ - jsbn@1.1.0 (https://github.com/andyperlitch/jsbn)
80
+ - json-schema-traverse@1.0.0 (https://github.com/epoberezkin/json-schema-traverse)
81
+ - json-schema-typed@8.0.2 (https://github.com/RemyRylan/json-schema-typed)
82
+ - math-intrinsics@1.1.0 (https://github.com/es-shims/math-intrinsics)
83
+ - media-typer@1.1.0 (https://github.com/jshttp/media-typer)
84
+ - merge-descriptors@2.0.0 (https://github.com/sindresorhus/merge-descriptors)
85
+ - mime-db@1.54.0 (https://github.com/jshttp/mime-db)
86
+ - mime-types@3.0.2 (https://github.com/jshttp/mime-types)
87
+ - mime@3.0.0 (https://github.com/broofa/mime)
88
+ - minimatch@3.1.4 (https://github.com/isaacs/minimatch)
89
+ - ms@2.1.2 (https://github.com/zeit/ms)
90
+ - ms@2.1.3 (https://github.com/vercel/ms)
91
+ - negotiator@1.0.0 (https://github.com/jshttp/negotiator)
92
+ - object-assign@4.1.1 (https://github.com/sindresorhus/object-assign)
93
+ - object-inspect@1.13.4 (https://github.com/inspect-js/object-inspect)
94
+ - on-finished@2.4.1 (https://github.com/jshttp/on-finished)
95
+ - once@1.4.0 (https://github.com/isaacs/once)
96
+ - open@8.4.0 (https://github.com/sindresorhus/open)
97
+ - parseurl@1.3.3 (https://github.com/pillarjs/parseurl)
98
+ - path-key@3.1.1 (https://github.com/sindresorhus/path-key)
99
+ - path-to-regexp@8.3.0 (https://github.com/pillarjs/path-to-regexp)
100
+ - pend@1.2.0 (https://github.com/andrewrk/node-pend)
101
+ - pkce-challenge@5.0.0 (https://github.com/crouchcd/pkce-challenge)
102
+ - pngjs@6.0.0 (https://github.com/lukeapage/pngjs)
103
+ - progress@2.0.3 (https://github.com/visionmedia/node-progress)
104
+ - proxy-addr@2.0.7 (https://github.com/jshttp/proxy-addr)
105
+ - proxy-from-env@2.0.0 (https://github.com/Rob--W/proxy-from-env)
106
+ - pump@3.0.2 (https://github.com/mafintosh/pump)
107
+ - qs@6.14.1 (https://github.com/ljharb/qs)
108
+ - range-parser@1.2.1 (https://github.com/jshttp/range-parser)
109
+ - raw-body@3.0.2 (https://github.com/stream-utils/raw-body)
110
+ - require-from-string@2.0.2 (https://github.com/floatdrop/require-from-string)
111
+ - retry@0.12.0 (https://github.com/tim-kos/node-retry)
112
+ - router@2.2.0 (https://github.com/pillarjs/router)
113
+ - safer-buffer@2.1.2 (https://github.com/ChALkeR/safer-buffer)
114
+ - send@1.2.1 (https://github.com/pillarjs/send)
115
+ - serve-static@2.2.1 (https://github.com/expressjs/serve-static)
116
+ - setprototypeof@1.2.0 (https://github.com/wesleytodd/setprototypeof)
117
+ - shebang-command@2.0.0 (https://github.com/kevva/shebang-command)
118
+ - shebang-regex@3.0.0 (https://github.com/sindresorhus/shebang-regex)
119
+ - side-channel-list@1.0.0 (https://github.com/ljharb/side-channel-list)
120
+ - side-channel-map@1.0.1 (https://github.com/ljharb/side-channel-map)
121
+ - side-channel-weakmap@1.0.2 (https://github.com/ljharb/side-channel-weakmap)
122
+ - side-channel@1.1.0 (https://github.com/ljharb/side-channel)
123
+ - signal-exit@3.0.7 (https://github.com/tapjs/signal-exit)
124
+ - smart-buffer@4.2.0 (https://github.com/JoshGlazebrook/smart-buffer)
125
+ - socks-proxy-agent@8.0.5 (https://github.com/TooTallNate/proxy-agents)
126
+ - socks@2.8.3 (https://github.com/JoshGlazebrook/socks)
127
+ - sprintf-js@1.1.3 (https://github.com/alexei/sprintf.js)
128
+ - statuses@2.0.2 (https://github.com/jshttp/statuses)
129
+ - toidentifier@1.0.1 (https://github.com/component/toidentifier)
130
+ - type-is@2.0.1 (https://github.com/jshttp/type-is)
131
+ - unpipe@1.0.0 (https://github.com/stream-utils/unpipe)
132
+ - vary@1.1.2 (https://github.com/jshttp/vary)
133
+ - which@2.0.2 (https://github.com/isaacs/node-which)
134
+ - wrappy@1.0.2 (https://github.com/npm/wrappy)
135
+ - ws@8.17.1 (https://github.com/websockets/ws)
136
+ - yaml@2.6.0 (https://github.com/eemeli/yaml)
137
+ - yauzl@3.2.0 (https://github.com/thejoshwolfe/yauzl)
138
+ - yazl@2.5.1 (https://github.com/thejoshwolfe/yazl)
139
+ - zod-to-json-schema@3.25.1 (https://github.com/StefanTerdell/zod-to-json-schema)
140
+ - zod@4.3.5 (https://github.com/colinhacks/zod)
141
+
142
+ %% @hono/node-server@1.19.11 NOTICES AND INFORMATION BEGIN HERE
143
+ =========================================
144
+ MIT License
145
+
146
+ Copyright (c) 2022 - present, Yusuke Wada and Hono contributors
147
+
148
+ Permission is hereby granted, free of charge, to any person obtaining a copy
149
+ of this software and associated documentation files (the "Software"), to deal
150
+ in the Software without restriction, including without limitation the rights
151
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
152
+ copies of the Software, and to permit persons to whom the Software is
153
+ furnished to do so, subject to the following conditions:
154
+
155
+ The above copyright notice and this permission notice shall be included in all
156
+ copies or substantial portions of the Software.
157
+
158
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
159
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
160
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
161
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
162
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
163
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
164
+ SOFTWARE.
165
+ =========================================
166
+ END OF @hono/node-server@1.19.11 AND INFORMATION
167
+
168
+ %% @lowire/loop@0.0.25 NOTICES AND INFORMATION BEGIN HERE
169
+ =========================================
170
+ Apache License
171
+ Version 2.0, January 2004
172
+ http://www.apache.org/licenses/
173
+
174
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
175
+
176
+ 1. Definitions.
177
+
178
+ "License" shall mean the terms and conditions for use, reproduction,
179
+ and distribution as defined by Sections 1 through 9 of this document.
180
+
181
+ "Licensor" shall mean the copyright owner or entity authorized by
182
+ the copyright owner that is granting the License.
183
+
184
+ "Legal Entity" shall mean the union of the acting entity and all
185
+ other entities that control, are controlled by, or are under common
186
+ control with that entity. For the purposes of this definition,
187
+ "control" means (i) the power, direct or indirect, to cause the
188
+ direction or management of such entity, whether by contract or
189
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
190
+ outstanding shares, or (iii) beneficial ownership of such entity.
191
+
192
+ "You" (or "Your") shall mean an individual or Legal Entity
193
+ exercising permissions granted by this License.
194
+
195
+ "Source" form shall mean the preferred form for making modifications,
196
+ including but not limited to software source code, documentation
197
+ source, and configuration files.
198
+
199
+ "Object" form shall mean any form resulting from mechanical
200
+ transformation or translation of a Source form, including but
201
+ not limited to compiled object code, generated documentation,
202
+ and conversions to other media types.
203
+
204
+ "Work" shall mean the work of authorship, whether in Source or
205
+ Object form, made available under the License, as indicated by a
206
+ copyright notice that is included in or attached to the work
207
+ (an example is provided in the Appendix below).
208
+
209
+ "Derivative Works" shall mean any work, whether in Source or Object
210
+ form, that is based on (or derived from) the Work and for which the
211
+ editorial revisions, annotations, elaborations, or other modifications
212
+ represent, as a whole, an original work of authorship. For the purposes
213
+ of this License, Derivative Works shall not include works that remain
214
+ separable from, or merely link (or bind by name) to the interfaces of,
215
+ the Work and Derivative Works thereof.
216
+
217
+ "Contribution" shall mean any work of authorship, including
218
+ the original version of the Work and any modifications or additions
219
+ to that Work or Derivative Works thereof, that is intentionally
220
+ submitted to Licensor for inclusion in the Work by the copyright owner
221
+ or by an individual or Legal Entity authorized to submit on behalf of
222
+ the copyright owner. For the purposes of this definition, "submitted"
223
+ means any form of electronic, verbal, or written communication sent
224
+ to the Licensor or its representatives, including but not limited to
225
+ communication on electronic mailing lists, source code control systems,
226
+ and issue tracking systems that are managed by, or on behalf of, the
227
+ Licensor for the purpose of discussing and improving the Work, but
228
+ excluding communication that is conspicuously marked or otherwise
229
+ designated in writing by the copyright owner as "Not a Contribution."
230
+
231
+ "Contributor" shall mean Licensor and any individual or Legal Entity
232
+ on behalf of whom a Contribution has been received by Licensor and
233
+ subsequently incorporated within the Work.
234
+
235
+ 2. Grant of Copyright License. Subject to the terms and conditions of
236
+ this License, each Contributor hereby grants to You a perpetual,
237
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
238
+ copyright license to reproduce, prepare Derivative Works of,
239
+ publicly display, publicly perform, sublicense, and distribute the
240
+ Work and such Derivative Works in Source or Object form.
241
+
242
+ 3. Grant of Patent License. Subject to the terms and conditions of
243
+ this License, each Contributor hereby grants to You a perpetual,
244
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
245
+ (except as stated in this section) patent license to make, have made,
246
+ use, offer to sell, sell, import, and otherwise transfer the Work,
247
+ where such license applies only to those patent claims licensable
248
+ by such Contributor that are necessarily infringed by their
249
+ Contribution(s) alone or by combination of their Contribution(s)
250
+ with the Work to which such Contribution(s) was submitted. If You
251
+ institute patent litigation against any entity (including a
252
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
253
+ or a Contribution incorporated within the Work constitutes direct
254
+ or contributory patent infringement, then any patent licenses
255
+ granted to You under this License for that Work shall terminate
256
+ as of the date such litigation is filed.
257
+
258
+ 4. Redistribution. You may reproduce and distribute copies of the
259
+ Work or Derivative Works thereof in any medium, with or without
260
+ modifications, and in Source or Object form, provided that You
261
+ meet the following conditions:
262
+
263
+ (a) You must give any other recipients of the Work or
264
+ Derivative Works a copy of this License; and
265
+
266
+ (b) You must cause any modified files to carry prominent notices
267
+ stating that You changed the files; and
268
+
269
+ (c) You must retain, in the Source form of any Derivative Works
270
+ that You distribute, all copyright, patent, trademark, and
271
+ attribution notices from the Source form of the Work,
272
+ excluding those notices that do not pertain to any part of
273
+ the Derivative Works; and
274
+
275
+ (d) If the Work includes a "NOTICE" text file as part of its
276
+ distribution, then any Derivative Works that You distribute must
277
+ include a readable copy of the attribution notices contained
278
+ within such NOTICE file, excluding those notices that do not
279
+ pertain to any part of the Derivative Works, in at least one
280
+ of the following places: within a NOTICE text file distributed
281
+ as part of the Derivative Works; within the Source form or
282
+ documentation, if provided along with the Derivative Works; or,
283
+ within a display generated by the Derivative Works, if and
284
+ wherever such third-party notices normally appear. The contents
285
+ of the NOTICE file are for informational purposes only and
286
+ do not modify the License. You may add Your own attribution
287
+ notices within Derivative Works that You distribute, alongside
288
+ or as an addendum to the NOTICE text from the Work, provided
289
+ that such additional attribution notices cannot be construed
290
+ as modifying the License.
291
+
292
+ You may add Your own copyright statement to Your modifications and
293
+ may provide additional or different license terms and conditions
294
+ for use, reproduction, or distribution of Your modifications, or
295
+ for any such Derivative Works as a whole, provided Your use,
296
+ reproduction, and distribution of the Work otherwise complies with
297
+ the conditions stated in this License.
298
+
299
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
300
+ any Contribution intentionally submitted for inclusion in the Work
301
+ by You to the Licensor shall be under the terms and conditions of
302
+ this License, without any additional terms or conditions.
303
+ Notwithstanding the above, nothing herein shall supersede or modify
304
+ the terms of any separate license agreement you may have executed
305
+ with Licensor regarding such Contributions.
306
+
307
+ 6. Trademarks. This License does not grant permission to use the trade
308
+ names, trademarks, service marks, or product names of the Licensor,
309
+ except as required for reasonable and customary use in describing the
310
+ origin of the Work and reproducing the content of the NOTICE file.
311
+
312
+ 7. Disclaimer of Warranty. Unless required by applicable law or
313
+ agreed to in writing, Licensor provides the Work (and each
314
+ Contributor provides its Contributions) on an "AS IS" BASIS,
315
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
316
+ implied, including, without limitation, any warranties or conditions
317
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
318
+ PARTICULAR PURPOSE. You are solely responsible for determining the
319
+ appropriateness of using or redistributing the Work and assume any
320
+ risks associated with Your exercise of permissions under this License.
321
+
322
+ 8. Limitation of Liability. In no event and under no legal theory,
323
+ whether in tort (including negligence), contract, or otherwise,
324
+ unless required by applicable law (such as deliberate and grossly
325
+ negligent acts) or agreed to in writing, shall any Contributor be
326
+ liable to You for damages, including any direct, indirect, special,
327
+ incidental, or consequential damages of any character arising as a
328
+ result of this License or out of the use or inability to use the
329
+ Work (including but not limited to damages for loss of goodwill,
330
+ work stoppage, computer failure or malfunction, or any and all
331
+ other commercial damages or losses), even if such Contributor
332
+ has been advised of the possibility of such damages.
333
+
334
+ 9. Accepting Warranty or Additional Liability. While redistributing
335
+ the Work or Derivative Works thereof, You may choose to offer,
336
+ and charge a fee for, acceptance of support, warranty, indemnity,
337
+ or other liability obligations and/or rights consistent with this
338
+ License. However, in accepting such obligations, You may act only
339
+ on Your own behalf and on Your sole responsibility, not on behalf
340
+ of any other Contributor, and only if You agree to indemnify,
341
+ defend, and hold each Contributor harmless for any liability
342
+ incurred by, or claims asserted against, such Contributor by reason
343
+ of your accepting any such warranty or additional liability.
344
+
345
+ END OF TERMS AND CONDITIONS
346
+
347
+ APPENDIX: How to apply the Apache License to your work.
348
+
349
+ To apply the Apache License to your work, attach the following
350
+ boilerplate notice, with the fields enclosed by brackets "[]"
351
+ replaced with your own identifying information. (Don't include
352
+ the brackets!) The text should be enclosed in the appropriate
353
+ comment syntax for the file format. We also recommend that a
354
+ file or class name and description of purpose be included on the
355
+ same "printed page" as the copyright notice for easier
356
+ identification within third-party archives.
357
+
358
+ Copyright (c) Microsoft Corporation.
359
+
360
+ Licensed under the Apache License, Version 2.0 (the "License");
361
+ you may not use this file except in compliance with the License.
362
+ You may obtain a copy of the License at
363
+
364
+ http://www.apache.org/licenses/LICENSE-2.0
365
+
366
+ Unless required by applicable law or agreed to in writing, software
367
+ distributed under the License is distributed on an "AS IS" BASIS,
368
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
369
+ See the License for the specific language governing permissions and
370
+ limitations under the License.
371
+ =========================================
372
+ END OF @lowire/loop@0.0.25 AND INFORMATION
373
+
374
+ %% @modelcontextprotocol/sdk@1.26.0 NOTICES AND INFORMATION BEGIN HERE
375
+ =========================================
376
+ MIT License
377
+
378
+ Copyright (c) 2024 Anthropic, PBC
379
+
380
+ Permission is hereby granted, free of charge, to any person obtaining a copy
381
+ of this software and associated documentation files (the "Software"), to deal
382
+ in the Software without restriction, including without limitation the rights
383
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
384
+ copies of the Software, and to permit persons to whom the Software is
385
+ furnished to do so, subject to the following conditions:
386
+
387
+ The above copyright notice and this permission notice shall be included in all
388
+ copies or substantial portions of the Software.
389
+
390
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
391
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
392
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
393
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
394
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
395
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
396
+ SOFTWARE.
397
+ =========================================
398
+ END OF @modelcontextprotocol/sdk@1.26.0 AND INFORMATION
399
+
400
+ %% accepts@2.0.0 NOTICES AND INFORMATION BEGIN HERE
401
+ =========================================
402
+ (The MIT License)
403
+
404
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
405
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
406
+
407
+ Permission is hereby granted, free of charge, to any person obtaining
408
+ a copy of this software and associated documentation files (the
409
+ 'Software'), to deal in the Software without restriction, including
410
+ without limitation the rights to use, copy, modify, merge, publish,
411
+ distribute, sublicense, and/or sell copies of the Software, and to
412
+ permit persons to whom the Software is furnished to do so, subject to
413
+ the following conditions:
414
+
415
+ The above copyright notice and this permission notice shall be
416
+ included in all copies or substantial portions of the Software.
417
+
418
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
419
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
420
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
421
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
422
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
423
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
424
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
425
+ =========================================
426
+ END OF accepts@2.0.0 AND INFORMATION
427
+
428
+ %% agent-base@7.1.4 NOTICES AND INFORMATION BEGIN HERE
429
+ =========================================
430
+ (The MIT License)
431
+
432
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
433
+
434
+ Permission is hereby granted, free of charge, to any person obtaining
435
+ a copy of this software and associated documentation files (the
436
+ 'Software'), to deal in the Software without restriction, including
437
+ without limitation the rights to use, copy, modify, merge, publish,
438
+ distribute, sublicense, and/or sell copies of the Software, and to
439
+ permit persons to whom the Software is furnished to do so, subject to
440
+ the following conditions:
441
+
442
+ The above copyright notice and this permission notice shall be
443
+ included in all copies or substantial portions of the Software.
444
+
445
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
446
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
447
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
448
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
449
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
450
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
451
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
452
+ =========================================
453
+ END OF agent-base@7.1.4 AND INFORMATION
454
+
455
+ %% ajv-formats@3.0.1 NOTICES AND INFORMATION BEGIN HERE
456
+ =========================================
457
+ MIT License
458
+
459
+ Copyright (c) 2020 Evgeny Poberezkin
460
+
461
+ Permission is hereby granted, free of charge, to any person obtaining a copy
462
+ of this software and associated documentation files (the "Software"), to deal
463
+ in the Software without restriction, including without limitation the rights
464
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
465
+ copies of the Software, and to permit persons to whom the Software is
466
+ furnished to do so, subject to the following conditions:
467
+
468
+ The above copyright notice and this permission notice shall be included in all
469
+ copies or substantial portions of the Software.
470
+
471
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
472
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
473
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
474
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
475
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
476
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
477
+ SOFTWARE.
478
+ =========================================
479
+ END OF ajv-formats@3.0.1 AND INFORMATION
480
+
481
+ %% ajv@8.17.1 NOTICES AND INFORMATION BEGIN HERE
482
+ =========================================
483
+ The MIT License (MIT)
484
+
485
+ Copyright (c) 2015-2021 Evgeny Poberezkin
486
+
487
+ Permission is hereby granted, free of charge, to any person obtaining a copy
488
+ of this software and associated documentation files (the "Software"), to deal
489
+ in the Software without restriction, including without limitation the rights
490
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
491
+ copies of the Software, and to permit persons to whom the Software is
492
+ furnished to do so, subject to the following conditions:
493
+
494
+ The above copyright notice and this permission notice shall be included in all
495
+ copies or substantial portions of the Software.
496
+
497
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
498
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
499
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
500
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
501
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
502
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
503
+ SOFTWARE.
504
+ =========================================
505
+ END OF ajv@8.17.1 AND INFORMATION
506
+
507
+ %% balanced-match@1.0.2 NOTICES AND INFORMATION BEGIN HERE
508
+ =========================================
509
+ (MIT)
510
+
511
+ Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
512
+
513
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
514
+ this software and associated documentation files (the "Software"), to deal in
515
+ the Software without restriction, including without limitation the rights to
516
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
517
+ of the Software, and to permit persons to whom the Software is furnished to do
518
+ so, subject to the following conditions:
519
+
520
+ The above copyright notice and this permission notice shall be included in all
521
+ copies or substantial portions of the Software.
522
+
523
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
524
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
525
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
526
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
527
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
528
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
529
+ SOFTWARE.
530
+ =========================================
531
+ END OF balanced-match@1.0.2 AND INFORMATION
532
+
533
+ %% body-parser@2.2.2 NOTICES AND INFORMATION BEGIN HERE
534
+ =========================================
535
+ (The MIT License)
536
+
537
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
538
+ Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
539
+
540
+ Permission is hereby granted, free of charge, to any person obtaining
541
+ a copy of this software and associated documentation files (the
542
+ 'Software'), to deal in the Software without restriction, including
543
+ without limitation the rights to use, copy, modify, merge, publish,
544
+ distribute, sublicense, and/or sell copies of the Software, and to
545
+ permit persons to whom the Software is furnished to do so, subject to
546
+ the following conditions:
547
+
548
+ The above copyright notice and this permission notice shall be
549
+ included in all copies or substantial portions of the Software.
550
+
551
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
552
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
553
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
554
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
555
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
556
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
557
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
558
+ =========================================
559
+ END OF body-parser@2.2.2 AND INFORMATION
560
+
561
+ %% brace-expansion@1.1.12 NOTICES AND INFORMATION BEGIN HERE
562
+ =========================================
563
+ MIT License
564
+
565
+ Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
566
+
567
+ Permission is hereby granted, free of charge, to any person obtaining a copy
568
+ of this software and associated documentation files (the "Software"), to deal
569
+ in the Software without restriction, including without limitation the rights
570
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
571
+ copies of the Software, and to permit persons to whom the Software is
572
+ furnished to do so, subject to the following conditions:
573
+
574
+ The above copyright notice and this permission notice shall be included in all
575
+ copies or substantial portions of the Software.
576
+
577
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
578
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
579
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
580
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
581
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
582
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
583
+ SOFTWARE.
584
+ =========================================
585
+ END OF brace-expansion@1.1.12 AND INFORMATION
586
+
587
+ %% buffer-crc32@0.2.13 NOTICES AND INFORMATION BEGIN HERE
588
+ =========================================
589
+ The MIT License
590
+
591
+ Copyright (c) 2013 Brian J. Brennan
592
+
593
+ Permission is hereby granted, free of charge, to any person obtaining a copy
594
+ of this software and associated documentation files (the "Software"), to deal in
595
+ the Software without restriction, including without limitation the rights to use,
596
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
597
+ Software, and to permit persons to whom the Software is furnished to do so,
598
+ subject to the following conditions:
599
+
600
+ The above copyright notice and this permission notice shall be included in all
601
+ copies or substantial portions of the Software.
602
+
603
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
604
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
605
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
606
+ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
607
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
608
+ =========================================
609
+ END OF buffer-crc32@0.2.13 AND INFORMATION
610
+
611
+ %% bytes@3.1.2 NOTICES AND INFORMATION BEGIN HERE
612
+ =========================================
613
+ (The MIT License)
614
+
615
+ Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
616
+ Copyright (c) 2015 Jed Watson <jed.watson@me.com>
617
+
618
+ Permission is hereby granted, free of charge, to any person obtaining
619
+ a copy of this software and associated documentation files (the
620
+ 'Software'), to deal in the Software without restriction, including
621
+ without limitation the rights to use, copy, modify, merge, publish,
622
+ distribute, sublicense, and/or sell copies of the Software, and to
623
+ permit persons to whom the Software is furnished to do so, subject to
624
+ the following conditions:
625
+
626
+ The above copyright notice and this permission notice shall be
627
+ included in all copies or substantial portions of the Software.
628
+
629
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
630
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
631
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
632
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
633
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
634
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
635
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
636
+ =========================================
637
+ END OF bytes@3.1.2 AND INFORMATION
638
+
639
+ %% call-bind-apply-helpers@1.0.2 NOTICES AND INFORMATION BEGIN HERE
640
+ =========================================
641
+ MIT License
642
+
643
+ Copyright (c) 2024 Jordan Harband
644
+
645
+ Permission is hereby granted, free of charge, to any person obtaining a copy
646
+ of this software and associated documentation files (the "Software"), to deal
647
+ in the Software without restriction, including without limitation the rights
648
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
649
+ copies of the Software, and to permit persons to whom the Software is
650
+ furnished to do so, subject to the following conditions:
651
+
652
+ The above copyright notice and this permission notice shall be included in all
653
+ copies or substantial portions of the Software.
654
+
655
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
656
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
657
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
658
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
659
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
660
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
661
+ SOFTWARE.
662
+ =========================================
663
+ END OF call-bind-apply-helpers@1.0.2 AND INFORMATION
664
+
665
+ %% call-bound@1.0.4 NOTICES AND INFORMATION BEGIN HERE
666
+ =========================================
667
+ MIT License
668
+
669
+ Copyright (c) 2024 Jordan Harband
670
+
671
+ Permission is hereby granted, free of charge, to any person obtaining a copy
672
+ of this software and associated documentation files (the "Software"), to deal
673
+ in the Software without restriction, including without limitation the rights
674
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
675
+ copies of the Software, and to permit persons to whom the Software is
676
+ furnished to do so, subject to the following conditions:
677
+
678
+ The above copyright notice and this permission notice shall be included in all
679
+ copies or substantial portions of the Software.
680
+
681
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
682
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
683
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
684
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
685
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
686
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
687
+ SOFTWARE.
688
+ =========================================
689
+ END OF call-bound@1.0.4 AND INFORMATION
690
+
691
+ %% codemirror@5.65.18 NOTICES AND INFORMATION BEGIN HERE
692
+ =========================================
693
+ MIT License
694
+
695
+ Copyright (C) 2017 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
696
+
697
+ Permission is hereby granted, free of charge, to any person obtaining a copy
698
+ of this software and associated documentation files (the "Software"), to deal
699
+ in the Software without restriction, including without limitation the rights
700
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
701
+ copies of the Software, and to permit persons to whom the Software is
702
+ furnished to do so, subject to the following conditions:
703
+
704
+ The above copyright notice and this permission notice shall be included in
705
+ all copies or substantial portions of the Software.
706
+
707
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
708
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
709
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
710
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
711
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
712
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
713
+ THE SOFTWARE.
714
+ =========================================
715
+ END OF codemirror@5.65.18 AND INFORMATION
716
+
717
+ %% colors@1.4.0 NOTICES AND INFORMATION BEGIN HERE
718
+ =========================================
719
+ MIT License
720
+
721
+ Original Library
722
+ - Copyright (c) Marak Squires
723
+
724
+ Additional Functionality
725
+ - Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
726
+
727
+ Permission is hereby granted, free of charge, to any person obtaining a copy
728
+ of this software and associated documentation files (the "Software"), to deal
729
+ in the Software without restriction, including without limitation the rights
730
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
731
+ copies of the Software, and to permit persons to whom the Software is
732
+ furnished to do so, subject to the following conditions:
733
+
734
+ The above copyright notice and this permission notice shall be included in
735
+ all copies or substantial portions of the Software.
736
+
737
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
738
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
739
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
740
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
741
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
742
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
743
+ THE SOFTWARE.
744
+ =========================================
745
+ END OF colors@1.4.0 AND INFORMATION
746
+
747
+ %% commander@13.1.0 NOTICES AND INFORMATION BEGIN HERE
748
+ =========================================
749
+ (The MIT License)
750
+
751
+ Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
752
+
753
+ Permission is hereby granted, free of charge, to any person obtaining
754
+ a copy of this software and associated documentation files (the
755
+ 'Software'), to deal in the Software without restriction, including
756
+ without limitation the rights to use, copy, modify, merge, publish,
757
+ distribute, sublicense, and/or sell copies of the Software, and to
758
+ permit persons to whom the Software is furnished to do so, subject to
759
+ the following conditions:
760
+
761
+ The above copyright notice and this permission notice shall be
762
+ included in all copies or substantial portions of the Software.
763
+
764
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
765
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
766
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
767
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
768
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
769
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
770
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
771
+ =========================================
772
+ END OF commander@13.1.0 AND INFORMATION
773
+
774
+ %% concat-map@0.0.1 NOTICES AND INFORMATION BEGIN HERE
775
+ =========================================
776
+ This software is released under the MIT license:
777
+
778
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
779
+ this software and associated documentation files (the "Software"), to deal in
780
+ the Software without restriction, including without limitation the rights to
781
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
782
+ the Software, and to permit persons to whom the Software is furnished to do so,
783
+ subject to the following conditions:
784
+
785
+ The above copyright notice and this permission notice shall be included in all
786
+ copies or substantial portions of the Software.
787
+
788
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
789
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
790
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
791
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
792
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
793
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
794
+ =========================================
795
+ END OF concat-map@0.0.1 AND INFORMATION
796
+
797
+ %% content-disposition@1.0.1 NOTICES AND INFORMATION BEGIN HERE
798
+ =========================================
799
+ (The MIT License)
800
+
801
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
802
+
803
+ Permission is hereby granted, free of charge, to any person obtaining
804
+ a copy of this software and associated documentation files (the
805
+ 'Software'), to deal in the Software without restriction, including
806
+ without limitation the rights to use, copy, modify, merge, publish,
807
+ distribute, sublicense, and/or sell copies of the Software, and to
808
+ permit persons to whom the Software is furnished to do so, subject to
809
+ the following conditions:
810
+
811
+ The above copyright notice and this permission notice shall be
812
+ included in all copies or substantial portions of the Software.
813
+
814
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
815
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
816
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
817
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
818
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
819
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
820
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
821
+ =========================================
822
+ END OF content-disposition@1.0.1 AND INFORMATION
823
+
824
+ %% content-type@1.0.5 NOTICES AND INFORMATION BEGIN HERE
825
+ =========================================
826
+ (The MIT License)
827
+
828
+ Copyright (c) 2015 Douglas Christopher Wilson
829
+
830
+ Permission is hereby granted, free of charge, to any person obtaining
831
+ a copy of this software and associated documentation files (the
832
+ 'Software'), to deal in the Software without restriction, including
833
+ without limitation the rights to use, copy, modify, merge, publish,
834
+ distribute, sublicense, and/or sell copies of the Software, and to
835
+ permit persons to whom the Software is furnished to do so, subject to
836
+ the following conditions:
837
+
838
+ The above copyright notice and this permission notice shall be
839
+ included in all copies or substantial portions of the Software.
840
+
841
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
842
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
843
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
844
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
845
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
846
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
847
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
848
+ =========================================
849
+ END OF content-type@1.0.5 AND INFORMATION
850
+
851
+ %% cookie-signature@1.2.2 NOTICES AND INFORMATION BEGIN HERE
852
+ =========================================
853
+ (The MIT License)
854
+
855
+ Copyright (c) 2012–2024 LearnBoost <tj@learnboost.com> and other contributors;
856
+
857
+ Permission is hereby granted, free of charge, to any person obtaining
858
+ a copy of this software and associated documentation files (the
859
+ 'Software'), to deal in the Software without restriction, including
860
+ without limitation the rights to use, copy, modify, merge, publish,
861
+ distribute, sublicense, and/or sell copies of the Software, and to
862
+ permit persons to whom the Software is furnished to do so, subject to
863
+ the following conditions:
864
+
865
+ The above copyright notice and this permission notice shall be
866
+ included in all copies or substantial portions of the Software.
867
+
868
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
869
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
870
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
871
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
872
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
873
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
874
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
875
+ =========================================
876
+ END OF cookie-signature@1.2.2 AND INFORMATION
877
+
878
+ %% cookie@0.7.2 NOTICES AND INFORMATION BEGIN HERE
879
+ =========================================
880
+ (The MIT License)
881
+
882
+ Copyright (c) 2012-2014 Roman Shtylman <shtylman@gmail.com>
883
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
884
+
885
+ Permission is hereby granted, free of charge, to any person obtaining
886
+ a copy of this software and associated documentation files (the
887
+ 'Software'), to deal in the Software without restriction, including
888
+ without limitation the rights to use, copy, modify, merge, publish,
889
+ distribute, sublicense, and/or sell copies of the Software, and to
890
+ permit persons to whom the Software is furnished to do so, subject to
891
+ the following conditions:
892
+
893
+ The above copyright notice and this permission notice shall be
894
+ included in all copies or substantial portions of the Software.
895
+
896
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
897
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
898
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
899
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
900
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
901
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
902
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
903
+ =========================================
904
+ END OF cookie@0.7.2 AND INFORMATION
905
+
906
+ %% cors@2.8.5 NOTICES AND INFORMATION BEGIN HERE
907
+ =========================================
908
+ (The MIT License)
909
+
910
+ Copyright (c) 2013 Troy Goode <troygoode@gmail.com>
911
+
912
+ Permission is hereby granted, free of charge, to any person obtaining
913
+ a copy of this software and associated documentation files (the
914
+ 'Software'), to deal in the Software without restriction, including
915
+ without limitation the rights to use, copy, modify, merge, publish,
916
+ distribute, sublicense, and/or sell copies of the Software, and to
917
+ permit persons to whom the Software is furnished to do so, subject to
918
+ the following conditions:
919
+
920
+ The above copyright notice and this permission notice shall be
921
+ included in all copies or substantial portions of the Software.
922
+
923
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
924
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
925
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
926
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
927
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
928
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
929
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
930
+ =========================================
931
+ END OF cors@2.8.5 AND INFORMATION
932
+
933
+ %% cross-spawn@7.0.6 NOTICES AND INFORMATION BEGIN HERE
934
+ =========================================
935
+ The MIT License (MIT)
936
+
937
+ Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
938
+
939
+ Permission is hereby granted, free of charge, to any person obtaining a copy
940
+ of this software and associated documentation files (the "Software"), to deal
941
+ in the Software without restriction, including without limitation the rights
942
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
943
+ copies of the Software, and to permit persons to whom the Software is
944
+ furnished to do so, subject to the following conditions:
945
+
946
+ The above copyright notice and this permission notice shall be included in
947
+ all copies or substantial portions of the Software.
948
+
949
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
950
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
951
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
952
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
953
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
954
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
955
+ THE SOFTWARE.
956
+ =========================================
957
+ END OF cross-spawn@7.0.6 AND INFORMATION
958
+
959
+ %% debug@4.3.4 NOTICES AND INFORMATION BEGIN HERE
960
+ =========================================
961
+ (The MIT License)
962
+
963
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
964
+ Copyright (c) 2018-2021 Josh Junon
965
+
966
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
967
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
968
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
969
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
970
+ subject to the following conditions:
971
+
972
+ The above copyright notice and this permission notice shall be included in all copies or substantial
973
+ portions of the Software.
974
+
975
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
976
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
977
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
978
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
979
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
980
+ =========================================
981
+ END OF debug@4.3.4 AND INFORMATION
982
+
983
+ %% debug@4.4.0 NOTICES AND INFORMATION BEGIN HERE
984
+ =========================================
985
+ (The MIT License)
986
+
987
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
988
+ Copyright (c) 2018-2021 Josh Junon
989
+
990
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
991
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
992
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
993
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
994
+ subject to the following conditions:
995
+
996
+ The above copyright notice and this permission notice shall be included in all copies or substantial
997
+ portions of the Software.
998
+
999
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
1000
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1001
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1002
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1003
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1004
+ =========================================
1005
+ END OF debug@4.4.0 AND INFORMATION
1006
+
1007
+ %% debug@4.4.3 NOTICES AND INFORMATION BEGIN HERE
1008
+ =========================================
1009
+ (The MIT License)
1010
+
1011
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
1012
+ Copyright (c) 2018-2021 Josh Junon
1013
+
1014
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
1015
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
1016
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
1017
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
1018
+ subject to the following conditions:
1019
+
1020
+ The above copyright notice and this permission notice shall be included in all copies or substantial
1021
+ portions of the Software.
1022
+
1023
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
1024
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1025
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1026
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1027
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1028
+ =========================================
1029
+ END OF debug@4.4.3 AND INFORMATION
1030
+
1031
+ %% define-lazy-prop@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1032
+ =========================================
1033
+ MIT License
1034
+
1035
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1036
+
1037
+ 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:
1038
+
1039
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1040
+
1041
+ 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.
1042
+ =========================================
1043
+ END OF define-lazy-prop@2.0.0 AND INFORMATION
1044
+
1045
+ %% depd@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1046
+ =========================================
1047
+ (The MIT License)
1048
+
1049
+ Copyright (c) 2014-2018 Douglas Christopher Wilson
1050
+
1051
+ Permission is hereby granted, free of charge, to any person obtaining
1052
+ a copy of this software and associated documentation files (the
1053
+ 'Software'), to deal in the Software without restriction, including
1054
+ without limitation the rights to use, copy, modify, merge, publish,
1055
+ distribute, sublicense, and/or sell copies of the Software, and to
1056
+ permit persons to whom the Software is furnished to do so, subject to
1057
+ the following conditions:
1058
+
1059
+ The above copyright notice and this permission notice shall be
1060
+ included in all copies or substantial portions of the Software.
1061
+
1062
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1063
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1064
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1065
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1066
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1067
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1068
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1069
+ =========================================
1070
+ END OF depd@2.0.0 AND INFORMATION
1071
+
1072
+ %% diff@7.0.0 NOTICES AND INFORMATION BEGIN HERE
1073
+ =========================================
1074
+ BSD 3-Clause License
1075
+
1076
+ Copyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>
1077
+ All rights reserved.
1078
+
1079
+ Redistribution and use in source and binary forms, with or without
1080
+ modification, are permitted provided that the following conditions are met:
1081
+
1082
+ 1. Redistributions of source code must retain the above copyright notice, this
1083
+ list of conditions and the following disclaimer.
1084
+
1085
+ 2. Redistributions in binary form must reproduce the above copyright notice,
1086
+ this list of conditions and the following disclaimer in the documentation
1087
+ and/or other materials provided with the distribution.
1088
+
1089
+ 3. Neither the name of the copyright holder nor the names of its
1090
+ contributors may be used to endorse or promote products derived from
1091
+ this software without specific prior written permission.
1092
+
1093
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1094
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1095
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1096
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1097
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1098
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1099
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1100
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1101
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1102
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1103
+ =========================================
1104
+ END OF diff@7.0.0 AND INFORMATION
1105
+
1106
+ %% dotenv@16.4.5 NOTICES AND INFORMATION BEGIN HERE
1107
+ =========================================
1108
+ Copyright (c) 2015, Scott Motte
1109
+ All rights reserved.
1110
+
1111
+ Redistribution and use in source and binary forms, with or without
1112
+ modification, are permitted provided that the following conditions are met:
1113
+
1114
+ * Redistributions of source code must retain the above copyright notice, this
1115
+ list of conditions and the following disclaimer.
1116
+
1117
+ * Redistributions in binary form must reproduce the above copyright notice,
1118
+ this list of conditions and the following disclaimer in the documentation
1119
+ and/or other materials provided with the distribution.
1120
+
1121
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1122
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1123
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1124
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1125
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1126
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1127
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1128
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1129
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1130
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1131
+ =========================================
1132
+ END OF dotenv@16.4.5 AND INFORMATION
1133
+
1134
+ %% dunder-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
1135
+ =========================================
1136
+ MIT License
1137
+
1138
+ Copyright (c) 2024 ECMAScript Shims
1139
+
1140
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1141
+ of this software and associated documentation files (the "Software"), to deal
1142
+ in the Software without restriction, including without limitation the rights
1143
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1144
+ copies of the Software, and to permit persons to whom the Software is
1145
+ furnished to do so, subject to the following conditions:
1146
+
1147
+ The above copyright notice and this permission notice shall be included in all
1148
+ copies or substantial portions of the Software.
1149
+
1150
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1151
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1152
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1153
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1154
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1155
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1156
+ SOFTWARE.
1157
+ =========================================
1158
+ END OF dunder-proto@1.0.1 AND INFORMATION
1159
+
1160
+ %% ee-first@1.1.1 NOTICES AND INFORMATION BEGIN HERE
1161
+ =========================================
1162
+ The MIT License (MIT)
1163
+
1164
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
1165
+
1166
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1167
+ of this software and associated documentation files (the "Software"), to deal
1168
+ in the Software without restriction, including without limitation the rights
1169
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1170
+ copies of the Software, and to permit persons to whom the Software is
1171
+ furnished to do so, subject to the following conditions:
1172
+
1173
+ The above copyright notice and this permission notice shall be included in
1174
+ all copies or substantial portions of the Software.
1175
+
1176
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1177
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1178
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1179
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1180
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1181
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1182
+ THE SOFTWARE.
1183
+ =========================================
1184
+ END OF ee-first@1.1.1 AND INFORMATION
1185
+
1186
+ %% encodeurl@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1187
+ =========================================
1188
+ (The MIT License)
1189
+
1190
+ Copyright (c) 2016 Douglas Christopher Wilson
1191
+
1192
+ Permission is hereby granted, free of charge, to any person obtaining
1193
+ a copy of this software and associated documentation files (the
1194
+ 'Software'), to deal in the Software without restriction, including
1195
+ without limitation the rights to use, copy, modify, merge, publish,
1196
+ distribute, sublicense, and/or sell copies of the Software, and to
1197
+ permit persons to whom the Software is furnished to do so, subject to
1198
+ the following conditions:
1199
+
1200
+ The above copyright notice and this permission notice shall be
1201
+ included in all copies or substantial portions of the Software.
1202
+
1203
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1204
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1205
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1206
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1207
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1208
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1209
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1210
+ =========================================
1211
+ END OF encodeurl@2.0.0 AND INFORMATION
1212
+
1213
+ %% end-of-stream@1.4.4 NOTICES AND INFORMATION BEGIN HERE
1214
+ =========================================
1215
+ The MIT License (MIT)
1216
+
1217
+ Copyright (c) 2014 Mathias Buus
1218
+
1219
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1220
+ of this software and associated documentation files (the "Software"), to deal
1221
+ in the Software without restriction, including without limitation the rights
1222
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1223
+ copies of the Software, and to permit persons to whom the Software is
1224
+ furnished to do so, subject to the following conditions:
1225
+
1226
+ The above copyright notice and this permission notice shall be included in
1227
+ all copies or substantial portions of the Software.
1228
+
1229
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1230
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1231
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1232
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1233
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1234
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1235
+ THE SOFTWARE.
1236
+ =========================================
1237
+ END OF end-of-stream@1.4.4 AND INFORMATION
1238
+
1239
+ %% es-define-property@1.0.1 NOTICES AND INFORMATION BEGIN HERE
1240
+ =========================================
1241
+ MIT License
1242
+
1243
+ Copyright (c) 2024 Jordan Harband
1244
+
1245
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1246
+ of this software and associated documentation files (the "Software"), to deal
1247
+ in the Software without restriction, including without limitation the rights
1248
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1249
+ copies of the Software, and to permit persons to whom the Software is
1250
+ furnished to do so, subject to the following conditions:
1251
+
1252
+ The above copyright notice and this permission notice shall be included in all
1253
+ copies or substantial portions of the Software.
1254
+
1255
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1256
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1257
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1258
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1259
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1260
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1261
+ SOFTWARE.
1262
+ =========================================
1263
+ END OF es-define-property@1.0.1 AND INFORMATION
1264
+
1265
+ %% es-errors@1.3.0 NOTICES AND INFORMATION BEGIN HERE
1266
+ =========================================
1267
+ MIT License
1268
+
1269
+ Copyright (c) 2024 Jordan Harband
1270
+
1271
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1272
+ of this software and associated documentation files (the "Software"), to deal
1273
+ in the Software without restriction, including without limitation the rights
1274
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1275
+ copies of the Software, and to permit persons to whom the Software is
1276
+ furnished to do so, subject to the following conditions:
1277
+
1278
+ The above copyright notice and this permission notice shall be included in all
1279
+ copies or substantial portions of the Software.
1280
+
1281
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1282
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1283
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1284
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1285
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1286
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1287
+ SOFTWARE.
1288
+ =========================================
1289
+ END OF es-errors@1.3.0 AND INFORMATION
1290
+
1291
+ %% es-object-atoms@1.1.1 NOTICES AND INFORMATION BEGIN HERE
1292
+ =========================================
1293
+ MIT License
1294
+
1295
+ Copyright (c) 2024 Jordan Harband
1296
+
1297
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1298
+ of this software and associated documentation files (the "Software"), to deal
1299
+ in the Software without restriction, including without limitation the rights
1300
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1301
+ copies of the Software, and to permit persons to whom the Software is
1302
+ furnished to do so, subject to the following conditions:
1303
+
1304
+ The above copyright notice and this permission notice shall be included in all
1305
+ copies or substantial portions of the Software.
1306
+
1307
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1308
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1309
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1310
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1311
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1312
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1313
+ SOFTWARE.
1314
+ =========================================
1315
+ END OF es-object-atoms@1.1.1 AND INFORMATION
1316
+
1317
+ %% escape-html@1.0.3 NOTICES AND INFORMATION BEGIN HERE
1318
+ =========================================
1319
+ (The MIT License)
1320
+
1321
+ Copyright (c) 2012-2013 TJ Holowaychuk
1322
+ Copyright (c) 2015 Andreas Lubbe
1323
+ Copyright (c) 2015 Tiancheng "Timothy" Gu
1324
+
1325
+ Permission is hereby granted, free of charge, to any person obtaining
1326
+ a copy of this software and associated documentation files (the
1327
+ 'Software'), to deal in the Software without restriction, including
1328
+ without limitation the rights to use, copy, modify, merge, publish,
1329
+ distribute, sublicense, and/or sell copies of the Software, and to
1330
+ permit persons to whom the Software is furnished to do so, subject to
1331
+ the following conditions:
1332
+
1333
+ The above copyright notice and this permission notice shall be
1334
+ included in all copies or substantial portions of the Software.
1335
+
1336
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1337
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1338
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1339
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1340
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1341
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1342
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1343
+ =========================================
1344
+ END OF escape-html@1.0.3 AND INFORMATION
1345
+
1346
+ %% etag@1.8.1 NOTICES AND INFORMATION BEGIN HERE
1347
+ =========================================
1348
+ (The MIT License)
1349
+
1350
+ Copyright (c) 2014-2016 Douglas Christopher Wilson
1351
+
1352
+ Permission is hereby granted, free of charge, to any person obtaining
1353
+ a copy of this software and associated documentation files (the
1354
+ 'Software'), to deal in the Software without restriction, including
1355
+ without limitation the rights to use, copy, modify, merge, publish,
1356
+ distribute, sublicense, and/or sell copies of the Software, and to
1357
+ permit persons to whom the Software is furnished to do so, subject to
1358
+ the following conditions:
1359
+
1360
+ The above copyright notice and this permission notice shall be
1361
+ included in all copies or substantial portions of the Software.
1362
+
1363
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1364
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1365
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1366
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1367
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1368
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1369
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1370
+ =========================================
1371
+ END OF etag@1.8.1 AND INFORMATION
1372
+
1373
+ %% eventsource-parser@3.0.3 NOTICES AND INFORMATION BEGIN HERE
1374
+ =========================================
1375
+ MIT License
1376
+
1377
+ Copyright (c) 2025 Espen Hovlandsdal <espen@hovlandsdal.com>
1378
+
1379
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1380
+ of this software and associated documentation files (the "Software"), to deal
1381
+ in the Software without restriction, including without limitation the rights
1382
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1383
+ copies of the Software, and to permit persons to whom the Software is
1384
+ furnished to do so, subject to the following conditions:
1385
+
1386
+ The above copyright notice and this permission notice shall be included in all
1387
+ copies or substantial portions of the Software.
1388
+
1389
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1390
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1391
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1392
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1393
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1394
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1395
+ SOFTWARE.
1396
+ =========================================
1397
+ END OF eventsource-parser@3.0.3 AND INFORMATION
1398
+
1399
+ %% eventsource@3.0.7 NOTICES AND INFORMATION BEGIN HERE
1400
+ =========================================
1401
+ The MIT License
1402
+
1403
+ Copyright (c) EventSource GitHub organisation
1404
+
1405
+ Permission is hereby granted, free of charge, to any person obtaining
1406
+ a copy of this software and associated documentation files (the
1407
+ "Software"), to deal in the Software without restriction, including
1408
+ without limitation the rights to use, copy, modify, merge, publish,
1409
+ distribute, sublicense, and/or sell copies of the Software, and to
1410
+ permit persons to whom the Software is furnished to do so, subject to
1411
+ the following conditions:
1412
+
1413
+ The above copyright notice and this permission notice shall be
1414
+ included in all copies or substantial portions of the Software.
1415
+
1416
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1417
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1418
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1419
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1420
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1421
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1422
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1423
+ =========================================
1424
+ END OF eventsource@3.0.7 AND INFORMATION
1425
+
1426
+ %% express-rate-limit@8.2.1 NOTICES AND INFORMATION BEGIN HERE
1427
+ =========================================
1428
+ # MIT License
1429
+
1430
+ Copyright 2023 Nathan Friedly, Vedant K
1431
+
1432
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1433
+ this software and associated documentation files (the "Software"), to deal in
1434
+ the Software without restriction, including without limitation the rights to
1435
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1436
+ the Software, and to permit persons to whom the Software is furnished to do so,
1437
+ subject to the following conditions:
1438
+
1439
+ The above copyright notice and this permission notice shall be included in all
1440
+ copies or substantial portions of the Software.
1441
+
1442
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1443
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1444
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1445
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1446
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1447
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1448
+ =========================================
1449
+ END OF express-rate-limit@8.2.1 AND INFORMATION
1450
+
1451
+ %% express@5.2.1 NOTICES AND INFORMATION BEGIN HERE
1452
+ =========================================
1453
+ (The MIT License)
1454
+
1455
+ Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
1456
+ Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
1457
+ Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
1458
+
1459
+ Permission is hereby granted, free of charge, to any person obtaining
1460
+ a copy of this software and associated documentation files (the
1461
+ 'Software'), to deal in the Software without restriction, including
1462
+ without limitation the rights to use, copy, modify, merge, publish,
1463
+ distribute, sublicense, and/or sell copies of the Software, and to
1464
+ permit persons to whom the Software is furnished to do so, subject to
1465
+ the following conditions:
1466
+
1467
+ The above copyright notice and this permission notice shall be
1468
+ included in all copies or substantial portions of the Software.
1469
+
1470
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1471
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1472
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1473
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1474
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1475
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1476
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1477
+ =========================================
1478
+ END OF express@5.2.1 AND INFORMATION
1479
+
1480
+ %% fast-deep-equal@3.1.3 NOTICES AND INFORMATION BEGIN HERE
1481
+ =========================================
1482
+ MIT License
1483
+
1484
+ Copyright (c) 2017 Evgeny Poberezkin
1485
+
1486
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1487
+ of this software and associated documentation files (the "Software"), to deal
1488
+ in the Software without restriction, including without limitation the rights
1489
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1490
+ copies of the Software, and to permit persons to whom the Software is
1491
+ furnished to do so, subject to the following conditions:
1492
+
1493
+ The above copyright notice and this permission notice shall be included in all
1494
+ copies or substantial portions of the Software.
1495
+
1496
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1497
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1498
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1499
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1500
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1501
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1502
+ SOFTWARE.
1503
+ =========================================
1504
+ END OF fast-deep-equal@3.1.3 AND INFORMATION
1505
+
1506
+ %% fast-uri@3.1.0 NOTICES AND INFORMATION BEGIN HERE
1507
+ =========================================
1508
+ Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
1509
+ Copyright (c) 2021-present The Fastify team
1510
+ All rights reserved.
1511
+
1512
+ The Fastify team members are listed at https://github.com/fastify/fastify#team.
1513
+
1514
+ Redistribution and use in source and binary forms, with or without
1515
+ modification, are permitted provided that the following conditions are met:
1516
+ * Redistributions of source code must retain the above copyright
1517
+ notice, this list of conditions and the following disclaimer.
1518
+ * Redistributions in binary form must reproduce the above copyright
1519
+ notice, this list of conditions and the following disclaimer in the
1520
+ documentation and/or other materials provided with the distribution.
1521
+ * The names of any contributors may not be used to endorse or promote
1522
+ products derived from this software without specific prior written
1523
+ permission.
1524
+
1525
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1526
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1527
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1528
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY
1529
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1530
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1531
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1532
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1533
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1534
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1535
+
1536
+ * * *
1537
+
1538
+ The complete list of contributors can be found at:
1539
+ - https://github.com/garycourt/uri-js/graphs/contributors
1540
+ =========================================
1541
+ END OF fast-uri@3.1.0 AND INFORMATION
1542
+
1543
+ %% finalhandler@2.1.1 NOTICES AND INFORMATION BEGIN HERE
1544
+ =========================================
1545
+ (The MIT License)
1546
+
1547
+ Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
1548
+
1549
+ Permission is hereby granted, free of charge, to any person obtaining
1550
+ a copy of this software and associated documentation files (the
1551
+ 'Software'), to deal in the Software without restriction, including
1552
+ without limitation the rights to use, copy, modify, merge, publish,
1553
+ distribute, sublicense, and/or sell copies of the Software, and to
1554
+ permit persons to whom the Software is furnished to do so, subject to
1555
+ the following conditions:
1556
+
1557
+ The above copyright notice and this permission notice shall be
1558
+ included in all copies or substantial portions of the Software.
1559
+
1560
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1561
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1562
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1563
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1564
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1565
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1566
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1567
+ =========================================
1568
+ END OF finalhandler@2.1.1 AND INFORMATION
1569
+
1570
+ %% forwarded@0.2.0 NOTICES AND INFORMATION BEGIN HERE
1571
+ =========================================
1572
+ (The MIT License)
1573
+
1574
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
1575
+
1576
+ Permission is hereby granted, free of charge, to any person obtaining
1577
+ a copy of this software and associated documentation files (the
1578
+ 'Software'), to deal in the Software without restriction, including
1579
+ without limitation the rights to use, copy, modify, merge, publish,
1580
+ distribute, sublicense, and/or sell copies of the Software, and to
1581
+ permit persons to whom the Software is furnished to do so, subject to
1582
+ the following conditions:
1583
+
1584
+ The above copyright notice and this permission notice shall be
1585
+ included in all copies or substantial portions of the Software.
1586
+
1587
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1588
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1589
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1590
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1591
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1592
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1593
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1594
+ =========================================
1595
+ END OF forwarded@0.2.0 AND INFORMATION
1596
+
1597
+ %% fresh@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1598
+ =========================================
1599
+ (The MIT License)
1600
+
1601
+ Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
1602
+ Copyright (c) 2016-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
1603
+
1604
+ Permission is hereby granted, free of charge, to any person obtaining
1605
+ a copy of this software and associated documentation files (the
1606
+ 'Software'), to deal in the Software without restriction, including
1607
+ without limitation the rights to use, copy, modify, merge, publish,
1608
+ distribute, sublicense, and/or sell copies of the Software, and to
1609
+ permit persons to whom the Software is furnished to do so, subject to
1610
+ the following conditions:
1611
+
1612
+ The above copyright notice and this permission notice shall be
1613
+ included in all copies or substantial portions of the Software.
1614
+
1615
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1616
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1617
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1618
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1619
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1620
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1621
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1622
+ =========================================
1623
+ END OF fresh@2.0.0 AND INFORMATION
1624
+
1625
+ %% function-bind@1.1.2 NOTICES AND INFORMATION BEGIN HERE
1626
+ =========================================
1627
+ Copyright (c) 2013 Raynos.
1628
+
1629
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1630
+ of this software and associated documentation files (the "Software"), to deal
1631
+ in the Software without restriction, including without limitation the rights
1632
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1633
+ copies of the Software, and to permit persons to whom the Software is
1634
+ furnished to do so, subject to the following conditions:
1635
+
1636
+ The above copyright notice and this permission notice shall be included in
1637
+ all copies or substantial portions of the Software.
1638
+
1639
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1640
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1641
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1642
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1643
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1644
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1645
+ THE SOFTWARE.
1646
+ =========================================
1647
+ END OF function-bind@1.1.2 AND INFORMATION
1648
+
1649
+ %% get-intrinsic@1.3.0 NOTICES AND INFORMATION BEGIN HERE
1650
+ =========================================
1651
+ MIT License
1652
+
1653
+ Copyright (c) 2020 Jordan Harband
1654
+
1655
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1656
+ of this software and associated documentation files (the "Software"), to deal
1657
+ in the Software without restriction, including without limitation the rights
1658
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1659
+ copies of the Software, and to permit persons to whom the Software is
1660
+ furnished to do so, subject to the following conditions:
1661
+
1662
+ The above copyright notice and this permission notice shall be included in all
1663
+ copies or substantial portions of the Software.
1664
+
1665
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1666
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1667
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1668
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1669
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1670
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1671
+ SOFTWARE.
1672
+ =========================================
1673
+ END OF get-intrinsic@1.3.0 AND INFORMATION
1674
+
1675
+ %% get-proto@1.0.1 NOTICES AND INFORMATION BEGIN HERE
1676
+ =========================================
1677
+ MIT License
1678
+
1679
+ Copyright (c) 2025 Jordan Harband
1680
+
1681
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1682
+ of this software and associated documentation files (the "Software"), to deal
1683
+ in the Software without restriction, including without limitation the rights
1684
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1685
+ copies of the Software, and to permit persons to whom the Software is
1686
+ furnished to do so, subject to the following conditions:
1687
+
1688
+ The above copyright notice and this permission notice shall be included in all
1689
+ copies or substantial portions of the Software.
1690
+
1691
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1692
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1693
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1694
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1695
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1696
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1697
+ SOFTWARE.
1698
+ =========================================
1699
+ END OF get-proto@1.0.1 AND INFORMATION
1700
+
1701
+ %% get-stream@5.2.0 NOTICES AND INFORMATION BEGIN HERE
1702
+ =========================================
1703
+ MIT License
1704
+
1705
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1706
+
1707
+ 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:
1708
+
1709
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1710
+
1711
+ 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.
1712
+ =========================================
1713
+ END OF get-stream@5.2.0 AND INFORMATION
1714
+
1715
+ %% gopd@1.2.0 NOTICES AND INFORMATION BEGIN HERE
1716
+ =========================================
1717
+ MIT License
1718
+
1719
+ Copyright (c) 2022 Jordan Harband
1720
+
1721
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1722
+ of this software and associated documentation files (the "Software"), to deal
1723
+ in the Software without restriction, including without limitation the rights
1724
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1725
+ copies of the Software, and to permit persons to whom the Software is
1726
+ furnished to do so, subject to the following conditions:
1727
+
1728
+ The above copyright notice and this permission notice shall be included in all
1729
+ copies or substantial portions of the Software.
1730
+
1731
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1732
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1733
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1734
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1735
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1736
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1737
+ SOFTWARE.
1738
+ =========================================
1739
+ END OF gopd@1.2.0 AND INFORMATION
1740
+
1741
+ %% graceful-fs@4.2.10 NOTICES AND INFORMATION BEGIN HERE
1742
+ =========================================
1743
+ The ISC License
1744
+
1745
+ Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
1746
+
1747
+ Permission to use, copy, modify, and/or distribute this software for any
1748
+ purpose with or without fee is hereby granted, provided that the above
1749
+ copyright notice and this permission notice appear in all copies.
1750
+
1751
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1752
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1753
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1754
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1755
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1756
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1757
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1758
+ =========================================
1759
+ END OF graceful-fs@4.2.10 AND INFORMATION
1760
+
1761
+ %% has-symbols@1.1.0 NOTICES AND INFORMATION BEGIN HERE
1762
+ =========================================
1763
+ MIT License
1764
+
1765
+ Copyright (c) 2016 Jordan Harband
1766
+
1767
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1768
+ of this software and associated documentation files (the "Software"), to deal
1769
+ in the Software without restriction, including without limitation the rights
1770
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1771
+ copies of the Software, and to permit persons to whom the Software is
1772
+ furnished to do so, subject to the following conditions:
1773
+
1774
+ The above copyright notice and this permission notice shall be included in all
1775
+ copies or substantial portions of the Software.
1776
+
1777
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1778
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1779
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1780
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1781
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1782
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1783
+ SOFTWARE.
1784
+ =========================================
1785
+ END OF has-symbols@1.1.0 AND INFORMATION
1786
+
1787
+ %% hasown@2.0.2 NOTICES AND INFORMATION BEGIN HERE
1788
+ =========================================
1789
+ MIT License
1790
+
1791
+ Copyright (c) Jordan Harband and contributors
1792
+
1793
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1794
+ of this software and associated documentation files (the "Software"), to deal
1795
+ in the Software without restriction, including without limitation the rights
1796
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1797
+ copies of the Software, and to permit persons to whom the Software is
1798
+ furnished to do so, subject to the following conditions:
1799
+
1800
+ The above copyright notice and this permission notice shall be included in all
1801
+ copies or substantial portions of the Software.
1802
+
1803
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1804
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1805
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1806
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1807
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1808
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1809
+ SOFTWARE.
1810
+ =========================================
1811
+ END OF hasown@2.0.2 AND INFORMATION
1812
+
1813
+ %% hono@4.12.5 NOTICES AND INFORMATION BEGIN HERE
1814
+ =========================================
1815
+ MIT License
1816
+
1817
+ Copyright (c) 2021 - present, Yusuke Wada and Hono contributors
1818
+
1819
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1820
+ of this software and associated documentation files (the "Software"), to deal
1821
+ in the Software without restriction, including without limitation the rights
1822
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1823
+ copies of the Software, and to permit persons to whom the Software is
1824
+ furnished to do so, subject to the following conditions:
1825
+
1826
+ The above copyright notice and this permission notice shall be included in all
1827
+ copies or substantial portions of the Software.
1828
+
1829
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1830
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1831
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1832
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1833
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1834
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1835
+ SOFTWARE.
1836
+ =========================================
1837
+ END OF hono@4.12.5 AND INFORMATION
1838
+
1839
+ %% http-errors@2.0.1 NOTICES AND INFORMATION BEGIN HERE
1840
+ =========================================
1841
+ The MIT License (MIT)
1842
+
1843
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
1844
+ Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com
1845
+
1846
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1847
+ of this software and associated documentation files (the "Software"), to deal
1848
+ in the Software without restriction, including without limitation the rights
1849
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1850
+ copies of the Software, and to permit persons to whom the Software is
1851
+ furnished to do so, subject to the following conditions:
1852
+
1853
+ The above copyright notice and this permission notice shall be included in
1854
+ all copies or substantial portions of the Software.
1855
+
1856
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1857
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1858
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1859
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1860
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1861
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1862
+ THE SOFTWARE.
1863
+ =========================================
1864
+ END OF http-errors@2.0.1 AND INFORMATION
1865
+
1866
+ %% https-proxy-agent@7.0.6 NOTICES AND INFORMATION BEGIN HERE
1867
+ =========================================
1868
+ (The MIT License)
1869
+
1870
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1871
+
1872
+ Permission is hereby granted, free of charge, to any person obtaining
1873
+ a copy of this software and associated documentation files (the
1874
+ 'Software'), to deal in the Software without restriction, including
1875
+ without limitation the rights to use, copy, modify, merge, publish,
1876
+ distribute, sublicense, and/or sell copies of the Software, and to
1877
+ permit persons to whom the Software is furnished to do so, subject to
1878
+ the following conditions:
1879
+
1880
+ The above copyright notice and this permission notice shall be
1881
+ included in all copies or substantial portions of the Software.
1882
+
1883
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1884
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1885
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1886
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1887
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1888
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1889
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1890
+ =========================================
1891
+ END OF https-proxy-agent@7.0.6 AND INFORMATION
1892
+
1893
+ %% iconv-lite@0.7.2 NOTICES AND INFORMATION BEGIN HERE
1894
+ =========================================
1895
+ Copyright (c) 2011 Alexander Shtuchkin
1896
+
1897
+ Permission is hereby granted, free of charge, to any person obtaining
1898
+ a copy of this software and associated documentation files (the
1899
+ "Software"), to deal in the Software without restriction, including
1900
+ without limitation the rights to use, copy, modify, merge, publish,
1901
+ distribute, sublicense, and/or sell copies of the Software, and to
1902
+ permit persons to whom the Software is furnished to do so, subject to
1903
+ the following conditions:
1904
+
1905
+ The above copyright notice and this permission notice shall be
1906
+ included in all copies or substantial portions of the Software.
1907
+
1908
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1909
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1910
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1911
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1912
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1913
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1914
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1915
+ =========================================
1916
+ END OF iconv-lite@0.7.2 AND INFORMATION
1917
+
1918
+ %% inherits@2.0.4 NOTICES AND INFORMATION BEGIN HERE
1919
+ =========================================
1920
+ The ISC License
1921
+
1922
+ Copyright (c) Isaac Z. Schlueter
1923
+
1924
+ Permission to use, copy, modify, and/or distribute this software for any
1925
+ purpose with or without fee is hereby granted, provided that the above
1926
+ copyright notice and this permission notice appear in all copies.
1927
+
1928
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1929
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
1930
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1931
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1932
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1933
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1934
+ PERFORMANCE OF THIS SOFTWARE.
1935
+ =========================================
1936
+ END OF inherits@2.0.4 AND INFORMATION
1937
+
1938
+ %% ini@6.0.0 NOTICES AND INFORMATION BEGIN HERE
1939
+ =========================================
1940
+ The ISC License
1941
+
1942
+ Copyright (c) Isaac Z. Schlueter and Contributors
1943
+
1944
+ Permission to use, copy, modify, and/or distribute this software for any
1945
+ purpose with or without fee is hereby granted, provided that the above
1946
+ copyright notice and this permission notice appear in all copies.
1947
+
1948
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1949
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1950
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1951
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1952
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1953
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1954
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1955
+ =========================================
1956
+ END OF ini@6.0.0 AND INFORMATION
1957
+
1958
+ %% ip-address@10.0.1 NOTICES AND INFORMATION BEGIN HERE
1959
+ =========================================
1960
+ Copyright (C) 2011 by Beau Gunderson
1961
+
1962
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1963
+ of this software and associated documentation files (the "Software"), to deal
1964
+ in the Software without restriction, including without limitation the rights
1965
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1966
+ copies of the Software, and to permit persons to whom the Software is
1967
+ furnished to do so, subject to the following conditions:
1968
+
1969
+ The above copyright notice and this permission notice shall be included in
1970
+ all copies or substantial portions of the Software.
1971
+
1972
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1973
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1974
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1975
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1976
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1977
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1978
+ THE SOFTWARE.
1979
+ =========================================
1980
+ END OF ip-address@10.0.1 AND INFORMATION
1981
+
1982
+ %% ip-address@9.0.5 NOTICES AND INFORMATION BEGIN HERE
1983
+ =========================================
1984
+ Copyright (C) 2011 by Beau Gunderson
1985
+
1986
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1987
+ of this software and associated documentation files (the "Software"), to deal
1988
+ in the Software without restriction, including without limitation the rights
1989
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1990
+ copies of the Software, and to permit persons to whom the Software is
1991
+ furnished to do so, subject to the following conditions:
1992
+
1993
+ The above copyright notice and this permission notice shall be included in
1994
+ all copies or substantial portions of the Software.
1995
+
1996
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1997
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1998
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1999
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2000
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2001
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2002
+ THE SOFTWARE.
2003
+ =========================================
2004
+ END OF ip-address@9.0.5 AND INFORMATION
2005
+
2006
+ %% ipaddr.js@1.9.1 NOTICES AND INFORMATION BEGIN HERE
2007
+ =========================================
2008
+ Copyright (C) 2011-2017 whitequark <whitequark@whitequark.org>
2009
+
2010
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2011
+ of this software and associated documentation files (the "Software"), to deal
2012
+ in the Software without restriction, including without limitation the rights
2013
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2014
+ copies of the Software, and to permit persons to whom the Software is
2015
+ furnished to do so, subject to the following conditions:
2016
+
2017
+ The above copyright notice and this permission notice shall be included in
2018
+ all copies or substantial portions of the Software.
2019
+
2020
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2021
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2022
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2023
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2024
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2025
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2026
+ THE SOFTWARE.
2027
+ =========================================
2028
+ END OF ipaddr.js@1.9.1 AND INFORMATION
2029
+
2030
+ %% is-docker@2.2.1 NOTICES AND INFORMATION BEGIN HERE
2031
+ =========================================
2032
+ MIT License
2033
+
2034
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2035
+
2036
+ 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:
2037
+
2038
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2039
+
2040
+ 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.
2041
+ =========================================
2042
+ END OF is-docker@2.2.1 AND INFORMATION
2043
+
2044
+ %% is-promise@4.0.0 NOTICES AND INFORMATION BEGIN HERE
2045
+ =========================================
2046
+ Copyright (c) 2014 Forbes Lindesay
2047
+
2048
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2049
+ of this software and associated documentation files (the "Software"), to deal
2050
+ in the Software without restriction, including without limitation the rights
2051
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2052
+ copies of the Software, and to permit persons to whom the Software is
2053
+ furnished to do so, subject to the following conditions:
2054
+
2055
+ The above copyright notice and this permission notice shall be included in
2056
+ all copies or substantial portions of the Software.
2057
+
2058
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2059
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2060
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2061
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2062
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2063
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2064
+ THE SOFTWARE.
2065
+ =========================================
2066
+ END OF is-promise@4.0.0 AND INFORMATION
2067
+
2068
+ %% is-wsl@2.2.0 NOTICES AND INFORMATION BEGIN HERE
2069
+ =========================================
2070
+ MIT License
2071
+
2072
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2073
+
2074
+ 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:
2075
+
2076
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2077
+
2078
+ 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.
2079
+ =========================================
2080
+ END OF is-wsl@2.2.0 AND INFORMATION
2081
+
2082
+ %% isexe@2.0.0 NOTICES AND INFORMATION BEGIN HERE
2083
+ =========================================
2084
+ The ISC License
2085
+
2086
+ Copyright (c) Isaac Z. Schlueter and Contributors
2087
+
2088
+ Permission to use, copy, modify, and/or distribute this software for any
2089
+ purpose with or without fee is hereby granted, provided that the above
2090
+ copyright notice and this permission notice appear in all copies.
2091
+
2092
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2093
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2094
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2095
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2096
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2097
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2098
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2099
+ =========================================
2100
+ END OF isexe@2.0.0 AND INFORMATION
2101
+
2102
+ %% jose@6.1.3 NOTICES AND INFORMATION BEGIN HERE
2103
+ =========================================
2104
+ The MIT License (MIT)
2105
+
2106
+ Copyright (c) 2018 Filip Skokan
2107
+
2108
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2109
+ of this software and associated documentation files (the "Software"), to deal
2110
+ in the Software without restriction, including without limitation the rights
2111
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2112
+ copies of the Software, and to permit persons to whom the Software is
2113
+ furnished to do so, subject to the following conditions:
2114
+
2115
+ The above copyright notice and this permission notice shall be included in all
2116
+ copies or substantial portions of the Software.
2117
+
2118
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2119
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2120
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2121
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2122
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2123
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2124
+ SOFTWARE.
2125
+ =========================================
2126
+ END OF jose@6.1.3 AND INFORMATION
2127
+
2128
+ %% jpeg-js@0.4.4 NOTICES AND INFORMATION BEGIN HERE
2129
+ =========================================
2130
+ Copyright (c) 2014, Eugene Ware
2131
+ All rights reserved.
2132
+
2133
+ Redistribution and use in source and binary forms, with or without
2134
+ modification, are permitted provided that the following conditions are met:
2135
+
2136
+ 1. Redistributions of source code must retain the above copyright
2137
+ notice, this list of conditions and the following disclaimer.
2138
+ 2. Redistributions in binary form must reproduce the above copyright
2139
+ notice, this list of conditions and the following disclaimer in the
2140
+ documentation and/or other materials provided with the distribution.
2141
+ 3. Neither the name of Eugene Ware nor the names of its contributors
2142
+ may be used to endorse or promote products derived from this software
2143
+ without specific prior written permission.
2144
+
2145
+ THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
2146
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2147
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2148
+ DISCLAIMED. IN NO EVENT SHALL EUGENE WARE BE LIABLE FOR ANY
2149
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2150
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2151
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
2152
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2153
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2154
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2155
+ =========================================
2156
+ END OF jpeg-js@0.4.4 AND INFORMATION
2157
+
2158
+ %% jsbn@1.1.0 NOTICES AND INFORMATION BEGIN HERE
2159
+ =========================================
2160
+ Licensing
2161
+ ---------
2162
+
2163
+ This software is covered under the following copyright:
2164
+
2165
+ /*
2166
+ * Copyright (c) 2003-2005 Tom Wu
2167
+ * All Rights Reserved.
2168
+ *
2169
+ * Permission is hereby granted, free of charge, to any person obtaining
2170
+ * a copy of this software and associated documentation files (the
2171
+ * "Software"), to deal in the Software without restriction, including
2172
+ * without limitation the rights to use, copy, modify, merge, publish,
2173
+ * distribute, sublicense, and/or sell copies of the Software, and to
2174
+ * permit persons to whom the Software is furnished to do so, subject to
2175
+ * the following conditions:
2176
+ *
2177
+ * The above copyright notice and this permission notice shall be
2178
+ * included in all copies or substantial portions of the Software.
2179
+ *
2180
+ * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
2181
+ * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
2182
+ * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
2183
+ *
2184
+ * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
2185
+ * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
2186
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
2187
+ * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
2188
+ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2189
+ *
2190
+ * In addition, the following condition applies:
2191
+ *
2192
+ * All redistributions must retain an intact copy of this copyright notice
2193
+ * and disclaimer.
2194
+ */
2195
+
2196
+ Address all questions regarding this license to:
2197
+
2198
+ Tom Wu
2199
+ tjw@cs.Stanford.EDU
2200
+ =========================================
2201
+ END OF jsbn@1.1.0 AND INFORMATION
2202
+
2203
+ %% json-schema-traverse@1.0.0 NOTICES AND INFORMATION BEGIN HERE
2204
+ =========================================
2205
+ MIT License
2206
+
2207
+ Copyright (c) 2017 Evgeny Poberezkin
2208
+
2209
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2210
+ of this software and associated documentation files (the "Software"), to deal
2211
+ in the Software without restriction, including without limitation the rights
2212
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2213
+ copies of the Software, and to permit persons to whom the Software is
2214
+ furnished to do so, subject to the following conditions:
2215
+
2216
+ The above copyright notice and this permission notice shall be included in all
2217
+ copies or substantial portions of the Software.
2218
+
2219
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2220
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2221
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2222
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2223
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2224
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2225
+ SOFTWARE.
2226
+ =========================================
2227
+ END OF json-schema-traverse@1.0.0 AND INFORMATION
2228
+
2229
+ %% json-schema-typed@8.0.2 NOTICES AND INFORMATION BEGIN HERE
2230
+ =========================================
2231
+ BSD 2-Clause License
2232
+
2233
+ Original source code is copyright (c) 2019-2025 Remy Rylan
2234
+ <https://github.com/RemyRylan>
2235
+
2236
+ All JSON Schema documentation and descriptions are copyright (c):
2237
+
2238
+ 2009 [draft-0] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
2239
+ and SitePen (USA) <https://www.sitepen.com/>.
2240
+
2241
+ 2009 [draft-1] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
2242
+ and SitePen (USA) <https://www.sitepen.com/>.
2243
+
2244
+ 2010 [draft-2] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
2245
+ and SitePen (USA) <https://www.sitepen.com/>.
2246
+
2247
+ 2010 [draft-3] IETF Trust <https://www.ietf.org/>, Kris Zyp <kris@sitepen.com>,
2248
+ Gary Court <gary.court@gmail.com>, and SitePen (USA) <https://www.sitepen.com/>.
2249
+
2250
+ 2013 [draft-4] IETF Trust <https://www.ietf.org/>), Francis Galiegue
2251
+ <fgaliegue@gmail.com>, Kris Zyp <kris@sitepen.com>, Gary Court
2252
+ <gary.court@gmail.com>, and SitePen (USA) <https://www.sitepen.com/>.
2253
+
2254
+ 2018 [draft-7] IETF Trust <https://www.ietf.org/>, Austin Wright <aaa@bzfx.net>,
2255
+ Henry Andrews <henry@cloudflare.com>, Geraint Luff <luffgd@gmail.com>, and
2256
+ Cloudflare, Inc. <https://www.cloudflare.com/>.
2257
+
2258
+ 2019 [draft-2019-09] IETF Trust <https://www.ietf.org/>, Austin Wright
2259
+ <aaa@bzfx.net>, Henry Andrews <andrews_henry@yahoo.com>, Ben Hutton
2260
+ <bh7@sanger.ac.uk>, and Greg Dennis <gregsdennis@yahoo.com>.
2261
+
2262
+ 2020 [draft-2020-12] IETF Trust <https://www.ietf.org/>, Austin Wright
2263
+ <aaa@bzfx.net>, Henry Andrews <andrews_henry@yahoo.com>, Ben Hutton
2264
+ <ben@jsonschema.dev>, and Greg Dennis <gregsdennis@yahoo.com>.
2265
+
2266
+ All rights reserved.
2267
+
2268
+ Redistribution and use in source and binary forms, with or without modification,
2269
+ are permitted provided that the following conditions are met:
2270
+
2271
+ 1. Redistributions of source code must retain the above copyright notice, this
2272
+ list of conditions and the following disclaimer.
2273
+
2274
+ 2. Redistributions in binary form must reproduce the above copyright notice,
2275
+ this list of conditions and the following disclaimer in the documentation
2276
+ and/or other materials provided with the distribution.
2277
+
2278
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
2279
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2280
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2281
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
2282
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2283
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2284
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
2285
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2286
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2287
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2288
+ =========================================
2289
+ END OF json-schema-typed@8.0.2 AND INFORMATION
2290
+
2291
+ %% math-intrinsics@1.1.0 NOTICES AND INFORMATION BEGIN HERE
2292
+ =========================================
2293
+ MIT License
2294
+
2295
+ Copyright (c) 2024 ECMAScript Shims
2296
+
2297
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2298
+ of this software and associated documentation files (the "Software"), to deal
2299
+ in the Software without restriction, including without limitation the rights
2300
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2301
+ copies of the Software, and to permit persons to whom the Software is
2302
+ furnished to do so, subject to the following conditions:
2303
+
2304
+ The above copyright notice and this permission notice shall be included in all
2305
+ copies or substantial portions of the Software.
2306
+
2307
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2308
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2309
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2310
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2311
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2312
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2313
+ SOFTWARE.
2314
+ =========================================
2315
+ END OF math-intrinsics@1.1.0 AND INFORMATION
2316
+
2317
+ %% media-typer@1.1.0 NOTICES AND INFORMATION BEGIN HERE
2318
+ =========================================
2319
+ (The MIT License)
2320
+
2321
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
2322
+
2323
+ Permission is hereby granted, free of charge, to any person obtaining
2324
+ a copy of this software and associated documentation files (the
2325
+ 'Software'), to deal in the Software without restriction, including
2326
+ without limitation the rights to use, copy, modify, merge, publish,
2327
+ distribute, sublicense, and/or sell copies of the Software, and to
2328
+ permit persons to whom the Software is furnished to do so, subject to
2329
+ the following conditions:
2330
+
2331
+ The above copyright notice and this permission notice shall be
2332
+ included in all copies or substantial portions of the Software.
2333
+
2334
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2335
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2336
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2337
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2338
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2339
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2340
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2341
+ =========================================
2342
+ END OF media-typer@1.1.0 AND INFORMATION
2343
+
2344
+ %% merge-descriptors@2.0.0 NOTICES AND INFORMATION BEGIN HERE
2345
+ =========================================
2346
+ MIT License
2347
+
2348
+ Copyright (c) Jonathan Ong <me@jongleberry.com>
2349
+ Copyright (c) Douglas Christopher Wilson <doug@somethingdoug.com>
2350
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2351
+
2352
+ 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:
2353
+
2354
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2355
+
2356
+ 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.
2357
+ =========================================
2358
+ END OF merge-descriptors@2.0.0 AND INFORMATION
2359
+
2360
+ %% mime-db@1.54.0 NOTICES AND INFORMATION BEGIN HERE
2361
+ =========================================
2362
+ (The MIT License)
2363
+
2364
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
2365
+ Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
2366
+
2367
+ Permission is hereby granted, free of charge, to any person obtaining
2368
+ a copy of this software and associated documentation files (the
2369
+ 'Software'), to deal in the Software without restriction, including
2370
+ without limitation the rights to use, copy, modify, merge, publish,
2371
+ distribute, sublicense, and/or sell copies of the Software, and to
2372
+ permit persons to whom the Software is furnished to do so, subject to
2373
+ the following conditions:
2374
+
2375
+ The above copyright notice and this permission notice shall be
2376
+ included in all copies or substantial portions of the Software.
2377
+
2378
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2379
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2380
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2381
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2382
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2383
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2384
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2385
+ =========================================
2386
+ END OF mime-db@1.54.0 AND INFORMATION
2387
+
2388
+ %% mime-types@3.0.2 NOTICES AND INFORMATION BEGIN HERE
2389
+ =========================================
2390
+ (The MIT License)
2391
+
2392
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
2393
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
2394
+
2395
+ Permission is hereby granted, free of charge, to any person obtaining
2396
+ a copy of this software and associated documentation files (the
2397
+ 'Software'), to deal in the Software without restriction, including
2398
+ without limitation the rights to use, copy, modify, merge, publish,
2399
+ distribute, sublicense, and/or sell copies of the Software, and to
2400
+ permit persons to whom the Software is furnished to do so, subject to
2401
+ the following conditions:
2402
+
2403
+ The above copyright notice and this permission notice shall be
2404
+ included in all copies or substantial portions of the Software.
2405
+
2406
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2407
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2408
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2409
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2410
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2411
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2412
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2413
+ =========================================
2414
+ END OF mime-types@3.0.2 AND INFORMATION
2415
+
2416
+ %% mime@3.0.0 NOTICES AND INFORMATION BEGIN HERE
2417
+ =========================================
2418
+ The MIT License (MIT)
2419
+
2420
+ Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
2421
+
2422
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2423
+ of this software and associated documentation files (the "Software"), to deal
2424
+ in the Software without restriction, including without limitation the rights
2425
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2426
+ copies of the Software, and to permit persons to whom the Software is
2427
+ furnished to do so, subject to the following conditions:
2428
+
2429
+ The above copyright notice and this permission notice shall be included in
2430
+ all copies or substantial portions of the Software.
2431
+
2432
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2433
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2434
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2435
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2436
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2437
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2438
+ THE SOFTWARE.
2439
+ =========================================
2440
+ END OF mime@3.0.0 AND INFORMATION
2441
+
2442
+ %% minimatch@3.1.4 NOTICES AND INFORMATION BEGIN HERE
2443
+ =========================================
2444
+ The ISC License
2445
+
2446
+ Copyright (c) Isaac Z. Schlueter and Contributors
2447
+
2448
+ Permission to use, copy, modify, and/or distribute this software for any
2449
+ purpose with or without fee is hereby granted, provided that the above
2450
+ copyright notice and this permission notice appear in all copies.
2451
+
2452
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2453
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2454
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2455
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2456
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2457
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2458
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2459
+ =========================================
2460
+ END OF minimatch@3.1.4 AND INFORMATION
2461
+
2462
+ %% ms@2.1.2 NOTICES AND INFORMATION BEGIN HERE
2463
+ =========================================
2464
+ The MIT License (MIT)
2465
+
2466
+ Copyright (c) 2016 Zeit, Inc.
2467
+
2468
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2469
+ of this software and associated documentation files (the "Software"), to deal
2470
+ in the Software without restriction, including without limitation the rights
2471
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2472
+ copies of the Software, and to permit persons to whom the Software is
2473
+ furnished to do so, subject to the following conditions:
2474
+
2475
+ The above copyright notice and this permission notice shall be included in all
2476
+ copies or substantial portions of the Software.
2477
+
2478
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2479
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2480
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2481
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2482
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2483
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2484
+ SOFTWARE.
2485
+ =========================================
2486
+ END OF ms@2.1.2 AND INFORMATION
2487
+
2488
+ %% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
2489
+ =========================================
2490
+ The MIT License (MIT)
2491
+
2492
+ Copyright (c) 2020 Vercel, Inc.
2493
+
2494
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2495
+ of this software and associated documentation files (the "Software"), to deal
2496
+ in the Software without restriction, including without limitation the rights
2497
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2498
+ copies of the Software, and to permit persons to whom the Software is
2499
+ furnished to do so, subject to the following conditions:
2500
+
2501
+ The above copyright notice and this permission notice shall be included in all
2502
+ copies or substantial portions of the Software.
2503
+
2504
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2505
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2506
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2507
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2508
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2509
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2510
+ SOFTWARE.
2511
+ =========================================
2512
+ END OF ms@2.1.3 AND INFORMATION
2513
+
2514
+ %% negotiator@1.0.0 NOTICES AND INFORMATION BEGIN HERE
2515
+ =========================================
2516
+ (The MIT License)
2517
+
2518
+ Copyright (c) 2012-2014 Federico Romero
2519
+ Copyright (c) 2012-2014 Isaac Z. Schlueter
2520
+ Copyright (c) 2014-2015 Douglas Christopher Wilson
2521
+
2522
+ Permission is hereby granted, free of charge, to any person obtaining
2523
+ a copy of this software and associated documentation files (the
2524
+ 'Software'), to deal in the Software without restriction, including
2525
+ without limitation the rights to use, copy, modify, merge, publish,
2526
+ distribute, sublicense, and/or sell copies of the Software, and to
2527
+ permit persons to whom the Software is furnished to do so, subject to
2528
+ the following conditions:
2529
+
2530
+ The above copyright notice and this permission notice shall be
2531
+ included in all copies or substantial portions of the Software.
2532
+
2533
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2534
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2535
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2536
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2537
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2538
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2539
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2540
+ =========================================
2541
+ END OF negotiator@1.0.0 AND INFORMATION
2542
+
2543
+ %% object-assign@4.1.1 NOTICES AND INFORMATION BEGIN HERE
2544
+ =========================================
2545
+ The MIT License (MIT)
2546
+
2547
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2548
+
2549
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2550
+ of this software and associated documentation files (the "Software"), to deal
2551
+ in the Software without restriction, including without limitation the rights
2552
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2553
+ copies of the Software, and to permit persons to whom the Software is
2554
+ furnished to do so, subject to the following conditions:
2555
+
2556
+ The above copyright notice and this permission notice shall be included in
2557
+ all copies or substantial portions of the Software.
2558
+
2559
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2560
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2561
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2562
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2563
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2564
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2565
+ THE SOFTWARE.
2566
+ =========================================
2567
+ END OF object-assign@4.1.1 AND INFORMATION
2568
+
2569
+ %% object-inspect@1.13.4 NOTICES AND INFORMATION BEGIN HERE
2570
+ =========================================
2571
+ MIT License
2572
+
2573
+ Copyright (c) 2013 James Halliday
2574
+
2575
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2576
+ of this software and associated documentation files (the "Software"), to deal
2577
+ in the Software without restriction, including without limitation the rights
2578
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2579
+ copies of the Software, and to permit persons to whom the Software is
2580
+ furnished to do so, subject to the following conditions:
2581
+
2582
+ The above copyright notice and this permission notice shall be included in all
2583
+ copies or substantial portions of the Software.
2584
+
2585
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2586
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2587
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2588
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2589
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2590
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2591
+ SOFTWARE.
2592
+ =========================================
2593
+ END OF object-inspect@1.13.4 AND INFORMATION
2594
+
2595
+ %% on-finished@2.4.1 NOTICES AND INFORMATION BEGIN HERE
2596
+ =========================================
2597
+ (The MIT License)
2598
+
2599
+ Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
2600
+ Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>
2601
+
2602
+ Permission is hereby granted, free of charge, to any person obtaining
2603
+ a copy of this software and associated documentation files (the
2604
+ 'Software'), to deal in the Software without restriction, including
2605
+ without limitation the rights to use, copy, modify, merge, publish,
2606
+ distribute, sublicense, and/or sell copies of the Software, and to
2607
+ permit persons to whom the Software is furnished to do so, subject to
2608
+ the following conditions:
2609
+
2610
+ The above copyright notice and this permission notice shall be
2611
+ included in all copies or substantial portions of the Software.
2612
+
2613
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2614
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2615
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2616
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2617
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2618
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2619
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2620
+ =========================================
2621
+ END OF on-finished@2.4.1 AND INFORMATION
2622
+
2623
+ %% once@1.4.0 NOTICES AND INFORMATION BEGIN HERE
2624
+ =========================================
2625
+ The ISC License
2626
+
2627
+ Copyright (c) Isaac Z. Schlueter and Contributors
2628
+
2629
+ Permission to use, copy, modify, and/or distribute this software for any
2630
+ purpose with or without fee is hereby granted, provided that the above
2631
+ copyright notice and this permission notice appear in all copies.
2632
+
2633
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2634
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2635
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2636
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2637
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2638
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2639
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2640
+ =========================================
2641
+ END OF once@1.4.0 AND INFORMATION
2642
+
2643
+ %% open@8.4.0 NOTICES AND INFORMATION BEGIN HERE
2644
+ =========================================
2645
+ MIT License
2646
+
2647
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2648
+
2649
+ 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:
2650
+
2651
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2652
+
2653
+ 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.
2654
+ =========================================
2655
+ END OF open@8.4.0 AND INFORMATION
2656
+
2657
+ %% parseurl@1.3.3 NOTICES AND INFORMATION BEGIN HERE
2658
+ =========================================
2659
+ (The MIT License)
2660
+
2661
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
2662
+ Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
2663
+
2664
+ Permission is hereby granted, free of charge, to any person obtaining
2665
+ a copy of this software and associated documentation files (the
2666
+ 'Software'), to deal in the Software without restriction, including
2667
+ without limitation the rights to use, copy, modify, merge, publish,
2668
+ distribute, sublicense, and/or sell copies of the Software, and to
2669
+ permit persons to whom the Software is furnished to do so, subject to
2670
+ the following conditions:
2671
+
2672
+ The above copyright notice and this permission notice shall be
2673
+ included in all copies or substantial portions of the Software.
2674
+
2675
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2676
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2677
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2678
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2679
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2680
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2681
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2682
+ =========================================
2683
+ END OF parseurl@1.3.3 AND INFORMATION
2684
+
2685
+ %% path-key@3.1.1 NOTICES AND INFORMATION BEGIN HERE
2686
+ =========================================
2687
+ MIT License
2688
+
2689
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2690
+
2691
+ 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:
2692
+
2693
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2694
+
2695
+ 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.
2696
+ =========================================
2697
+ END OF path-key@3.1.1 AND INFORMATION
2698
+
2699
+ %% path-to-regexp@8.3.0 NOTICES AND INFORMATION BEGIN HERE
2700
+ =========================================
2701
+ The MIT License (MIT)
2702
+
2703
+ Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
2704
+
2705
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2706
+ of this software and associated documentation files (the "Software"), to deal
2707
+ in the Software without restriction, including without limitation the rights
2708
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2709
+ copies of the Software, and to permit persons to whom the Software is
2710
+ furnished to do so, subject to the following conditions:
2711
+
2712
+ The above copyright notice and this permission notice shall be included in
2713
+ all copies or substantial portions of the Software.
2714
+
2715
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2716
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2717
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2718
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2719
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2720
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2721
+ THE SOFTWARE.
2722
+ =========================================
2723
+ END OF path-to-regexp@8.3.0 AND INFORMATION
2724
+
2725
+ %% pend@1.2.0 NOTICES AND INFORMATION BEGIN HERE
2726
+ =========================================
2727
+ The MIT License (Expat)
2728
+
2729
+ Copyright (c) 2014 Andrew Kelley
2730
+
2731
+ Permission is hereby granted, free of charge, to any person
2732
+ obtaining a copy of this software and associated documentation files
2733
+ (the "Software"), to deal in the Software without restriction,
2734
+ including without limitation the rights to use, copy, modify, merge,
2735
+ publish, distribute, sublicense, and/or sell copies of the Software,
2736
+ and to permit persons to whom the Software is furnished to do so,
2737
+ subject to the following conditions:
2738
+
2739
+ The above copyright notice and this permission notice shall be
2740
+ included in all copies or substantial portions of the Software.
2741
+
2742
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2743
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2744
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2745
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
2746
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
2747
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2748
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2749
+ SOFTWARE.
2750
+ =========================================
2751
+ END OF pend@1.2.0 AND INFORMATION
2752
+
2753
+ %% pkce-challenge@5.0.0 NOTICES AND INFORMATION BEGIN HERE
2754
+ =========================================
2755
+ MIT License
2756
+
2757
+ Copyright (c) 2019
2758
+
2759
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2760
+ of this software and associated documentation files (the "Software"), to deal
2761
+ in the Software without restriction, including without limitation the rights
2762
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2763
+ copies of the Software, and to permit persons to whom the Software is
2764
+ furnished to do so, subject to the following conditions:
2765
+
2766
+ The above copyright notice and this permission notice shall be included in all
2767
+ copies or substantial portions of the Software.
2768
+
2769
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2770
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2771
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2772
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2773
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2774
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2775
+ SOFTWARE.
2776
+ =========================================
2777
+ END OF pkce-challenge@5.0.0 AND INFORMATION
2778
+
2779
+ %% pngjs@6.0.0 NOTICES AND INFORMATION BEGIN HERE
2780
+ =========================================
2781
+ pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
2782
+ pngjs derived work Copyright (c) 2012 Kuba Niegowski
2783
+
2784
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2785
+ of this software and associated documentation files (the "Software"), to deal
2786
+ in the Software without restriction, including without limitation the rights
2787
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2788
+ copies of the Software, and to permit persons to whom the Software is
2789
+ furnished to do so, subject to the following conditions:
2790
+
2791
+ The above copyright notice and this permission notice shall be included in
2792
+ all copies or substantial portions of the Software.
2793
+
2794
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2795
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2796
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2797
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2798
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2799
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2800
+ THE SOFTWARE.
2801
+ =========================================
2802
+ END OF pngjs@6.0.0 AND INFORMATION
2803
+
2804
+ %% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
2805
+ =========================================
2806
+ (The MIT License)
2807
+
2808
+ Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
2809
+
2810
+ Permission is hereby granted, free of charge, to any person obtaining
2811
+ a copy of this software and associated documentation files (the
2812
+ 'Software'), to deal in the Software without restriction, including
2813
+ without limitation the rights to use, copy, modify, merge, publish,
2814
+ distribute, sublicense, and/or sell copies of the Software, and to
2815
+ permit persons to whom the Software is furnished to do so, subject to
2816
+ the following conditions:
2817
+
2818
+ The above copyright notice and this permission notice shall be
2819
+ included in all copies or substantial portions of the Software.
2820
+
2821
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2822
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2823
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2824
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2825
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2826
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2827
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2828
+ =========================================
2829
+ END OF progress@2.0.3 AND INFORMATION
2830
+
2831
+ %% proxy-addr@2.0.7 NOTICES AND INFORMATION BEGIN HERE
2832
+ =========================================
2833
+ (The MIT License)
2834
+
2835
+ Copyright (c) 2014-2016 Douglas Christopher Wilson
2836
+
2837
+ Permission is hereby granted, free of charge, to any person obtaining
2838
+ a copy of this software and associated documentation files (the
2839
+ 'Software'), to deal in the Software without restriction, including
2840
+ without limitation the rights to use, copy, modify, merge, publish,
2841
+ distribute, sublicense, and/or sell copies of the Software, and to
2842
+ permit persons to whom the Software is furnished to do so, subject to
2843
+ the following conditions:
2844
+
2845
+ The above copyright notice and this permission notice shall be
2846
+ included in all copies or substantial portions of the Software.
2847
+
2848
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2849
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2850
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2851
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2852
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2853
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2854
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2855
+ =========================================
2856
+ END OF proxy-addr@2.0.7 AND INFORMATION
2857
+
2858
+ %% proxy-from-env@2.0.0 NOTICES AND INFORMATION BEGIN HERE
2859
+ =========================================
2860
+ The MIT License
2861
+
2862
+ Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
2863
+
2864
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
2865
+ this software and associated documentation files (the "Software"), to deal in
2866
+ the Software without restriction, including without limitation the rights to
2867
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
2868
+ of the Software, and to permit persons to whom the Software is furnished to do
2869
+ so, subject to the following conditions:
2870
+
2871
+ The above copyright notice and this permission notice shall be included in all
2872
+ copies or substantial portions of the Software.
2873
+
2874
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2875
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2876
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2877
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2878
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2879
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2880
+ =========================================
2881
+ END OF proxy-from-env@2.0.0 AND INFORMATION
2882
+
2883
+ %% pump@3.0.2 NOTICES AND INFORMATION BEGIN HERE
2884
+ =========================================
2885
+ The MIT License (MIT)
2886
+
2887
+ Copyright (c) 2014 Mathias Buus
2888
+
2889
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2890
+ of this software and associated documentation files (the "Software"), to deal
2891
+ in the Software without restriction, including without limitation the rights
2892
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2893
+ copies of the Software, and to permit persons to whom the Software is
2894
+ furnished to do so, subject to the following conditions:
2895
+
2896
+ The above copyright notice and this permission notice shall be included in
2897
+ all copies or substantial portions of the Software.
2898
+
2899
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2900
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2901
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2902
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2903
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2904
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2905
+ THE SOFTWARE.
2906
+ =========================================
2907
+ END OF pump@3.0.2 AND INFORMATION
2908
+
2909
+ %% qs@6.14.1 NOTICES AND INFORMATION BEGIN HERE
2910
+ =========================================
2911
+ BSD 3-Clause License
2912
+
2913
+ Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors)
2914
+ All rights reserved.
2915
+
2916
+ Redistribution and use in source and binary forms, with or without
2917
+ modification, are permitted provided that the following conditions are met:
2918
+
2919
+ 1. Redistributions of source code must retain the above copyright notice, this
2920
+ list of conditions and the following disclaimer.
2921
+
2922
+ 2. Redistributions in binary form must reproduce the above copyright notice,
2923
+ this list of conditions and the following disclaimer in the documentation
2924
+ and/or other materials provided with the distribution.
2925
+
2926
+ 3. Neither the name of the copyright holder nor the names of its
2927
+ contributors may be used to endorse or promote products derived from
2928
+ this software without specific prior written permission.
2929
+
2930
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2931
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2932
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2933
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
2934
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2935
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2936
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2937
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2938
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2939
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2940
+ =========================================
2941
+ END OF qs@6.14.1 AND INFORMATION
2942
+
2943
+ %% range-parser@1.2.1 NOTICES AND INFORMATION BEGIN HERE
2944
+ =========================================
2945
+ (The MIT License)
2946
+
2947
+ Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
2948
+ Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com
2949
+
2950
+ Permission is hereby granted, free of charge, to any person obtaining
2951
+ a copy of this software and associated documentation files (the
2952
+ 'Software'), to deal in the Software without restriction, including
2953
+ without limitation the rights to use, copy, modify, merge, publish,
2954
+ distribute, sublicense, and/or sell copies of the Software, and to
2955
+ permit persons to whom the Software is furnished to do so, subject to
2956
+ the following conditions:
2957
+
2958
+ The above copyright notice and this permission notice shall be
2959
+ included in all copies or substantial portions of the Software.
2960
+
2961
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2962
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2963
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2964
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2965
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2966
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2967
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2968
+ =========================================
2969
+ END OF range-parser@1.2.1 AND INFORMATION
2970
+
2971
+ %% raw-body@3.0.2 NOTICES AND INFORMATION BEGIN HERE
2972
+ =========================================
2973
+ The MIT License (MIT)
2974
+
2975
+ Copyright (c) 2013-2014 Jonathan Ong <me@jongleberry.com>
2976
+ Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
2977
+
2978
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2979
+ of this software and associated documentation files (the "Software"), to deal
2980
+ in the Software without restriction, including without limitation the rights
2981
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2982
+ copies of the Software, and to permit persons to whom the Software is
2983
+ furnished to do so, subject to the following conditions:
2984
+
2985
+ The above copyright notice and this permission notice shall be included in
2986
+ all copies or substantial portions of the Software.
2987
+
2988
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2989
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2990
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2991
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2992
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2993
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2994
+ THE SOFTWARE.
2995
+ =========================================
2996
+ END OF raw-body@3.0.2 AND INFORMATION
2997
+
2998
+ %% require-from-string@2.0.2 NOTICES AND INFORMATION BEGIN HERE
2999
+ =========================================
3000
+ The MIT License (MIT)
3001
+
3002
+ Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com> (github.com/floatdrop)
3003
+
3004
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3005
+ of this software and associated documentation files (the "Software"), to deal
3006
+ in the Software without restriction, including without limitation the rights
3007
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3008
+ copies of the Software, and to permit persons to whom the Software is
3009
+ furnished to do so, subject to the following conditions:
3010
+
3011
+ The above copyright notice and this permission notice shall be included in
3012
+ all copies or substantial portions of the Software.
3013
+
3014
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3015
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3016
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3017
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3018
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3019
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3020
+ THE SOFTWARE.
3021
+ =========================================
3022
+ END OF require-from-string@2.0.2 AND INFORMATION
3023
+
3024
+ %% retry@0.12.0 NOTICES AND INFORMATION BEGIN HERE
3025
+ =========================================
3026
+ Copyright (c) 2011:
3027
+ Tim Koschützki (tim@debuggable.com)
3028
+ Felix Geisendörfer (felix@debuggable.com)
3029
+
3030
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3031
+ of this software and associated documentation files (the "Software"), to deal
3032
+ in the Software without restriction, including without limitation the rights
3033
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3034
+ copies of the Software, and to permit persons to whom the Software is
3035
+ furnished to do so, subject to the following conditions:
3036
+
3037
+ The above copyright notice and this permission notice shall be included in
3038
+ all copies or substantial portions of the Software.
3039
+
3040
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3041
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3042
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3043
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3044
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3045
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3046
+ THE SOFTWARE.
3047
+ =========================================
3048
+ END OF retry@0.12.0 AND INFORMATION
3049
+
3050
+ %% router@2.2.0 NOTICES AND INFORMATION BEGIN HERE
3051
+ =========================================
3052
+ (The MIT License)
3053
+
3054
+ Copyright (c) 2013 Roman Shtylman
3055
+ Copyright (c) 2014-2022 Douglas Christopher Wilson
3056
+
3057
+ Permission is hereby granted, free of charge, to any person obtaining
3058
+ a copy of this software and associated documentation files (the
3059
+ 'Software'), to deal in the Software without restriction, including
3060
+ without limitation the rights to use, copy, modify, merge, publish,
3061
+ distribute, sublicense, and/or sell copies of the Software, and to
3062
+ permit persons to whom the Software is furnished to do so, subject to
3063
+ the following conditions:
3064
+
3065
+ The above copyright notice and this permission notice shall be
3066
+ included in all copies or substantial portions of the Software.
3067
+
3068
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3069
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3070
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3071
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3072
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3073
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3074
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3075
+ =========================================
3076
+ END OF router@2.2.0 AND INFORMATION
3077
+
3078
+ %% safer-buffer@2.1.2 NOTICES AND INFORMATION BEGIN HERE
3079
+ =========================================
3080
+ MIT License
3081
+
3082
+ Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com>
3083
+
3084
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3085
+ of this software and associated documentation files (the "Software"), to deal
3086
+ in the Software without restriction, including without limitation the rights
3087
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3088
+ copies of the Software, and to permit persons to whom the Software is
3089
+ furnished to do so, subject to the following conditions:
3090
+
3091
+ The above copyright notice and this permission notice shall be included in all
3092
+ copies or substantial portions of the Software.
3093
+
3094
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3095
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3096
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3097
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3098
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3099
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3100
+ SOFTWARE.
3101
+ =========================================
3102
+ END OF safer-buffer@2.1.2 AND INFORMATION
3103
+
3104
+ %% send@1.2.1 NOTICES AND INFORMATION BEGIN HERE
3105
+ =========================================
3106
+ (The MIT License)
3107
+
3108
+ Copyright (c) 2012 TJ Holowaychuk
3109
+ Copyright (c) 2014-2022 Douglas Christopher Wilson
3110
+
3111
+ Permission is hereby granted, free of charge, to any person obtaining
3112
+ a copy of this software and associated documentation files (the
3113
+ 'Software'), to deal in the Software without restriction, including
3114
+ without limitation the rights to use, copy, modify, merge, publish,
3115
+ distribute, sublicense, and/or sell copies of the Software, and to
3116
+ permit persons to whom the Software is furnished to do so, subject to
3117
+ the following conditions:
3118
+
3119
+ The above copyright notice and this permission notice shall be
3120
+ included in all copies or substantial portions of the Software.
3121
+
3122
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3123
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3124
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3125
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3126
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3127
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3128
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3129
+ =========================================
3130
+ END OF send@1.2.1 AND INFORMATION
3131
+
3132
+ %% serve-static@2.2.1 NOTICES AND INFORMATION BEGIN HERE
3133
+ =========================================
3134
+ (The MIT License)
3135
+
3136
+ Copyright (c) 2010 Sencha Inc.
3137
+ Copyright (c) 2011 LearnBoost
3138
+ Copyright (c) 2011 TJ Holowaychuk
3139
+ Copyright (c) 2014-2016 Douglas Christopher Wilson
3140
+
3141
+ Permission is hereby granted, free of charge, to any person obtaining
3142
+ a copy of this software and associated documentation files (the
3143
+ 'Software'), to deal in the Software without restriction, including
3144
+ without limitation the rights to use, copy, modify, merge, publish,
3145
+ distribute, sublicense, and/or sell copies of the Software, and to
3146
+ permit persons to whom the Software is furnished to do so, subject to
3147
+ the following conditions:
3148
+
3149
+ The above copyright notice and this permission notice shall be
3150
+ included in all copies or substantial portions of the Software.
3151
+
3152
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3153
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3154
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3155
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3156
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3157
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3158
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3159
+ =========================================
3160
+ END OF serve-static@2.2.1 AND INFORMATION
3161
+
3162
+ %% setprototypeof@1.2.0 NOTICES AND INFORMATION BEGIN HERE
3163
+ =========================================
3164
+ Copyright (c) 2015, Wes Todd
3165
+
3166
+ Permission to use, copy, modify, and/or distribute this software for any
3167
+ purpose with or without fee is hereby granted, provided that the above
3168
+ copyright notice and this permission notice appear in all copies.
3169
+
3170
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3171
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3172
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
3173
+ SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3174
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
3175
+ OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
3176
+ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3177
+ =========================================
3178
+ END OF setprototypeof@1.2.0 AND INFORMATION
3179
+
3180
+ %% shebang-command@2.0.0 NOTICES AND INFORMATION BEGIN HERE
3181
+ =========================================
3182
+ MIT License
3183
+
3184
+ Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
3185
+
3186
+ 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:
3187
+
3188
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3189
+
3190
+ 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.
3191
+ =========================================
3192
+ END OF shebang-command@2.0.0 AND INFORMATION
3193
+
3194
+ %% shebang-regex@3.0.0 NOTICES AND INFORMATION BEGIN HERE
3195
+ =========================================
3196
+ MIT License
3197
+
3198
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3199
+
3200
+ 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:
3201
+
3202
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3203
+
3204
+ 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.
3205
+ =========================================
3206
+ END OF shebang-regex@3.0.0 AND INFORMATION
3207
+
3208
+ %% side-channel-list@1.0.0 NOTICES AND INFORMATION BEGIN HERE
3209
+ =========================================
3210
+ MIT License
3211
+
3212
+ Copyright (c) 2024 Jordan Harband
3213
+
3214
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3215
+ of this software and associated documentation files (the "Software"), to deal
3216
+ in the Software without restriction, including without limitation the rights
3217
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3218
+ copies of the Software, and to permit persons to whom the Software is
3219
+ furnished to do so, subject to the following conditions:
3220
+
3221
+ The above copyright notice and this permission notice shall be included in all
3222
+ copies or substantial portions of the Software.
3223
+
3224
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3225
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3226
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3227
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3228
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3229
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3230
+ SOFTWARE.
3231
+ =========================================
3232
+ END OF side-channel-list@1.0.0 AND INFORMATION
3233
+
3234
+ %% side-channel-map@1.0.1 NOTICES AND INFORMATION BEGIN HERE
3235
+ =========================================
3236
+ MIT License
3237
+
3238
+ Copyright (c) 2024 Jordan Harband
3239
+
3240
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3241
+ of this software and associated documentation files (the "Software"), to deal
3242
+ in the Software without restriction, including without limitation the rights
3243
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3244
+ copies of the Software, and to permit persons to whom the Software is
3245
+ furnished to do so, subject to the following conditions:
3246
+
3247
+ The above copyright notice and this permission notice shall be included in all
3248
+ copies or substantial portions of the Software.
3249
+
3250
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3251
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3252
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3253
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3254
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3255
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3256
+ SOFTWARE.
3257
+ =========================================
3258
+ END OF side-channel-map@1.0.1 AND INFORMATION
3259
+
3260
+ %% side-channel-weakmap@1.0.2 NOTICES AND INFORMATION BEGIN HERE
3261
+ =========================================
3262
+ MIT License
3263
+
3264
+ Copyright (c) 2019 Jordan Harband
3265
+
3266
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3267
+ of this software and associated documentation files (the "Software"), to deal
3268
+ in the Software without restriction, including without limitation the rights
3269
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3270
+ copies of the Software, and to permit persons to whom the Software is
3271
+ furnished to do so, subject to the following conditions:
3272
+
3273
+ The above copyright notice and this permission notice shall be included in all
3274
+ copies or substantial portions of the Software.
3275
+
3276
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3277
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3278
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3279
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3280
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3281
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3282
+ SOFTWARE.
3283
+ =========================================
3284
+ END OF side-channel-weakmap@1.0.2 AND INFORMATION
3285
+
3286
+ %% side-channel@1.1.0 NOTICES AND INFORMATION BEGIN HERE
3287
+ =========================================
3288
+ MIT License
3289
+
3290
+ Copyright (c) 2019 Jordan Harband
3291
+
3292
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3293
+ of this software and associated documentation files (the "Software"), to deal
3294
+ in the Software without restriction, including without limitation the rights
3295
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3296
+ copies of the Software, and to permit persons to whom the Software is
3297
+ furnished to do so, subject to the following conditions:
3298
+
3299
+ The above copyright notice and this permission notice shall be included in all
3300
+ copies or substantial portions of the Software.
3301
+
3302
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3303
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3304
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3305
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3306
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3307
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3308
+ SOFTWARE.
3309
+ =========================================
3310
+ END OF side-channel@1.1.0 AND INFORMATION
3311
+
3312
+ %% signal-exit@3.0.7 NOTICES AND INFORMATION BEGIN HERE
3313
+ =========================================
3314
+ The ISC License
3315
+
3316
+ Copyright (c) 2015, Contributors
3317
+
3318
+ Permission to use, copy, modify, and/or distribute this software
3319
+ for any purpose with or without fee is hereby granted, provided
3320
+ that the above copyright notice and this permission notice
3321
+ appear in all copies.
3322
+
3323
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3324
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
3325
+ OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
3326
+ LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
3327
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
3328
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
3329
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3330
+ =========================================
3331
+ END OF signal-exit@3.0.7 AND INFORMATION
3332
+
3333
+ %% smart-buffer@4.2.0 NOTICES AND INFORMATION BEGIN HERE
3334
+ =========================================
3335
+ The MIT License (MIT)
3336
+
3337
+ Copyright (c) 2013-2017 Josh Glazebrook
3338
+
3339
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
3340
+ this software and associated documentation files (the "Software"), to deal in
3341
+ the Software without restriction, including without limitation the rights to
3342
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3343
+ the Software, and to permit persons to whom the Software is furnished to do so,
3344
+ subject to the following conditions:
3345
+
3346
+ The above copyright notice and this permission notice shall be included in all
3347
+ copies or substantial portions of the Software.
3348
+
3349
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3350
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3351
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3352
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3353
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3354
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3355
+ =========================================
3356
+ END OF smart-buffer@4.2.0 AND INFORMATION
3357
+
3358
+ %% socks-proxy-agent@8.0.5 NOTICES AND INFORMATION BEGIN HERE
3359
+ =========================================
3360
+ (The MIT License)
3361
+
3362
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
3363
+
3364
+ Permission is hereby granted, free of charge, to any person obtaining
3365
+ a copy of this software and associated documentation files (the
3366
+ 'Software'), to deal in the Software without restriction, including
3367
+ without limitation the rights to use, copy, modify, merge, publish,
3368
+ distribute, sublicense, and/or sell copies of the Software, and to
3369
+ permit persons to whom the Software is furnished to do so, subject to
3370
+ the following conditions:
3371
+
3372
+ The above copyright notice and this permission notice shall be
3373
+ included in all copies or substantial portions of the Software.
3374
+
3375
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3376
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3377
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3378
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3379
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3380
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3381
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3382
+ =========================================
3383
+ END OF socks-proxy-agent@8.0.5 AND INFORMATION
3384
+
3385
+ %% socks@2.8.3 NOTICES AND INFORMATION BEGIN HERE
3386
+ =========================================
3387
+ The MIT License (MIT)
3388
+
3389
+ Copyright (c) 2013 Josh Glazebrook
3390
+
3391
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
3392
+ this software and associated documentation files (the "Software"), to deal in
3393
+ the Software without restriction, including without limitation the rights to
3394
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3395
+ the Software, and to permit persons to whom the Software is furnished to do so,
3396
+ subject to the following conditions:
3397
+
3398
+ The above copyright notice and this permission notice shall be included in all
3399
+ copies or substantial portions of the Software.
3400
+
3401
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3402
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3403
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3404
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3405
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3406
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3407
+ =========================================
3408
+ END OF socks@2.8.3 AND INFORMATION
3409
+
3410
+ %% sprintf-js@1.1.3 NOTICES AND INFORMATION BEGIN HERE
3411
+ =========================================
3412
+ Copyright (c) 2007-present, Alexandru Mărășteanu <hello@alexei.ro>
3413
+ All rights reserved.
3414
+
3415
+ Redistribution and use in source and binary forms, with or without
3416
+ modification, are permitted provided that the following conditions are met:
3417
+ * Redistributions of source code must retain the above copyright
3418
+ notice, this list of conditions and the following disclaimer.
3419
+ * Redistributions in binary form must reproduce the above copyright
3420
+ notice, this list of conditions and the following disclaimer in the
3421
+ documentation and/or other materials provided with the distribution.
3422
+ * Neither the name of this software nor the names of its contributors may be
3423
+ used to endorse or promote products derived from this software without
3424
+ specific prior written permission.
3425
+
3426
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
3427
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
3428
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
3429
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
3430
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
3431
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
3432
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
3433
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3434
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3435
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3436
+ =========================================
3437
+ END OF sprintf-js@1.1.3 AND INFORMATION
3438
+
3439
+ %% statuses@2.0.2 NOTICES AND INFORMATION BEGIN HERE
3440
+ =========================================
3441
+ The MIT License (MIT)
3442
+
3443
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
3444
+ Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
3445
+
3446
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3447
+ of this software and associated documentation files (the "Software"), to deal
3448
+ in the Software without restriction, including without limitation the rights
3449
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3450
+ copies of the Software, and to permit persons to whom the Software is
3451
+ furnished to do so, subject to the following conditions:
3452
+
3453
+ The above copyright notice and this permission notice shall be included in
3454
+ all copies or substantial portions of the Software.
3455
+
3456
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3457
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3458
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3459
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3460
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3461
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3462
+ THE SOFTWARE.
3463
+ =========================================
3464
+ END OF statuses@2.0.2 AND INFORMATION
3465
+
3466
+ %% toidentifier@1.0.1 NOTICES AND INFORMATION BEGIN HERE
3467
+ =========================================
3468
+ MIT License
3469
+
3470
+ Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
3471
+
3472
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3473
+ of this software and associated documentation files (the "Software"), to deal
3474
+ in the Software without restriction, including without limitation the rights
3475
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3476
+ copies of the Software, and to permit persons to whom the Software is
3477
+ furnished to do so, subject to the following conditions:
3478
+
3479
+ The above copyright notice and this permission notice shall be included in all
3480
+ copies or substantial portions of the Software.
3481
+
3482
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3483
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3484
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3485
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3486
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3487
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3488
+ SOFTWARE.
3489
+ =========================================
3490
+ END OF toidentifier@1.0.1 AND INFORMATION
3491
+
3492
+ %% type-is@2.0.1 NOTICES AND INFORMATION BEGIN HERE
3493
+ =========================================
3494
+ (The MIT License)
3495
+
3496
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
3497
+ Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
3498
+
3499
+ Permission is hereby granted, free of charge, to any person obtaining
3500
+ a copy of this software and associated documentation files (the
3501
+ 'Software'), to deal in the Software without restriction, including
3502
+ without limitation the rights to use, copy, modify, merge, publish,
3503
+ distribute, sublicense, and/or sell copies of the Software, and to
3504
+ permit persons to whom the Software is furnished to do so, subject to
3505
+ the following conditions:
3506
+
3507
+ The above copyright notice and this permission notice shall be
3508
+ included in all copies or substantial portions of the Software.
3509
+
3510
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3511
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3512
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3513
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3514
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3515
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3516
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3517
+ =========================================
3518
+ END OF type-is@2.0.1 AND INFORMATION
3519
+
3520
+ %% unpipe@1.0.0 NOTICES AND INFORMATION BEGIN HERE
3521
+ =========================================
3522
+ (The MIT License)
3523
+
3524
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
3525
+
3526
+ Permission is hereby granted, free of charge, to any person obtaining
3527
+ a copy of this software and associated documentation files (the
3528
+ 'Software'), to deal in the Software without restriction, including
3529
+ without limitation the rights to use, copy, modify, merge, publish,
3530
+ distribute, sublicense, and/or sell copies of the Software, and to
3531
+ permit persons to whom the Software is furnished to do so, subject to
3532
+ the following conditions:
3533
+
3534
+ The above copyright notice and this permission notice shall be
3535
+ included in all copies or substantial portions of the Software.
3536
+
3537
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3538
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3539
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3540
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3541
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3542
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3543
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3544
+ =========================================
3545
+ END OF unpipe@1.0.0 AND INFORMATION
3546
+
3547
+ %% vary@1.1.2 NOTICES AND INFORMATION BEGIN HERE
3548
+ =========================================
3549
+ (The MIT License)
3550
+
3551
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
3552
+
3553
+ Permission is hereby granted, free of charge, to any person obtaining
3554
+ a copy of this software and associated documentation files (the
3555
+ 'Software'), to deal in the Software without restriction, including
3556
+ without limitation the rights to use, copy, modify, merge, publish,
3557
+ distribute, sublicense, and/or sell copies of the Software, and to
3558
+ permit persons to whom the Software is furnished to do so, subject to
3559
+ the following conditions:
3560
+
3561
+ The above copyright notice and this permission notice shall be
3562
+ included in all copies or substantial portions of the Software.
3563
+
3564
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3565
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3566
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3567
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3568
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3569
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3570
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3571
+ =========================================
3572
+ END OF vary@1.1.2 AND INFORMATION
3573
+
3574
+ %% which@2.0.2 NOTICES AND INFORMATION BEGIN HERE
3575
+ =========================================
3576
+ The ISC License
3577
+
3578
+ Copyright (c) Isaac Z. Schlueter and Contributors
3579
+
3580
+ Permission to use, copy, modify, and/or distribute this software for any
3581
+ purpose with or without fee is hereby granted, provided that the above
3582
+ copyright notice and this permission notice appear in all copies.
3583
+
3584
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3585
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3586
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3587
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3588
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3589
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3590
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3591
+ =========================================
3592
+ END OF which@2.0.2 AND INFORMATION
3593
+
3594
+ %% wrappy@1.0.2 NOTICES AND INFORMATION BEGIN HERE
3595
+ =========================================
3596
+ The ISC License
3597
+
3598
+ Copyright (c) Isaac Z. Schlueter and Contributors
3599
+
3600
+ Permission to use, copy, modify, and/or distribute this software for any
3601
+ purpose with or without fee is hereby granted, provided that the above
3602
+ copyright notice and this permission notice appear in all copies.
3603
+
3604
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3605
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3606
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3607
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3608
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3609
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3610
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3611
+ =========================================
3612
+ END OF wrappy@1.0.2 AND INFORMATION
3613
+
3614
+ %% ws@8.17.1 NOTICES AND INFORMATION BEGIN HERE
3615
+ =========================================
3616
+ Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
3617
+ Copyright (c) 2013 Arnout Kazemier and contributors
3618
+ Copyright (c) 2016 Luigi Pinca and contributors
3619
+
3620
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
3621
+ this software and associated documentation files (the "Software"), to deal in
3622
+ the Software without restriction, including without limitation the rights to
3623
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3624
+ the Software, and to permit persons to whom the Software is furnished to do so,
3625
+ subject to the following conditions:
3626
+
3627
+ The above copyright notice and this permission notice shall be included in all
3628
+ copies or substantial portions of the Software.
3629
+
3630
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3631
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3632
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3633
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3634
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3635
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3636
+ =========================================
3637
+ END OF ws@8.17.1 AND INFORMATION
3638
+
3639
+ %% yaml@2.6.0 NOTICES AND INFORMATION BEGIN HERE
3640
+ =========================================
3641
+ Copyright Eemeli Aro <eemeli@gmail.com>
3642
+
3643
+ Permission to use, copy, modify, and/or distribute this software for any purpose
3644
+ with or without fee is hereby granted, provided that the above copyright notice
3645
+ and this permission notice appear in all copies.
3646
+
3647
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
3648
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
3649
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
3650
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
3651
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
3652
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
3653
+ THIS SOFTWARE.
3654
+ =========================================
3655
+ END OF yaml@2.6.0 AND INFORMATION
3656
+
3657
+ %% yauzl@3.2.0 NOTICES AND INFORMATION BEGIN HERE
3658
+ =========================================
3659
+ The MIT License (MIT)
3660
+
3661
+ Copyright (c) 2014 Josh Wolfe
3662
+
3663
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3664
+ of this software and associated documentation files (the "Software"), to deal
3665
+ in the Software without restriction, including without limitation the rights
3666
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3667
+ copies of the Software, and to permit persons to whom the Software is
3668
+ furnished to do so, subject to the following conditions:
3669
+
3670
+ The above copyright notice and this permission notice shall be included in all
3671
+ copies or substantial portions of the Software.
3672
+
3673
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3674
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3675
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3676
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3677
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3678
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3679
+ SOFTWARE.
3680
+ =========================================
3681
+ END OF yauzl@3.2.0 AND INFORMATION
3682
+
3683
+ %% yazl@2.5.1 NOTICES AND INFORMATION BEGIN HERE
3684
+ =========================================
3685
+ The MIT License (MIT)
3686
+
3687
+ Copyright (c) 2014 Josh Wolfe
3688
+
3689
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3690
+ of this software and associated documentation files (the "Software"), to deal
3691
+ in the Software without restriction, including without limitation the rights
3692
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3693
+ copies of the Software, and to permit persons to whom the Software is
3694
+ furnished to do so, subject to the following conditions:
3695
+
3696
+ The above copyright notice and this permission notice shall be included in all
3697
+ copies or substantial portions of the Software.
3698
+
3699
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3700
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3701
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3702
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3703
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3704
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3705
+ SOFTWARE.
3706
+ =========================================
3707
+ END OF yazl@2.5.1 AND INFORMATION
3708
+
3709
+ %% zod-to-json-schema@3.25.1 NOTICES AND INFORMATION BEGIN HERE
3710
+ =========================================
3711
+ ISC License
3712
+
3713
+ Copyright (c) 2020, Stefan Terdell
3714
+
3715
+ Permission to use, copy, modify, and/or distribute this software for any
3716
+ purpose with or without fee is hereby granted, provided that the above
3717
+ copyright notice and this permission notice appear in all copies.
3718
+
3719
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3720
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3721
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3722
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3723
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3724
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3725
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3726
+ =========================================
3727
+ END OF zod-to-json-schema@3.25.1 AND INFORMATION
3728
+
3729
+ %% zod@4.3.5 NOTICES AND INFORMATION BEGIN HERE
3730
+ =========================================
3731
+ MIT License
3732
+
3733
+ Copyright (c) 2025 Colin McDonnell
3734
+
3735
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3736
+ of this software and associated documentation files (the "Software"), to deal
3737
+ in the Software without restriction, including without limitation the rights
3738
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3739
+ copies of the Software, and to permit persons to whom the Software is
3740
+ furnished to do so, subject to the following conditions:
3741
+
3742
+ The above copyright notice and this permission notice shall be included in all
3743
+ copies or substantial portions of the Software.
3744
+
3745
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3746
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3747
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3748
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3749
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3750
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3751
+ SOFTWARE.
3752
+ =========================================
3753
+ END OF zod@4.3.5 AND INFORMATION
3754
+
3755
+ SUMMARY BEGIN HERE
3756
+ =========================================
3757
+ Total Packages: 134
3758
+ =========================================
3759
+ END OF SUMMARY