@saccolabs/tars 1.0.7

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 (99) hide show
  1. package/README.md +93 -0
  2. package/context/GEMINI.md +13 -0
  3. package/context/config/settings.json-template +36 -0
  4. package/context/skills/create-extension/SKILL.md +90 -0
  5. package/context/skills/create-skill/SKILL.md +33 -0
  6. package/context/skills/manage-extensions/SKILL.md +69 -0
  7. package/context/skills/tars-ops/SKILL.md +89 -0
  8. package/dist/cli/commands/discord.d.ts +4 -0
  9. package/dist/cli/commands/discord.js +48 -0
  10. package/dist/cli/commands/discord.js.map +1 -0
  11. package/dist/cli/commands/export.d.ts +3 -0
  12. package/dist/cli/commands/export.js +39 -0
  13. package/dist/cli/commands/export.js.map +1 -0
  14. package/dist/cli/commands/import.d.ts +1 -0
  15. package/dist/cli/commands/import.js +45 -0
  16. package/dist/cli/commands/import.js.map +1 -0
  17. package/dist/cli/commands/logs.d.ts +4 -0
  18. package/dist/cli/commands/logs.js +23 -0
  19. package/dist/cli/commands/logs.js.map +1 -0
  20. package/dist/cli/commands/memory.d.ts +1 -0
  21. package/dist/cli/commands/memory.js +35 -0
  22. package/dist/cli/commands/memory.js.map +1 -0
  23. package/dist/cli/commands/secret.d.ts +6 -0
  24. package/dist/cli/commands/secret.js +46 -0
  25. package/dist/cli/commands/secret.js.map +1 -0
  26. package/dist/cli/commands/setup.d.ts +4 -0
  27. package/dist/cli/commands/setup.js +329 -0
  28. package/dist/cli/commands/setup.js.map +1 -0
  29. package/dist/cli/commands/start.d.ts +1 -0
  30. package/dist/cli/commands/start.js +42 -0
  31. package/dist/cli/commands/start.js.map +1 -0
  32. package/dist/cli/commands/status.d.ts +1 -0
  33. package/dist/cli/commands/status.js +56 -0
  34. package/dist/cli/commands/status.js.map +1 -0
  35. package/dist/cli/commands/stop.d.ts +1 -0
  36. package/dist/cli/commands/stop.js +38 -0
  37. package/dist/cli/commands/stop.js.map +1 -0
  38. package/dist/cli/commands/uninstall.d.ts +1 -0
  39. package/dist/cli/commands/uninstall.js +91 -0
  40. package/dist/cli/commands/uninstall.js.map +1 -0
  41. package/dist/cli/index.d.ts +2 -0
  42. package/dist/cli/index.js +54 -0
  43. package/dist/cli/index.js.map +1 -0
  44. package/dist/config/config.d.ts +14 -0
  45. package/dist/config/config.js +69 -0
  46. package/dist/config/config.js.map +1 -0
  47. package/dist/discord/discord-bot.d.ts +32 -0
  48. package/dist/discord/discord-bot.js +151 -0
  49. package/dist/discord/discord-bot.js.map +1 -0
  50. package/dist/discord/message-formatter.d.ts +95 -0
  51. package/dist/discord/message-formatter.js +448 -0
  52. package/dist/discord/message-formatter.js.map +1 -0
  53. package/dist/memory/knowledge-store.d.ts +24 -0
  54. package/dist/memory/knowledge-store.js +126 -0
  55. package/dist/memory/knowledge-store.js.map +1 -0
  56. package/dist/memory/memory-manager.d.ts +24 -0
  57. package/dist/memory/memory-manager.js +101 -0
  58. package/dist/memory/memory-manager.js.map +1 -0
  59. package/dist/scripts/debug-cli.d.ts +1 -0
  60. package/dist/scripts/debug-cli.js +52 -0
  61. package/dist/scripts/debug-cli.js.map +1 -0
  62. package/dist/supervisor/gemini-cli.d.ts +28 -0
  63. package/dist/supervisor/gemini-cli.js +315 -0
  64. package/dist/supervisor/gemini-cli.js.map +1 -0
  65. package/dist/supervisor/heartbeat-service.d.ts +21 -0
  66. package/dist/supervisor/heartbeat-service.js +143 -0
  67. package/dist/supervisor/heartbeat-service.js.map +1 -0
  68. package/dist/supervisor/main.d.ts +1 -0
  69. package/dist/supervisor/main.js +242 -0
  70. package/dist/supervisor/main.js.map +1 -0
  71. package/dist/supervisor/session-manager.d.ts +47 -0
  72. package/dist/supervisor/session-manager.js +118 -0
  73. package/dist/supervisor/session-manager.js.map +1 -0
  74. package/dist/supervisor/supervisor.d.ts +32 -0
  75. package/dist/supervisor/supervisor.js +98 -0
  76. package/dist/supervisor/supervisor.js.map +1 -0
  77. package/dist/types/index.d.ts +42 -0
  78. package/dist/types/index.js +5 -0
  79. package/dist/types/index.js.map +1 -0
  80. package/dist/utils/attachment-processor.d.ts +22 -0
  81. package/dist/utils/attachment-processor.js +79 -0
  82. package/dist/utils/attachment-processor.js.map +1 -0
  83. package/dist/utils/logger.d.ts +6 -0
  84. package/dist/utils/logger.js +15 -0
  85. package/dist/utils/logger.js.map +1 -0
  86. package/dist/utils/secrets-manager.d.ts +27 -0
  87. package/dist/utils/secrets-manager.js +79 -0
  88. package/dist/utils/secrets-manager.js.map +1 -0
  89. package/dist/utils/version.d.ts +3 -0
  90. package/dist/utils/version.js +23 -0
  91. package/dist/utils/version.js.map +1 -0
  92. package/extensions/tasks/gemini-extension.json +14 -0
  93. package/extensions/tasks/package-lock.json +1209 -0
  94. package/extensions/tasks/package.json +19 -0
  95. package/extensions/tasks/src/server.ts +265 -0
  96. package/extensions/tasks/src/store.ts +92 -0
  97. package/extensions/tasks/tsconfig.json +14 -0
  98. package/package.json +55 -0
  99. package/src/prompts/system.md +25 -0
@@ -0,0 +1,1209 @@
1
+ {
2
+ "name": "tars-tasks",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "tars-tasks",
9
+ "version": "1.0.0",
10
+ "dependencies": {
11
+ "@modelcontextprotocol/sdk": "^1.0.1",
12
+ "cron-parser": "^5.4.0",
13
+ "uuid": "^13.0.0"
14
+ },
15
+ "devDependencies": {
16
+ "@types/node": "^22.10.2",
17
+ "typescript": "^5.7.2"
18
+ }
19
+ },
20
+ "node_modules/@hono/node-server": {
21
+ "version": "1.19.9",
22
+ "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.9.tgz",
23
+ "integrity": "sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw==",
24
+ "license": "MIT",
25
+ "engines": {
26
+ "node": ">=18.14.1"
27
+ },
28
+ "peerDependencies": {
29
+ "hono": "^4"
30
+ }
31
+ },
32
+ "node_modules/@modelcontextprotocol/sdk": {
33
+ "version": "1.26.0",
34
+ "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.26.0.tgz",
35
+ "integrity": "sha512-Y5RmPncpiDtTXDbLKswIJzTqu2hyBKxTNsgKqKclDbhIgg1wgtf1fRuvxgTnRfcnxtvvgbIEcqUOzZrJ6iSReg==",
36
+ "license": "MIT",
37
+ "dependencies": {
38
+ "@hono/node-server": "^1.19.9",
39
+ "ajv": "^8.17.1",
40
+ "ajv-formats": "^3.0.1",
41
+ "content-type": "^1.0.5",
42
+ "cors": "^2.8.5",
43
+ "cross-spawn": "^7.0.5",
44
+ "eventsource": "^3.0.2",
45
+ "eventsource-parser": "^3.0.0",
46
+ "express": "^5.2.1",
47
+ "express-rate-limit": "^8.2.1",
48
+ "hono": "^4.11.4",
49
+ "jose": "^6.1.3",
50
+ "json-schema-typed": "^8.0.2",
51
+ "pkce-challenge": "^5.0.0",
52
+ "raw-body": "^3.0.0",
53
+ "zod": "^3.25 || ^4.0",
54
+ "zod-to-json-schema": "^3.25.1"
55
+ },
56
+ "engines": {
57
+ "node": ">=18"
58
+ },
59
+ "peerDependencies": {
60
+ "@cfworker/json-schema": "^4.1.1",
61
+ "zod": "^3.25 || ^4.0"
62
+ },
63
+ "peerDependenciesMeta": {
64
+ "@cfworker/json-schema": {
65
+ "optional": true
66
+ },
67
+ "zod": {
68
+ "optional": false
69
+ }
70
+ }
71
+ },
72
+ "node_modules/@types/node": {
73
+ "version": "22.19.11",
74
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.11.tgz",
75
+ "integrity": "sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==",
76
+ "dev": true,
77
+ "license": "MIT",
78
+ "dependencies": {
79
+ "undici-types": "~6.21.0"
80
+ }
81
+ },
82
+ "node_modules/accepts": {
83
+ "version": "2.0.0",
84
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
85
+ "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
86
+ "license": "MIT",
87
+ "dependencies": {
88
+ "mime-types": "^3.0.0",
89
+ "negotiator": "^1.0.0"
90
+ },
91
+ "engines": {
92
+ "node": ">= 0.6"
93
+ }
94
+ },
95
+ "node_modules/ajv": {
96
+ "version": "8.18.0",
97
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz",
98
+ "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==",
99
+ "license": "MIT",
100
+ "dependencies": {
101
+ "fast-deep-equal": "^3.1.3",
102
+ "fast-uri": "^3.0.1",
103
+ "json-schema-traverse": "^1.0.0",
104
+ "require-from-string": "^2.0.2"
105
+ },
106
+ "funding": {
107
+ "type": "github",
108
+ "url": "https://github.com/sponsors/epoberezkin"
109
+ }
110
+ },
111
+ "node_modules/ajv-formats": {
112
+ "version": "3.0.1",
113
+ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz",
114
+ "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
115
+ "license": "MIT",
116
+ "dependencies": {
117
+ "ajv": "^8.0.0"
118
+ },
119
+ "peerDependencies": {
120
+ "ajv": "^8.0.0"
121
+ },
122
+ "peerDependenciesMeta": {
123
+ "ajv": {
124
+ "optional": true
125
+ }
126
+ }
127
+ },
128
+ "node_modules/body-parser": {
129
+ "version": "2.2.2",
130
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
131
+ "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
132
+ "license": "MIT",
133
+ "dependencies": {
134
+ "bytes": "^3.1.2",
135
+ "content-type": "^1.0.5",
136
+ "debug": "^4.4.3",
137
+ "http-errors": "^2.0.0",
138
+ "iconv-lite": "^0.7.0",
139
+ "on-finished": "^2.4.1",
140
+ "qs": "^6.14.1",
141
+ "raw-body": "^3.0.1",
142
+ "type-is": "^2.0.1"
143
+ },
144
+ "engines": {
145
+ "node": ">=18"
146
+ },
147
+ "funding": {
148
+ "type": "opencollective",
149
+ "url": "https://opencollective.com/express"
150
+ }
151
+ },
152
+ "node_modules/bytes": {
153
+ "version": "3.1.2",
154
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
155
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
156
+ "license": "MIT",
157
+ "engines": {
158
+ "node": ">= 0.8"
159
+ }
160
+ },
161
+ "node_modules/call-bind-apply-helpers": {
162
+ "version": "1.0.2",
163
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
164
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
165
+ "license": "MIT",
166
+ "dependencies": {
167
+ "es-errors": "^1.3.0",
168
+ "function-bind": "^1.1.2"
169
+ },
170
+ "engines": {
171
+ "node": ">= 0.4"
172
+ }
173
+ },
174
+ "node_modules/call-bound": {
175
+ "version": "1.0.4",
176
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
177
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
178
+ "license": "MIT",
179
+ "dependencies": {
180
+ "call-bind-apply-helpers": "^1.0.2",
181
+ "get-intrinsic": "^1.3.0"
182
+ },
183
+ "engines": {
184
+ "node": ">= 0.4"
185
+ },
186
+ "funding": {
187
+ "url": "https://github.com/sponsors/ljharb"
188
+ }
189
+ },
190
+ "node_modules/content-disposition": {
191
+ "version": "1.0.1",
192
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.1.tgz",
193
+ "integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==",
194
+ "license": "MIT",
195
+ "engines": {
196
+ "node": ">=18"
197
+ },
198
+ "funding": {
199
+ "type": "opencollective",
200
+ "url": "https://opencollective.com/express"
201
+ }
202
+ },
203
+ "node_modules/content-type": {
204
+ "version": "1.0.5",
205
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
206
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
207
+ "license": "MIT",
208
+ "engines": {
209
+ "node": ">= 0.6"
210
+ }
211
+ },
212
+ "node_modules/cookie": {
213
+ "version": "0.7.2",
214
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
215
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
216
+ "license": "MIT",
217
+ "engines": {
218
+ "node": ">= 0.6"
219
+ }
220
+ },
221
+ "node_modules/cookie-signature": {
222
+ "version": "1.2.2",
223
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
224
+ "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
225
+ "license": "MIT",
226
+ "engines": {
227
+ "node": ">=6.6.0"
228
+ }
229
+ },
230
+ "node_modules/cors": {
231
+ "version": "2.8.6",
232
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
233
+ "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
234
+ "license": "MIT",
235
+ "dependencies": {
236
+ "object-assign": "^4",
237
+ "vary": "^1"
238
+ },
239
+ "engines": {
240
+ "node": ">= 0.10"
241
+ },
242
+ "funding": {
243
+ "type": "opencollective",
244
+ "url": "https://opencollective.com/express"
245
+ }
246
+ },
247
+ "node_modules/cron-parser": {
248
+ "version": "5.5.0",
249
+ "resolved": "https://registry.npmjs.org/cron-parser/-/cron-parser-5.5.0.tgz",
250
+ "integrity": "sha512-oML4lKUXxizYswqmxuOCpgFS8BNUJpIu6k/2HVHyaL8Ynnf3wdf9tkns0yRdJLSIjkJ+b0DXHMZEHGpMwjnPww==",
251
+ "license": "MIT",
252
+ "dependencies": {
253
+ "luxon": "^3.7.1"
254
+ },
255
+ "engines": {
256
+ "node": ">=18"
257
+ }
258
+ },
259
+ "node_modules/cross-spawn": {
260
+ "version": "7.0.6",
261
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
262
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
263
+ "license": "MIT",
264
+ "dependencies": {
265
+ "path-key": "^3.1.0",
266
+ "shebang-command": "^2.0.0",
267
+ "which": "^2.0.1"
268
+ },
269
+ "engines": {
270
+ "node": ">= 8"
271
+ }
272
+ },
273
+ "node_modules/debug": {
274
+ "version": "4.4.3",
275
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
276
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
277
+ "license": "MIT",
278
+ "dependencies": {
279
+ "ms": "^2.1.3"
280
+ },
281
+ "engines": {
282
+ "node": ">=6.0"
283
+ },
284
+ "peerDependenciesMeta": {
285
+ "supports-color": {
286
+ "optional": true
287
+ }
288
+ }
289
+ },
290
+ "node_modules/depd": {
291
+ "version": "2.0.0",
292
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
293
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
294
+ "license": "MIT",
295
+ "engines": {
296
+ "node": ">= 0.8"
297
+ }
298
+ },
299
+ "node_modules/dunder-proto": {
300
+ "version": "1.0.1",
301
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
302
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
303
+ "license": "MIT",
304
+ "dependencies": {
305
+ "call-bind-apply-helpers": "^1.0.1",
306
+ "es-errors": "^1.3.0",
307
+ "gopd": "^1.2.0"
308
+ },
309
+ "engines": {
310
+ "node": ">= 0.4"
311
+ }
312
+ },
313
+ "node_modules/ee-first": {
314
+ "version": "1.1.1",
315
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
316
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
317
+ "license": "MIT"
318
+ },
319
+ "node_modules/encodeurl": {
320
+ "version": "2.0.0",
321
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
322
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
323
+ "license": "MIT",
324
+ "engines": {
325
+ "node": ">= 0.8"
326
+ }
327
+ },
328
+ "node_modules/es-define-property": {
329
+ "version": "1.0.1",
330
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
331
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
332
+ "license": "MIT",
333
+ "engines": {
334
+ "node": ">= 0.4"
335
+ }
336
+ },
337
+ "node_modules/es-errors": {
338
+ "version": "1.3.0",
339
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
340
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
341
+ "license": "MIT",
342
+ "engines": {
343
+ "node": ">= 0.4"
344
+ }
345
+ },
346
+ "node_modules/es-object-atoms": {
347
+ "version": "1.1.1",
348
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
349
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
350
+ "license": "MIT",
351
+ "dependencies": {
352
+ "es-errors": "^1.3.0"
353
+ },
354
+ "engines": {
355
+ "node": ">= 0.4"
356
+ }
357
+ },
358
+ "node_modules/escape-html": {
359
+ "version": "1.0.3",
360
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
361
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
362
+ "license": "MIT"
363
+ },
364
+ "node_modules/etag": {
365
+ "version": "1.8.1",
366
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
367
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
368
+ "license": "MIT",
369
+ "engines": {
370
+ "node": ">= 0.6"
371
+ }
372
+ },
373
+ "node_modules/eventsource": {
374
+ "version": "3.0.7",
375
+ "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-3.0.7.tgz",
376
+ "integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==",
377
+ "license": "MIT",
378
+ "dependencies": {
379
+ "eventsource-parser": "^3.0.1"
380
+ },
381
+ "engines": {
382
+ "node": ">=18.0.0"
383
+ }
384
+ },
385
+ "node_modules/eventsource-parser": {
386
+ "version": "3.0.6",
387
+ "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.6.tgz",
388
+ "integrity": "sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==",
389
+ "license": "MIT",
390
+ "engines": {
391
+ "node": ">=18.0.0"
392
+ }
393
+ },
394
+ "node_modules/express": {
395
+ "version": "5.2.1",
396
+ "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
397
+ "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
398
+ "license": "MIT",
399
+ "dependencies": {
400
+ "accepts": "^2.0.0",
401
+ "body-parser": "^2.2.1",
402
+ "content-disposition": "^1.0.0",
403
+ "content-type": "^1.0.5",
404
+ "cookie": "^0.7.1",
405
+ "cookie-signature": "^1.2.1",
406
+ "debug": "^4.4.0",
407
+ "depd": "^2.0.0",
408
+ "encodeurl": "^2.0.0",
409
+ "escape-html": "^1.0.3",
410
+ "etag": "^1.8.1",
411
+ "finalhandler": "^2.1.0",
412
+ "fresh": "^2.0.0",
413
+ "http-errors": "^2.0.0",
414
+ "merge-descriptors": "^2.0.0",
415
+ "mime-types": "^3.0.0",
416
+ "on-finished": "^2.4.1",
417
+ "once": "^1.4.0",
418
+ "parseurl": "^1.3.3",
419
+ "proxy-addr": "^2.0.7",
420
+ "qs": "^6.14.0",
421
+ "range-parser": "^1.2.1",
422
+ "router": "^2.2.0",
423
+ "send": "^1.1.0",
424
+ "serve-static": "^2.2.0",
425
+ "statuses": "^2.0.1",
426
+ "type-is": "^2.0.1",
427
+ "vary": "^1.1.2"
428
+ },
429
+ "engines": {
430
+ "node": ">= 18"
431
+ },
432
+ "funding": {
433
+ "type": "opencollective",
434
+ "url": "https://opencollective.com/express"
435
+ }
436
+ },
437
+ "node_modules/express-rate-limit": {
438
+ "version": "8.2.1",
439
+ "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.2.1.tgz",
440
+ "integrity": "sha512-PCZEIEIxqwhzw4KF0n7QF4QqruVTcF73O5kFKUnGOyjbCCgizBBiFaYpd/fnBLUMPw/BWw9OsiN7GgrNYr7j6g==",
441
+ "license": "MIT",
442
+ "dependencies": {
443
+ "ip-address": "10.0.1"
444
+ },
445
+ "engines": {
446
+ "node": ">= 16"
447
+ },
448
+ "funding": {
449
+ "url": "https://github.com/sponsors/express-rate-limit"
450
+ },
451
+ "peerDependencies": {
452
+ "express": ">= 4.11"
453
+ }
454
+ },
455
+ "node_modules/fast-deep-equal": {
456
+ "version": "3.1.3",
457
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
458
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
459
+ "license": "MIT"
460
+ },
461
+ "node_modules/fast-uri": {
462
+ "version": "3.1.0",
463
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz",
464
+ "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
465
+ "funding": [
466
+ {
467
+ "type": "github",
468
+ "url": "https://github.com/sponsors/fastify"
469
+ },
470
+ {
471
+ "type": "opencollective",
472
+ "url": "https://opencollective.com/fastify"
473
+ }
474
+ ],
475
+ "license": "BSD-3-Clause"
476
+ },
477
+ "node_modules/finalhandler": {
478
+ "version": "2.1.1",
479
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
480
+ "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
481
+ "license": "MIT",
482
+ "dependencies": {
483
+ "debug": "^4.4.0",
484
+ "encodeurl": "^2.0.0",
485
+ "escape-html": "^1.0.3",
486
+ "on-finished": "^2.4.1",
487
+ "parseurl": "^1.3.3",
488
+ "statuses": "^2.0.1"
489
+ },
490
+ "engines": {
491
+ "node": ">= 18.0.0"
492
+ },
493
+ "funding": {
494
+ "type": "opencollective",
495
+ "url": "https://opencollective.com/express"
496
+ }
497
+ },
498
+ "node_modules/forwarded": {
499
+ "version": "0.2.0",
500
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
501
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
502
+ "license": "MIT",
503
+ "engines": {
504
+ "node": ">= 0.6"
505
+ }
506
+ },
507
+ "node_modules/fresh": {
508
+ "version": "2.0.0",
509
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
510
+ "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
511
+ "license": "MIT",
512
+ "engines": {
513
+ "node": ">= 0.8"
514
+ }
515
+ },
516
+ "node_modules/function-bind": {
517
+ "version": "1.1.2",
518
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
519
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
520
+ "license": "MIT",
521
+ "funding": {
522
+ "url": "https://github.com/sponsors/ljharb"
523
+ }
524
+ },
525
+ "node_modules/get-intrinsic": {
526
+ "version": "1.3.0",
527
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
528
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
529
+ "license": "MIT",
530
+ "dependencies": {
531
+ "call-bind-apply-helpers": "^1.0.2",
532
+ "es-define-property": "^1.0.1",
533
+ "es-errors": "^1.3.0",
534
+ "es-object-atoms": "^1.1.1",
535
+ "function-bind": "^1.1.2",
536
+ "get-proto": "^1.0.1",
537
+ "gopd": "^1.2.0",
538
+ "has-symbols": "^1.1.0",
539
+ "hasown": "^2.0.2",
540
+ "math-intrinsics": "^1.1.0"
541
+ },
542
+ "engines": {
543
+ "node": ">= 0.4"
544
+ },
545
+ "funding": {
546
+ "url": "https://github.com/sponsors/ljharb"
547
+ }
548
+ },
549
+ "node_modules/get-proto": {
550
+ "version": "1.0.1",
551
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
552
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
553
+ "license": "MIT",
554
+ "dependencies": {
555
+ "dunder-proto": "^1.0.1",
556
+ "es-object-atoms": "^1.0.0"
557
+ },
558
+ "engines": {
559
+ "node": ">= 0.4"
560
+ }
561
+ },
562
+ "node_modules/gopd": {
563
+ "version": "1.2.0",
564
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
565
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
566
+ "license": "MIT",
567
+ "engines": {
568
+ "node": ">= 0.4"
569
+ },
570
+ "funding": {
571
+ "url": "https://github.com/sponsors/ljharb"
572
+ }
573
+ },
574
+ "node_modules/has-symbols": {
575
+ "version": "1.1.0",
576
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
577
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
578
+ "license": "MIT",
579
+ "engines": {
580
+ "node": ">= 0.4"
581
+ },
582
+ "funding": {
583
+ "url": "https://github.com/sponsors/ljharb"
584
+ }
585
+ },
586
+ "node_modules/hasown": {
587
+ "version": "2.0.2",
588
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
589
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
590
+ "license": "MIT",
591
+ "dependencies": {
592
+ "function-bind": "^1.1.2"
593
+ },
594
+ "engines": {
595
+ "node": ">= 0.4"
596
+ }
597
+ },
598
+ "node_modules/hono": {
599
+ "version": "4.11.9",
600
+ "resolved": "https://registry.npmjs.org/hono/-/hono-4.11.9.tgz",
601
+ "integrity": "sha512-Eaw2YTGM6WOxA6CXbckaEvslr2Ne4NFsKrvc0v97JD5awbmeBLO5w9Ho9L9kmKonrwF9RJlW6BxT1PVv/agBHQ==",
602
+ "license": "MIT",
603
+ "engines": {
604
+ "node": ">=16.9.0"
605
+ }
606
+ },
607
+ "node_modules/http-errors": {
608
+ "version": "2.0.1",
609
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
610
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
611
+ "license": "MIT",
612
+ "dependencies": {
613
+ "depd": "~2.0.0",
614
+ "inherits": "~2.0.4",
615
+ "setprototypeof": "~1.2.0",
616
+ "statuses": "~2.0.2",
617
+ "toidentifier": "~1.0.1"
618
+ },
619
+ "engines": {
620
+ "node": ">= 0.8"
621
+ },
622
+ "funding": {
623
+ "type": "opencollective",
624
+ "url": "https://opencollective.com/express"
625
+ }
626
+ },
627
+ "node_modules/iconv-lite": {
628
+ "version": "0.7.2",
629
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
630
+ "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
631
+ "license": "MIT",
632
+ "dependencies": {
633
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
634
+ },
635
+ "engines": {
636
+ "node": ">=0.10.0"
637
+ },
638
+ "funding": {
639
+ "type": "opencollective",
640
+ "url": "https://opencollective.com/express"
641
+ }
642
+ },
643
+ "node_modules/inherits": {
644
+ "version": "2.0.4",
645
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
646
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
647
+ "license": "ISC"
648
+ },
649
+ "node_modules/ip-address": {
650
+ "version": "10.0.1",
651
+ "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.0.1.tgz",
652
+ "integrity": "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==",
653
+ "license": "MIT",
654
+ "engines": {
655
+ "node": ">= 12"
656
+ }
657
+ },
658
+ "node_modules/ipaddr.js": {
659
+ "version": "1.9.1",
660
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
661
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
662
+ "license": "MIT",
663
+ "engines": {
664
+ "node": ">= 0.10"
665
+ }
666
+ },
667
+ "node_modules/is-promise": {
668
+ "version": "4.0.0",
669
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
670
+ "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
671
+ "license": "MIT"
672
+ },
673
+ "node_modules/isexe": {
674
+ "version": "2.0.0",
675
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
676
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
677
+ "license": "ISC"
678
+ },
679
+ "node_modules/jose": {
680
+ "version": "6.1.3",
681
+ "resolved": "https://registry.npmjs.org/jose/-/jose-6.1.3.tgz",
682
+ "integrity": "sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==",
683
+ "license": "MIT",
684
+ "funding": {
685
+ "url": "https://github.com/sponsors/panva"
686
+ }
687
+ },
688
+ "node_modules/json-schema-traverse": {
689
+ "version": "1.0.0",
690
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
691
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
692
+ "license": "MIT"
693
+ },
694
+ "node_modules/json-schema-typed": {
695
+ "version": "8.0.2",
696
+ "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz",
697
+ "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==",
698
+ "license": "BSD-2-Clause"
699
+ },
700
+ "node_modules/luxon": {
701
+ "version": "3.7.2",
702
+ "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.7.2.tgz",
703
+ "integrity": "sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew==",
704
+ "license": "MIT",
705
+ "engines": {
706
+ "node": ">=12"
707
+ }
708
+ },
709
+ "node_modules/math-intrinsics": {
710
+ "version": "1.1.0",
711
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
712
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
713
+ "license": "MIT",
714
+ "engines": {
715
+ "node": ">= 0.4"
716
+ }
717
+ },
718
+ "node_modules/media-typer": {
719
+ "version": "1.1.0",
720
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
721
+ "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
722
+ "license": "MIT",
723
+ "engines": {
724
+ "node": ">= 0.8"
725
+ }
726
+ },
727
+ "node_modules/merge-descriptors": {
728
+ "version": "2.0.0",
729
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
730
+ "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
731
+ "license": "MIT",
732
+ "engines": {
733
+ "node": ">=18"
734
+ },
735
+ "funding": {
736
+ "url": "https://github.com/sponsors/sindresorhus"
737
+ }
738
+ },
739
+ "node_modules/mime-db": {
740
+ "version": "1.54.0",
741
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
742
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
743
+ "license": "MIT",
744
+ "engines": {
745
+ "node": ">= 0.6"
746
+ }
747
+ },
748
+ "node_modules/mime-types": {
749
+ "version": "3.0.2",
750
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
751
+ "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
752
+ "license": "MIT",
753
+ "dependencies": {
754
+ "mime-db": "^1.54.0"
755
+ },
756
+ "engines": {
757
+ "node": ">=18"
758
+ },
759
+ "funding": {
760
+ "type": "opencollective",
761
+ "url": "https://opencollective.com/express"
762
+ }
763
+ },
764
+ "node_modules/ms": {
765
+ "version": "2.1.3",
766
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
767
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
768
+ "license": "MIT"
769
+ },
770
+ "node_modules/negotiator": {
771
+ "version": "1.0.0",
772
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
773
+ "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
774
+ "license": "MIT",
775
+ "engines": {
776
+ "node": ">= 0.6"
777
+ }
778
+ },
779
+ "node_modules/object-assign": {
780
+ "version": "4.1.1",
781
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
782
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
783
+ "license": "MIT",
784
+ "engines": {
785
+ "node": ">=0.10.0"
786
+ }
787
+ },
788
+ "node_modules/object-inspect": {
789
+ "version": "1.13.4",
790
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
791
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
792
+ "license": "MIT",
793
+ "engines": {
794
+ "node": ">= 0.4"
795
+ },
796
+ "funding": {
797
+ "url": "https://github.com/sponsors/ljharb"
798
+ }
799
+ },
800
+ "node_modules/on-finished": {
801
+ "version": "2.4.1",
802
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
803
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
804
+ "license": "MIT",
805
+ "dependencies": {
806
+ "ee-first": "1.1.1"
807
+ },
808
+ "engines": {
809
+ "node": ">= 0.8"
810
+ }
811
+ },
812
+ "node_modules/once": {
813
+ "version": "1.4.0",
814
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
815
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
816
+ "license": "ISC",
817
+ "dependencies": {
818
+ "wrappy": "1"
819
+ }
820
+ },
821
+ "node_modules/parseurl": {
822
+ "version": "1.3.3",
823
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
824
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
825
+ "license": "MIT",
826
+ "engines": {
827
+ "node": ">= 0.8"
828
+ }
829
+ },
830
+ "node_modules/path-key": {
831
+ "version": "3.1.1",
832
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
833
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
834
+ "license": "MIT",
835
+ "engines": {
836
+ "node": ">=8"
837
+ }
838
+ },
839
+ "node_modules/path-to-regexp": {
840
+ "version": "8.3.0",
841
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz",
842
+ "integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==",
843
+ "license": "MIT",
844
+ "funding": {
845
+ "type": "opencollective",
846
+ "url": "https://opencollective.com/express"
847
+ }
848
+ },
849
+ "node_modules/pkce-challenge": {
850
+ "version": "5.0.1",
851
+ "resolved": "https://registry.npmjs.org/pkce-challenge/-/pkce-challenge-5.0.1.tgz",
852
+ "integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==",
853
+ "license": "MIT",
854
+ "engines": {
855
+ "node": ">=16.20.0"
856
+ }
857
+ },
858
+ "node_modules/proxy-addr": {
859
+ "version": "2.0.7",
860
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
861
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
862
+ "license": "MIT",
863
+ "dependencies": {
864
+ "forwarded": "0.2.0",
865
+ "ipaddr.js": "1.9.1"
866
+ },
867
+ "engines": {
868
+ "node": ">= 0.10"
869
+ }
870
+ },
871
+ "node_modules/qs": {
872
+ "version": "6.15.0",
873
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.0.tgz",
874
+ "integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==",
875
+ "license": "BSD-3-Clause",
876
+ "dependencies": {
877
+ "side-channel": "^1.1.0"
878
+ },
879
+ "engines": {
880
+ "node": ">=0.6"
881
+ },
882
+ "funding": {
883
+ "url": "https://github.com/sponsors/ljharb"
884
+ }
885
+ },
886
+ "node_modules/range-parser": {
887
+ "version": "1.2.1",
888
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
889
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
890
+ "license": "MIT",
891
+ "engines": {
892
+ "node": ">= 0.6"
893
+ }
894
+ },
895
+ "node_modules/raw-body": {
896
+ "version": "3.0.2",
897
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
898
+ "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
899
+ "license": "MIT",
900
+ "dependencies": {
901
+ "bytes": "~3.1.2",
902
+ "http-errors": "~2.0.1",
903
+ "iconv-lite": "~0.7.0",
904
+ "unpipe": "~1.0.0"
905
+ },
906
+ "engines": {
907
+ "node": ">= 0.10"
908
+ }
909
+ },
910
+ "node_modules/require-from-string": {
911
+ "version": "2.0.2",
912
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
913
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
914
+ "license": "MIT",
915
+ "engines": {
916
+ "node": ">=0.10.0"
917
+ }
918
+ },
919
+ "node_modules/router": {
920
+ "version": "2.2.0",
921
+ "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
922
+ "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
923
+ "license": "MIT",
924
+ "dependencies": {
925
+ "debug": "^4.4.0",
926
+ "depd": "^2.0.0",
927
+ "is-promise": "^4.0.0",
928
+ "parseurl": "^1.3.3",
929
+ "path-to-regexp": "^8.0.0"
930
+ },
931
+ "engines": {
932
+ "node": ">= 18"
933
+ }
934
+ },
935
+ "node_modules/safer-buffer": {
936
+ "version": "2.1.2",
937
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
938
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
939
+ "license": "MIT"
940
+ },
941
+ "node_modules/send": {
942
+ "version": "1.2.1",
943
+ "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
944
+ "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
945
+ "license": "MIT",
946
+ "dependencies": {
947
+ "debug": "^4.4.3",
948
+ "encodeurl": "^2.0.0",
949
+ "escape-html": "^1.0.3",
950
+ "etag": "^1.8.1",
951
+ "fresh": "^2.0.0",
952
+ "http-errors": "^2.0.1",
953
+ "mime-types": "^3.0.2",
954
+ "ms": "^2.1.3",
955
+ "on-finished": "^2.4.1",
956
+ "range-parser": "^1.2.1",
957
+ "statuses": "^2.0.2"
958
+ },
959
+ "engines": {
960
+ "node": ">= 18"
961
+ },
962
+ "funding": {
963
+ "type": "opencollective",
964
+ "url": "https://opencollective.com/express"
965
+ }
966
+ },
967
+ "node_modules/serve-static": {
968
+ "version": "2.2.1",
969
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
970
+ "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
971
+ "license": "MIT",
972
+ "dependencies": {
973
+ "encodeurl": "^2.0.0",
974
+ "escape-html": "^1.0.3",
975
+ "parseurl": "^1.3.3",
976
+ "send": "^1.2.0"
977
+ },
978
+ "engines": {
979
+ "node": ">= 18"
980
+ },
981
+ "funding": {
982
+ "type": "opencollective",
983
+ "url": "https://opencollective.com/express"
984
+ }
985
+ },
986
+ "node_modules/setprototypeof": {
987
+ "version": "1.2.0",
988
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
989
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
990
+ "license": "ISC"
991
+ },
992
+ "node_modules/shebang-command": {
993
+ "version": "2.0.0",
994
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
995
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
996
+ "license": "MIT",
997
+ "dependencies": {
998
+ "shebang-regex": "^3.0.0"
999
+ },
1000
+ "engines": {
1001
+ "node": ">=8"
1002
+ }
1003
+ },
1004
+ "node_modules/shebang-regex": {
1005
+ "version": "3.0.0",
1006
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
1007
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
1008
+ "license": "MIT",
1009
+ "engines": {
1010
+ "node": ">=8"
1011
+ }
1012
+ },
1013
+ "node_modules/side-channel": {
1014
+ "version": "1.1.0",
1015
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
1016
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
1017
+ "license": "MIT",
1018
+ "dependencies": {
1019
+ "es-errors": "^1.3.0",
1020
+ "object-inspect": "^1.13.3",
1021
+ "side-channel-list": "^1.0.0",
1022
+ "side-channel-map": "^1.0.1",
1023
+ "side-channel-weakmap": "^1.0.2"
1024
+ },
1025
+ "engines": {
1026
+ "node": ">= 0.4"
1027
+ },
1028
+ "funding": {
1029
+ "url": "https://github.com/sponsors/ljharb"
1030
+ }
1031
+ },
1032
+ "node_modules/side-channel-list": {
1033
+ "version": "1.0.0",
1034
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
1035
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
1036
+ "license": "MIT",
1037
+ "dependencies": {
1038
+ "es-errors": "^1.3.0",
1039
+ "object-inspect": "^1.13.3"
1040
+ },
1041
+ "engines": {
1042
+ "node": ">= 0.4"
1043
+ },
1044
+ "funding": {
1045
+ "url": "https://github.com/sponsors/ljharb"
1046
+ }
1047
+ },
1048
+ "node_modules/side-channel-map": {
1049
+ "version": "1.0.1",
1050
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
1051
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
1052
+ "license": "MIT",
1053
+ "dependencies": {
1054
+ "call-bound": "^1.0.2",
1055
+ "es-errors": "^1.3.0",
1056
+ "get-intrinsic": "^1.2.5",
1057
+ "object-inspect": "^1.13.3"
1058
+ },
1059
+ "engines": {
1060
+ "node": ">= 0.4"
1061
+ },
1062
+ "funding": {
1063
+ "url": "https://github.com/sponsors/ljharb"
1064
+ }
1065
+ },
1066
+ "node_modules/side-channel-weakmap": {
1067
+ "version": "1.0.2",
1068
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
1069
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
1070
+ "license": "MIT",
1071
+ "dependencies": {
1072
+ "call-bound": "^1.0.2",
1073
+ "es-errors": "^1.3.0",
1074
+ "get-intrinsic": "^1.2.5",
1075
+ "object-inspect": "^1.13.3",
1076
+ "side-channel-map": "^1.0.1"
1077
+ },
1078
+ "engines": {
1079
+ "node": ">= 0.4"
1080
+ },
1081
+ "funding": {
1082
+ "url": "https://github.com/sponsors/ljharb"
1083
+ }
1084
+ },
1085
+ "node_modules/statuses": {
1086
+ "version": "2.0.2",
1087
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
1088
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
1089
+ "license": "MIT",
1090
+ "engines": {
1091
+ "node": ">= 0.8"
1092
+ }
1093
+ },
1094
+ "node_modules/toidentifier": {
1095
+ "version": "1.0.1",
1096
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
1097
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
1098
+ "license": "MIT",
1099
+ "engines": {
1100
+ "node": ">=0.6"
1101
+ }
1102
+ },
1103
+ "node_modules/type-is": {
1104
+ "version": "2.0.1",
1105
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
1106
+ "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
1107
+ "license": "MIT",
1108
+ "dependencies": {
1109
+ "content-type": "^1.0.5",
1110
+ "media-typer": "^1.1.0",
1111
+ "mime-types": "^3.0.0"
1112
+ },
1113
+ "engines": {
1114
+ "node": ">= 0.6"
1115
+ }
1116
+ },
1117
+ "node_modules/typescript": {
1118
+ "version": "5.9.3",
1119
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
1120
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
1121
+ "dev": true,
1122
+ "license": "Apache-2.0",
1123
+ "bin": {
1124
+ "tsc": "bin/tsc",
1125
+ "tsserver": "bin/tsserver"
1126
+ },
1127
+ "engines": {
1128
+ "node": ">=14.17"
1129
+ }
1130
+ },
1131
+ "node_modules/undici-types": {
1132
+ "version": "6.21.0",
1133
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
1134
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
1135
+ "dev": true,
1136
+ "license": "MIT"
1137
+ },
1138
+ "node_modules/unpipe": {
1139
+ "version": "1.0.0",
1140
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
1141
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
1142
+ "license": "MIT",
1143
+ "engines": {
1144
+ "node": ">= 0.8"
1145
+ }
1146
+ },
1147
+ "node_modules/uuid": {
1148
+ "version": "13.0.0",
1149
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-13.0.0.tgz",
1150
+ "integrity": "sha512-XQegIaBTVUjSHliKqcnFqYypAd4S+WCYt5NIeRs6w/UAry7z8Y9j5ZwRRL4kzq9U3sD6v+85er9FvkEaBpji2w==",
1151
+ "funding": [
1152
+ "https://github.com/sponsors/broofa",
1153
+ "https://github.com/sponsors/ctavan"
1154
+ ],
1155
+ "license": "MIT",
1156
+ "bin": {
1157
+ "uuid": "dist-node/bin/uuid"
1158
+ }
1159
+ },
1160
+ "node_modules/vary": {
1161
+ "version": "1.1.2",
1162
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
1163
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
1164
+ "license": "MIT",
1165
+ "engines": {
1166
+ "node": ">= 0.8"
1167
+ }
1168
+ },
1169
+ "node_modules/which": {
1170
+ "version": "2.0.2",
1171
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
1172
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
1173
+ "license": "ISC",
1174
+ "dependencies": {
1175
+ "isexe": "^2.0.0"
1176
+ },
1177
+ "bin": {
1178
+ "node-which": "bin/node-which"
1179
+ },
1180
+ "engines": {
1181
+ "node": ">= 8"
1182
+ }
1183
+ },
1184
+ "node_modules/wrappy": {
1185
+ "version": "1.0.2",
1186
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
1187
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
1188
+ "license": "ISC"
1189
+ },
1190
+ "node_modules/zod": {
1191
+ "version": "4.3.6",
1192
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
1193
+ "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
1194
+ "license": "MIT",
1195
+ "funding": {
1196
+ "url": "https://github.com/sponsors/colinhacks"
1197
+ }
1198
+ },
1199
+ "node_modules/zod-to-json-schema": {
1200
+ "version": "3.25.1",
1201
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.1.tgz",
1202
+ "integrity": "sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==",
1203
+ "license": "ISC",
1204
+ "peerDependencies": {
1205
+ "zod": "^3.25 || ^4"
1206
+ }
1207
+ }
1208
+ }
1209
+ }