@jshookmcp/jshook 0.2.5 → 0.2.6

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 (210) hide show
  1. package/README.md +5 -5
  2. package/README.zh.md +5 -5
  3. package/dist/packages/extension-sdk/src/workflow.d.ts +17 -2
  4. package/dist/packages/extension-sdk/src/workflow.js +36 -0
  5. package/dist/src/modules/browser/BrowserPool.d.ts +49 -0
  6. package/dist/src/modules/browser/BrowserPool.js +288 -0
  7. package/dist/src/modules/deobfuscator/AdvancedDeobfuscator.d.ts +5 -0
  8. package/dist/src/modules/deobfuscator/AdvancedDeobfuscator.js +43 -2
  9. package/dist/src/modules/deobfuscator/Deobfuscator.js +5 -0
  10. package/dist/src/modules/external/ExternalToolRunner.js +1 -1
  11. package/dist/src/server/MCPServer.context.d.ts +1 -0
  12. package/dist/src/server/domains/browser/handlers/stealth-injection.d.ts +1 -0
  13. package/dist/src/server/domains/browser/handlers/stealth-injection.js +3 -0
  14. package/dist/src/server/domains/shared-state-board/definitions.d.ts +2 -0
  15. package/dist/src/server/domains/shared-state-board/definitions.js +78 -0
  16. package/dist/src/server/domains/shared-state-board/handlers.impl.d.ts +58 -0
  17. package/dist/src/server/domains/shared-state-board/handlers.impl.js +419 -0
  18. package/dist/src/server/domains/shared-state-board/index.d.ts +2 -0
  19. package/dist/src/server/domains/shared-state-board/index.js +2 -0
  20. package/dist/src/server/domains/shared-state-board/manifest.d.ts +57 -0
  21. package/dist/src/server/domains/shared-state-board/manifest.js +74 -0
  22. package/dist/src/server/http/SseStream.d.ts +21 -0
  23. package/dist/src/server/http/SseStream.js +129 -0
  24. package/dist/src/server/teams/TeamManager.d.ts +43 -0
  25. package/dist/src/server/teams/TeamManager.js +238 -0
  26. package/dist/src/server/teams/index.d.ts +1 -0
  27. package/dist/src/server/teams/index.js +1 -0
  28. package/dist/src/server/workflows/WorkflowContract.d.ts +20 -4
  29. package/dist/src/server/workflows/WorkflowContract.js +40 -0
  30. package/dist/src/server/workflows/WorkflowEngine.js +190 -13
  31. package/dist/src/types/deobfuscator.d.ts +1 -0
  32. package/dist/src/utils/cache/CachedDecorator.d.ts +8 -0
  33. package/dist/src/utils/cache/CachedDecorator.js +55 -0
  34. package/dist/src/utils/cache/PersistentCache.d.ts +33 -0
  35. package/dist/src/utils/cache/PersistentCache.js +246 -0
  36. package/dist/src/utils/cache/index.d.ts +2 -0
  37. package/dist/src/utils/cache/index.js +2 -0
  38. package/package.json +11 -12
  39. package/scripts/postinstall.cjs +54 -27
  40. package/workflows/anti-bot-diagnoser/.jshook-install.json +14 -0
  41. package/workflows/anti-bot-diagnoser/LICENSE +21 -0
  42. package/workflows/anti-bot-diagnoser/README.md +105 -0
  43. package/workflows/anti-bot-diagnoser/docs/agent-recipes.md +44 -0
  44. package/workflows/anti-bot-diagnoser/meta.yaml +6 -0
  45. package/workflows/anti-bot-diagnoser/package.json +22 -0
  46. package/workflows/anti-bot-diagnoser/tsconfig.json +15 -0
  47. package/workflows/anti-bot-diagnoser/workflow.ts +224 -0
  48. package/workflows/api-openapi-probe/.jshook-install.json +14 -0
  49. package/workflows/api-openapi-probe/meta.yaml +6 -0
  50. package/workflows/api-openapi-probe/package.json +22 -0
  51. package/workflows/api-openapi-probe/pnpm-lock.yaml +819 -0
  52. package/workflows/api-openapi-probe/tsconfig.json +15 -0
  53. package/workflows/api-openapi-probe/workflow.ts +40 -0
  54. package/workflows/api-probe-batch/.jshook-install.json +14 -0
  55. package/workflows/api-probe-batch/LICENSE +21 -0
  56. package/workflows/api-probe-batch/README.md +45 -0
  57. package/workflows/api-probe-batch/meta.yaml +4 -0
  58. package/workflows/api-probe-batch/package.json +23 -0
  59. package/workflows/api-probe-batch/tsconfig.json +16 -0
  60. package/workflows/api-probe-batch/workflow.ts +111 -0
  61. package/workflows/auth-bootstrap/.jshook-install.json +14 -0
  62. package/workflows/auth-bootstrap/LICENSE +21 -0
  63. package/workflows/auth-bootstrap/README.md +74 -0
  64. package/workflows/auth-bootstrap/meta.yaml +4 -0
  65. package/workflows/auth-bootstrap/package.json +23 -0
  66. package/workflows/auth-bootstrap/tsconfig.json +16 -0
  67. package/workflows/auth-bootstrap/workflow.ts +141 -0
  68. package/workflows/auth-extract/.jshook-install.json +14 -0
  69. package/workflows/auth-extract/meta.yaml +6 -0
  70. package/workflows/auth-extract/package.json +22 -0
  71. package/workflows/auth-extract/pnpm-lock.yaml +819 -0
  72. package/workflows/auth-extract/tsconfig.json +15 -0
  73. package/workflows/auth-extract/workflow.ts +36 -0
  74. package/workflows/auth-surface-mapper/.jshook-install.json +14 -0
  75. package/workflows/auth-surface-mapper/meta.yaml +6 -0
  76. package/workflows/auth-surface-mapper/package.json +22 -0
  77. package/workflows/auth-surface-mapper/pnpm-lock.yaml +819 -0
  78. package/workflows/auth-surface-mapper/tsconfig.json +15 -0
  79. package/workflows/auth-surface-mapper/workflow.ts +104 -0
  80. package/workflows/batch-register/.jshook-install.json +14 -0
  81. package/workflows/batch-register/LICENSE +21 -0
  82. package/workflows/batch-register/README.md +39 -0
  83. package/workflows/batch-register/meta.yaml +4 -0
  84. package/workflows/batch-register/package.json +23 -0
  85. package/workflows/batch-register/tsconfig.json +16 -0
  86. package/workflows/batch-register/workflow.ts +67 -0
  87. package/workflows/bundle-recovery/.jshook-install.json +14 -0
  88. package/workflows/bundle-recovery/LICENSE +21 -0
  89. package/workflows/bundle-recovery/README.md +105 -0
  90. package/workflows/bundle-recovery/docs/agent-recipes.md +44 -0
  91. package/workflows/bundle-recovery/meta.yaml +6 -0
  92. package/workflows/bundle-recovery/package.json +22 -0
  93. package/workflows/bundle-recovery/tsconfig.json +15 -0
  94. package/workflows/bundle-recovery/workflow.ts +179 -0
  95. package/workflows/challenge-detector/.jshook-install.json +14 -0
  96. package/workflows/challenge-detector/meta.yaml +14 -0
  97. package/workflows/challenge-detector/package.json +22 -0
  98. package/workflows/challenge-detector/pnpm-lock.yaml +819 -0
  99. package/workflows/challenge-detector/tsconfig.json +15 -0
  100. package/workflows/challenge-detector/workflow.ts +298 -0
  101. package/workflows/deobfuscation-pipeline/.jshook-install.json +14 -0
  102. package/workflows/deobfuscation-pipeline/meta.yaml +6 -0
  103. package/workflows/deobfuscation-pipeline/package.json +22 -0
  104. package/workflows/deobfuscation-pipeline/pnpm-lock.yaml +819 -0
  105. package/workflows/deobfuscation-pipeline/tsconfig.json +15 -0
  106. package/workflows/deobfuscation-pipeline/workflow.ts +119 -0
  107. package/workflows/electron-bridge-mapper/.jshook-install.json +14 -0
  108. package/workflows/electron-bridge-mapper/meta.yaml +6 -0
  109. package/workflows/electron-bridge-mapper/package.json +22 -0
  110. package/workflows/electron-bridge-mapper/pnpm-lock.yaml +819 -0
  111. package/workflows/electron-bridge-mapper/tsconfig.json +15 -0
  112. package/workflows/electron-bridge-mapper/workflow.ts +125 -0
  113. package/workflows/evidence-pack/.jshook-install.json +14 -0
  114. package/workflows/evidence-pack/LICENSE +21 -0
  115. package/workflows/evidence-pack/README.md +105 -0
  116. package/workflows/evidence-pack/docs/agent-recipes.md +44 -0
  117. package/workflows/evidence-pack/meta.yaml +6 -0
  118. package/workflows/evidence-pack/package.json +22 -0
  119. package/workflows/evidence-pack/tsconfig.json +15 -0
  120. package/workflows/evidence-pack/workflow.ts +154 -0
  121. package/workflows/js-bundle-search/.jshook-install.json +14 -0
  122. package/workflows/js-bundle-search/LICENSE +21 -0
  123. package/workflows/js-bundle-search/README.md +46 -0
  124. package/workflows/js-bundle-search/meta.yaml +4 -0
  125. package/workflows/js-bundle-search/package.json +23 -0
  126. package/workflows/js-bundle-search/tsconfig.json +16 -0
  127. package/workflows/js-bundle-search/workflow.ts +118 -0
  128. package/workflows/protocol-registry/.jshook-install.json +14 -0
  129. package/workflows/protocol-registry/meta.yaml +6 -0
  130. package/workflows/protocol-registry/package.json +22 -0
  131. package/workflows/protocol-registry/pnpm-lock.yaml +819 -0
  132. package/workflows/protocol-registry/tsconfig.json +15 -0
  133. package/workflows/protocol-registry/workflow.ts +107 -0
  134. package/workflows/qwen-mail-open-latest/meta.yaml +7 -0
  135. package/workflows/qwen-mail-open-latest/package.json +22 -0
  136. package/workflows/qwen-mail-open-latest/pnpm-lock.yaml +819 -0
  137. package/workflows/qwen-mail-open-latest/tsconfig.json +15 -0
  138. package/workflows/qwen-mail-open-latest/workflow.ts +77 -0
  139. package/workflows/register-account-flow/.jshook-install.json +14 -0
  140. package/workflows/register-account-flow/LICENSE +21 -0
  141. package/workflows/register-account-flow/README.md +64 -0
  142. package/workflows/register-account-flow/meta.yaml +4 -0
  143. package/workflows/register-account-flow/package.json +23 -0
  144. package/workflows/register-account-flow/tsconfig.json +16 -0
  145. package/workflows/register-account-flow/workflow.ts +127 -0
  146. package/workflows/replay-lab/.jshook-install.json +14 -0
  147. package/workflows/replay-lab/meta.yaml +6 -0
  148. package/workflows/replay-lab/package.json +22 -0
  149. package/workflows/replay-lab/pnpm-lock.yaml +819 -0
  150. package/workflows/replay-lab/tsconfig.json +15 -0
  151. package/workflows/replay-lab/workflow.ts +106 -0
  152. package/workflows/script-evidence-scan/.jshook-install.json +14 -0
  153. package/workflows/script-evidence-scan/LICENSE +21 -0
  154. package/workflows/script-evidence-scan/README.md +61 -0
  155. package/workflows/script-evidence-scan/meta.yaml +4 -0
  156. package/workflows/script-evidence-scan/package.json +23 -0
  157. package/workflows/script-evidence-scan/tsconfig.json +16 -0
  158. package/workflows/script-evidence-scan/workflow.ts +89 -0
  159. package/workflows/signature-hunter/.jshook-install.json +14 -0
  160. package/workflows/signature-hunter/LICENSE +21 -0
  161. package/workflows/signature-hunter/README.md +105 -0
  162. package/workflows/signature-hunter/docs/agent-recipes.md +44 -0
  163. package/workflows/signature-hunter/meta.yaml +6 -0
  164. package/workflows/signature-hunter/package.json +22 -0
  165. package/workflows/signature-hunter/tsconfig.json +15 -0
  166. package/workflows/signature-hunter/workflow.ts +170 -0
  167. package/workflows/signing-lineage/.jshook-install.json +14 -0
  168. package/workflows/signing-lineage/meta.yaml +6 -0
  169. package/workflows/signing-lineage/package.json +22 -0
  170. package/workflows/signing-lineage/pnpm-lock.yaml +819 -0
  171. package/workflows/signing-lineage/tsconfig.json +15 -0
  172. package/workflows/signing-lineage/workflow.ts +120 -0
  173. package/workflows/temp-mail-extract-link/.jshook-install.json +14 -0
  174. package/workflows/temp-mail-extract-link/LICENSE +21 -0
  175. package/workflows/temp-mail-extract-link/README.md +71 -0
  176. package/workflows/temp-mail-extract-link/meta.yaml +4 -0
  177. package/workflows/temp-mail-extract-link/package.json +23 -0
  178. package/workflows/temp-mail-extract-link/tsconfig.json +16 -0
  179. package/workflows/temp-mail-extract-link/workflow.ts +221 -0
  180. package/workflows/temp-mail-open-latest/.jshook-install.json +14 -0
  181. package/workflows/temp-mail-open-latest/LICENSE +21 -0
  182. package/workflows/temp-mail-open-latest/README.md +61 -0
  183. package/workflows/temp-mail-open-latest/meta.yaml +4 -0
  184. package/workflows/temp-mail-open-latest/package.json +23 -0
  185. package/workflows/temp-mail-open-latest/tsconfig.json +16 -0
  186. package/workflows/temp-mail-open-latest/workflow.ts +136 -0
  187. package/workflows/template/.jshook-install.json +14 -0
  188. package/workflows/template/LICENSE +21 -0
  189. package/workflows/template/README.md +45 -0
  190. package/workflows/template/docs/SKILL.md +111 -0
  191. package/workflows/template/meta.yaml +6 -0
  192. package/workflows/template/package.json +22 -0
  193. package/workflows/template/pnpm-lock.yaml +819 -0
  194. package/workflows/template/tsconfig.json +15 -0
  195. package/workflows/template/workflow.ts +73 -0
  196. package/workflows/web-api-capture-session/.jshook-install.json +14 -0
  197. package/workflows/web-api-capture-session/LICENSE +21 -0
  198. package/workflows/web-api-capture-session/README.md +64 -0
  199. package/workflows/web-api-capture-session/meta.yaml +4 -0
  200. package/workflows/web-api-capture-session/package.json +23 -0
  201. package/workflows/web-api-capture-session/tsconfig.json +16 -0
  202. package/workflows/web-api-capture-session/workflow.ts +124 -0
  203. package/workflows/ws-protocol-lifter/.jshook-install.json +14 -0
  204. package/workflows/ws-protocol-lifter/LICENSE +21 -0
  205. package/workflows/ws-protocol-lifter/README.md +105 -0
  206. package/workflows/ws-protocol-lifter/docs/agent-recipes.md +44 -0
  207. package/workflows/ws-protocol-lifter/meta.yaml +6 -0
  208. package/workflows/ws-protocol-lifter/package.json +22 -0
  209. package/workflows/ws-protocol-lifter/tsconfig.json +15 -0
  210. package/workflows/ws-protocol-lifter/workflow.ts +163 -0
@@ -0,0 +1,819 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+
9
+ .:
10
+ dependencies:
11
+ '@jshookmcp/extension-sdk':
12
+ specifier: ^0.3.0
13
+ version: 0.3.0(zod@4.3.6)
14
+ devDependencies:
15
+ '@types/node':
16
+ specifier: ^25.3.0
17
+ version: 25.5.0
18
+ typescript:
19
+ specifier: ^5.9.3
20
+ version: 5.9.3
21
+
22
+ packages:
23
+
24
+ '@hono/node-server@1.19.12':
25
+ resolution: {integrity: sha512-txsUW4SQ1iilgE0l9/e9VQWmELXifEFvmdA1j6WFh/aFPj99hIntrSsq/if0UWyGVkmrRPKA1wCeP+UCr1B9Uw==}
26
+ engines: {node: '>=18.14.1'}
27
+ peerDependencies:
28
+ hono: ^4
29
+
30
+ '@jshookmcp/extension-sdk@0.3.0':
31
+ resolution: {integrity: sha512-G+PR/s7B+LdGmn1mOMT1XC6C5yEDqQJjqCIFDwVOh6T0+Ev5Y6xg+cH80kAyCEPNJG5LG43w891oFDR+Zsv50g==}
32
+ engines: {node: '>=20.0.0'}
33
+
34
+ '@modelcontextprotocol/sdk@1.29.0':
35
+ resolution: {integrity: sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==}
36
+ engines: {node: '>=18'}
37
+ peerDependencies:
38
+ '@cfworker/json-schema': ^4.1.1
39
+ zod: ^3.25 || ^4.0
40
+ peerDependenciesMeta:
41
+ '@cfworker/json-schema':
42
+ optional: true
43
+
44
+ '@types/node@25.5.0':
45
+ resolution: {integrity: sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==}
46
+
47
+ accepts@2.0.0:
48
+ resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
49
+ engines: {node: '>= 0.6'}
50
+
51
+ ajv-formats@3.0.1:
52
+ resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
53
+ peerDependencies:
54
+ ajv: ^8.0.0
55
+ peerDependenciesMeta:
56
+ ajv:
57
+ optional: true
58
+
59
+ ajv@8.18.0:
60
+ resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
61
+
62
+ body-parser@2.2.2:
63
+ resolution: {integrity: sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==}
64
+ engines: {node: '>=18'}
65
+
66
+ bytes@3.1.2:
67
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
68
+ engines: {node: '>= 0.8'}
69
+
70
+ call-bind-apply-helpers@1.0.2:
71
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
72
+ engines: {node: '>= 0.4'}
73
+
74
+ call-bound@1.0.4:
75
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
76
+ engines: {node: '>= 0.4'}
77
+
78
+ content-disposition@1.0.1:
79
+ resolution: {integrity: sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==}
80
+ engines: {node: '>=18'}
81
+
82
+ content-type@1.0.5:
83
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
84
+ engines: {node: '>= 0.6'}
85
+
86
+ cookie-signature@1.2.2:
87
+ resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
88
+ engines: {node: '>=6.6.0'}
89
+
90
+ cookie@0.7.2:
91
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
92
+ engines: {node: '>= 0.6'}
93
+
94
+ cors@2.8.6:
95
+ resolution: {integrity: sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==}
96
+ engines: {node: '>= 0.10'}
97
+
98
+ cross-spawn@7.0.6:
99
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
100
+ engines: {node: '>= 8'}
101
+
102
+ debug@4.4.3:
103
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
104
+ engines: {node: '>=6.0'}
105
+ peerDependencies:
106
+ supports-color: '*'
107
+ peerDependenciesMeta:
108
+ supports-color:
109
+ optional: true
110
+
111
+ depd@2.0.0:
112
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
113
+ engines: {node: '>= 0.8'}
114
+
115
+ dotenv@17.3.1:
116
+ resolution: {integrity: sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==}
117
+ engines: {node: '>=12'}
118
+
119
+ dunder-proto@1.0.1:
120
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
121
+ engines: {node: '>= 0.4'}
122
+
123
+ ee-first@1.1.1:
124
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
125
+
126
+ encodeurl@2.0.0:
127
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
128
+ engines: {node: '>= 0.8'}
129
+
130
+ es-define-property@1.0.1:
131
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
132
+ engines: {node: '>= 0.4'}
133
+
134
+ es-errors@1.3.0:
135
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
136
+ engines: {node: '>= 0.4'}
137
+
138
+ es-object-atoms@1.1.1:
139
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
140
+ engines: {node: '>= 0.4'}
141
+
142
+ escape-html@1.0.3:
143
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
144
+
145
+ etag@1.8.1:
146
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
147
+ engines: {node: '>= 0.6'}
148
+
149
+ eventsource-parser@3.0.6:
150
+ resolution: {integrity: sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==}
151
+ engines: {node: '>=18.0.0'}
152
+
153
+ eventsource@3.0.7:
154
+ resolution: {integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==}
155
+ engines: {node: '>=18.0.0'}
156
+
157
+ express-rate-limit@8.3.2:
158
+ resolution: {integrity: sha512-77VmFeJkO0/rvimEDuUC5H30oqUC4EyOhyGccfqoLebB0oiEYfM7nwPrsDsBL1gsTpwfzX8SFy2MT3TDyRq+bg==}
159
+ engines: {node: '>= 16'}
160
+ peerDependencies:
161
+ express: '>= 4.11'
162
+
163
+ express@5.2.1:
164
+ resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==}
165
+ engines: {node: '>= 18'}
166
+
167
+ fast-deep-equal@3.1.3:
168
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
169
+
170
+ fast-uri@3.1.0:
171
+ resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
172
+
173
+ finalhandler@2.1.1:
174
+ resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==}
175
+ engines: {node: '>= 18.0.0'}
176
+
177
+ forwarded@0.2.0:
178
+ resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
179
+ engines: {node: '>= 0.6'}
180
+
181
+ fresh@2.0.0:
182
+ resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
183
+ engines: {node: '>= 0.8'}
184
+
185
+ function-bind@1.1.2:
186
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
187
+
188
+ get-intrinsic@1.3.0:
189
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
190
+ engines: {node: '>= 0.4'}
191
+
192
+ get-proto@1.0.1:
193
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
194
+ engines: {node: '>= 0.4'}
195
+
196
+ gopd@1.2.0:
197
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
198
+ engines: {node: '>= 0.4'}
199
+
200
+ has-symbols@1.1.0:
201
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
202
+ engines: {node: '>= 0.4'}
203
+
204
+ hasown@2.0.2:
205
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
206
+ engines: {node: '>= 0.4'}
207
+
208
+ hono@4.12.9:
209
+ resolution: {integrity: sha512-wy3T8Zm2bsEvxKZM5w21VdHDDcwVS1yUFFY6i8UobSsKfFceT7TOwhbhfKsDyx7tYQlmRM5FLpIuYvNFyjctiA==}
210
+ engines: {node: '>=16.9.0'}
211
+
212
+ http-errors@2.0.1:
213
+ resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
214
+ engines: {node: '>= 0.8'}
215
+
216
+ iconv-lite@0.7.2:
217
+ resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
218
+ engines: {node: '>=0.10.0'}
219
+
220
+ inherits@2.0.4:
221
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
222
+
223
+ ip-address@10.1.0:
224
+ resolution: {integrity: sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==}
225
+ engines: {node: '>= 12'}
226
+
227
+ ipaddr.js@1.9.1:
228
+ resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
229
+ engines: {node: '>= 0.10'}
230
+
231
+ is-promise@4.0.0:
232
+ resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
233
+
234
+ isexe@2.0.0:
235
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
236
+
237
+ jose@6.2.2:
238
+ resolution: {integrity: sha512-d7kPDd34KO/YnzaDOlikGpOurfF0ByC2sEV4cANCtdqLlTfBlw2p14O/5d/zv40gJPbIQxfES3nSx1/oYNyuZQ==}
239
+
240
+ json-schema-traverse@1.0.0:
241
+ resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
242
+
243
+ json-schema-typed@8.0.2:
244
+ resolution: {integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==}
245
+
246
+ math-intrinsics@1.1.0:
247
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
248
+ engines: {node: '>= 0.4'}
249
+
250
+ media-typer@1.1.0:
251
+ resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
252
+ engines: {node: '>= 0.8'}
253
+
254
+ merge-descriptors@2.0.0:
255
+ resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
256
+ engines: {node: '>=18'}
257
+
258
+ mime-db@1.54.0:
259
+ resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
260
+ engines: {node: '>= 0.6'}
261
+
262
+ mime-types@3.0.2:
263
+ resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
264
+ engines: {node: '>=18'}
265
+
266
+ ms@2.1.3:
267
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
268
+
269
+ negotiator@1.0.0:
270
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
271
+ engines: {node: '>= 0.6'}
272
+
273
+ object-assign@4.1.1:
274
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
275
+ engines: {node: '>=0.10.0'}
276
+
277
+ object-inspect@1.13.4:
278
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
279
+ engines: {node: '>= 0.4'}
280
+
281
+ on-finished@2.4.1:
282
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
283
+ engines: {node: '>= 0.8'}
284
+
285
+ once@1.4.0:
286
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
287
+
288
+ parseurl@1.3.3:
289
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
290
+ engines: {node: '>= 0.8'}
291
+
292
+ path-key@3.1.1:
293
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
294
+ engines: {node: '>=8'}
295
+
296
+ path-to-regexp@8.4.1:
297
+ resolution: {integrity: sha512-fvU78fIjZ+SBM9YwCknCvKOUKkLVqtWDVctl0s7xIqfmfb38t2TT4ZU2gHm+Z8xGwgW+QWEU3oQSAzIbo89Ggw==}
298
+
299
+ pkce-challenge@5.0.1:
300
+ resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==}
301
+ engines: {node: '>=16.20.0'}
302
+
303
+ proxy-addr@2.0.7:
304
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
305
+ engines: {node: '>= 0.10'}
306
+
307
+ qs@6.15.0:
308
+ resolution: {integrity: sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==}
309
+ engines: {node: '>=0.6'}
310
+
311
+ range-parser@1.2.1:
312
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
313
+ engines: {node: '>= 0.6'}
314
+
315
+ raw-body@3.0.2:
316
+ resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==}
317
+ engines: {node: '>= 0.10'}
318
+
319
+ require-from-string@2.0.2:
320
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
321
+ engines: {node: '>=0.10.0'}
322
+
323
+ router@2.2.0:
324
+ resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
325
+ engines: {node: '>= 18'}
326
+
327
+ safer-buffer@2.1.2:
328
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
329
+
330
+ send@1.2.1:
331
+ resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==}
332
+ engines: {node: '>= 18'}
333
+
334
+ serve-static@2.2.1:
335
+ resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==}
336
+ engines: {node: '>= 18'}
337
+
338
+ setprototypeof@1.2.0:
339
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
340
+
341
+ shebang-command@2.0.0:
342
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
343
+ engines: {node: '>=8'}
344
+
345
+ shebang-regex@3.0.0:
346
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
347
+ engines: {node: '>=8'}
348
+
349
+ side-channel-list@1.0.0:
350
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
351
+ engines: {node: '>= 0.4'}
352
+
353
+ side-channel-map@1.0.1:
354
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
355
+ engines: {node: '>= 0.4'}
356
+
357
+ side-channel-weakmap@1.0.2:
358
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
359
+ engines: {node: '>= 0.4'}
360
+
361
+ side-channel@1.1.0:
362
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
363
+ engines: {node: '>= 0.4'}
364
+
365
+ statuses@2.0.2:
366
+ resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
367
+ engines: {node: '>= 0.8'}
368
+
369
+ toidentifier@1.0.1:
370
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
371
+ engines: {node: '>=0.6'}
372
+
373
+ type-is@2.0.1:
374
+ resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==}
375
+ engines: {node: '>= 0.6'}
376
+
377
+ typescript@5.9.3:
378
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
379
+ engines: {node: '>=14.17'}
380
+ hasBin: true
381
+
382
+ undici-types@7.18.2:
383
+ resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
384
+
385
+ unpipe@1.0.0:
386
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
387
+ engines: {node: '>= 0.8'}
388
+
389
+ vary@1.1.2:
390
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
391
+ engines: {node: '>= 0.8'}
392
+
393
+ which@2.0.2:
394
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
395
+ engines: {node: '>= 8'}
396
+ hasBin: true
397
+
398
+ wrappy@1.0.2:
399
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
400
+
401
+ zod-to-json-schema@3.25.2:
402
+ resolution: {integrity: sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==}
403
+ peerDependencies:
404
+ zod: ^3.25.28 || ^4
405
+
406
+ zod@4.3.6:
407
+ resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
408
+
409
+ snapshots:
410
+
411
+ '@hono/node-server@1.19.12(hono@4.12.9)':
412
+ dependencies:
413
+ hono: 4.12.9
414
+
415
+ '@jshookmcp/extension-sdk@0.3.0(zod@4.3.6)':
416
+ dependencies:
417
+ '@modelcontextprotocol/sdk': 1.29.0(zod@4.3.6)
418
+ dotenv: 17.3.1
419
+ transitivePeerDependencies:
420
+ - '@cfworker/json-schema'
421
+ - supports-color
422
+ - zod
423
+
424
+ '@modelcontextprotocol/sdk@1.29.0(zod@4.3.6)':
425
+ dependencies:
426
+ '@hono/node-server': 1.19.12(hono@4.12.9)
427
+ ajv: 8.18.0
428
+ ajv-formats: 3.0.1(ajv@8.18.0)
429
+ content-type: 1.0.5
430
+ cors: 2.8.6
431
+ cross-spawn: 7.0.6
432
+ eventsource: 3.0.7
433
+ eventsource-parser: 3.0.6
434
+ express: 5.2.1
435
+ express-rate-limit: 8.3.2(express@5.2.1)
436
+ hono: 4.12.9
437
+ jose: 6.2.2
438
+ json-schema-typed: 8.0.2
439
+ pkce-challenge: 5.0.1
440
+ raw-body: 3.0.2
441
+ zod: 4.3.6
442
+ zod-to-json-schema: 3.25.2(zod@4.3.6)
443
+ transitivePeerDependencies:
444
+ - supports-color
445
+
446
+ '@types/node@25.5.0':
447
+ dependencies:
448
+ undici-types: 7.18.2
449
+
450
+ accepts@2.0.0:
451
+ dependencies:
452
+ mime-types: 3.0.2
453
+ negotiator: 1.0.0
454
+
455
+ ajv-formats@3.0.1(ajv@8.18.0):
456
+ optionalDependencies:
457
+ ajv: 8.18.0
458
+
459
+ ajv@8.18.0:
460
+ dependencies:
461
+ fast-deep-equal: 3.1.3
462
+ fast-uri: 3.1.0
463
+ json-schema-traverse: 1.0.0
464
+ require-from-string: 2.0.2
465
+
466
+ body-parser@2.2.2:
467
+ dependencies:
468
+ bytes: 3.1.2
469
+ content-type: 1.0.5
470
+ debug: 4.4.3
471
+ http-errors: 2.0.1
472
+ iconv-lite: 0.7.2
473
+ on-finished: 2.4.1
474
+ qs: 6.15.0
475
+ raw-body: 3.0.2
476
+ type-is: 2.0.1
477
+ transitivePeerDependencies:
478
+ - supports-color
479
+
480
+ bytes@3.1.2: {}
481
+
482
+ call-bind-apply-helpers@1.0.2:
483
+ dependencies:
484
+ es-errors: 1.3.0
485
+ function-bind: 1.1.2
486
+
487
+ call-bound@1.0.4:
488
+ dependencies:
489
+ call-bind-apply-helpers: 1.0.2
490
+ get-intrinsic: 1.3.0
491
+
492
+ content-disposition@1.0.1: {}
493
+
494
+ content-type@1.0.5: {}
495
+
496
+ cookie-signature@1.2.2: {}
497
+
498
+ cookie@0.7.2: {}
499
+
500
+ cors@2.8.6:
501
+ dependencies:
502
+ object-assign: 4.1.1
503
+ vary: 1.1.2
504
+
505
+ cross-spawn@7.0.6:
506
+ dependencies:
507
+ path-key: 3.1.1
508
+ shebang-command: 2.0.0
509
+ which: 2.0.2
510
+
511
+ debug@4.4.3:
512
+ dependencies:
513
+ ms: 2.1.3
514
+
515
+ depd@2.0.0: {}
516
+
517
+ dotenv@17.3.1: {}
518
+
519
+ dunder-proto@1.0.1:
520
+ dependencies:
521
+ call-bind-apply-helpers: 1.0.2
522
+ es-errors: 1.3.0
523
+ gopd: 1.2.0
524
+
525
+ ee-first@1.1.1: {}
526
+
527
+ encodeurl@2.0.0: {}
528
+
529
+ es-define-property@1.0.1: {}
530
+
531
+ es-errors@1.3.0: {}
532
+
533
+ es-object-atoms@1.1.1:
534
+ dependencies:
535
+ es-errors: 1.3.0
536
+
537
+ escape-html@1.0.3: {}
538
+
539
+ etag@1.8.1: {}
540
+
541
+ eventsource-parser@3.0.6: {}
542
+
543
+ eventsource@3.0.7:
544
+ dependencies:
545
+ eventsource-parser: 3.0.6
546
+
547
+ express-rate-limit@8.3.2(express@5.2.1):
548
+ dependencies:
549
+ express: 5.2.1
550
+ ip-address: 10.1.0
551
+
552
+ express@5.2.1:
553
+ dependencies:
554
+ accepts: 2.0.0
555
+ body-parser: 2.2.2
556
+ content-disposition: 1.0.1
557
+ content-type: 1.0.5
558
+ cookie: 0.7.2
559
+ cookie-signature: 1.2.2
560
+ debug: 4.4.3
561
+ depd: 2.0.0
562
+ encodeurl: 2.0.0
563
+ escape-html: 1.0.3
564
+ etag: 1.8.1
565
+ finalhandler: 2.1.1
566
+ fresh: 2.0.0
567
+ http-errors: 2.0.1
568
+ merge-descriptors: 2.0.0
569
+ mime-types: 3.0.2
570
+ on-finished: 2.4.1
571
+ once: 1.4.0
572
+ parseurl: 1.3.3
573
+ proxy-addr: 2.0.7
574
+ qs: 6.15.0
575
+ range-parser: 1.2.1
576
+ router: 2.2.0
577
+ send: 1.2.1
578
+ serve-static: 2.2.1
579
+ statuses: 2.0.2
580
+ type-is: 2.0.1
581
+ vary: 1.1.2
582
+ transitivePeerDependencies:
583
+ - supports-color
584
+
585
+ fast-deep-equal@3.1.3: {}
586
+
587
+ fast-uri@3.1.0: {}
588
+
589
+ finalhandler@2.1.1:
590
+ dependencies:
591
+ debug: 4.4.3
592
+ encodeurl: 2.0.0
593
+ escape-html: 1.0.3
594
+ on-finished: 2.4.1
595
+ parseurl: 1.3.3
596
+ statuses: 2.0.2
597
+ transitivePeerDependencies:
598
+ - supports-color
599
+
600
+ forwarded@0.2.0: {}
601
+
602
+ fresh@2.0.0: {}
603
+
604
+ function-bind@1.1.2: {}
605
+
606
+ get-intrinsic@1.3.0:
607
+ dependencies:
608
+ call-bind-apply-helpers: 1.0.2
609
+ es-define-property: 1.0.1
610
+ es-errors: 1.3.0
611
+ es-object-atoms: 1.1.1
612
+ function-bind: 1.1.2
613
+ get-proto: 1.0.1
614
+ gopd: 1.2.0
615
+ has-symbols: 1.1.0
616
+ hasown: 2.0.2
617
+ math-intrinsics: 1.1.0
618
+
619
+ get-proto@1.0.1:
620
+ dependencies:
621
+ dunder-proto: 1.0.1
622
+ es-object-atoms: 1.1.1
623
+
624
+ gopd@1.2.0: {}
625
+
626
+ has-symbols@1.1.0: {}
627
+
628
+ hasown@2.0.2:
629
+ dependencies:
630
+ function-bind: 1.1.2
631
+
632
+ hono@4.12.9: {}
633
+
634
+ http-errors@2.0.1:
635
+ dependencies:
636
+ depd: 2.0.0
637
+ inherits: 2.0.4
638
+ setprototypeof: 1.2.0
639
+ statuses: 2.0.2
640
+ toidentifier: 1.0.1
641
+
642
+ iconv-lite@0.7.2:
643
+ dependencies:
644
+ safer-buffer: 2.1.2
645
+
646
+ inherits@2.0.4: {}
647
+
648
+ ip-address@10.1.0: {}
649
+
650
+ ipaddr.js@1.9.1: {}
651
+
652
+ is-promise@4.0.0: {}
653
+
654
+ isexe@2.0.0: {}
655
+
656
+ jose@6.2.2: {}
657
+
658
+ json-schema-traverse@1.0.0: {}
659
+
660
+ json-schema-typed@8.0.2: {}
661
+
662
+ math-intrinsics@1.1.0: {}
663
+
664
+ media-typer@1.1.0: {}
665
+
666
+ merge-descriptors@2.0.0: {}
667
+
668
+ mime-db@1.54.0: {}
669
+
670
+ mime-types@3.0.2:
671
+ dependencies:
672
+ mime-db: 1.54.0
673
+
674
+ ms@2.1.3: {}
675
+
676
+ negotiator@1.0.0: {}
677
+
678
+ object-assign@4.1.1: {}
679
+
680
+ object-inspect@1.13.4: {}
681
+
682
+ on-finished@2.4.1:
683
+ dependencies:
684
+ ee-first: 1.1.1
685
+
686
+ once@1.4.0:
687
+ dependencies:
688
+ wrappy: 1.0.2
689
+
690
+ parseurl@1.3.3: {}
691
+
692
+ path-key@3.1.1: {}
693
+
694
+ path-to-regexp@8.4.1: {}
695
+
696
+ pkce-challenge@5.0.1: {}
697
+
698
+ proxy-addr@2.0.7:
699
+ dependencies:
700
+ forwarded: 0.2.0
701
+ ipaddr.js: 1.9.1
702
+
703
+ qs@6.15.0:
704
+ dependencies:
705
+ side-channel: 1.1.0
706
+
707
+ range-parser@1.2.1: {}
708
+
709
+ raw-body@3.0.2:
710
+ dependencies:
711
+ bytes: 3.1.2
712
+ http-errors: 2.0.1
713
+ iconv-lite: 0.7.2
714
+ unpipe: 1.0.0
715
+
716
+ require-from-string@2.0.2: {}
717
+
718
+ router@2.2.0:
719
+ dependencies:
720
+ debug: 4.4.3
721
+ depd: 2.0.0
722
+ is-promise: 4.0.0
723
+ parseurl: 1.3.3
724
+ path-to-regexp: 8.4.1
725
+ transitivePeerDependencies:
726
+ - supports-color
727
+
728
+ safer-buffer@2.1.2: {}
729
+
730
+ send@1.2.1:
731
+ dependencies:
732
+ debug: 4.4.3
733
+ encodeurl: 2.0.0
734
+ escape-html: 1.0.3
735
+ etag: 1.8.1
736
+ fresh: 2.0.0
737
+ http-errors: 2.0.1
738
+ mime-types: 3.0.2
739
+ ms: 2.1.3
740
+ on-finished: 2.4.1
741
+ range-parser: 1.2.1
742
+ statuses: 2.0.2
743
+ transitivePeerDependencies:
744
+ - supports-color
745
+
746
+ serve-static@2.2.1:
747
+ dependencies:
748
+ encodeurl: 2.0.0
749
+ escape-html: 1.0.3
750
+ parseurl: 1.3.3
751
+ send: 1.2.1
752
+ transitivePeerDependencies:
753
+ - supports-color
754
+
755
+ setprototypeof@1.2.0: {}
756
+
757
+ shebang-command@2.0.0:
758
+ dependencies:
759
+ shebang-regex: 3.0.0
760
+
761
+ shebang-regex@3.0.0: {}
762
+
763
+ side-channel-list@1.0.0:
764
+ dependencies:
765
+ es-errors: 1.3.0
766
+ object-inspect: 1.13.4
767
+
768
+ side-channel-map@1.0.1:
769
+ dependencies:
770
+ call-bound: 1.0.4
771
+ es-errors: 1.3.0
772
+ get-intrinsic: 1.3.0
773
+ object-inspect: 1.13.4
774
+
775
+ side-channel-weakmap@1.0.2:
776
+ dependencies:
777
+ call-bound: 1.0.4
778
+ es-errors: 1.3.0
779
+ get-intrinsic: 1.3.0
780
+ object-inspect: 1.13.4
781
+ side-channel-map: 1.0.1
782
+
783
+ side-channel@1.1.0:
784
+ dependencies:
785
+ es-errors: 1.3.0
786
+ object-inspect: 1.13.4
787
+ side-channel-list: 1.0.0
788
+ side-channel-map: 1.0.1
789
+ side-channel-weakmap: 1.0.2
790
+
791
+ statuses@2.0.2: {}
792
+
793
+ toidentifier@1.0.1: {}
794
+
795
+ type-is@2.0.1:
796
+ dependencies:
797
+ content-type: 1.0.5
798
+ media-typer: 1.1.0
799
+ mime-types: 3.0.2
800
+
801
+ typescript@5.9.3: {}
802
+
803
+ undici-types@7.18.2: {}
804
+
805
+ unpipe@1.0.0: {}
806
+
807
+ vary@1.1.2: {}
808
+
809
+ which@2.0.2:
810
+ dependencies:
811
+ isexe: 2.0.0
812
+
813
+ wrappy@1.0.2: {}
814
+
815
+ zod-to-json-schema@3.25.2(zod@4.3.6):
816
+ dependencies:
817
+ zod: 4.3.6
818
+
819
+ zod@4.3.6: {}