patchright-bun-core 1.58.2 → 1.59.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (272) hide show
  1. package/ThirdPartyNotices.txt +126 -650
  2. package/browsers.json +16 -14
  3. package/lib/bootstrap.js +77 -0
  4. package/lib/cli/browserActions.js +308 -0
  5. package/lib/cli/driver.js +3 -2
  6. package/lib/cli/installActions.js +171 -0
  7. package/lib/cli/program.js +47 -411
  8. package/lib/client/android.js +4 -4
  9. package/lib/client/api.js +3 -3
  10. package/lib/client/browser.js +8 -0
  11. package/lib/client/browserContext.js +18 -37
  12. package/lib/client/browserType.js +19 -51
  13. package/lib/client/cdpSession.js +6 -2
  14. package/lib/client/channelOwner.js +1 -1
  15. package/lib/client/{webSocket.js → connect.js} +57 -7
  16. package/lib/client/connection.js +8 -4
  17. package/lib/client/consoleMessage.js +3 -0
  18. package/lib/client/debugger.js +57 -0
  19. package/lib/client/dialog.js +8 -1
  20. package/lib/client/disposable.js +76 -0
  21. package/lib/client/electron.js +1 -0
  22. package/lib/client/elementHandle.js +1 -4
  23. package/lib/client/events.js +3 -3
  24. package/lib/client/fetch.js +0 -1
  25. package/lib/client/frame.js +0 -5
  26. package/lib/client/harRouter.js +13 -1
  27. package/lib/client/jsHandle.js +0 -4
  28. package/lib/client/locator.js +5 -7
  29. package/lib/client/network.js +14 -11
  30. package/lib/client/page.js +34 -48
  31. package/lib/client/platform.js +0 -3
  32. package/lib/client/screencast.js +88 -0
  33. package/lib/client/selectors.js +3 -1
  34. package/lib/client/tracing.js +11 -4
  35. package/lib/client/video.js +13 -20
  36. package/lib/generated/bindingsControllerSource.js +1 -1
  37. package/lib/generated/clockSource.js +1 -1
  38. package/lib/generated/injectedScriptSource.js +1 -1
  39. package/lib/generated/pollingRecorderSource.js +1 -1
  40. package/lib/generated/storageScriptSource.js +1 -1
  41. package/lib/generated/utilityScriptSource.js +1 -1
  42. package/lib/mcpBundle.js +0 -6
  43. package/lib/mcpBundleImpl.js +91 -0
  44. package/lib/protocol/validator.js +216 -118
  45. package/lib/protocol/validatorPrimitives.js +1 -1
  46. package/lib/remote/playwrightConnection.js +10 -8
  47. package/lib/remote/playwrightPipeServer.js +100 -0
  48. package/lib/remote/playwrightServer.js +13 -8
  49. package/lib/remote/playwrightWebSocketServer.js +73 -0
  50. package/lib/remote/serverTransport.js +96 -0
  51. package/lib/server/android/android.js +2 -2
  52. package/lib/server/bidi/bidiBrowser.js +30 -8
  53. package/lib/server/bidi/bidiChromium.js +18 -5
  54. package/lib/server/bidi/bidiNetworkManager.js +39 -11
  55. package/lib/server/bidi/bidiPage.js +31 -15
  56. package/lib/server/bidi/third_party/firefoxPrefs.js +3 -1
  57. package/lib/server/browser.js +84 -21
  58. package/lib/server/browserContext.js +97 -58
  59. package/lib/server/browserType.js +14 -12
  60. package/lib/server/chromium/chromium.js +15 -13
  61. package/lib/server/chromium/crBrowser.js +18 -10
  62. package/lib/server/chromium/crNetworkManager.js +4 -4
  63. package/lib/server/chromium/crPage.js +26 -64
  64. package/lib/server/chromium/crServiceWorker.js +5 -4
  65. package/lib/server/clock.js +33 -33
  66. package/lib/server/console.js +5 -1
  67. package/lib/server/debugController.js +12 -6
  68. package/lib/server/debugger.js +40 -47
  69. package/lib/server/deviceDescriptorsSource.json +137 -137
  70. package/lib/server/dispatchers/browserContextDispatcher.js +27 -30
  71. package/lib/server/dispatchers/browserDispatcher.js +11 -5
  72. package/lib/server/dispatchers/browserTypeDispatcher.js +7 -0
  73. package/lib/server/dispatchers/cdpSessionDispatcher.js +4 -1
  74. package/lib/server/dispatchers/debuggerDispatcher.js +84 -0
  75. package/lib/server/dispatchers/dispatcher.js +1 -1
  76. package/lib/server/dispatchers/disposableDispatcher.js +39 -0
  77. package/lib/server/dispatchers/electronDispatcher.js +2 -1
  78. package/lib/server/dispatchers/frameDispatcher.js +3 -3
  79. package/lib/server/dispatchers/localUtilsDispatcher.js +37 -1
  80. package/lib/server/dispatchers/networkDispatchers.js +6 -5
  81. package/lib/server/dispatchers/pageDispatcher.js +101 -38
  82. package/lib/server/dispatchers/webSocketRouteDispatcher.js +4 -5
  83. package/lib/server/disposable.js +41 -0
  84. package/lib/server/dom.js +44 -26
  85. package/lib/server/download.js +3 -2
  86. package/lib/server/electron/electron.js +12 -7
  87. package/lib/server/firefox/ffBrowser.js +9 -19
  88. package/lib/server/firefox/ffInput.js +21 -5
  89. package/lib/server/firefox/ffNetworkManager.js +2 -2
  90. package/lib/server/firefox/ffPage.js +24 -27
  91. package/lib/server/frames.js +40 -11
  92. package/lib/server/har/harRecorder.js +2 -2
  93. package/lib/server/har/harTracer.js +5 -4
  94. package/lib/server/input.js +49 -4
  95. package/lib/server/instrumentation.js +5 -0
  96. package/lib/server/launchApp.js +0 -1
  97. package/lib/server/localUtils.js +6 -6
  98. package/lib/server/network.js +9 -8
  99. package/lib/server/overlay.js +138 -0
  100. package/lib/server/page.js +111 -51
  101. package/lib/server/progress.js +6 -0
  102. package/lib/server/recorder/recorderApp.js +9 -8
  103. package/lib/server/recorder.js +76 -40
  104. package/lib/server/registry/index.js +54 -81
  105. package/lib/server/registry/nativeDeps.js +1 -0
  106. package/lib/server/screencast.js +90 -143
  107. package/lib/server/trace/recorder/snapshotter.js +2 -2
  108. package/lib/server/trace/recorder/tracing.js +87 -36
  109. package/lib/server/trace/viewer/traceViewer.js +3 -4
  110. package/lib/server/usKeyboardLayout.js +7 -0
  111. package/lib/server/utils/comparators.js +1 -1
  112. package/lib/server/utils/disposable.js +32 -0
  113. package/lib/server/utils/eventsHelper.js +3 -1
  114. package/lib/server/utils/fileUtils.js +16 -2
  115. package/lib/server/utils/happyEyeballs.js +15 -12
  116. package/lib/server/utils/hostPlatform.js +0 -15
  117. package/lib/server/utils/httpServer.js +5 -3
  118. package/lib/server/utils/network.js +2 -1
  119. package/lib/server/utils/nodePlatform.js +0 -6
  120. package/lib/server/utils/processLauncher.js +8 -6
  121. package/lib/server/utils/zipFile.js +2 -2
  122. package/lib/server/videoRecorder.js +82 -12
  123. package/lib/server/webkit/wkBrowser.js +1 -6
  124. package/lib/server/webkit/wkPage.js +27 -25
  125. package/lib/server/webkit/wkWorkers.js +2 -1
  126. package/lib/serverRegistry.js +156 -0
  127. package/lib/tools/backend/browserBackend.js +79 -0
  128. package/lib/tools/backend/common.js +63 -0
  129. package/lib/tools/backend/config.js +41 -0
  130. package/lib/tools/backend/console.js +66 -0
  131. package/lib/tools/backend/context.js +296 -0
  132. package/lib/tools/backend/cookies.js +152 -0
  133. package/lib/tools/backend/devtools.js +69 -0
  134. package/lib/tools/backend/dialogs.js +59 -0
  135. package/lib/tools/backend/evaluate.js +64 -0
  136. package/lib/tools/backend/files.js +60 -0
  137. package/lib/tools/backend/form.js +64 -0
  138. package/lib/tools/backend/keyboard.js +155 -0
  139. package/lib/tools/backend/logFile.js +95 -0
  140. package/lib/tools/backend/mouse.js +168 -0
  141. package/lib/tools/backend/navigate.js +106 -0
  142. package/lib/tools/backend/network.js +135 -0
  143. package/lib/tools/backend/pdf.js +48 -0
  144. package/lib/tools/backend/response.js +305 -0
  145. package/lib/tools/backend/route.js +140 -0
  146. package/lib/tools/backend/runCode.js +77 -0
  147. package/lib/tools/backend/screenshot.js +88 -0
  148. package/lib/tools/backend/sessionLog.js +74 -0
  149. package/lib/tools/backend/snapshot.js +208 -0
  150. package/lib/tools/backend/storage.js +68 -0
  151. package/lib/tools/backend/tab.js +445 -0
  152. package/lib/tools/backend/tabs.js +67 -0
  153. package/lib/tools/backend/tool.js +47 -0
  154. package/lib/tools/backend/tools.js +102 -0
  155. package/lib/tools/backend/tracing.js +78 -0
  156. package/lib/tools/backend/utils.js +83 -0
  157. package/lib/tools/backend/verify.js +151 -0
  158. package/lib/tools/backend/video.js +98 -0
  159. package/lib/tools/backend/wait.js +63 -0
  160. package/lib/tools/backend/webstorage.js +223 -0
  161. package/lib/tools/cli-client/cli.js +6 -0
  162. package/lib/tools/cli-client/help.json +399 -0
  163. package/lib/tools/cli-client/minimist.js +128 -0
  164. package/lib/tools/cli-client/program.js +350 -0
  165. package/lib/tools/cli-client/registry.js +176 -0
  166. package/lib/tools/cli-client/session.js +289 -0
  167. package/lib/tools/cli-client/skill/SKILL.md +328 -0
  168. package/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
  169. package/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
  170. package/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
  171. package/lib/tools/cli-client/skill/references/running-code.md +231 -0
  172. package/lib/tools/cli-client/skill/references/session-management.md +169 -0
  173. package/lib/tools/cli-client/skill/references/storage-state.md +275 -0
  174. package/lib/tools/cli-client/skill/references/test-generation.md +88 -0
  175. package/lib/tools/cli-client/skill/references/tracing.md +139 -0
  176. package/lib/tools/cli-client/skill/references/video-recording.md +143 -0
  177. package/lib/tools/cli-daemon/command.js +73 -0
  178. package/lib/tools/cli-daemon/commands.js +956 -0
  179. package/lib/tools/cli-daemon/daemon.js +157 -0
  180. package/lib/tools/cli-daemon/helpGenerator.js +177 -0
  181. package/lib/tools/cli-daemon/program.js +129 -0
  182. package/lib/tools/dashboard/appIcon.png +0 -0
  183. package/lib/tools/dashboard/dashboardApp.js +284 -0
  184. package/lib/tools/dashboard/dashboardController.js +296 -0
  185. package/lib/tools/exports.js +60 -0
  186. package/lib/tools/mcp/browserFactory.js +233 -0
  187. package/lib/tools/mcp/cdpRelay.js +352 -0
  188. package/lib/tools/mcp/cli-stub.js +7 -0
  189. package/lib/tools/mcp/config.d.js +16 -0
  190. package/lib/tools/mcp/config.js +446 -0
  191. package/lib/tools/mcp/configIni.js +189 -0
  192. package/lib/tools/mcp/extensionContextFactory.js +55 -0
  193. package/lib/tools/mcp/index.js +62 -0
  194. package/lib/tools/mcp/log.js +35 -0
  195. package/lib/tools/mcp/program.js +107 -0
  196. package/lib/tools/mcp/protocol.js +28 -0
  197. package/lib/tools/mcp/watchdog.js +44 -0
  198. package/lib/tools/trace/SKILL.md +171 -0
  199. package/lib/{server/trace/viewer/traceParser.js → tools/trace/installSkill.js} +15 -39
  200. package/lib/tools/trace/traceActions.js +142 -0
  201. package/lib/tools/trace/traceAttachments.js +69 -0
  202. package/lib/tools/trace/traceCli.js +87 -0
  203. package/lib/tools/trace/traceConsole.js +97 -0
  204. package/lib/tools/trace/traceErrors.js +55 -0
  205. package/lib/tools/trace/traceOpen.js +69 -0
  206. package/lib/tools/trace/traceParser.js +96 -0
  207. package/lib/tools/trace/traceRequests.js +182 -0
  208. package/lib/tools/trace/traceScreenshot.js +68 -0
  209. package/lib/tools/trace/traceSnapshot.js +149 -0
  210. package/lib/tools/trace/traceUtils.js +153 -0
  211. package/lib/tools/utils/connect.js +32 -0
  212. package/lib/tools/utils/mcp/http.js +152 -0
  213. package/lib/tools/utils/mcp/server.js +230 -0
  214. package/lib/tools/utils/mcp/tool.js +47 -0
  215. package/lib/tools/utils/socketConnection.js +108 -0
  216. package/lib/utils/isomorphic/formatUtils.js +64 -0
  217. package/lib/utils/isomorphic/jsonSchema.js +89 -0
  218. package/lib/utils/isomorphic/mimeType.js +7 -2
  219. package/lib/utils/isomorphic/protocolFormatter.js +2 -2
  220. package/lib/utils/isomorphic/protocolMetainfo.js +127 -106
  221. package/lib/utils/isomorphic/stringUtils.js +3 -3
  222. package/lib/utils/isomorphic/timeoutRunner.js +3 -3
  223. package/lib/utils/isomorphic/trace/snapshotRenderer.js +35 -42
  224. package/lib/utils/isomorphic/trace/traceLoader.js +15 -14
  225. package/lib/utils/isomorphic/trace/traceModel.js +3 -2
  226. package/lib/utils/isomorphic/trace/traceModernizer.js +1 -0
  227. package/lib/utils/isomorphic/urlMatch.js +54 -1
  228. package/lib/utils/isomorphic/utilityScriptSerializers.js +11 -0
  229. package/lib/utils.js +6 -2
  230. package/lib/utilsBundle.js +3 -21
  231. package/lib/utilsBundleImpl/index.js +132 -133
  232. package/lib/vite/dashboard/assets/index-BAOybkp8.js +50 -0
  233. package/lib/vite/dashboard/assets/index-CZAYOG76.css +1 -0
  234. package/lib/vite/dashboard/index.html +28 -0
  235. package/lib/vite/htmlReport/index.html +2 -70
  236. package/lib/vite/htmlReport/report.css +1 -0
  237. package/lib/vite/htmlReport/report.js +72 -0
  238. package/lib/vite/recorder/assets/{codeMirrorModule-DadYNm1I.js → codeMirrorModule-C8KMvO9L.js} +20 -20
  239. package/lib/vite/recorder/assets/index-CqAYX1I3.js +193 -0
  240. package/lib/vite/recorder/index.html +1 -1
  241. package/lib/vite/traceViewer/assets/{codeMirrorModule-a5XoALAZ.js → codeMirrorModule-DS0FLvoc.js} +20 -20
  242. package/lib/vite/traceViewer/assets/defaultSettingsView-GTWI-W_B.js +262 -0
  243. package/lib/vite/traceViewer/defaultSettingsView.B4dS75f0.css +1 -0
  244. package/lib/vite/traceViewer/{index.BVu7tZDe.css → index.CzXZzn5A.css} +1 -1
  245. package/lib/vite/traceViewer/{index.BDwrLSGN.js → index.Dtstcb7U.js} +1 -1
  246. package/lib/vite/traceViewer/index.html +4 -4
  247. package/lib/vite/traceViewer/sw.bundle.js +4 -4
  248. package/lib/vite/traceViewer/uiMode.Vipi55dB.js +6 -0
  249. package/lib/vite/traceViewer/uiMode.html +3 -3
  250. package/lib/zipBundleImpl.js +2 -2
  251. package/lib/zodBundle.js +39 -0
  252. package/lib/zodBundleImpl.js +40 -0
  253. package/package.json +6 -1
  254. package/types/protocol.d.ts +947 -51
  255. package/types/types.d.ts +854 -74
  256. package/lib/client/pageAgent.js +0 -64
  257. package/lib/mcpBundleImpl/index.js +0 -147
  258. package/lib/server/agent/actionRunner.js +0 -335
  259. package/lib/server/agent/actions.js +0 -128
  260. package/lib/server/agent/codegen.js +0 -111
  261. package/lib/server/agent/context.js +0 -150
  262. package/lib/server/agent/expectTools.js +0 -156
  263. package/lib/server/agent/pageAgent.js +0 -204
  264. package/lib/server/agent/performTools.js +0 -262
  265. package/lib/server/agent/tool.js +0 -109
  266. package/lib/server/dispatchers/pageAgentDispatcher.js +0 -96
  267. package/lib/vite/recorder/assets/index-BhTWtUlo.js +0 -193
  268. package/lib/vite/traceViewer/assets/defaultSettingsView-CJSZINFr.js +0 -266
  269. package/lib/vite/traceViewer/defaultSettingsView.7ch9cixO.css +0 -1
  270. package/lib/vite/traceViewer/uiMode.CQJ9SCIQ.js +0 -5
  271. /package/lib/{server/utils → utils/isomorphic}/imageUtils.js +0 -0
  272. /package/lib/utils/isomorphic/{traceUtils.js → trace/traceUtils.js} +0 -0
@@ -4,15 +4,14 @@ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
4
4
 
5
5
  This project incorporates components from the projects listed below. The original copyright notices and the licenses under which Microsoft received such components are set forth below. Microsoft reserves all rights not expressly granted herein, whether by implication, estoppel or otherwise.
6
6
 
7
- - @hono/node-server@1.19.8 (https://github.com/honojs/node-server)
8
- - @lowire/loop@0.0.25 (https://github.com/pavelfeldman/lowire)
9
- - @modelcontextprotocol/sdk@1.25.2 (https://github.com/modelcontextprotocol/typescript-sdk)
7
+ - @hono/node-server@1.19.11 (https://github.com/honojs/node-server)
8
+ - @modelcontextprotocol/sdk@1.28.0 (https://github.com/modelcontextprotocol/typescript-sdk)
10
9
  - accepts@2.0.0 (https://github.com/jshttp/accepts)
11
10
  - agent-base@7.1.4 (https://github.com/TooTallNate/proxy-agents)
12
11
  - ajv-formats@3.0.1 (https://github.com/ajv-validator/ajv-formats)
13
- - ajv@8.17.1 (https://github.com/ajv-validator/ajv)
12
+ - ajv@8.18.0 (https://github.com/ajv-validator/ajv)
14
13
  - balanced-match@1.0.2 (https://github.com/juliangruber/balanced-match)
15
- - body-parser@2.2.1 (https://github.com/expressjs/body-parser)
14
+ - body-parser@2.2.2 (https://github.com/expressjs/body-parser)
16
15
  - brace-expansion@1.1.12 (https://github.com/juliangruber/brace-expansion)
17
16
  - buffer-crc32@0.2.13 (https://github.com/brianloveswords/buffer-crc32)
18
17
  - bytes@3.1.2 (https://github.com/visionmedia/bytes.js)
@@ -22,7 +21,7 @@ This project incorporates components from the projects listed below. The origina
22
21
  - colors@1.4.0 (https://github.com/Marak/colors.js)
23
22
  - commander@13.1.0 (https://github.com/tj/commander.js)
24
23
  - concat-map@0.0.1 (https://github.com/substack/node-concat-map)
25
- - content-disposition@1.0.0 (https://github.com/jshttp/content-disposition)
24
+ - content-disposition@1.0.1 (https://github.com/jshttp/content-disposition)
26
25
  - content-type@1.0.5 (https://github.com/jshttp/content-type)
27
26
  - cookie-signature@1.2.2 (https://github.com/visionmedia/node-cookie-signature)
28
27
  - cookie@0.7.2 (https://github.com/jshttp/cookie)
@@ -33,7 +32,7 @@ This project incorporates components from the projects listed below. The origina
33
32
  - debug@4.4.3 (https://github.com/debug-js/debug)
34
33
  - define-lazy-prop@2.0.0 (https://github.com/sindresorhus/define-lazy-prop)
35
34
  - depd@2.0.0 (https://github.com/dougwilson/nodejs-depd)
36
- - diff@7.0.0 (https://github.com/kpdecker/jsdiff)
35
+ - diff@8.0.4 (https://github.com/kpdecker/jsdiff)
37
36
  - dotenv@16.4.5 (https://github.com/motdotla/dotenv)
38
37
  - dunder-proto@1.0.1 (https://github.com/es-shims/dunder-proto)
39
38
  - ee-first@1.1.1 (https://github.com/jonathanong/ee-first)
@@ -46,11 +45,11 @@ This project incorporates components from the projects listed below. The origina
46
45
  - etag@1.8.1 (https://github.com/jshttp/etag)
47
46
  - eventsource-parser@3.0.3 (https://github.com/rexxars/eventsource-parser)
48
47
  - eventsource@3.0.7 (git://git@github.com/EventSource/eventsource)
49
- - express-rate-limit@7.5.1 (https://github.com/express-rate-limit/express-rate-limit)
50
- - express@5.1.0 (https://github.com/expressjs/express)
48
+ - express-rate-limit@8.3.1 (https://github.com/express-rate-limit/express-rate-limit)
49
+ - express@5.2.1 (https://github.com/expressjs/express)
51
50
  - fast-deep-equal@3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
52
51
  - fast-uri@3.1.0 (https://github.com/fastify/fast-uri)
53
- - finalhandler@2.1.0 (https://github.com/pillarjs/finalhandler)
52
+ - finalhandler@2.1.1 (https://github.com/pillarjs/finalhandler)
54
53
  - forwarded@0.2.0 (https://github.com/jshttp/forwarded)
55
54
  - fresh@2.0.0 (https://github.com/jshttp/fresh)
56
55
  - function-bind@1.1.2 (https://github.com/Raynos/function-bind)
@@ -61,11 +60,13 @@ This project incorporates components from the projects listed below. The origina
61
60
  - graceful-fs@4.2.10 (https://github.com/isaacs/node-graceful-fs)
62
61
  - has-symbols@1.1.0 (https://github.com/inspect-js/has-symbols)
63
62
  - hasown@2.0.2 (https://github.com/inspect-js/hasOwn)
64
- - hono@4.11.3 (https://github.com/honojs/hono)
63
+ - hono@4.12.7 (https://github.com/honojs/hono)
65
64
  - http-errors@2.0.1 (https://github.com/jshttp/http-errors)
66
65
  - https-proxy-agent@7.0.6 (https://github.com/TooTallNate/proxy-agents)
67
- - iconv-lite@0.7.0 (https://github.com/pillarjs/iconv-lite)
66
+ - iconv-lite@0.7.2 (https://github.com/pillarjs/iconv-lite)
68
67
  - inherits@2.0.4 (https://github.com/isaacs/inherits)
68
+ - ini@6.0.0 (https://github.com/npm/ini)
69
+ - ip-address@10.1.0 (https://github.com/beaugunderson/ip-address)
69
70
  - ip-address@9.0.5 (https://github.com/beaugunderson/ip-address)
70
71
  - ipaddr.js@1.9.1 (https://github.com/whitequark/ipaddr.js)
71
72
  - is-docker@2.2.1 (https://github.com/sindresorhus/is-docker)
@@ -81,9 +82,9 @@ This project incorporates components from the projects listed below. The origina
81
82
  - media-typer@1.1.0 (https://github.com/jshttp/media-typer)
82
83
  - merge-descriptors@2.0.0 (https://github.com/sindresorhus/merge-descriptors)
83
84
  - mime-db@1.54.0 (https://github.com/jshttp/mime-db)
84
- - mime-types@3.0.1 (https://github.com/jshttp/mime-types)
85
+ - mime-types@3.0.2 (https://github.com/jshttp/mime-types)
85
86
  - mime@3.0.0 (https://github.com/broofa/mime)
86
- - minimatch@3.1.2 (https://github.com/isaacs/minimatch)
87
+ - minimatch@3.1.4 (https://github.com/isaacs/minimatch)
87
88
  - ms@2.1.2 (https://github.com/zeit/ms)
88
89
  - ms@2.1.3 (https://github.com/vercel/ms)
89
90
  - negotiator@1.0.0 (https://github.com/jshttp/negotiator)
@@ -94,24 +95,23 @@ This project incorporates components from the projects listed below. The origina
94
95
  - open@8.4.0 (https://github.com/sindresorhus/open)
95
96
  - parseurl@1.3.3 (https://github.com/pillarjs/parseurl)
96
97
  - path-key@3.1.1 (https://github.com/sindresorhus/path-key)
97
- - path-to-regexp@8.2.0 (https://github.com/pillarjs/path-to-regexp)
98
+ - path-to-regexp@8.3.0 (https://github.com/pillarjs/path-to-regexp)
98
99
  - pend@1.2.0 (https://github.com/andrewrk/node-pend)
99
100
  - pkce-challenge@5.0.0 (https://github.com/crouchcd/pkce-challenge)
100
101
  - pngjs@6.0.0 (https://github.com/lukeapage/pngjs)
101
102
  - progress@2.0.3 (https://github.com/visionmedia/node-progress)
102
103
  - proxy-addr@2.0.7 (https://github.com/jshttp/proxy-addr)
103
- - proxy-from-env@1.1.0 (https://github.com/Rob--W/proxy-from-env)
104
+ - proxy-from-env@2.0.0 (https://github.com/Rob--W/proxy-from-env)
104
105
  - pump@3.0.2 (https://github.com/mafintosh/pump)
105
- - qs@6.14.1 (https://github.com/ljharb/qs)
106
+ - qs@6.15.0 (https://github.com/ljharb/qs)
106
107
  - range-parser@1.2.1 (https://github.com/jshttp/range-parser)
107
108
  - raw-body@3.0.2 (https://github.com/stream-utils/raw-body)
108
109
  - require-from-string@2.0.2 (https://github.com/floatdrop/require-from-string)
109
110
  - retry@0.12.0 (https://github.com/tim-kos/node-retry)
110
111
  - router@2.2.0 (https://github.com/pillarjs/router)
111
- - safe-buffer@5.2.1 (https://github.com/feross/safe-buffer)
112
112
  - safer-buffer@2.1.2 (https://github.com/ChALkeR/safer-buffer)
113
- - send@1.2.0 (https://github.com/pillarjs/send)
114
- - serve-static@2.2.0 (https://github.com/expressjs/serve-static)
113
+ - send@1.2.1 (https://github.com/pillarjs/send)
114
+ - serve-static@2.2.1 (https://github.com/expressjs/serve-static)
115
115
  - setprototypeof@1.2.0 (https://github.com/wesleytodd/setprototypeof)
116
116
  - shebang-command@2.0.0 (https://github.com/kevva/shebang-command)
117
117
  - shebang-regex@3.0.0 (https://github.com/sindresorhus/shebang-regex)
@@ -132,581 +132,39 @@ This project incorporates components from the projects listed below. The origina
132
132
  - which@2.0.2 (https://github.com/isaacs/node-which)
133
133
  - wrappy@1.0.2 (https://github.com/npm/wrappy)
134
134
  - ws@8.17.1 (https://github.com/websockets/ws)
135
- - yaml@2.6.0 (https://github.com/eemeli/yaml)
136
- - yauzl@3.2.0 (https://github.com/thejoshwolfe/yauzl)
135
+ - yaml@2.8.3 (https://github.com/eemeli/yaml)
136
+ - yauzl@3.2.1 (https://github.com/thejoshwolfe/yauzl)
137
137
  - yazl@2.5.1 (https://github.com/thejoshwolfe/yazl)
138
138
  - zod-to-json-schema@3.25.1 (https://github.com/StefanTerdell/zod-to-json-schema)
139
- - zod@4.3.5 (https://github.com/colinhacks/zod)
139
+ - zod@4.3.6 (https://github.com/colinhacks/zod)
140
140
 
141
- %% @hono/node-server@1.19.8 NOTICES AND INFORMATION BEGIN HERE
141
+ %% @hono/node-server@1.19.11 NOTICES AND INFORMATION BEGIN HERE
142
142
  =========================================
143
- # Node.js Adapter for Hono
144
-
145
- This adapter `@hono/node-server` allows you to run your Hono application on Node.js.
146
- Initially, Hono wasn't designed for Node.js, but with this adapter, you can now use Hono on Node.js.
147
- It utilizes web standard APIs implemented in Node.js version 18 or higher.
148
-
149
- ## Benchmarks
150
-
151
- Hono is 3.5 times faster than Express.
152
-
153
- Express:
154
-
155
- ```txt
156
- $ bombardier -d 10s --fasthttp http://localhost:3000/
157
-
158
- Statistics Avg Stdev Max
159
- Reqs/sec 16438.94 1603.39 19155.47
160
- Latency 7.60ms 7.51ms 559.89ms
161
- HTTP codes:
162
- 1xx - 0, 2xx - 164494, 3xx - 0, 4xx - 0, 5xx - 0
163
- others - 0
164
- Throughput: 4.55MB/s
165
- ```
166
-
167
- Hono + `@hono/node-server`:
168
-
169
- ```txt
170
- $ bombardier -d 10s --fasthttp http://localhost:3000/
171
-
172
- Statistics Avg Stdev Max
173
- Reqs/sec 58296.56 5512.74 74403.56
174
- Latency 2.14ms 1.46ms 190.92ms
175
- HTTP codes:
176
- 1xx - 0, 2xx - 583059, 3xx - 0, 4xx - 0, 5xx - 0
177
- others - 0
178
- Throughput: 12.56MB/s
179
- ```
180
-
181
- ## Requirements
182
-
183
- It works on Node.js versions greater than 18.x. The specific required Node.js versions are as follows:
184
-
185
- - 18.x => 18.14.1+
186
- - 19.x => 19.7.0+
187
- - 20.x => 20.0.0+
188
-
189
- Essentially, you can simply use the latest version of each major release.
190
-
191
- ## Installation
192
-
193
- You can install it from the npm registry with `npm` command:
194
-
195
- ```sh
196
- npm install @hono/node-server
197
- ```
198
-
199
- Or use `yarn`:
200
-
201
- ```sh
202
- yarn add @hono/node-server
203
- ```
204
-
205
- ## Usage
206
-
207
- Just import `@hono/node-server` at the top and write the code as usual.
208
- The same code that runs on Cloudflare Workers, Deno, and Bun will work.
209
-
210
- ```ts
211
- import { serve } from '@hono/node-server'
212
- import { Hono } from 'hono'
213
-
214
- const app = new Hono()
215
- app.get('/', (c) => c.text('Hono meets Node.js'))
216
-
217
- serve(app, (info) => {
218
- console.log(`Listening on http://localhost:${info.port}`) // Listening on http://localhost:3000
219
- })
220
- ```
221
-
222
- For example, run it using `ts-node`. Then an HTTP server will be launched. The default port is `3000`.
223
-
224
- ```sh
225
- ts-node ./index.ts
226
- ```
227
-
228
- Open `http://localhost:3000` with your browser.
229
-
230
- ## Options
231
-
232
- ### `port`
233
-
234
- ```ts
235
- serve({
236
- fetch: app.fetch,
237
- port: 8787, // Port number, default is 3000
238
- })
239
- ```
240
-
241
- ### `createServer`
242
-
243
- ```ts
244
- import { createServer } from 'node:https'
245
- import fs from 'node:fs'
246
-
247
- //...
248
-
249
- serve({
250
- fetch: app.fetch,
251
- createServer: createServer,
252
- serverOptions: {
253
- key: fs.readFileSync('test/fixtures/keys/agent1-key.pem'),
254
- cert: fs.readFileSync('test/fixtures/keys/agent1-cert.pem'),
255
- },
256
- })
257
- ```
258
-
259
- ### `overrideGlobalObjects`
260
-
261
- 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`.
262
-
263
- ```ts
264
- serve({
265
- fetch: app.fetch,
266
- overrideGlobalObjects: false,
267
- })
268
- ```
269
-
270
- ### `autoCleanupIncoming`
271
-
272
- 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`.
273
-
274
- 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`.
275
-
276
- ```ts
277
- serve({
278
- fetch: app.fetch,
279
- autoCleanupIncoming: false,
280
- })
281
- ```
282
-
283
- ## Middleware
284
-
285
- Most built-in middleware also works with Node.js.
286
- Read [the documentation](https://hono.dev/middleware/builtin/basic-auth) and use the Middleware of your liking.
287
-
288
- ```ts
289
- import { serve } from '@hono/node-server'
290
- import { Hono } from 'hono'
291
- import { prettyJSON } from 'hono/pretty-json'
292
-
293
- const app = new Hono()
294
-
295
- app.get('*', prettyJSON())
296
- app.get('/', (c) => c.json({ 'Hono meets': 'Node.js' }))
297
-
298
- serve(app)
299
- ```
300
-
301
- ## Serve Static Middleware
302
-
303
- Use Serve Static Middleware that has been created for Node.js.
304
-
305
- ```ts
306
- import { serveStatic } from '@hono/node-server/serve-static'
307
-
308
- //...
309
-
310
- app.use('/static/*', serveStatic({ root: './' }))
311
- ```
312
-
313
- If using a relative path, `root` will be relative to the current working directory from which the app was started.
314
-
315
- This can cause confusion when running your application locally.
316
-
317
- Imagine your project structure is:
318
-
319
- ```
320
- my-hono-project/
321
- src/
322
- index.ts
323
- static/
324
- index.html
325
- ```
326
-
327
- Typically, you would run your app from the project's root directory (`my-hono-project`),
328
- so you would need the following code to serve the `static` folder:
329
-
330
- ```ts
331
- app.use('/static/*', serveStatic({ root: './static' }))
332
- ```
333
-
334
- Notice that `root` here is not relative to `src/index.ts`, rather to `my-hono-project`.
335
-
336
- ### Options
337
-
338
- #### `rewriteRequestPath`
339
-
340
- If you want to serve files in `./.foojs` with the request path `/__foo/*`, you can write like the following.
341
-
342
- ```ts
343
- app.use(
344
- '/__foo/*',
345
- serveStatic({
346
- root: './.foojs/',
347
- rewriteRequestPath: (path: string) => path.replace(/^\/__foo/, ''),
348
- })
349
- )
350
- ```
351
-
352
- #### `onFound`
353
-
354
- You can specify handling when the requested file is found with `onFound`.
355
-
356
- ```ts
357
- app.use(
358
- '/static/*',
359
- serveStatic({
360
- // ...
361
- onFound: (_path, c) => {
362
- c.header('Cache-Control', `public, immutable, max-age=31536000`)
363
- },
364
- })
365
- )
366
- ```
367
-
368
- #### `onNotFound`
369
-
370
- The `onNotFound` is useful for debugging. You can write a handle for when a file is not found.
371
-
372
- ```ts
373
- app.use(
374
- '/static/*',
375
- serveStatic({
376
- root: './non-existent-dir',
377
- onNotFound: (path, c) => {
378
- console.log(`${path} is not found, request to ${c.req.path}`)
379
- },
380
- })
381
- )
382
- ```
383
-
384
- #### `precompressed`
385
-
386
- 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.
387
-
388
- ```ts
389
- app.use(
390
- '/static/*',
391
- serveStatic({
392
- precompressed: true,
393
- })
394
- )
395
- ```
396
-
397
- ## ConnInfo Helper
398
-
399
- You can use the [ConnInfo Helper](https://hono.dev/docs/helpers/conninfo) by importing `getConnInfo` from `@hono/node-server/conninfo`.
400
-
401
- ```ts
402
- import { getConnInfo } from '@hono/node-server/conninfo'
403
-
404
- app.get('/', (c) => {
405
- const info = getConnInfo(c) // info is `ConnInfo`
406
- return c.text(`Your remote address is ${info.remote.address}`)
407
- })
408
- ```
409
-
410
- ## Accessing Node.js API
411
-
412
- 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.
413
-
414
- ```ts
415
- import { serve } from '@hono/node-server'
416
- import type { HttpBindings } from '@hono/node-server'
417
- import { Hono } from 'hono'
418
-
419
- const app = new Hono<{ Bindings: HttpBindings }>()
420
-
421
- app.get('/', (c) => {
422
- return c.json({
423
- remoteAddress: c.env.incoming.socket.remoteAddress,
424
- })
425
- })
426
-
427
- serve(app)
428
- ```
429
-
430
- The APIs that you can get from `c.env` are as follows.
431
-
432
- ```ts
433
- type HttpBindings = {
434
- incoming: IncomingMessage
435
- outgoing: ServerResponse
436
- }
437
-
438
- type Http2Bindings = {
439
- incoming: Http2ServerRequest
440
- outgoing: Http2ServerResponse
441
- }
442
- ```
443
-
444
- ## Direct response from Node.js API
445
-
446
- You can directly respond to the client from the Node.js API.
447
- In that case, the response from Hono should be ignored, so return `RESPONSE_ALREADY_SENT`.
448
-
449
- > [!NOTE]
450
- > This feature can be used when migrating existing Node.js applications to Hono, but we recommend using Hono's API for new applications.
451
-
452
- ```ts
453
- import { serve } from '@hono/node-server'
454
- import type { HttpBindings } from '@hono/node-server'
455
- import { RESPONSE_ALREADY_SENT } from '@hono/node-server/utils/response'
456
- import { Hono } from 'hono'
457
-
458
- const app = new Hono<{ Bindings: HttpBindings }>()
459
-
460
- app.get('/', (c) => {
461
- const { outgoing } = c.env
462
- outgoing.writeHead(200, { 'Content-Type': 'text/plain' })
463
- outgoing.end('Hello World\n')
464
-
465
- return RESPONSE_ALREADY_SENT
466
- })
467
-
468
- serve(app)
469
- ```
470
-
471
- ## Listen to a UNIX domain socket
472
-
473
- You can configure the HTTP server to listen to a UNIX domain socket instead of a TCP port.
474
-
475
- ```ts
476
- import { createAdaptorServer } from '@hono/node-server'
477
-
478
- // ...
479
-
480
- const socketPath ='/tmp/example.sock'
481
-
482
- const server = createAdaptorServer(app)
483
- server.listen(socketPath, () => {
484
- console.log(`Listening on ${socketPath}`)
485
- })
486
- ```
487
-
488
- ## Related projects
489
-
490
- - Hono - <https://hono.dev>
491
- - Hono GitHub repository - <https://github.com/honojs/hono>
492
-
493
- ## Author
143
+ MIT License
494
144
 
495
- Yusuke Wada <https://github.com/yusukebe>
145
+ Copyright (c) 2022 - present, Yusuke Wada and Hono contributors
496
146
 
497
- ## License
147
+ Permission is hereby granted, free of charge, to any person obtaining a copy
148
+ of this software and associated documentation files (the "Software"), to deal
149
+ in the Software without restriction, including without limitation the rights
150
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
151
+ copies of the Software, and to permit persons to whom the Software is
152
+ furnished to do so, subject to the following conditions:
498
153
 
499
- MIT
500
- =========================================
501
- END OF @hono/node-server@1.19.8 AND INFORMATION
154
+ The above copyright notice and this permission notice shall be included in all
155
+ copies or substantial portions of the Software.
502
156
 
503
- %% @lowire/loop@0.0.25 NOTICES AND INFORMATION BEGIN HERE
157
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
158
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
159
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
160
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
161
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
162
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
163
+ SOFTWARE.
504
164
  =========================================
505
- Apache License
506
- Version 2.0, January 2004
507
- http://www.apache.org/licenses/
508
-
509
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
165
+ END OF @hono/node-server@1.19.11 AND INFORMATION
510
166
 
511
- 1. Definitions.
512
-
513
- "License" shall mean the terms and conditions for use, reproduction,
514
- and distribution as defined by Sections 1 through 9 of this document.
515
-
516
- "Licensor" shall mean the copyright owner or entity authorized by
517
- the copyright owner that is granting the License.
518
-
519
- "Legal Entity" shall mean the union of the acting entity and all
520
- other entities that control, are controlled by, or are under common
521
- control with that entity. For the purposes of this definition,
522
- "control" means (i) the power, direct or indirect, to cause the
523
- direction or management of such entity, whether by contract or
524
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
525
- outstanding shares, or (iii) beneficial ownership of such entity.
526
-
527
- "You" (or "Your") shall mean an individual or Legal Entity
528
- exercising permissions granted by this License.
529
-
530
- "Source" form shall mean the preferred form for making modifications,
531
- including but not limited to software source code, documentation
532
- source, and configuration files.
533
-
534
- "Object" form shall mean any form resulting from mechanical
535
- transformation or translation of a Source form, including but
536
- not limited to compiled object code, generated documentation,
537
- and conversions to other media types.
538
-
539
- "Work" shall mean the work of authorship, whether in Source or
540
- Object form, made available under the License, as indicated by a
541
- copyright notice that is included in or attached to the work
542
- (an example is provided in the Appendix below).
543
-
544
- "Derivative Works" shall mean any work, whether in Source or Object
545
- form, that is based on (or derived from) the Work and for which the
546
- editorial revisions, annotations, elaborations, or other modifications
547
- represent, as a whole, an original work of authorship. For the purposes
548
- of this License, Derivative Works shall not include works that remain
549
- separable from, or merely link (or bind by name) to the interfaces of,
550
- the Work and Derivative Works thereof.
551
-
552
- "Contribution" shall mean any work of authorship, including
553
- the original version of the Work and any modifications or additions
554
- to that Work or Derivative Works thereof, that is intentionally
555
- submitted to Licensor for inclusion in the Work by the copyright owner
556
- or by an individual or Legal Entity authorized to submit on behalf of
557
- the copyright owner. For the purposes of this definition, "submitted"
558
- means any form of electronic, verbal, or written communication sent
559
- to the Licensor or its representatives, including but not limited to
560
- communication on electronic mailing lists, source code control systems,
561
- and issue tracking systems that are managed by, or on behalf of, the
562
- Licensor for the purpose of discussing and improving the Work, but
563
- excluding communication that is conspicuously marked or otherwise
564
- designated in writing by the copyright owner as "Not a Contribution."
565
-
566
- "Contributor" shall mean Licensor and any individual or Legal Entity
567
- on behalf of whom a Contribution has been received by Licensor and
568
- subsequently incorporated within the Work.
569
-
570
- 2. Grant of Copyright License. Subject to the terms and conditions of
571
- this License, each Contributor hereby grants to You a perpetual,
572
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
573
- copyright license to reproduce, prepare Derivative Works of,
574
- publicly display, publicly perform, sublicense, and distribute the
575
- Work and such Derivative Works in Source or Object form.
576
-
577
- 3. Grant of Patent License. Subject to the terms and conditions of
578
- this License, each Contributor hereby grants to You a perpetual,
579
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
580
- (except as stated in this section) patent license to make, have made,
581
- use, offer to sell, sell, import, and otherwise transfer the Work,
582
- where such license applies only to those patent claims licensable
583
- by such Contributor that are necessarily infringed by their
584
- Contribution(s) alone or by combination of their Contribution(s)
585
- with the Work to which such Contribution(s) was submitted. If You
586
- institute patent litigation against any entity (including a
587
- cross-claim or counterclaim in a lawsuit) alleging that the Work
588
- or a Contribution incorporated within the Work constitutes direct
589
- or contributory patent infringement, then any patent licenses
590
- granted to You under this License for that Work shall terminate
591
- as of the date such litigation is filed.
592
-
593
- 4. Redistribution. You may reproduce and distribute copies of the
594
- Work or Derivative Works thereof in any medium, with or without
595
- modifications, and in Source or Object form, provided that You
596
- meet the following conditions:
597
-
598
- (a) You must give any other recipients of the Work or
599
- Derivative Works a copy of this License; and
600
-
601
- (b) You must cause any modified files to carry prominent notices
602
- stating that You changed the files; and
603
-
604
- (c) You must retain, in the Source form of any Derivative Works
605
- that You distribute, all copyright, patent, trademark, and
606
- attribution notices from the Source form of the Work,
607
- excluding those notices that do not pertain to any part of
608
- the Derivative Works; and
609
-
610
- (d) If the Work includes a "NOTICE" text file as part of its
611
- distribution, then any Derivative Works that You distribute must
612
- include a readable copy of the attribution notices contained
613
- within such NOTICE file, excluding those notices that do not
614
- pertain to any part of the Derivative Works, in at least one
615
- of the following places: within a NOTICE text file distributed
616
- as part of the Derivative Works; within the Source form or
617
- documentation, if provided along with the Derivative Works; or,
618
- within a display generated by the Derivative Works, if and
619
- wherever such third-party notices normally appear. The contents
620
- of the NOTICE file are for informational purposes only and
621
- do not modify the License. You may add Your own attribution
622
- notices within Derivative Works that You distribute, alongside
623
- or as an addendum to the NOTICE text from the Work, provided
624
- that such additional attribution notices cannot be construed
625
- as modifying the License.
626
-
627
- You may add Your own copyright statement to Your modifications and
628
- may provide additional or different license terms and conditions
629
- for use, reproduction, or distribution of Your modifications, or
630
- for any such Derivative Works as a whole, provided Your use,
631
- reproduction, and distribution of the Work otherwise complies with
632
- the conditions stated in this License.
633
-
634
- 5. Submission of Contributions. Unless You explicitly state otherwise,
635
- any Contribution intentionally submitted for inclusion in the Work
636
- by You to the Licensor shall be under the terms and conditions of
637
- this License, without any additional terms or conditions.
638
- Notwithstanding the above, nothing herein shall supersede or modify
639
- the terms of any separate license agreement you may have executed
640
- with Licensor regarding such Contributions.
641
-
642
- 6. Trademarks. This License does not grant permission to use the trade
643
- names, trademarks, service marks, or product names of the Licensor,
644
- except as required for reasonable and customary use in describing the
645
- origin of the Work and reproducing the content of the NOTICE file.
646
-
647
- 7. Disclaimer of Warranty. Unless required by applicable law or
648
- agreed to in writing, Licensor provides the Work (and each
649
- Contributor provides its Contributions) on an "AS IS" BASIS,
650
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
651
- implied, including, without limitation, any warranties or conditions
652
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
653
- PARTICULAR PURPOSE. You are solely responsible for determining the
654
- appropriateness of using or redistributing the Work and assume any
655
- risks associated with Your exercise of permissions under this License.
656
-
657
- 8. Limitation of Liability. In no event and under no legal theory,
658
- whether in tort (including negligence), contract, or otherwise,
659
- unless required by applicable law (such as deliberate and grossly
660
- negligent acts) or agreed to in writing, shall any Contributor be
661
- liable to You for damages, including any direct, indirect, special,
662
- incidental, or consequential damages of any character arising as a
663
- result of this License or out of the use or inability to use the
664
- Work (including but not limited to damages for loss of goodwill,
665
- work stoppage, computer failure or malfunction, or any and all
666
- other commercial damages or losses), even if such Contributor
667
- has been advised of the possibility of such damages.
668
-
669
- 9. Accepting Warranty or Additional Liability. While redistributing
670
- the Work or Derivative Works thereof, You may choose to offer,
671
- and charge a fee for, acceptance of support, warranty, indemnity,
672
- or other liability obligations and/or rights consistent with this
673
- License. However, in accepting such obligations, You may act only
674
- on Your own behalf and on Your sole responsibility, not on behalf
675
- of any other Contributor, and only if You agree to indemnify,
676
- defend, and hold each Contributor harmless for any liability
677
- incurred by, or claims asserted against, such Contributor by reason
678
- of your accepting any such warranty or additional liability.
679
-
680
- END OF TERMS AND CONDITIONS
681
-
682
- APPENDIX: How to apply the Apache License to your work.
683
-
684
- To apply the Apache License to your work, attach the following
685
- boilerplate notice, with the fields enclosed by brackets "[]"
686
- replaced with your own identifying information. (Don't include
687
- the brackets!) The text should be enclosed in the appropriate
688
- comment syntax for the file format. We also recommend that a
689
- file or class name and description of purpose be included on the
690
- same "printed page" as the copyright notice for easier
691
- identification within third-party archives.
692
-
693
- Copyright (c) Microsoft Corporation.
694
-
695
- Licensed under the Apache License, Version 2.0 (the "License");
696
- you may not use this file except in compliance with the License.
697
- You may obtain a copy of the License at
698
-
699
- http://www.apache.org/licenses/LICENSE-2.0
700
-
701
- Unless required by applicable law or agreed to in writing, software
702
- distributed under the License is distributed on an "AS IS" BASIS,
703
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
704
- See the License for the specific language governing permissions and
705
- limitations under the License.
706
- =========================================
707
- END OF @lowire/loop@0.0.25 AND INFORMATION
708
-
709
- %% @modelcontextprotocol/sdk@1.25.2 NOTICES AND INFORMATION BEGIN HERE
167
+ %% @modelcontextprotocol/sdk@1.28.0 NOTICES AND INFORMATION BEGIN HERE
710
168
  =========================================
711
169
  MIT License
712
170
 
@@ -730,7 +188,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
730
188
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
731
189
  SOFTWARE.
732
190
  =========================================
733
- END OF @modelcontextprotocol/sdk@1.25.2 AND INFORMATION
191
+ END OF @modelcontextprotocol/sdk@1.28.0 AND INFORMATION
734
192
 
735
193
  %% accepts@2.0.0 NOTICES AND INFORMATION BEGIN HERE
736
194
  =========================================
@@ -813,7 +271,7 @@ SOFTWARE.
813
271
  =========================================
814
272
  END OF ajv-formats@3.0.1 AND INFORMATION
815
273
 
816
- %% ajv@8.17.1 NOTICES AND INFORMATION BEGIN HERE
274
+ %% ajv@8.18.0 NOTICES AND INFORMATION BEGIN HERE
817
275
  =========================================
818
276
  The MIT License (MIT)
819
277
 
@@ -837,7 +295,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
837
295
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
838
296
  SOFTWARE.
839
297
  =========================================
840
- END OF ajv@8.17.1 AND INFORMATION
298
+ END OF ajv@8.18.0 AND INFORMATION
841
299
 
842
300
  %% balanced-match@1.0.2 NOTICES AND INFORMATION BEGIN HERE
843
301
  =========================================
@@ -865,7 +323,7 @@ SOFTWARE.
865
323
  =========================================
866
324
  END OF balanced-match@1.0.2 AND INFORMATION
867
325
 
868
- %% body-parser@2.2.1 NOTICES AND INFORMATION BEGIN HERE
326
+ %% body-parser@2.2.2 NOTICES AND INFORMATION BEGIN HERE
869
327
  =========================================
870
328
  (The MIT License)
871
329
 
@@ -891,7 +349,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
891
349
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
892
350
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
893
351
  =========================================
894
- END OF body-parser@2.2.1 AND INFORMATION
352
+ END OF body-parser@2.2.2 AND INFORMATION
895
353
 
896
354
  %% brace-expansion@1.1.12 NOTICES AND INFORMATION BEGIN HERE
897
355
  =========================================
@@ -1129,7 +587,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1129
587
  =========================================
1130
588
  END OF concat-map@0.0.1 AND INFORMATION
1131
589
 
1132
- %% content-disposition@1.0.0 NOTICES AND INFORMATION BEGIN HERE
590
+ %% content-disposition@1.0.1 NOTICES AND INFORMATION BEGIN HERE
1133
591
  =========================================
1134
592
  (The MIT License)
1135
593
 
@@ -1154,7 +612,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1154
612
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1155
613
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1156
614
  =========================================
1157
- END OF content-disposition@1.0.0 AND INFORMATION
615
+ END OF content-disposition@1.0.1 AND INFORMATION
1158
616
 
1159
617
  %% content-type@1.0.5 NOTICES AND INFORMATION BEGIN HERE
1160
618
  =========================================
@@ -1404,7 +862,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1404
862
  =========================================
1405
863
  END OF depd@2.0.0 AND INFORMATION
1406
864
 
1407
- %% diff@7.0.0 NOTICES AND INFORMATION BEGIN HERE
865
+ %% diff@8.0.4 NOTICES AND INFORMATION BEGIN HERE
1408
866
  =========================================
1409
867
  BSD 3-Clause License
1410
868
 
@@ -1436,7 +894,7 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1436
894
  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1437
895
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1438
896
  =========================================
1439
- END OF diff@7.0.0 AND INFORMATION
897
+ END OF diff@8.0.4 AND INFORMATION
1440
898
 
1441
899
  %% dotenv@16.4.5 NOTICES AND INFORMATION BEGIN HERE
1442
900
  =========================================
@@ -1758,7 +1216,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1758
1216
  =========================================
1759
1217
  END OF eventsource@3.0.7 AND INFORMATION
1760
1218
 
1761
- %% express-rate-limit@7.5.1 NOTICES AND INFORMATION BEGIN HERE
1219
+ %% express-rate-limit@8.3.1 NOTICES AND INFORMATION BEGIN HERE
1762
1220
  =========================================
1763
1221
  # MIT License
1764
1222
 
@@ -1781,9 +1239,9 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1781
1239
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1782
1240
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1783
1241
  =========================================
1784
- END OF express-rate-limit@7.5.1 AND INFORMATION
1242
+ END OF express-rate-limit@8.3.1 AND INFORMATION
1785
1243
 
1786
- %% express@5.1.0 NOTICES AND INFORMATION BEGIN HERE
1244
+ %% express@5.2.1 NOTICES AND INFORMATION BEGIN HERE
1787
1245
  =========================================
1788
1246
  (The MIT License)
1789
1247
 
@@ -1810,7 +1268,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1810
1268
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1811
1269
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1812
1270
  =========================================
1813
- END OF express@5.1.0 AND INFORMATION
1271
+ END OF express@5.2.1 AND INFORMATION
1814
1272
 
1815
1273
  %% fast-deep-equal@3.1.3 NOTICES AND INFORMATION BEGIN HERE
1816
1274
  =========================================
@@ -1875,7 +1333,7 @@ The complete list of contributors can be found at:
1875
1333
  =========================================
1876
1334
  END OF fast-uri@3.1.0 AND INFORMATION
1877
1335
 
1878
- %% finalhandler@2.1.0 NOTICES AND INFORMATION BEGIN HERE
1336
+ %% finalhandler@2.1.1 NOTICES AND INFORMATION BEGIN HERE
1879
1337
  =========================================
1880
1338
  (The MIT License)
1881
1339
 
@@ -1900,7 +1358,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1900
1358
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1901
1359
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1902
1360
  =========================================
1903
- END OF finalhandler@2.1.0 AND INFORMATION
1361
+ END OF finalhandler@2.1.1 AND INFORMATION
1904
1362
 
1905
1363
  %% forwarded@0.2.0 NOTICES AND INFORMATION BEGIN HERE
1906
1364
  =========================================
@@ -2145,7 +1603,7 @@ SOFTWARE.
2145
1603
  =========================================
2146
1604
  END OF hasown@2.0.2 AND INFORMATION
2147
1605
 
2148
- %% hono@4.11.3 NOTICES AND INFORMATION BEGIN HERE
1606
+ %% hono@4.12.7 NOTICES AND INFORMATION BEGIN HERE
2149
1607
  =========================================
2150
1608
  MIT License
2151
1609
 
@@ -2169,7 +1627,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2169
1627
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2170
1628
  SOFTWARE.
2171
1629
  =========================================
2172
- END OF hono@4.11.3 AND INFORMATION
1630
+ END OF hono@4.12.7 AND INFORMATION
2173
1631
 
2174
1632
  %% http-errors@2.0.1 NOTICES AND INFORMATION BEGIN HERE
2175
1633
  =========================================
@@ -2225,7 +1683,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2225
1683
  =========================================
2226
1684
  END OF https-proxy-agent@7.0.6 AND INFORMATION
2227
1685
 
2228
- %% iconv-lite@0.7.0 NOTICES AND INFORMATION BEGIN HERE
1686
+ %% iconv-lite@0.7.2 NOTICES AND INFORMATION BEGIN HERE
2229
1687
  =========================================
2230
1688
  Copyright (c) 2011 Alexander Shtuchkin
2231
1689
 
@@ -2248,7 +1706,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2248
1706
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2249
1707
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2250
1708
  =========================================
2251
- END OF iconv-lite@0.7.0 AND INFORMATION
1709
+ END OF iconv-lite@0.7.2 AND INFORMATION
2252
1710
 
2253
1711
  %% inherits@2.0.4 NOTICES AND INFORMATION BEGIN HERE
2254
1712
  =========================================
@@ -2270,6 +1728,50 @@ PERFORMANCE OF THIS SOFTWARE.
2270
1728
  =========================================
2271
1729
  END OF inherits@2.0.4 AND INFORMATION
2272
1730
 
1731
+ %% ini@6.0.0 NOTICES AND INFORMATION BEGIN HERE
1732
+ =========================================
1733
+ The ISC License
1734
+
1735
+ Copyright (c) Isaac Z. Schlueter and Contributors
1736
+
1737
+ Permission to use, copy, modify, and/or distribute this software for any
1738
+ purpose with or without fee is hereby granted, provided that the above
1739
+ copyright notice and this permission notice appear in all copies.
1740
+
1741
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1742
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1743
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1744
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1745
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1746
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1747
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1748
+ =========================================
1749
+ END OF ini@6.0.0 AND INFORMATION
1750
+
1751
+ %% ip-address@10.1.0 NOTICES AND INFORMATION BEGIN HERE
1752
+ =========================================
1753
+ Copyright (C) 2011 by Beau Gunderson
1754
+
1755
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1756
+ of this software and associated documentation files (the "Software"), to deal
1757
+ in the Software without restriction, including without limitation the rights
1758
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1759
+ copies of the Software, and to permit persons to whom the Software is
1760
+ furnished to do so, subject to the following conditions:
1761
+
1762
+ The above copyright notice and this permission notice shall be included in
1763
+ all copies or substantial portions of the Software.
1764
+
1765
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1766
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1767
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1768
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1769
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1770
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1771
+ THE SOFTWARE.
1772
+ =========================================
1773
+ END OF ip-address@10.1.0 AND INFORMATION
1774
+
2273
1775
  %% ip-address@9.0.5 NOTICES AND INFORMATION BEGIN HERE
2274
1776
  =========================================
2275
1777
  Copyright (C) 2011 by Beau Gunderson
@@ -2676,7 +2178,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2676
2178
  =========================================
2677
2179
  END OF mime-db@1.54.0 AND INFORMATION
2678
2180
 
2679
- %% mime-types@3.0.1 NOTICES AND INFORMATION BEGIN HERE
2181
+ %% mime-types@3.0.2 NOTICES AND INFORMATION BEGIN HERE
2680
2182
  =========================================
2681
2183
  (The MIT License)
2682
2184
 
@@ -2702,7 +2204,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2702
2204
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2703
2205
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2704
2206
  =========================================
2705
- END OF mime-types@3.0.1 AND INFORMATION
2207
+ END OF mime-types@3.0.2 AND INFORMATION
2706
2208
 
2707
2209
  %% mime@3.0.0 NOTICES AND INFORMATION BEGIN HERE
2708
2210
  =========================================
@@ -2730,7 +2232,7 @@ THE SOFTWARE.
2730
2232
  =========================================
2731
2233
  END OF mime@3.0.0 AND INFORMATION
2732
2234
 
2733
- %% minimatch@3.1.2 NOTICES AND INFORMATION BEGIN HERE
2235
+ %% minimatch@3.1.4 NOTICES AND INFORMATION BEGIN HERE
2734
2236
  =========================================
2735
2237
  The ISC License
2736
2238
 
@@ -2748,7 +2250,7 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2748
2250
  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2749
2251
  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2750
2252
  =========================================
2751
- END OF minimatch@3.1.2 AND INFORMATION
2253
+ END OF minimatch@3.1.4 AND INFORMATION
2752
2254
 
2753
2255
  %% ms@2.1.2 NOTICES AND INFORMATION BEGIN HERE
2754
2256
  =========================================
@@ -2987,7 +2489,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
2987
2489
  =========================================
2988
2490
  END OF path-key@3.1.1 AND INFORMATION
2989
2491
 
2990
- %% path-to-regexp@8.2.0 NOTICES AND INFORMATION BEGIN HERE
2492
+ %% path-to-regexp@8.3.0 NOTICES AND INFORMATION BEGIN HERE
2991
2493
  =========================================
2992
2494
  The MIT License (MIT)
2993
2495
 
@@ -3011,7 +2513,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3011
2513
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3012
2514
  THE SOFTWARE.
3013
2515
  =========================================
3014
- END OF path-to-regexp@8.2.0 AND INFORMATION
2516
+ END OF path-to-regexp@8.3.0 AND INFORMATION
3015
2517
 
3016
2518
  %% pend@1.2.0 NOTICES AND INFORMATION BEGIN HERE
3017
2519
  =========================================
@@ -3146,7 +2648,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3146
2648
  =========================================
3147
2649
  END OF proxy-addr@2.0.7 AND INFORMATION
3148
2650
 
3149
- %% proxy-from-env@1.1.0 NOTICES AND INFORMATION BEGIN HERE
2651
+ %% proxy-from-env@2.0.0 NOTICES AND INFORMATION BEGIN HERE
3150
2652
  =========================================
3151
2653
  The MIT License
3152
2654
 
@@ -3169,7 +2671,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3169
2671
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3170
2672
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3171
2673
  =========================================
3172
- END OF proxy-from-env@1.1.0 AND INFORMATION
2674
+ END OF proxy-from-env@2.0.0 AND INFORMATION
3173
2675
 
3174
2676
  %% pump@3.0.2 NOTICES AND INFORMATION BEGIN HERE
3175
2677
  =========================================
@@ -3197,7 +2699,7 @@ THE SOFTWARE.
3197
2699
  =========================================
3198
2700
  END OF pump@3.0.2 AND INFORMATION
3199
2701
 
3200
- %% qs@6.14.1 NOTICES AND INFORMATION BEGIN HERE
2702
+ %% qs@6.15.0 NOTICES AND INFORMATION BEGIN HERE
3201
2703
  =========================================
3202
2704
  BSD 3-Clause License
3203
2705
 
@@ -3229,7 +2731,7 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
3229
2731
  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3230
2732
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3231
2733
  =========================================
3232
- END OF qs@6.14.1 AND INFORMATION
2734
+ END OF qs@6.15.0 AND INFORMATION
3233
2735
 
3234
2736
  %% range-parser@1.2.1 NOTICES AND INFORMATION BEGIN HERE
3235
2737
  =========================================
@@ -3366,32 +2868,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3366
2868
  =========================================
3367
2869
  END OF router@2.2.0 AND INFORMATION
3368
2870
 
3369
- %% safe-buffer@5.2.1 NOTICES AND INFORMATION BEGIN HERE
3370
- =========================================
3371
- The MIT License (MIT)
3372
-
3373
- Copyright (c) Feross Aboukhadijeh
3374
-
3375
- Permission is hereby granted, free of charge, to any person obtaining a copy
3376
- of this software and associated documentation files (the "Software"), to deal
3377
- in the Software without restriction, including without limitation the rights
3378
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3379
- copies of the Software, and to permit persons to whom the Software is
3380
- furnished to do so, subject to the following conditions:
3381
-
3382
- The above copyright notice and this permission notice shall be included in
3383
- all copies or substantial portions of the Software.
3384
-
3385
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3386
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3387
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3388
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3389
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3390
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3391
- THE SOFTWARE.
3392
- =========================================
3393
- END OF safe-buffer@5.2.1 AND INFORMATION
3394
-
3395
2871
  %% safer-buffer@2.1.2 NOTICES AND INFORMATION BEGIN HERE
3396
2872
  =========================================
3397
2873
  MIT License
@@ -3418,7 +2894,7 @@ SOFTWARE.
3418
2894
  =========================================
3419
2895
  END OF safer-buffer@2.1.2 AND INFORMATION
3420
2896
 
3421
- %% send@1.2.0 NOTICES AND INFORMATION BEGIN HERE
2897
+ %% send@1.2.1 NOTICES AND INFORMATION BEGIN HERE
3422
2898
  =========================================
3423
2899
  (The MIT License)
3424
2900
 
@@ -3444,9 +2920,9 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3444
2920
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3445
2921
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3446
2922
  =========================================
3447
- END OF send@1.2.0 AND INFORMATION
2923
+ END OF send@1.2.1 AND INFORMATION
3448
2924
 
3449
- %% serve-static@2.2.0 NOTICES AND INFORMATION BEGIN HERE
2925
+ %% serve-static@2.2.1 NOTICES AND INFORMATION BEGIN HERE
3450
2926
  =========================================
3451
2927
  (The MIT License)
3452
2928
 
@@ -3474,7 +2950,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3474
2950
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3475
2951
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3476
2952
  =========================================
3477
- END OF serve-static@2.2.0 AND INFORMATION
2953
+ END OF serve-static@2.2.1 AND INFORMATION
3478
2954
 
3479
2955
  %% setprototypeof@1.2.0 NOTICES AND INFORMATION BEGIN HERE
3480
2956
  =========================================
@@ -3953,7 +3429,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3953
3429
  =========================================
3954
3430
  END OF ws@8.17.1 AND INFORMATION
3955
3431
 
3956
- %% yaml@2.6.0 NOTICES AND INFORMATION BEGIN HERE
3432
+ %% yaml@2.8.3 NOTICES AND INFORMATION BEGIN HERE
3957
3433
  =========================================
3958
3434
  Copyright Eemeli Aro <eemeli@gmail.com>
3959
3435
 
@@ -3969,9 +3445,9 @@ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
3969
3445
  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
3970
3446
  THIS SOFTWARE.
3971
3447
  =========================================
3972
- END OF yaml@2.6.0 AND INFORMATION
3448
+ END OF yaml@2.8.3 AND INFORMATION
3973
3449
 
3974
- %% yauzl@3.2.0 NOTICES AND INFORMATION BEGIN HERE
3450
+ %% yauzl@3.2.1 NOTICES AND INFORMATION BEGIN HERE
3975
3451
  =========================================
3976
3452
  The MIT License (MIT)
3977
3453
 
@@ -3995,7 +3471,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3995
3471
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3996
3472
  SOFTWARE.
3997
3473
  =========================================
3998
- END OF yauzl@3.2.0 AND INFORMATION
3474
+ END OF yauzl@3.2.1 AND INFORMATION
3999
3475
 
4000
3476
  %% yazl@2.5.1 NOTICES AND INFORMATION BEGIN HERE
4001
3477
  =========================================
@@ -4043,7 +3519,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
4043
3519
  =========================================
4044
3520
  END OF zod-to-json-schema@3.25.1 AND INFORMATION
4045
3521
 
4046
- %% zod@4.3.5 NOTICES AND INFORMATION BEGIN HERE
3522
+ %% zod@4.3.6 NOTICES AND INFORMATION BEGIN HERE
4047
3523
  =========================================
4048
3524
  MIT License
4049
3525
 
@@ -4067,7 +3543,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4067
3543
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
4068
3544
  SOFTWARE.
4069
3545
  =========================================
4070
- END OF zod@4.3.5 AND INFORMATION
3546
+ END OF zod@4.3.6 AND INFORMATION
4071
3547
 
4072
3548
  SUMMARY BEGIN HERE
4073
3549
  =========================================