@7h3/protocol 0.1.2 → 0.4.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 (230) hide show
  1. package/.dockerignore +19 -0
  2. package/.github/dependabot.yml +32 -0
  3. package/.github/workflows/ci.yml +31 -0
  4. package/.github/workflows/publish.yml +59 -0
  5. package/.github/workflows/scorecard.yml +37 -0
  6. package/7h3.example.yaml +125 -0
  7. package/CHANGELOG.md +92 -0
  8. package/CONTRIBUTING.md +82 -0
  9. package/Dockerfile +73 -0
  10. package/GOVERNANCE.md +62 -0
  11. package/README.md +323 -6
  12. package/SECURITY.md +70 -0
  13. package/bench-results/replay-cache-full-1777891033256.json +10 -0
  14. package/bench-results/replay-cache-full-1777896317488.json +10 -0
  15. package/bench-results/replay-cache-full-1777900993184.json +10 -0
  16. package/bench-results/replay-cache-full-1777901019285.json +10 -0
  17. package/bench-results/replay-cache-quick-1777870170126.json +10 -0
  18. package/bench-results/signature-profiles-quick-1775875160079.json +85 -0
  19. package/bench-results/signature-profiles-quick-1775983539716.json +85 -0
  20. package/bench-results/signature-profiles-quick-1776237913190.json +85 -0
  21. package/bench-results/wire-codecs-full-1777891019803.json +93 -0
  22. package/bench-results/wire-codecs-full-1777896260964.json +93 -0
  23. package/bench-results/wire-codecs-full-1777901004247.json +93 -0
  24. package/bench-results/wire-codecs-quick-1775972879056.json +93 -0
  25. package/bench-results/wire-codecs-quick-1775983541111.json +93 -0
  26. package/bench-results/wire-codecs-quick-1776237914299.json +93 -0
  27. package/bench-results/wire-codecs-quick-1777841285236.json +93 -0
  28. package/bench-results/wire-codecs-quick-1777841321772.json +93 -0
  29. package/bench-results/wire-codecs-quick-1777841330408.json +93 -0
  30. package/bench-results/wire-codecs-quick-1777852886082.json +93 -0
  31. package/bench-results/wire-codecs-quick-1777852988773.json +93 -0
  32. package/bench-results/wire-codecs-quick-1777870188095.json +93 -0
  33. package/bench-results/wire-codecs-quick-1777870263918.json +93 -0
  34. package/bench-results/wire-codecs-quick-1777870455034.json +93 -0
  35. package/bench-results/wire-codecs-quick-1778816163081.json +93 -0
  36. package/bench-results/wire-codecs-quick-1778843936130.json +93 -0
  37. package/bin/7h3.ts +385 -0
  38. package/conformance/7h3_v0_1.json +77 -0
  39. package/conformance/7h3_v0_1_binary.json +20 -0
  40. package/conformance/aip_v0_1_binary.json +20 -0
  41. package/docker-compose.yaml +77 -0
  42. package/docs/ADOPTION_PLAN.md +120 -0
  43. package/docs/AGENTS.md +77 -0
  44. package/docs/AIP_RFC_v0.1.md +97 -0
  45. package/docs/AI_DECISION_CARD.md +122 -0
  46. package/docs/AI_RUNTIME_POLICY.json +126 -0
  47. package/docs/AI_RUNTIME_POLICY.yaml +110 -0
  48. package/docs/BACKPRESSURE_TUNING.md +65 -0
  49. package/docs/BENCHMARK_CLAIM_MATRIX.md +42 -0
  50. package/docs/BENCHMARK_REPORT_TEMPLATE.md +169 -0
  51. package/docs/BINARY_CODEC_BENCH.md +23 -0
  52. package/docs/CLEAN_CLONE_RUNBOOK.md +36 -0
  53. package/docs/CLOCK_SKEW_POLICY.md +30 -0
  54. package/docs/DISTRIBUTED_REPLAY.md +142 -0
  55. package/docs/FUZZ_CAMPAIGN.md +121 -0
  56. package/docs/GATEWAY.md +195 -0
  57. package/docs/KEY_MANAGEMENT_POLICY.md +53 -0
  58. package/docs/KEY_REVOCATION.md +69 -0
  59. package/docs/MCP_WRAPPER.md +159 -0
  60. package/docs/MIGRATION_GUIDE.md +40 -0
  61. package/docs/OPERATORS.md +184 -0
  62. package/docs/PERF_REGRESSION_POLICY.md +34 -0
  63. package/docs/PROJECT_EXAMINATION_2026-05-31.md +219 -0
  64. package/docs/RELEASE_BENCHMARK_REPORT_2026-05-15.md +135 -0
  65. package/docs/RELEASE_GATE.md +25 -0
  66. package/docs/RELEASE_NOTES_v0.1.0.md +54 -0
  67. package/docs/SECURITY_REVIEW_2026-06-05.md +165 -0
  68. package/docs/TELEMETRY.md +41 -0
  69. package/docs/THREAT_MODEL.md +89 -0
  70. package/docs/VERSIONING_POLICY.md +30 -0
  71. package/docs/assets/banner.png +0 -0
  72. package/eslint.config.js +15 -0
  73. package/fuzz/ts/harness-decode.ts +136 -0
  74. package/fuzz/ts/harness-verify.ts +121 -0
  75. package/fuzz/ts/run.ts +35 -0
  76. package/mcp-server/README.md +38 -0
  77. package/mcp-server/package-lock.json +1187 -0
  78. package/mcp-server/package.json +35 -0
  79. package/mcp-server/src/index.ts +236 -0
  80. package/mcp-server/tsconfig.json +14 -0
  81. package/package.json +79 -13
  82. package/scripts/aip-framework-quickstart.ts +110 -0
  83. package/scripts/aip-mcp-gateway.ts +38 -0
  84. package/scripts/aip-mcp-wrap-demo.ts +72 -0
  85. package/scripts/aip-quickstart.ts +60 -0
  86. package/scripts/bench-diff.ts +118 -0
  87. package/scripts/bench-protocol-e2e.ts +937 -0
  88. package/scripts/bench-protocol-openloop.ts +1397 -0
  89. package/scripts/bench-replay-cache.ts +76 -0
  90. package/scripts/bench-signature-profiles.ts +180 -0
  91. package/scripts/bench-wire-codecs.ts +161 -0
  92. package/scripts/build-binary-conformance.ts +36 -0
  93. package/scripts/build-release-dashboard.ts +175 -0
  94. package/scripts/canary-rollout.ts +38 -0
  95. package/scripts/mcpGatewayCli.test.ts +116 -0
  96. package/scripts/prepare-aip-package.ts +88 -0
  97. package/scripts/regen-conformance-sigs.ts +18 -0
  98. package/scripts/release-gate.ts +19 -0
  99. package/scripts/validate-runtime-policy.ts +18 -0
  100. package/sdk/browser/index.test.ts +162 -0
  101. package/sdk/browser/index.ts +257 -0
  102. package/sdk/browser/package.json +13 -0
  103. package/sdk/go/go.mod +3 -0
  104. package/sdk/go/http.go +135 -0
  105. package/sdk/go/protocol.go +324 -0
  106. package/sdk/go/protocol_test.go +334 -0
  107. package/sdk/go/webhook.go +136 -0
  108. package/sdk/python/README.md +18 -0
  109. package/sdk/python/protocol_7h3/__init__.py +46 -0
  110. package/sdk/python/protocol_7h3/http.py +212 -0
  111. package/sdk/python/protocol_7h3/keys.py +149 -0
  112. package/sdk/python/protocol_7h3/protocol.py +525 -0
  113. package/sdk/python/protocol_7h3/queue.py +118 -0
  114. package/sdk/python/protocol_7h3/webhook.py +116 -0
  115. package/sdk/python/pyproject.toml +40 -0
  116. package/sdk/python/tests/test_conformance.py +110 -0
  117. package/sdk/python/tests/test_http.py +305 -0
  118. package/sdk/python/tests/test_keys.py +417 -0
  119. package/sdk/python/tests/test_queue.py +120 -0
  120. package/sdk/python/tests/test_webhook.py +345 -0
  121. package/sdk/rust/Cargo.lock +371 -0
  122. package/sdk/rust/Cargo.toml +25 -0
  123. package/sdk/rust/README.md +31 -0
  124. package/sdk/rust/fuzz/Cargo.toml +29 -0
  125. package/sdk/rust/fuzz/fuzz_targets/fuzz_canonicalize.rs +46 -0
  126. package/sdk/rust/fuzz/fuzz_targets/fuzz_decode.rs +11 -0
  127. package/sdk/rust/src/bin/aip_mcp_gateway.rs +59 -0
  128. package/sdk/rust/src/http.rs +145 -0
  129. package/sdk/rust/src/keys.rs +161 -0
  130. package/sdk/rust/src/lib.rs +688 -0
  131. package/sdk/rust/src/queue.rs +79 -0
  132. package/sdk/rust/src/webhook.rs +86 -0
  133. package/sdk/rust/tests/conformance.rs +148 -0
  134. package/sdk/rust/tests/gateway.rs +130 -0
  135. package/sdk/rust/tests/http_webhook_queue.rs +201 -0
  136. package/sdk/rust/tests/keys.rs +189 -0
  137. package/src/agentAdapter.test.ts +48 -0
  138. package/src/agentAdapter.ts +56 -0
  139. package/src/auditLog.test.ts +145 -0
  140. package/src/auditLog.ts +147 -0
  141. package/src/conformance.test.ts +136 -0
  142. package/src/conformanceVectors.ts +99 -0
  143. package/src/frameworkAdapters.test.ts +290 -0
  144. package/src/frameworkAdapters.ts +261 -0
  145. package/src/gateway.test.ts +343 -0
  146. package/src/gateway.ts +171 -0
  147. package/src/grpcBinding.test.ts +211 -0
  148. package/src/grpcBinding.ts +103 -0
  149. package/src/httpBinding.test.ts +376 -0
  150. package/src/httpBinding.ts +163 -0
  151. package/src/index.ts +32 -0
  152. package/src/keyInfra.test.ts +278 -0
  153. package/src/keyInfra.ts +228 -0
  154. package/src/keyRegistry.ts +59 -0
  155. package/src/keyRotation.test.ts +78 -0
  156. package/src/keyRotation.ts +72 -0
  157. package/src/mcpGateway.test.ts +129 -0
  158. package/src/mcpGateway.ts +250 -0
  159. package/src/mcpTransports.test.ts +92 -0
  160. package/src/mcpTransports.ts +169 -0
  161. package/src/mcpWrapper.test.ts +179 -0
  162. package/src/mcpWrapper.ts +206 -0
  163. package/src/policyEnforcer.test.ts +99 -0
  164. package/src/policyEnforcer.ts +169 -0
  165. package/src/policyTelemetryFeedback.test.ts +25 -0
  166. package/src/policyTelemetryFeedback.ts +38 -0
  167. package/src/protocol.bench.ts +37 -0
  168. package/src/protocol.test.ts +155 -0
  169. package/src/protocol.ts +413 -0
  170. package/src/protocolAgent.test.ts +105 -0
  171. package/src/protocolAgent.ts +169 -0
  172. package/src/protocolBinary.test.ts +165 -0
  173. package/src/protocolBinary.ts +312 -0
  174. package/src/protocolCapabilities.ts +70 -0
  175. package/src/protocolFuzz.advanced.test.ts +235 -0
  176. package/src/protocolFuzz.test.ts +111 -0
  177. package/src/protocolNegative.test.ts +97 -0
  178. package/src/protocolReplay.test.ts +71 -0
  179. package/src/protocolReplay.ts +194 -0
  180. package/src/protocolTransport.test.ts +556 -0
  181. package/src/protocolTransport.ts +483 -0
  182. package/src/queueBinding.test.ts +130 -0
  183. package/src/queueBinding.ts +102 -0
  184. package/src/rateLimiter.test.ts +96 -0
  185. package/src/rateLimiter.ts +46 -0
  186. package/src/redisClient.ts +140 -0
  187. package/src/redisIntegration.test.ts +134 -0
  188. package/src/replayStores.test.ts +141 -0
  189. package/src/replayStores.ts +82 -0
  190. package/src/revocation.test.ts +98 -0
  191. package/src/revocation.ts +0 -0
  192. package/src/routePolicy.test.ts +87 -0
  193. package/src/routePolicy.ts +72 -0
  194. package/src/runtimePolicy.test.ts +49 -0
  195. package/src/runtimePolicy.ts +81 -0
  196. package/src/runtimePolicyManager.test.ts +29 -0
  197. package/src/runtimePolicyManager.ts +50 -0
  198. package/src/runtimePolicyPresets.ts +43 -0
  199. package/src/signedResponse.test.ts +111 -0
  200. package/src/signedResponse.ts +83 -0
  201. package/src/webhookBinding.test.ts +144 -0
  202. package/src/webhookBinding.ts +115 -0
  203. package/src/wsBinding.test.ts +221 -0
  204. package/src/wsBinding.ts +100 -0
  205. package/tsconfig.json +15 -0
  206. package/tsconfig.lib.json +23 -0
  207. package/vite.lib.config.ts +16 -0
  208. package/agentAdapter.d.ts +0 -26
  209. package/conformanceVectors.d.ts +0 -20
  210. package/frameworkAdapters.d.ts +0 -72
  211. package/index.d.ts +0 -20
  212. package/index.js +0 -1702
  213. package/keyRotation.d.ts +0 -20
  214. package/mcpGateway.d.ts +0 -37
  215. package/mcpTransports.d.ts +0 -62
  216. package/mcpWrapper.d.ts +0 -83
  217. package/policyEnforcer.d.ts +0 -50
  218. package/policyTelemetryFeedback.d.ts +0 -11
  219. package/protocol.d.ts +0 -66
  220. package/protocolAgent.d.ts +0 -58
  221. package/protocolBinary.d.ts +0 -8
  222. package/protocolCapabilities.d.ts +0 -24
  223. package/protocolReplay.d.ts +0 -35
  224. package/protocolTransport.d.ts +0 -73
  225. package/redisClient.d.ts +0 -49
  226. package/replayStores.d.ts +0 -32
  227. package/revocation.d.ts +0 -71
  228. package/runtimePolicy.d.ts +0 -24
  229. package/runtimePolicyManager.d.ts +0 -15
  230. package/runtimePolicyPresets.d.ts +0 -11
@@ -0,0 +1,1187 @@
1
+ {
2
+ "name": "@7h3/protocol-mcp",
3
+ "version": "0.1.1",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "@7h3/protocol-mcp",
9
+ "version": "0.1.1",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "@7h3/protocol": "^0.1.0",
13
+ "@modelcontextprotocol/sdk": "^1.29.0",
14
+ "zod": "^4.0.0"
15
+ },
16
+ "bin": {
17
+ "aip-mcp": "dist/index.js"
18
+ },
19
+ "devDependencies": {
20
+ "typescript": "^6.0.3"
21
+ },
22
+ "engines": {
23
+ "node": ">=20"
24
+ }
25
+ },
26
+ "node_modules/@7h3/protocol": {
27
+ "version": "0.1.2",
28
+ "resolved": "https://registry.npmjs.org/@7h3/protocol/-/protocol-0.1.2.tgz",
29
+ "integrity": "sha512-dnOyKwzrrBRBrZzukA3OgggKLf0JIJEBdgnTvepPa8mJKbTkG1Qn82sq81zVZT3FP0kPSZgvGtz+m3J3KNcSjQ==",
30
+ "license": "MIT"
31
+ },
32
+ "node_modules/@hono/node-server": {
33
+ "version": "1.19.14",
34
+ "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.14.tgz",
35
+ "integrity": "sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==",
36
+ "license": "MIT",
37
+ "engines": {
38
+ "node": ">=18.14.1"
39
+ },
40
+ "peerDependencies": {
41
+ "hono": "^4"
42
+ }
43
+ },
44
+ "node_modules/@modelcontextprotocol/sdk": {
45
+ "version": "1.29.0",
46
+ "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.29.0.tgz",
47
+ "integrity": "sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==",
48
+ "license": "MIT",
49
+ "dependencies": {
50
+ "@hono/node-server": "^1.19.9",
51
+ "ajv": "^8.17.1",
52
+ "ajv-formats": "^3.0.1",
53
+ "content-type": "^1.0.5",
54
+ "cors": "^2.8.5",
55
+ "cross-spawn": "^7.0.5",
56
+ "eventsource": "^3.0.2",
57
+ "eventsource-parser": "^3.0.0",
58
+ "express": "^5.2.1",
59
+ "express-rate-limit": "^8.2.1",
60
+ "hono": "^4.11.4",
61
+ "jose": "^6.1.3",
62
+ "json-schema-typed": "^8.0.2",
63
+ "pkce-challenge": "^5.0.0",
64
+ "raw-body": "^3.0.0",
65
+ "zod": "^3.25 || ^4.0",
66
+ "zod-to-json-schema": "^3.25.1"
67
+ },
68
+ "engines": {
69
+ "node": ">=18"
70
+ },
71
+ "peerDependencies": {
72
+ "@cfworker/json-schema": "^4.1.1",
73
+ "zod": "^3.25 || ^4.0"
74
+ },
75
+ "peerDependenciesMeta": {
76
+ "@cfworker/json-schema": {
77
+ "optional": true
78
+ },
79
+ "zod": {
80
+ "optional": false
81
+ }
82
+ }
83
+ },
84
+ "node_modules/accepts": {
85
+ "version": "2.0.0",
86
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
87
+ "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
88
+ "license": "MIT",
89
+ "dependencies": {
90
+ "mime-types": "^3.0.0",
91
+ "negotiator": "^1.0.0"
92
+ },
93
+ "engines": {
94
+ "node": ">= 0.6"
95
+ }
96
+ },
97
+ "node_modules/ajv": {
98
+ "version": "8.20.0",
99
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
100
+ "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
101
+ "license": "MIT",
102
+ "dependencies": {
103
+ "fast-deep-equal": "^3.1.3",
104
+ "fast-uri": "^3.0.1",
105
+ "json-schema-traverse": "^1.0.0",
106
+ "require-from-string": "^2.0.2"
107
+ },
108
+ "funding": {
109
+ "type": "github",
110
+ "url": "https://github.com/sponsors/epoberezkin"
111
+ }
112
+ },
113
+ "node_modules/ajv-formats": {
114
+ "version": "3.0.1",
115
+ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz",
116
+ "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
117
+ "license": "MIT",
118
+ "dependencies": {
119
+ "ajv": "^8.0.0"
120
+ },
121
+ "peerDependencies": {
122
+ "ajv": "^8.0.0"
123
+ },
124
+ "peerDependenciesMeta": {
125
+ "ajv": {
126
+ "optional": true
127
+ }
128
+ }
129
+ },
130
+ "node_modules/body-parser": {
131
+ "version": "2.2.2",
132
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
133
+ "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
134
+ "license": "MIT",
135
+ "dependencies": {
136
+ "bytes": "^3.1.2",
137
+ "content-type": "^1.0.5",
138
+ "debug": "^4.4.3",
139
+ "http-errors": "^2.0.0",
140
+ "iconv-lite": "^0.7.0",
141
+ "on-finished": "^2.4.1",
142
+ "qs": "^6.14.1",
143
+ "raw-body": "^3.0.1",
144
+ "type-is": "^2.0.1"
145
+ },
146
+ "engines": {
147
+ "node": ">=18"
148
+ },
149
+ "funding": {
150
+ "type": "opencollective",
151
+ "url": "https://opencollective.com/express"
152
+ }
153
+ },
154
+ "node_modules/bytes": {
155
+ "version": "3.1.2",
156
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
157
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
158
+ "license": "MIT",
159
+ "engines": {
160
+ "node": ">= 0.8"
161
+ }
162
+ },
163
+ "node_modules/call-bind-apply-helpers": {
164
+ "version": "1.0.2",
165
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
166
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
167
+ "license": "MIT",
168
+ "dependencies": {
169
+ "es-errors": "^1.3.0",
170
+ "function-bind": "^1.1.2"
171
+ },
172
+ "engines": {
173
+ "node": ">= 0.4"
174
+ }
175
+ },
176
+ "node_modules/call-bound": {
177
+ "version": "1.0.4",
178
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
179
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
180
+ "license": "MIT",
181
+ "dependencies": {
182
+ "call-bind-apply-helpers": "^1.0.2",
183
+ "get-intrinsic": "^1.3.0"
184
+ },
185
+ "engines": {
186
+ "node": ">= 0.4"
187
+ },
188
+ "funding": {
189
+ "url": "https://github.com/sponsors/ljharb"
190
+ }
191
+ },
192
+ "node_modules/content-disposition": {
193
+ "version": "1.1.0",
194
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz",
195
+ "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==",
196
+ "license": "MIT",
197
+ "engines": {
198
+ "node": ">=18"
199
+ },
200
+ "funding": {
201
+ "type": "opencollective",
202
+ "url": "https://opencollective.com/express"
203
+ }
204
+ },
205
+ "node_modules/content-type": {
206
+ "version": "1.0.5",
207
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
208
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
209
+ "license": "MIT",
210
+ "engines": {
211
+ "node": ">= 0.6"
212
+ }
213
+ },
214
+ "node_modules/cookie": {
215
+ "version": "0.7.2",
216
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
217
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
218
+ "license": "MIT",
219
+ "engines": {
220
+ "node": ">= 0.6"
221
+ }
222
+ },
223
+ "node_modules/cookie-signature": {
224
+ "version": "1.2.2",
225
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
226
+ "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
227
+ "license": "MIT",
228
+ "engines": {
229
+ "node": ">=6.6.0"
230
+ }
231
+ },
232
+ "node_modules/cors": {
233
+ "version": "2.8.6",
234
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
235
+ "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
236
+ "license": "MIT",
237
+ "dependencies": {
238
+ "object-assign": "^4",
239
+ "vary": "^1"
240
+ },
241
+ "engines": {
242
+ "node": ">= 0.10"
243
+ },
244
+ "funding": {
245
+ "type": "opencollective",
246
+ "url": "https://opencollective.com/express"
247
+ }
248
+ },
249
+ "node_modules/cross-spawn": {
250
+ "version": "7.0.6",
251
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
252
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
253
+ "license": "MIT",
254
+ "dependencies": {
255
+ "path-key": "^3.1.0",
256
+ "shebang-command": "^2.0.0",
257
+ "which": "^2.0.1"
258
+ },
259
+ "engines": {
260
+ "node": ">= 8"
261
+ }
262
+ },
263
+ "node_modules/debug": {
264
+ "version": "4.4.3",
265
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
266
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
267
+ "license": "MIT",
268
+ "dependencies": {
269
+ "ms": "^2.1.3"
270
+ },
271
+ "engines": {
272
+ "node": ">=6.0"
273
+ },
274
+ "peerDependenciesMeta": {
275
+ "supports-color": {
276
+ "optional": true
277
+ }
278
+ }
279
+ },
280
+ "node_modules/depd": {
281
+ "version": "2.0.0",
282
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
283
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
284
+ "license": "MIT",
285
+ "engines": {
286
+ "node": ">= 0.8"
287
+ }
288
+ },
289
+ "node_modules/dunder-proto": {
290
+ "version": "1.0.1",
291
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
292
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
293
+ "license": "MIT",
294
+ "dependencies": {
295
+ "call-bind-apply-helpers": "^1.0.1",
296
+ "es-errors": "^1.3.0",
297
+ "gopd": "^1.2.0"
298
+ },
299
+ "engines": {
300
+ "node": ">= 0.4"
301
+ }
302
+ },
303
+ "node_modules/ee-first": {
304
+ "version": "1.1.1",
305
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
306
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
307
+ "license": "MIT"
308
+ },
309
+ "node_modules/encodeurl": {
310
+ "version": "2.0.0",
311
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
312
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
313
+ "license": "MIT",
314
+ "engines": {
315
+ "node": ">= 0.8"
316
+ }
317
+ },
318
+ "node_modules/es-define-property": {
319
+ "version": "1.0.1",
320
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
321
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
322
+ "license": "MIT",
323
+ "engines": {
324
+ "node": ">= 0.4"
325
+ }
326
+ },
327
+ "node_modules/es-errors": {
328
+ "version": "1.3.0",
329
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
330
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
331
+ "license": "MIT",
332
+ "engines": {
333
+ "node": ">= 0.4"
334
+ }
335
+ },
336
+ "node_modules/es-object-atoms": {
337
+ "version": "1.1.2",
338
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
339
+ "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
340
+ "license": "MIT",
341
+ "dependencies": {
342
+ "es-errors": "^1.3.0"
343
+ },
344
+ "engines": {
345
+ "node": ">= 0.4"
346
+ }
347
+ },
348
+ "node_modules/escape-html": {
349
+ "version": "1.0.3",
350
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
351
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
352
+ "license": "MIT"
353
+ },
354
+ "node_modules/etag": {
355
+ "version": "1.8.1",
356
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
357
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
358
+ "license": "MIT",
359
+ "engines": {
360
+ "node": ">= 0.6"
361
+ }
362
+ },
363
+ "node_modules/eventsource": {
364
+ "version": "3.0.7",
365
+ "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-3.0.7.tgz",
366
+ "integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==",
367
+ "license": "MIT",
368
+ "dependencies": {
369
+ "eventsource-parser": "^3.0.1"
370
+ },
371
+ "engines": {
372
+ "node": ">=18.0.0"
373
+ }
374
+ },
375
+ "node_modules/eventsource-parser": {
376
+ "version": "3.1.0",
377
+ "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.1.0.tgz",
378
+ "integrity": "sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==",
379
+ "license": "MIT",
380
+ "engines": {
381
+ "node": ">=18.0.0"
382
+ }
383
+ },
384
+ "node_modules/express": {
385
+ "version": "5.2.1",
386
+ "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
387
+ "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
388
+ "license": "MIT",
389
+ "dependencies": {
390
+ "accepts": "^2.0.0",
391
+ "body-parser": "^2.2.1",
392
+ "content-disposition": "^1.0.0",
393
+ "content-type": "^1.0.5",
394
+ "cookie": "^0.7.1",
395
+ "cookie-signature": "^1.2.1",
396
+ "debug": "^4.4.0",
397
+ "depd": "^2.0.0",
398
+ "encodeurl": "^2.0.0",
399
+ "escape-html": "^1.0.3",
400
+ "etag": "^1.8.1",
401
+ "finalhandler": "^2.1.0",
402
+ "fresh": "^2.0.0",
403
+ "http-errors": "^2.0.0",
404
+ "merge-descriptors": "^2.0.0",
405
+ "mime-types": "^3.0.0",
406
+ "on-finished": "^2.4.1",
407
+ "once": "^1.4.0",
408
+ "parseurl": "^1.3.3",
409
+ "proxy-addr": "^2.0.7",
410
+ "qs": "^6.14.0",
411
+ "range-parser": "^1.2.1",
412
+ "router": "^2.2.0",
413
+ "send": "^1.1.0",
414
+ "serve-static": "^2.2.0",
415
+ "statuses": "^2.0.1",
416
+ "type-is": "^2.0.1",
417
+ "vary": "^1.1.2"
418
+ },
419
+ "engines": {
420
+ "node": ">= 18"
421
+ },
422
+ "funding": {
423
+ "type": "opencollective",
424
+ "url": "https://opencollective.com/express"
425
+ }
426
+ },
427
+ "node_modules/express-rate-limit": {
428
+ "version": "8.5.2",
429
+ "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.5.2.tgz",
430
+ "integrity": "sha512-5Kb34ipNX694DH48vN9irak1Qx30nb0PLYHXfJgw4YEjiC3ZEmZJhwOp+VfiCYwFzvFTdB9QkArYS5kXa2cx2A==",
431
+ "license": "MIT",
432
+ "dependencies": {
433
+ "ip-address": "^10.2.0"
434
+ },
435
+ "engines": {
436
+ "node": ">= 16"
437
+ },
438
+ "funding": {
439
+ "url": "https://github.com/sponsors/express-rate-limit"
440
+ },
441
+ "peerDependencies": {
442
+ "express": ">= 4.11"
443
+ }
444
+ },
445
+ "node_modules/fast-deep-equal": {
446
+ "version": "3.1.3",
447
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
448
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
449
+ "license": "MIT"
450
+ },
451
+ "node_modules/fast-uri": {
452
+ "version": "3.1.2",
453
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
454
+ "integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==",
455
+ "funding": [
456
+ {
457
+ "type": "github",
458
+ "url": "https://github.com/sponsors/fastify"
459
+ },
460
+ {
461
+ "type": "opencollective",
462
+ "url": "https://opencollective.com/fastify"
463
+ }
464
+ ],
465
+ "license": "BSD-3-Clause"
466
+ },
467
+ "node_modules/finalhandler": {
468
+ "version": "2.1.1",
469
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
470
+ "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
471
+ "license": "MIT",
472
+ "dependencies": {
473
+ "debug": "^4.4.0",
474
+ "encodeurl": "^2.0.0",
475
+ "escape-html": "^1.0.3",
476
+ "on-finished": "^2.4.1",
477
+ "parseurl": "^1.3.3",
478
+ "statuses": "^2.0.1"
479
+ },
480
+ "engines": {
481
+ "node": ">= 18.0.0"
482
+ },
483
+ "funding": {
484
+ "type": "opencollective",
485
+ "url": "https://opencollective.com/express"
486
+ }
487
+ },
488
+ "node_modules/forwarded": {
489
+ "version": "0.2.0",
490
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
491
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
492
+ "license": "MIT",
493
+ "engines": {
494
+ "node": ">= 0.6"
495
+ }
496
+ },
497
+ "node_modules/fresh": {
498
+ "version": "2.0.0",
499
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
500
+ "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
501
+ "license": "MIT",
502
+ "engines": {
503
+ "node": ">= 0.8"
504
+ }
505
+ },
506
+ "node_modules/function-bind": {
507
+ "version": "1.1.2",
508
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
509
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
510
+ "license": "MIT",
511
+ "funding": {
512
+ "url": "https://github.com/sponsors/ljharb"
513
+ }
514
+ },
515
+ "node_modules/get-intrinsic": {
516
+ "version": "1.3.0",
517
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
518
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
519
+ "license": "MIT",
520
+ "dependencies": {
521
+ "call-bind-apply-helpers": "^1.0.2",
522
+ "es-define-property": "^1.0.1",
523
+ "es-errors": "^1.3.0",
524
+ "es-object-atoms": "^1.1.1",
525
+ "function-bind": "^1.1.2",
526
+ "get-proto": "^1.0.1",
527
+ "gopd": "^1.2.0",
528
+ "has-symbols": "^1.1.0",
529
+ "hasown": "^2.0.2",
530
+ "math-intrinsics": "^1.1.0"
531
+ },
532
+ "engines": {
533
+ "node": ">= 0.4"
534
+ },
535
+ "funding": {
536
+ "url": "https://github.com/sponsors/ljharb"
537
+ }
538
+ },
539
+ "node_modules/get-proto": {
540
+ "version": "1.0.1",
541
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
542
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
543
+ "license": "MIT",
544
+ "dependencies": {
545
+ "dunder-proto": "^1.0.1",
546
+ "es-object-atoms": "^1.0.0"
547
+ },
548
+ "engines": {
549
+ "node": ">= 0.4"
550
+ }
551
+ },
552
+ "node_modules/gopd": {
553
+ "version": "1.2.0",
554
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
555
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
556
+ "license": "MIT",
557
+ "engines": {
558
+ "node": ">= 0.4"
559
+ },
560
+ "funding": {
561
+ "url": "https://github.com/sponsors/ljharb"
562
+ }
563
+ },
564
+ "node_modules/has-symbols": {
565
+ "version": "1.1.0",
566
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
567
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
568
+ "license": "MIT",
569
+ "engines": {
570
+ "node": ">= 0.4"
571
+ },
572
+ "funding": {
573
+ "url": "https://github.com/sponsors/ljharb"
574
+ }
575
+ },
576
+ "node_modules/hasown": {
577
+ "version": "2.0.4",
578
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
579
+ "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
580
+ "license": "MIT",
581
+ "dependencies": {
582
+ "function-bind": "^1.1.2"
583
+ },
584
+ "engines": {
585
+ "node": ">= 0.4"
586
+ }
587
+ },
588
+ "node_modules/hono": {
589
+ "version": "4.12.23",
590
+ "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.23.tgz",
591
+ "integrity": "sha512-eIaZ9qDgu7XV0pxOCrg7/WhnQ6Ivm22UcxhXx/A3dcbqbbYgBEkc6e/J/s7j2tS96zoB0S9VBdLwQNCWwUo4LA==",
592
+ "license": "MIT",
593
+ "engines": {
594
+ "node": ">=16.9.0"
595
+ }
596
+ },
597
+ "node_modules/http-errors": {
598
+ "version": "2.0.1",
599
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
600
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
601
+ "license": "MIT",
602
+ "dependencies": {
603
+ "depd": "~2.0.0",
604
+ "inherits": "~2.0.4",
605
+ "setprototypeof": "~1.2.0",
606
+ "statuses": "~2.0.2",
607
+ "toidentifier": "~1.0.1"
608
+ },
609
+ "engines": {
610
+ "node": ">= 0.8"
611
+ },
612
+ "funding": {
613
+ "type": "opencollective",
614
+ "url": "https://opencollective.com/express"
615
+ }
616
+ },
617
+ "node_modules/iconv-lite": {
618
+ "version": "0.7.2",
619
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
620
+ "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
621
+ "license": "MIT",
622
+ "dependencies": {
623
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
624
+ },
625
+ "engines": {
626
+ "node": ">=0.10.0"
627
+ },
628
+ "funding": {
629
+ "type": "opencollective",
630
+ "url": "https://opencollective.com/express"
631
+ }
632
+ },
633
+ "node_modules/inherits": {
634
+ "version": "2.0.4",
635
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
636
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
637
+ "license": "ISC"
638
+ },
639
+ "node_modules/ip-address": {
640
+ "version": "10.2.0",
641
+ "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.2.0.tgz",
642
+ "integrity": "sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA==",
643
+ "license": "MIT",
644
+ "engines": {
645
+ "node": ">= 12"
646
+ }
647
+ },
648
+ "node_modules/ipaddr.js": {
649
+ "version": "1.9.1",
650
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
651
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
652
+ "license": "MIT",
653
+ "engines": {
654
+ "node": ">= 0.10"
655
+ }
656
+ },
657
+ "node_modules/is-promise": {
658
+ "version": "4.0.0",
659
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
660
+ "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
661
+ "license": "MIT"
662
+ },
663
+ "node_modules/isexe": {
664
+ "version": "2.0.0",
665
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
666
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
667
+ "license": "ISC"
668
+ },
669
+ "node_modules/jose": {
670
+ "version": "6.2.3",
671
+ "resolved": "https://registry.npmjs.org/jose/-/jose-6.2.3.tgz",
672
+ "integrity": "sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==",
673
+ "license": "MIT",
674
+ "funding": {
675
+ "url": "https://github.com/sponsors/panva"
676
+ }
677
+ },
678
+ "node_modules/json-schema-traverse": {
679
+ "version": "1.0.0",
680
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
681
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
682
+ "license": "MIT"
683
+ },
684
+ "node_modules/json-schema-typed": {
685
+ "version": "8.0.2",
686
+ "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz",
687
+ "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==",
688
+ "license": "BSD-2-Clause"
689
+ },
690
+ "node_modules/math-intrinsics": {
691
+ "version": "1.1.0",
692
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
693
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
694
+ "license": "MIT",
695
+ "engines": {
696
+ "node": ">= 0.4"
697
+ }
698
+ },
699
+ "node_modules/media-typer": {
700
+ "version": "1.1.0",
701
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
702
+ "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
703
+ "license": "MIT",
704
+ "engines": {
705
+ "node": ">= 0.8"
706
+ }
707
+ },
708
+ "node_modules/merge-descriptors": {
709
+ "version": "2.0.0",
710
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
711
+ "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
712
+ "license": "MIT",
713
+ "engines": {
714
+ "node": ">=18"
715
+ },
716
+ "funding": {
717
+ "url": "https://github.com/sponsors/sindresorhus"
718
+ }
719
+ },
720
+ "node_modules/mime-db": {
721
+ "version": "1.54.0",
722
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
723
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
724
+ "license": "MIT",
725
+ "engines": {
726
+ "node": ">= 0.6"
727
+ }
728
+ },
729
+ "node_modules/mime-types": {
730
+ "version": "3.0.2",
731
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
732
+ "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
733
+ "license": "MIT",
734
+ "dependencies": {
735
+ "mime-db": "^1.54.0"
736
+ },
737
+ "engines": {
738
+ "node": ">=18"
739
+ },
740
+ "funding": {
741
+ "type": "opencollective",
742
+ "url": "https://opencollective.com/express"
743
+ }
744
+ },
745
+ "node_modules/ms": {
746
+ "version": "2.1.3",
747
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
748
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
749
+ "license": "MIT"
750
+ },
751
+ "node_modules/negotiator": {
752
+ "version": "1.0.0",
753
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
754
+ "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
755
+ "license": "MIT",
756
+ "engines": {
757
+ "node": ">= 0.6"
758
+ }
759
+ },
760
+ "node_modules/object-assign": {
761
+ "version": "4.1.1",
762
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
763
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
764
+ "license": "MIT",
765
+ "engines": {
766
+ "node": ">=0.10.0"
767
+ }
768
+ },
769
+ "node_modules/object-inspect": {
770
+ "version": "1.13.4",
771
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
772
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
773
+ "license": "MIT",
774
+ "engines": {
775
+ "node": ">= 0.4"
776
+ },
777
+ "funding": {
778
+ "url": "https://github.com/sponsors/ljharb"
779
+ }
780
+ },
781
+ "node_modules/on-finished": {
782
+ "version": "2.4.1",
783
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
784
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
785
+ "license": "MIT",
786
+ "dependencies": {
787
+ "ee-first": "1.1.1"
788
+ },
789
+ "engines": {
790
+ "node": ">= 0.8"
791
+ }
792
+ },
793
+ "node_modules/once": {
794
+ "version": "1.4.0",
795
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
796
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
797
+ "license": "ISC",
798
+ "dependencies": {
799
+ "wrappy": "1"
800
+ }
801
+ },
802
+ "node_modules/parseurl": {
803
+ "version": "1.3.3",
804
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
805
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
806
+ "license": "MIT",
807
+ "engines": {
808
+ "node": ">= 0.8"
809
+ }
810
+ },
811
+ "node_modules/path-key": {
812
+ "version": "3.1.1",
813
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
814
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
815
+ "license": "MIT",
816
+ "engines": {
817
+ "node": ">=8"
818
+ }
819
+ },
820
+ "node_modules/path-to-regexp": {
821
+ "version": "8.4.2",
822
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz",
823
+ "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==",
824
+ "license": "MIT",
825
+ "funding": {
826
+ "type": "opencollective",
827
+ "url": "https://opencollective.com/express"
828
+ }
829
+ },
830
+ "node_modules/pkce-challenge": {
831
+ "version": "5.0.1",
832
+ "resolved": "https://registry.npmjs.org/pkce-challenge/-/pkce-challenge-5.0.1.tgz",
833
+ "integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==",
834
+ "license": "MIT",
835
+ "engines": {
836
+ "node": ">=16.20.0"
837
+ }
838
+ },
839
+ "node_modules/proxy-addr": {
840
+ "version": "2.0.7",
841
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
842
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
843
+ "license": "MIT",
844
+ "dependencies": {
845
+ "forwarded": "0.2.0",
846
+ "ipaddr.js": "1.9.1"
847
+ },
848
+ "engines": {
849
+ "node": ">= 0.10"
850
+ }
851
+ },
852
+ "node_modules/qs": {
853
+ "version": "6.15.2",
854
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.2.tgz",
855
+ "integrity": "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==",
856
+ "license": "BSD-3-Clause",
857
+ "dependencies": {
858
+ "side-channel": "^1.1.0"
859
+ },
860
+ "engines": {
861
+ "node": ">=0.6"
862
+ },
863
+ "funding": {
864
+ "url": "https://github.com/sponsors/ljharb"
865
+ }
866
+ },
867
+ "node_modules/range-parser": {
868
+ "version": "1.2.1",
869
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
870
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
871
+ "license": "MIT",
872
+ "engines": {
873
+ "node": ">= 0.6"
874
+ }
875
+ },
876
+ "node_modules/raw-body": {
877
+ "version": "3.0.2",
878
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
879
+ "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
880
+ "license": "MIT",
881
+ "dependencies": {
882
+ "bytes": "~3.1.2",
883
+ "http-errors": "~2.0.1",
884
+ "iconv-lite": "~0.7.0",
885
+ "unpipe": "~1.0.0"
886
+ },
887
+ "engines": {
888
+ "node": ">= 0.10"
889
+ }
890
+ },
891
+ "node_modules/require-from-string": {
892
+ "version": "2.0.2",
893
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
894
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
895
+ "license": "MIT",
896
+ "engines": {
897
+ "node": ">=0.10.0"
898
+ }
899
+ },
900
+ "node_modules/router": {
901
+ "version": "2.2.0",
902
+ "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
903
+ "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
904
+ "license": "MIT",
905
+ "dependencies": {
906
+ "debug": "^4.4.0",
907
+ "depd": "^2.0.0",
908
+ "is-promise": "^4.0.0",
909
+ "parseurl": "^1.3.3",
910
+ "path-to-regexp": "^8.0.0"
911
+ },
912
+ "engines": {
913
+ "node": ">= 18"
914
+ }
915
+ },
916
+ "node_modules/safer-buffer": {
917
+ "version": "2.1.2",
918
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
919
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
920
+ "license": "MIT"
921
+ },
922
+ "node_modules/send": {
923
+ "version": "1.2.1",
924
+ "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
925
+ "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
926
+ "license": "MIT",
927
+ "dependencies": {
928
+ "debug": "^4.4.3",
929
+ "encodeurl": "^2.0.0",
930
+ "escape-html": "^1.0.3",
931
+ "etag": "^1.8.1",
932
+ "fresh": "^2.0.0",
933
+ "http-errors": "^2.0.1",
934
+ "mime-types": "^3.0.2",
935
+ "ms": "^2.1.3",
936
+ "on-finished": "^2.4.1",
937
+ "range-parser": "^1.2.1",
938
+ "statuses": "^2.0.2"
939
+ },
940
+ "engines": {
941
+ "node": ">= 18"
942
+ },
943
+ "funding": {
944
+ "type": "opencollective",
945
+ "url": "https://opencollective.com/express"
946
+ }
947
+ },
948
+ "node_modules/serve-static": {
949
+ "version": "2.2.1",
950
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
951
+ "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
952
+ "license": "MIT",
953
+ "dependencies": {
954
+ "encodeurl": "^2.0.0",
955
+ "escape-html": "^1.0.3",
956
+ "parseurl": "^1.3.3",
957
+ "send": "^1.2.0"
958
+ },
959
+ "engines": {
960
+ "node": ">= 18"
961
+ },
962
+ "funding": {
963
+ "type": "opencollective",
964
+ "url": "https://opencollective.com/express"
965
+ }
966
+ },
967
+ "node_modules/setprototypeof": {
968
+ "version": "1.2.0",
969
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
970
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
971
+ "license": "ISC"
972
+ },
973
+ "node_modules/shebang-command": {
974
+ "version": "2.0.0",
975
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
976
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
977
+ "license": "MIT",
978
+ "dependencies": {
979
+ "shebang-regex": "^3.0.0"
980
+ },
981
+ "engines": {
982
+ "node": ">=8"
983
+ }
984
+ },
985
+ "node_modules/shebang-regex": {
986
+ "version": "3.0.0",
987
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
988
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
989
+ "license": "MIT",
990
+ "engines": {
991
+ "node": ">=8"
992
+ }
993
+ },
994
+ "node_modules/side-channel": {
995
+ "version": "1.1.0",
996
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
997
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
998
+ "license": "MIT",
999
+ "dependencies": {
1000
+ "es-errors": "^1.3.0",
1001
+ "object-inspect": "^1.13.3",
1002
+ "side-channel-list": "^1.0.0",
1003
+ "side-channel-map": "^1.0.1",
1004
+ "side-channel-weakmap": "^1.0.2"
1005
+ },
1006
+ "engines": {
1007
+ "node": ">= 0.4"
1008
+ },
1009
+ "funding": {
1010
+ "url": "https://github.com/sponsors/ljharb"
1011
+ }
1012
+ },
1013
+ "node_modules/side-channel-list": {
1014
+ "version": "1.0.1",
1015
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
1016
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
1017
+ "license": "MIT",
1018
+ "dependencies": {
1019
+ "es-errors": "^1.3.0",
1020
+ "object-inspect": "^1.13.4"
1021
+ },
1022
+ "engines": {
1023
+ "node": ">= 0.4"
1024
+ },
1025
+ "funding": {
1026
+ "url": "https://github.com/sponsors/ljharb"
1027
+ }
1028
+ },
1029
+ "node_modules/side-channel-map": {
1030
+ "version": "1.0.1",
1031
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
1032
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
1033
+ "license": "MIT",
1034
+ "dependencies": {
1035
+ "call-bound": "^1.0.2",
1036
+ "es-errors": "^1.3.0",
1037
+ "get-intrinsic": "^1.2.5",
1038
+ "object-inspect": "^1.13.3"
1039
+ },
1040
+ "engines": {
1041
+ "node": ">= 0.4"
1042
+ },
1043
+ "funding": {
1044
+ "url": "https://github.com/sponsors/ljharb"
1045
+ }
1046
+ },
1047
+ "node_modules/side-channel-weakmap": {
1048
+ "version": "1.0.2",
1049
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
1050
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
1051
+ "license": "MIT",
1052
+ "dependencies": {
1053
+ "call-bound": "^1.0.2",
1054
+ "es-errors": "^1.3.0",
1055
+ "get-intrinsic": "^1.2.5",
1056
+ "object-inspect": "^1.13.3",
1057
+ "side-channel-map": "^1.0.1"
1058
+ },
1059
+ "engines": {
1060
+ "node": ">= 0.4"
1061
+ },
1062
+ "funding": {
1063
+ "url": "https://github.com/sponsors/ljharb"
1064
+ }
1065
+ },
1066
+ "node_modules/statuses": {
1067
+ "version": "2.0.2",
1068
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
1069
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
1070
+ "license": "MIT",
1071
+ "engines": {
1072
+ "node": ">= 0.8"
1073
+ }
1074
+ },
1075
+ "node_modules/toidentifier": {
1076
+ "version": "1.0.1",
1077
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
1078
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
1079
+ "license": "MIT",
1080
+ "engines": {
1081
+ "node": ">=0.6"
1082
+ }
1083
+ },
1084
+ "node_modules/type-is": {
1085
+ "version": "2.1.0",
1086
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.1.0.tgz",
1087
+ "integrity": "sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==",
1088
+ "license": "MIT",
1089
+ "dependencies": {
1090
+ "content-type": "^2.0.0",
1091
+ "media-typer": "^1.1.0",
1092
+ "mime-types": "^3.0.0"
1093
+ },
1094
+ "engines": {
1095
+ "node": ">= 18"
1096
+ },
1097
+ "funding": {
1098
+ "type": "opencollective",
1099
+ "url": "https://opencollective.com/express"
1100
+ }
1101
+ },
1102
+ "node_modules/type-is/node_modules/content-type": {
1103
+ "version": "2.0.0",
1104
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
1105
+ "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
1106
+ "license": "MIT",
1107
+ "engines": {
1108
+ "node": ">=18"
1109
+ },
1110
+ "funding": {
1111
+ "type": "opencollective",
1112
+ "url": "https://opencollective.com/express"
1113
+ }
1114
+ },
1115
+ "node_modules/typescript": {
1116
+ "version": "6.0.3",
1117
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
1118
+ "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
1119
+ "dev": true,
1120
+ "license": "Apache-2.0",
1121
+ "bin": {
1122
+ "tsc": "bin/tsc",
1123
+ "tsserver": "bin/tsserver"
1124
+ },
1125
+ "engines": {
1126
+ "node": ">=14.17"
1127
+ }
1128
+ },
1129
+ "node_modules/unpipe": {
1130
+ "version": "1.0.0",
1131
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
1132
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
1133
+ "license": "MIT",
1134
+ "engines": {
1135
+ "node": ">= 0.8"
1136
+ }
1137
+ },
1138
+ "node_modules/vary": {
1139
+ "version": "1.1.2",
1140
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
1141
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
1142
+ "license": "MIT",
1143
+ "engines": {
1144
+ "node": ">= 0.8"
1145
+ }
1146
+ },
1147
+ "node_modules/which": {
1148
+ "version": "2.0.2",
1149
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
1150
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
1151
+ "license": "ISC",
1152
+ "dependencies": {
1153
+ "isexe": "^2.0.0"
1154
+ },
1155
+ "bin": {
1156
+ "node-which": "bin/node-which"
1157
+ },
1158
+ "engines": {
1159
+ "node": ">= 8"
1160
+ }
1161
+ },
1162
+ "node_modules/wrappy": {
1163
+ "version": "1.0.2",
1164
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
1165
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
1166
+ "license": "ISC"
1167
+ },
1168
+ "node_modules/zod": {
1169
+ "version": "4.4.3",
1170
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
1171
+ "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
1172
+ "license": "MIT",
1173
+ "funding": {
1174
+ "url": "https://github.com/sponsors/colinhacks"
1175
+ }
1176
+ },
1177
+ "node_modules/zod-to-json-schema": {
1178
+ "version": "3.25.2",
1179
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz",
1180
+ "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==",
1181
+ "license": "ISC",
1182
+ "peerDependencies": {
1183
+ "zod": "^3.25.28 || ^4"
1184
+ }
1185
+ }
1186
+ }
1187
+ }