stably 4.12.1 → 4.12.2

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