notioncode 0.1.1 → 0.1.3

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 (77) hide show
  1. package/README.md +10 -4
  2. package/agent-runtime-server/package-lock.json +4381 -0
  3. package/agent-runtime-server/package.json +36 -0
  4. package/agent-runtime-server/scripts/fix-node-pty.js +67 -0
  5. package/agent-runtime-server/server/agent-session-service.js +816 -0
  6. package/agent-runtime-server/server/claude-sdk.js +836 -0
  7. package/agent-runtime-server/server/cli.js +330 -0
  8. package/agent-runtime-server/server/constants/config.js +5 -0
  9. package/agent-runtime-server/server/cursor-cli.js +335 -0
  10. package/agent-runtime-server/server/database/db.js +653 -0
  11. package/agent-runtime-server/server/database/init.sql +99 -0
  12. package/agent-runtime-server/server/gemini-cli.js +460 -0
  13. package/agent-runtime-server/server/gemini-response-handler.js +79 -0
  14. package/agent-runtime-server/server/index.js +2569 -0
  15. package/agent-runtime-server/server/load-env.js +32 -0
  16. package/agent-runtime-server/server/middleware/auth.js +132 -0
  17. package/agent-runtime-server/server/openai-codex.js +512 -0
  18. package/agent-runtime-server/server/projects.js +2594 -0
  19. package/agent-runtime-server/server/providers/claude/adapter.js +278 -0
  20. package/agent-runtime-server/server/providers/codex/adapter.js +248 -0
  21. package/agent-runtime-server/server/providers/cursor/adapter.js +353 -0
  22. package/agent-runtime-server/server/providers/gemini/adapter.js +186 -0
  23. package/agent-runtime-server/server/providers/registry.js +44 -0
  24. package/agent-runtime-server/server/providers/types.js +119 -0
  25. package/agent-runtime-server/server/providers/utils.js +29 -0
  26. package/agent-runtime-server/server/routes/agent-sessions.js +238 -0
  27. package/agent-runtime-server/server/routes/agent.js +1244 -0
  28. package/agent-runtime-server/server/routes/auth.js +144 -0
  29. package/agent-runtime-server/server/routes/cli-auth.js +478 -0
  30. package/agent-runtime-server/server/routes/codex.js +329 -0
  31. package/agent-runtime-server/server/routes/commands.js +596 -0
  32. package/agent-runtime-server/server/routes/cursor.js +798 -0
  33. package/agent-runtime-server/server/routes/gemini.js +24 -0
  34. package/agent-runtime-server/server/routes/git.js +1508 -0
  35. package/agent-runtime-server/server/routes/mcp-utils.js +48 -0
  36. package/agent-runtime-server/server/routes/mcp.js +552 -0
  37. package/agent-runtime-server/server/routes/messages.js +61 -0
  38. package/agent-runtime-server/server/routes/plugins.js +307 -0
  39. package/agent-runtime-server/server/routes/projects.js +548 -0
  40. package/agent-runtime-server/server/routes/settings.js +276 -0
  41. package/agent-runtime-server/server/routes/taskmaster.js +1963 -0
  42. package/agent-runtime-server/server/routes/user.js +123 -0
  43. package/agent-runtime-server/server/services/notification-orchestrator.js +227 -0
  44. package/agent-runtime-server/server/services/vapid-keys.js +35 -0
  45. package/agent-runtime-server/server/sessionManager.js +226 -0
  46. package/agent-runtime-server/server/utils/commandParser.js +303 -0
  47. package/agent-runtime-server/server/utils/frontmatter.js +18 -0
  48. package/agent-runtime-server/server/utils/gitConfig.js +34 -0
  49. package/agent-runtime-server/server/utils/mcp-detector.js +198 -0
  50. package/agent-runtime-server/server/utils/plugin-loader.js +457 -0
  51. package/agent-runtime-server/server/utils/plugin-process-manager.js +184 -0
  52. package/agent-runtime-server/server/utils/taskmaster-websocket.js +129 -0
  53. package/agent-runtime-server/shared/modelConstants.js +12 -0
  54. package/agent-runtime-server/shared/modelConstants.test.js +34 -0
  55. package/agent-runtime-server/shared/networkHosts.js +22 -0
  56. package/agent-runtime-server/test_sdk.mjs +16 -0
  57. package/bin/bridges/darwin-x64/nocode-bridge +0 -0
  58. package/bin/{nocode-local.js → notioncode.js} +0 -0
  59. package/dist/assets/icon-CQtd7WEB.png +0 -0
  60. package/dist/assets/index-Ctr1ES45.js +1 -0
  61. package/dist/assets/index-DhCWie1Z.css +1 -0
  62. package/dist/assets/index-DzqxG7Z8.js +689 -0
  63. package/dist/index.html +46 -0
  64. package/dist/onboarding/step1_create.png +0 -0
  65. package/dist/onboarding/step2_capabilities.png +0 -0
  66. package/dist/onboarding/step2b_content_access.png +0 -0
  67. package/dist/onboarding/step2c_page_access.png +0 -0
  68. package/dist/onboarding/step3_token.png +0 -0
  69. package/dist/onboarding/step4_webhook.png +0 -0
  70. package/dist/onboarding/step6a_verify.png +0 -0
  71. package/dist/onboarding/step6b_copy_verify_token.png +0 -0
  72. package/dist/tinyfish-fish-only.png +0 -0
  73. package/lib/install.js +33 -2
  74. package/lib/start.js +157 -25
  75. package/package.json +7 -4
  76. package/src/shared/modelRegistry.d.ts +24 -0
  77. package/src/shared/modelRegistry.js +163 -0
@@ -0,0 +1,4381 @@
1
+ {
2
+ "name": "agent-runtime-server",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "agent-runtime-server",
9
+ "version": "1.0.0",
10
+ "hasInstallScript": true,
11
+ "dependencies": {
12
+ "@anthropic-ai/claude-agent-sdk": "^0.2.59",
13
+ "@iarna/toml": "^2.2.5",
14
+ "@octokit/rest": "^22.0.1",
15
+ "@openai/codex-sdk": "^0.101.0",
16
+ "bcrypt": "^6.0.0",
17
+ "better-sqlite3": "^12.6.2",
18
+ "chokidar": "^4.0.3",
19
+ "cors": "^2.8.5",
20
+ "cross-spawn": "^7.0.3",
21
+ "express": "^4.18.2",
22
+ "fuse.js": "^7.0.0",
23
+ "gray-matter": "^4.0.3",
24
+ "jsonwebtoken": "^9.0.2",
25
+ "jszip": "^3.10.1",
26
+ "mime-types": "^3.0.1",
27
+ "multer": "^2.0.1",
28
+ "node-fetch": "^2.7.0",
29
+ "node-pty": "^1.1.0-beta34",
30
+ "shell-quote": "^1.8.3",
31
+ "sqlite": "^5.1.1",
32
+ "sqlite3": "^5.1.7",
33
+ "web-push": "^3.6.7",
34
+ "ws": "^8.14.2"
35
+ }
36
+ },
37
+ "node_modules/@anthropic-ai/claude-agent-sdk": {
38
+ "version": "0.2.97",
39
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk/-/claude-agent-sdk-0.2.97.tgz",
40
+ "integrity": "sha512-754teaU0nfrn9BC0YWzPjSbJj253GfPUtuUnkrde7LGsaKtFSjEEuQJq5skJvpozqcn+B8frrtWVPkvFdnupTw==",
41
+ "license": "SEE LICENSE IN README.md",
42
+ "dependencies": {
43
+ "@anthropic-ai/sdk": "^0.80.0",
44
+ "@modelcontextprotocol/sdk": "^1.27.1"
45
+ },
46
+ "engines": {
47
+ "node": ">=18.0.0"
48
+ },
49
+ "optionalDependencies": {
50
+ "@img/sharp-darwin-arm64": "^0.34.2",
51
+ "@img/sharp-darwin-x64": "^0.34.2",
52
+ "@img/sharp-linux-arm": "^0.34.2",
53
+ "@img/sharp-linux-arm64": "^0.34.2",
54
+ "@img/sharp-linux-x64": "^0.34.2",
55
+ "@img/sharp-linuxmusl-arm64": "^0.34.2",
56
+ "@img/sharp-linuxmusl-x64": "^0.34.2",
57
+ "@img/sharp-win32-arm64": "^0.34.2",
58
+ "@img/sharp-win32-x64": "^0.34.2"
59
+ },
60
+ "peerDependencies": {
61
+ "zod": "^4.0.0"
62
+ }
63
+ },
64
+ "node_modules/@anthropic-ai/sdk": {
65
+ "version": "0.80.0",
66
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.80.0.tgz",
67
+ "integrity": "sha512-WeXLn7zNVk3yjeshn+xZHvld6AoFUOR3Sep6pSoHho5YbSi6HwcirqgPA5ccFuW8QTVJAAU7N8uQQC6Wa9TG+g==",
68
+ "license": "MIT",
69
+ "dependencies": {
70
+ "json-schema-to-ts": "^3.1.1"
71
+ },
72
+ "bin": {
73
+ "anthropic-ai-sdk": "bin/cli"
74
+ },
75
+ "peerDependencies": {
76
+ "zod": "^3.25.0 || ^4.0.0"
77
+ },
78
+ "peerDependenciesMeta": {
79
+ "zod": {
80
+ "optional": true
81
+ }
82
+ }
83
+ },
84
+ "node_modules/@babel/runtime": {
85
+ "version": "7.29.2",
86
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
87
+ "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
88
+ "license": "MIT",
89
+ "engines": {
90
+ "node": ">=6.9.0"
91
+ }
92
+ },
93
+ "node_modules/@gar/promisify": {
94
+ "version": "1.1.3",
95
+ "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz",
96
+ "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
97
+ "license": "MIT",
98
+ "optional": true
99
+ },
100
+ "node_modules/@hono/node-server": {
101
+ "version": "1.19.13",
102
+ "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.13.tgz",
103
+ "integrity": "sha512-TsQLe4i2gvoTtrHje625ngThGBySOgSK3Xo2XRYOdqGN1teR8+I7vchQC46uLJi8OF62YTYA3AhSpumtkhsaKQ==",
104
+ "license": "MIT",
105
+ "engines": {
106
+ "node": ">=18.14.1"
107
+ },
108
+ "peerDependencies": {
109
+ "hono": "^4"
110
+ }
111
+ },
112
+ "node_modules/@iarna/toml": {
113
+ "version": "2.2.5",
114
+ "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
115
+ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==",
116
+ "license": "ISC"
117
+ },
118
+ "node_modules/@img/sharp-darwin-arm64": {
119
+ "version": "0.34.5",
120
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
121
+ "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
122
+ "cpu": [
123
+ "arm64"
124
+ ],
125
+ "license": "Apache-2.0",
126
+ "optional": true,
127
+ "os": [
128
+ "darwin"
129
+ ],
130
+ "engines": {
131
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
132
+ },
133
+ "funding": {
134
+ "url": "https://opencollective.com/libvips"
135
+ },
136
+ "optionalDependencies": {
137
+ "@img/sharp-libvips-darwin-arm64": "1.2.4"
138
+ }
139
+ },
140
+ "node_modules/@img/sharp-darwin-x64": {
141
+ "version": "0.34.5",
142
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
143
+ "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
144
+ "cpu": [
145
+ "x64"
146
+ ],
147
+ "license": "Apache-2.0",
148
+ "optional": true,
149
+ "os": [
150
+ "darwin"
151
+ ],
152
+ "engines": {
153
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
154
+ },
155
+ "funding": {
156
+ "url": "https://opencollective.com/libvips"
157
+ },
158
+ "optionalDependencies": {
159
+ "@img/sharp-libvips-darwin-x64": "1.2.4"
160
+ }
161
+ },
162
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
163
+ "version": "1.2.4",
164
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
165
+ "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
166
+ "cpu": [
167
+ "arm64"
168
+ ],
169
+ "license": "LGPL-3.0-or-later",
170
+ "optional": true,
171
+ "os": [
172
+ "darwin"
173
+ ],
174
+ "funding": {
175
+ "url": "https://opencollective.com/libvips"
176
+ }
177
+ },
178
+ "node_modules/@img/sharp-libvips-darwin-x64": {
179
+ "version": "1.2.4",
180
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
181
+ "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
182
+ "cpu": [
183
+ "x64"
184
+ ],
185
+ "license": "LGPL-3.0-or-later",
186
+ "optional": true,
187
+ "os": [
188
+ "darwin"
189
+ ],
190
+ "funding": {
191
+ "url": "https://opencollective.com/libvips"
192
+ }
193
+ },
194
+ "node_modules/@img/sharp-libvips-linux-arm": {
195
+ "version": "1.2.4",
196
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
197
+ "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
198
+ "cpu": [
199
+ "arm"
200
+ ],
201
+ "license": "LGPL-3.0-or-later",
202
+ "optional": true,
203
+ "os": [
204
+ "linux"
205
+ ],
206
+ "funding": {
207
+ "url": "https://opencollective.com/libvips"
208
+ }
209
+ },
210
+ "node_modules/@img/sharp-libvips-linux-arm64": {
211
+ "version": "1.2.4",
212
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
213
+ "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
214
+ "cpu": [
215
+ "arm64"
216
+ ],
217
+ "license": "LGPL-3.0-or-later",
218
+ "optional": true,
219
+ "os": [
220
+ "linux"
221
+ ],
222
+ "funding": {
223
+ "url": "https://opencollective.com/libvips"
224
+ }
225
+ },
226
+ "node_modules/@img/sharp-libvips-linux-x64": {
227
+ "version": "1.2.4",
228
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
229
+ "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
230
+ "cpu": [
231
+ "x64"
232
+ ],
233
+ "license": "LGPL-3.0-or-later",
234
+ "optional": true,
235
+ "os": [
236
+ "linux"
237
+ ],
238
+ "funding": {
239
+ "url": "https://opencollective.com/libvips"
240
+ }
241
+ },
242
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
243
+ "version": "1.2.4",
244
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
245
+ "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
246
+ "cpu": [
247
+ "arm64"
248
+ ],
249
+ "license": "LGPL-3.0-or-later",
250
+ "optional": true,
251
+ "os": [
252
+ "linux"
253
+ ],
254
+ "funding": {
255
+ "url": "https://opencollective.com/libvips"
256
+ }
257
+ },
258
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
259
+ "version": "1.2.4",
260
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
261
+ "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
262
+ "cpu": [
263
+ "x64"
264
+ ],
265
+ "license": "LGPL-3.0-or-later",
266
+ "optional": true,
267
+ "os": [
268
+ "linux"
269
+ ],
270
+ "funding": {
271
+ "url": "https://opencollective.com/libvips"
272
+ }
273
+ },
274
+ "node_modules/@img/sharp-linux-arm": {
275
+ "version": "0.34.5",
276
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
277
+ "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
278
+ "cpu": [
279
+ "arm"
280
+ ],
281
+ "license": "Apache-2.0",
282
+ "optional": true,
283
+ "os": [
284
+ "linux"
285
+ ],
286
+ "engines": {
287
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
288
+ },
289
+ "funding": {
290
+ "url": "https://opencollective.com/libvips"
291
+ },
292
+ "optionalDependencies": {
293
+ "@img/sharp-libvips-linux-arm": "1.2.4"
294
+ }
295
+ },
296
+ "node_modules/@img/sharp-linux-arm64": {
297
+ "version": "0.34.5",
298
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
299
+ "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
300
+ "cpu": [
301
+ "arm64"
302
+ ],
303
+ "license": "Apache-2.0",
304
+ "optional": true,
305
+ "os": [
306
+ "linux"
307
+ ],
308
+ "engines": {
309
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
310
+ },
311
+ "funding": {
312
+ "url": "https://opencollective.com/libvips"
313
+ },
314
+ "optionalDependencies": {
315
+ "@img/sharp-libvips-linux-arm64": "1.2.4"
316
+ }
317
+ },
318
+ "node_modules/@img/sharp-linux-x64": {
319
+ "version": "0.34.5",
320
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
321
+ "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
322
+ "cpu": [
323
+ "x64"
324
+ ],
325
+ "license": "Apache-2.0",
326
+ "optional": true,
327
+ "os": [
328
+ "linux"
329
+ ],
330
+ "engines": {
331
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
332
+ },
333
+ "funding": {
334
+ "url": "https://opencollective.com/libvips"
335
+ },
336
+ "optionalDependencies": {
337
+ "@img/sharp-libvips-linux-x64": "1.2.4"
338
+ }
339
+ },
340
+ "node_modules/@img/sharp-linuxmusl-arm64": {
341
+ "version": "0.34.5",
342
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
343
+ "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
344
+ "cpu": [
345
+ "arm64"
346
+ ],
347
+ "license": "Apache-2.0",
348
+ "optional": true,
349
+ "os": [
350
+ "linux"
351
+ ],
352
+ "engines": {
353
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
354
+ },
355
+ "funding": {
356
+ "url": "https://opencollective.com/libvips"
357
+ },
358
+ "optionalDependencies": {
359
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
360
+ }
361
+ },
362
+ "node_modules/@img/sharp-linuxmusl-x64": {
363
+ "version": "0.34.5",
364
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
365
+ "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
366
+ "cpu": [
367
+ "x64"
368
+ ],
369
+ "license": "Apache-2.0",
370
+ "optional": true,
371
+ "os": [
372
+ "linux"
373
+ ],
374
+ "engines": {
375
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
376
+ },
377
+ "funding": {
378
+ "url": "https://opencollective.com/libvips"
379
+ },
380
+ "optionalDependencies": {
381
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.4"
382
+ }
383
+ },
384
+ "node_modules/@img/sharp-win32-arm64": {
385
+ "version": "0.34.5",
386
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
387
+ "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
388
+ "cpu": [
389
+ "arm64"
390
+ ],
391
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
392
+ "optional": true,
393
+ "os": [
394
+ "win32"
395
+ ],
396
+ "engines": {
397
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
398
+ },
399
+ "funding": {
400
+ "url": "https://opencollective.com/libvips"
401
+ }
402
+ },
403
+ "node_modules/@img/sharp-win32-x64": {
404
+ "version": "0.34.5",
405
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
406
+ "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
407
+ "cpu": [
408
+ "x64"
409
+ ],
410
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
411
+ "optional": true,
412
+ "os": [
413
+ "win32"
414
+ ],
415
+ "engines": {
416
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
417
+ },
418
+ "funding": {
419
+ "url": "https://opencollective.com/libvips"
420
+ }
421
+ },
422
+ "node_modules/@modelcontextprotocol/sdk": {
423
+ "version": "1.29.0",
424
+ "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.29.0.tgz",
425
+ "integrity": "sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==",
426
+ "license": "MIT",
427
+ "dependencies": {
428
+ "@hono/node-server": "^1.19.9",
429
+ "ajv": "^8.17.1",
430
+ "ajv-formats": "^3.0.1",
431
+ "content-type": "^1.0.5",
432
+ "cors": "^2.8.5",
433
+ "cross-spawn": "^7.0.5",
434
+ "eventsource": "^3.0.2",
435
+ "eventsource-parser": "^3.0.0",
436
+ "express": "^5.2.1",
437
+ "express-rate-limit": "^8.2.1",
438
+ "hono": "^4.11.4",
439
+ "jose": "^6.1.3",
440
+ "json-schema-typed": "^8.0.2",
441
+ "pkce-challenge": "^5.0.0",
442
+ "raw-body": "^3.0.0",
443
+ "zod": "^3.25 || ^4.0",
444
+ "zod-to-json-schema": "^3.25.1"
445
+ },
446
+ "engines": {
447
+ "node": ">=18"
448
+ },
449
+ "peerDependencies": {
450
+ "@cfworker/json-schema": "^4.1.1",
451
+ "zod": "^3.25 || ^4.0"
452
+ },
453
+ "peerDependenciesMeta": {
454
+ "@cfworker/json-schema": {
455
+ "optional": true
456
+ },
457
+ "zod": {
458
+ "optional": false
459
+ }
460
+ }
461
+ },
462
+ "node_modules/@modelcontextprotocol/sdk/node_modules/accepts": {
463
+ "version": "2.0.0",
464
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
465
+ "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
466
+ "license": "MIT",
467
+ "dependencies": {
468
+ "mime-types": "^3.0.0",
469
+ "negotiator": "^1.0.0"
470
+ },
471
+ "engines": {
472
+ "node": ">= 0.6"
473
+ }
474
+ },
475
+ "node_modules/@modelcontextprotocol/sdk/node_modules/body-parser": {
476
+ "version": "2.2.2",
477
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
478
+ "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
479
+ "license": "MIT",
480
+ "dependencies": {
481
+ "bytes": "^3.1.2",
482
+ "content-type": "^1.0.5",
483
+ "debug": "^4.4.3",
484
+ "http-errors": "^2.0.0",
485
+ "iconv-lite": "^0.7.0",
486
+ "on-finished": "^2.4.1",
487
+ "qs": "^6.14.1",
488
+ "raw-body": "^3.0.1",
489
+ "type-is": "^2.0.1"
490
+ },
491
+ "engines": {
492
+ "node": ">=18"
493
+ },
494
+ "funding": {
495
+ "type": "opencollective",
496
+ "url": "https://opencollective.com/express"
497
+ }
498
+ },
499
+ "node_modules/@modelcontextprotocol/sdk/node_modules/content-disposition": {
500
+ "version": "1.1.0",
501
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz",
502
+ "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==",
503
+ "license": "MIT",
504
+ "engines": {
505
+ "node": ">=18"
506
+ },
507
+ "funding": {
508
+ "type": "opencollective",
509
+ "url": "https://opencollective.com/express"
510
+ }
511
+ },
512
+ "node_modules/@modelcontextprotocol/sdk/node_modules/cookie-signature": {
513
+ "version": "1.2.2",
514
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
515
+ "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
516
+ "license": "MIT",
517
+ "engines": {
518
+ "node": ">=6.6.0"
519
+ }
520
+ },
521
+ "node_modules/@modelcontextprotocol/sdk/node_modules/debug": {
522
+ "version": "4.4.3",
523
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
524
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
525
+ "license": "MIT",
526
+ "dependencies": {
527
+ "ms": "^2.1.3"
528
+ },
529
+ "engines": {
530
+ "node": ">=6.0"
531
+ },
532
+ "peerDependenciesMeta": {
533
+ "supports-color": {
534
+ "optional": true
535
+ }
536
+ }
537
+ },
538
+ "node_modules/@modelcontextprotocol/sdk/node_modules/express": {
539
+ "version": "5.2.1",
540
+ "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
541
+ "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
542
+ "license": "MIT",
543
+ "dependencies": {
544
+ "accepts": "^2.0.0",
545
+ "body-parser": "^2.2.1",
546
+ "content-disposition": "^1.0.0",
547
+ "content-type": "^1.0.5",
548
+ "cookie": "^0.7.1",
549
+ "cookie-signature": "^1.2.1",
550
+ "debug": "^4.4.0",
551
+ "depd": "^2.0.0",
552
+ "encodeurl": "^2.0.0",
553
+ "escape-html": "^1.0.3",
554
+ "etag": "^1.8.1",
555
+ "finalhandler": "^2.1.0",
556
+ "fresh": "^2.0.0",
557
+ "http-errors": "^2.0.0",
558
+ "merge-descriptors": "^2.0.0",
559
+ "mime-types": "^3.0.0",
560
+ "on-finished": "^2.4.1",
561
+ "once": "^1.4.0",
562
+ "parseurl": "^1.3.3",
563
+ "proxy-addr": "^2.0.7",
564
+ "qs": "^6.14.0",
565
+ "range-parser": "^1.2.1",
566
+ "router": "^2.2.0",
567
+ "send": "^1.1.0",
568
+ "serve-static": "^2.2.0",
569
+ "statuses": "^2.0.1",
570
+ "type-is": "^2.0.1",
571
+ "vary": "^1.1.2"
572
+ },
573
+ "engines": {
574
+ "node": ">= 18"
575
+ },
576
+ "funding": {
577
+ "type": "opencollective",
578
+ "url": "https://opencollective.com/express"
579
+ }
580
+ },
581
+ "node_modules/@modelcontextprotocol/sdk/node_modules/finalhandler": {
582
+ "version": "2.1.1",
583
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
584
+ "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
585
+ "license": "MIT",
586
+ "dependencies": {
587
+ "debug": "^4.4.0",
588
+ "encodeurl": "^2.0.0",
589
+ "escape-html": "^1.0.3",
590
+ "on-finished": "^2.4.1",
591
+ "parseurl": "^1.3.3",
592
+ "statuses": "^2.0.1"
593
+ },
594
+ "engines": {
595
+ "node": ">= 18.0.0"
596
+ },
597
+ "funding": {
598
+ "type": "opencollective",
599
+ "url": "https://opencollective.com/express"
600
+ }
601
+ },
602
+ "node_modules/@modelcontextprotocol/sdk/node_modules/fresh": {
603
+ "version": "2.0.0",
604
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
605
+ "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
606
+ "license": "MIT",
607
+ "engines": {
608
+ "node": ">= 0.8"
609
+ }
610
+ },
611
+ "node_modules/@modelcontextprotocol/sdk/node_modules/iconv-lite": {
612
+ "version": "0.7.2",
613
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
614
+ "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
615
+ "license": "MIT",
616
+ "dependencies": {
617
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
618
+ },
619
+ "engines": {
620
+ "node": ">=0.10.0"
621
+ },
622
+ "funding": {
623
+ "type": "opencollective",
624
+ "url": "https://opencollective.com/express"
625
+ }
626
+ },
627
+ "node_modules/@modelcontextprotocol/sdk/node_modules/media-typer": {
628
+ "version": "1.1.0",
629
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
630
+ "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
631
+ "license": "MIT",
632
+ "engines": {
633
+ "node": ">= 0.8"
634
+ }
635
+ },
636
+ "node_modules/@modelcontextprotocol/sdk/node_modules/merge-descriptors": {
637
+ "version": "2.0.0",
638
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
639
+ "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
640
+ "license": "MIT",
641
+ "engines": {
642
+ "node": ">=18"
643
+ },
644
+ "funding": {
645
+ "url": "https://github.com/sponsors/sindresorhus"
646
+ }
647
+ },
648
+ "node_modules/@modelcontextprotocol/sdk/node_modules/ms": {
649
+ "version": "2.1.3",
650
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
651
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
652
+ "license": "MIT"
653
+ },
654
+ "node_modules/@modelcontextprotocol/sdk/node_modules/negotiator": {
655
+ "version": "1.0.0",
656
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
657
+ "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
658
+ "license": "MIT",
659
+ "engines": {
660
+ "node": ">= 0.6"
661
+ }
662
+ },
663
+ "node_modules/@modelcontextprotocol/sdk/node_modules/send": {
664
+ "version": "1.2.1",
665
+ "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
666
+ "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
667
+ "license": "MIT",
668
+ "dependencies": {
669
+ "debug": "^4.4.3",
670
+ "encodeurl": "^2.0.0",
671
+ "escape-html": "^1.0.3",
672
+ "etag": "^1.8.1",
673
+ "fresh": "^2.0.0",
674
+ "http-errors": "^2.0.1",
675
+ "mime-types": "^3.0.2",
676
+ "ms": "^2.1.3",
677
+ "on-finished": "^2.4.1",
678
+ "range-parser": "^1.2.1",
679
+ "statuses": "^2.0.2"
680
+ },
681
+ "engines": {
682
+ "node": ">= 18"
683
+ },
684
+ "funding": {
685
+ "type": "opencollective",
686
+ "url": "https://opencollective.com/express"
687
+ }
688
+ },
689
+ "node_modules/@modelcontextprotocol/sdk/node_modules/serve-static": {
690
+ "version": "2.2.1",
691
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
692
+ "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
693
+ "license": "MIT",
694
+ "dependencies": {
695
+ "encodeurl": "^2.0.0",
696
+ "escape-html": "^1.0.3",
697
+ "parseurl": "^1.3.3",
698
+ "send": "^1.2.0"
699
+ },
700
+ "engines": {
701
+ "node": ">= 18"
702
+ },
703
+ "funding": {
704
+ "type": "opencollective",
705
+ "url": "https://opencollective.com/express"
706
+ }
707
+ },
708
+ "node_modules/@modelcontextprotocol/sdk/node_modules/type-is": {
709
+ "version": "2.0.1",
710
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
711
+ "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
712
+ "license": "MIT",
713
+ "dependencies": {
714
+ "content-type": "^1.0.5",
715
+ "media-typer": "^1.1.0",
716
+ "mime-types": "^3.0.0"
717
+ },
718
+ "engines": {
719
+ "node": ">= 0.6"
720
+ }
721
+ },
722
+ "node_modules/@npmcli/fs": {
723
+ "version": "1.1.1",
724
+ "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz",
725
+ "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==",
726
+ "license": "ISC",
727
+ "optional": true,
728
+ "dependencies": {
729
+ "@gar/promisify": "^1.0.1",
730
+ "semver": "^7.3.5"
731
+ }
732
+ },
733
+ "node_modules/@npmcli/move-file": {
734
+ "version": "1.1.2",
735
+ "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
736
+ "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
737
+ "deprecated": "This functionality has been moved to @npmcli/fs",
738
+ "license": "MIT",
739
+ "optional": true,
740
+ "dependencies": {
741
+ "mkdirp": "^1.0.4",
742
+ "rimraf": "^3.0.2"
743
+ },
744
+ "engines": {
745
+ "node": ">=10"
746
+ }
747
+ },
748
+ "node_modules/@octokit/auth-token": {
749
+ "version": "6.0.0",
750
+ "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-6.0.0.tgz",
751
+ "integrity": "sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w==",
752
+ "license": "MIT",
753
+ "engines": {
754
+ "node": ">= 20"
755
+ }
756
+ },
757
+ "node_modules/@octokit/core": {
758
+ "version": "7.0.6",
759
+ "resolved": "https://registry.npmjs.org/@octokit/core/-/core-7.0.6.tgz",
760
+ "integrity": "sha512-DhGl4xMVFGVIyMwswXeyzdL4uXD5OGILGX5N8Y+f6W7LhC1Ze2poSNrkF/fedpVDHEEZ+PHFW0vL14I+mm8K3Q==",
761
+ "license": "MIT",
762
+ "peer": true,
763
+ "dependencies": {
764
+ "@octokit/auth-token": "^6.0.0",
765
+ "@octokit/graphql": "^9.0.3",
766
+ "@octokit/request": "^10.0.6",
767
+ "@octokit/request-error": "^7.0.2",
768
+ "@octokit/types": "^16.0.0",
769
+ "before-after-hook": "^4.0.0",
770
+ "universal-user-agent": "^7.0.0"
771
+ },
772
+ "engines": {
773
+ "node": ">= 20"
774
+ }
775
+ },
776
+ "node_modules/@octokit/endpoint": {
777
+ "version": "11.0.3",
778
+ "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-11.0.3.tgz",
779
+ "integrity": "sha512-FWFlNxghg4HrXkD3ifYbS/IdL/mDHjh9QcsNyhQjN8dplUoZbejsdpmuqdA76nxj2xoWPs7p8uX2SNr9rYu0Ag==",
780
+ "license": "MIT",
781
+ "dependencies": {
782
+ "@octokit/types": "^16.0.0",
783
+ "universal-user-agent": "^7.0.2"
784
+ },
785
+ "engines": {
786
+ "node": ">= 20"
787
+ }
788
+ },
789
+ "node_modules/@octokit/graphql": {
790
+ "version": "9.0.3",
791
+ "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-9.0.3.tgz",
792
+ "integrity": "sha512-grAEuupr/C1rALFnXTv6ZQhFuL1D8G5y8CN04RgrO4FIPMrtm+mcZzFG7dcBm+nq+1ppNixu+Jd78aeJOYxlGA==",
793
+ "license": "MIT",
794
+ "dependencies": {
795
+ "@octokit/request": "^10.0.6",
796
+ "@octokit/types": "^16.0.0",
797
+ "universal-user-agent": "^7.0.0"
798
+ },
799
+ "engines": {
800
+ "node": ">= 20"
801
+ }
802
+ },
803
+ "node_modules/@octokit/openapi-types": {
804
+ "version": "27.0.0",
805
+ "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-27.0.0.tgz",
806
+ "integrity": "sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA==",
807
+ "license": "MIT"
808
+ },
809
+ "node_modules/@octokit/plugin-paginate-rest": {
810
+ "version": "14.0.0",
811
+ "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-14.0.0.tgz",
812
+ "integrity": "sha512-fNVRE7ufJiAA3XUrha2omTA39M6IXIc6GIZLvlbsm8QOQCYvpq/LkMNGyFlB1d8hTDzsAXa3OKtybdMAYsV/fw==",
813
+ "license": "MIT",
814
+ "dependencies": {
815
+ "@octokit/types": "^16.0.0"
816
+ },
817
+ "engines": {
818
+ "node": ">= 20"
819
+ },
820
+ "peerDependencies": {
821
+ "@octokit/core": ">=6"
822
+ }
823
+ },
824
+ "node_modules/@octokit/plugin-request-log": {
825
+ "version": "6.0.0",
826
+ "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-6.0.0.tgz",
827
+ "integrity": "sha512-UkOzeEN3W91/eBq9sPZNQ7sUBvYCqYbrrD8gTbBuGtHEuycE4/awMXcYvx6sVYo7LypPhmQwwpUe4Yyu4QZN5Q==",
828
+ "license": "MIT",
829
+ "engines": {
830
+ "node": ">= 20"
831
+ },
832
+ "peerDependencies": {
833
+ "@octokit/core": ">=6"
834
+ }
835
+ },
836
+ "node_modules/@octokit/plugin-rest-endpoint-methods": {
837
+ "version": "17.0.0",
838
+ "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-17.0.0.tgz",
839
+ "integrity": "sha512-B5yCyIlOJFPqUUeiD0cnBJwWJO8lkJs5d8+ze9QDP6SvfiXSz1BF+91+0MeI1d2yxgOhU/O+CvtiZ9jSkHhFAw==",
840
+ "license": "MIT",
841
+ "dependencies": {
842
+ "@octokit/types": "^16.0.0"
843
+ },
844
+ "engines": {
845
+ "node": ">= 20"
846
+ },
847
+ "peerDependencies": {
848
+ "@octokit/core": ">=6"
849
+ }
850
+ },
851
+ "node_modules/@octokit/request": {
852
+ "version": "10.0.8",
853
+ "resolved": "https://registry.npmjs.org/@octokit/request/-/request-10.0.8.tgz",
854
+ "integrity": "sha512-SJZNwY9pur9Agf7l87ywFi14W+Hd9Jg6Ifivsd33+/bGUQIjNujdFiXII2/qSlN2ybqUHfp5xpekMEjIBTjlSw==",
855
+ "license": "MIT",
856
+ "dependencies": {
857
+ "@octokit/endpoint": "^11.0.3",
858
+ "@octokit/request-error": "^7.0.2",
859
+ "@octokit/types": "^16.0.0",
860
+ "fast-content-type-parse": "^3.0.0",
861
+ "json-with-bigint": "^3.5.3",
862
+ "universal-user-agent": "^7.0.2"
863
+ },
864
+ "engines": {
865
+ "node": ">= 20"
866
+ }
867
+ },
868
+ "node_modules/@octokit/request-error": {
869
+ "version": "7.1.0",
870
+ "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-7.1.0.tgz",
871
+ "integrity": "sha512-KMQIfq5sOPpkQYajXHwnhjCC0slzCNScLHs9JafXc4RAJI+9f+jNDlBNaIMTvazOPLgb4BnlhGJOTbnN0wIjPw==",
872
+ "license": "MIT",
873
+ "dependencies": {
874
+ "@octokit/types": "^16.0.0"
875
+ },
876
+ "engines": {
877
+ "node": ">= 20"
878
+ }
879
+ },
880
+ "node_modules/@octokit/rest": {
881
+ "version": "22.0.1",
882
+ "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-22.0.1.tgz",
883
+ "integrity": "sha512-Jzbhzl3CEexhnivb1iQ0KJ7s5vvjMWcmRtq5aUsKmKDrRW6z3r84ngmiFKFvpZjpiU/9/S6ITPFRpn5s/3uQJw==",
884
+ "license": "MIT",
885
+ "dependencies": {
886
+ "@octokit/core": "^7.0.6",
887
+ "@octokit/plugin-paginate-rest": "^14.0.0",
888
+ "@octokit/plugin-request-log": "^6.0.0",
889
+ "@octokit/plugin-rest-endpoint-methods": "^17.0.0"
890
+ },
891
+ "engines": {
892
+ "node": ">= 20"
893
+ }
894
+ },
895
+ "node_modules/@octokit/types": {
896
+ "version": "16.0.0",
897
+ "resolved": "https://registry.npmjs.org/@octokit/types/-/types-16.0.0.tgz",
898
+ "integrity": "sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg==",
899
+ "license": "MIT",
900
+ "dependencies": {
901
+ "@octokit/openapi-types": "^27.0.0"
902
+ }
903
+ },
904
+ "node_modules/@openai/codex": {
905
+ "version": "0.101.0",
906
+ "resolved": "https://registry.npmjs.org/@openai/codex/-/codex-0.101.0.tgz",
907
+ "integrity": "sha512-H874q5K5I3chrT588BaddMr7GNvRYypc8C1MKWytNUF2PgxWMko2g/2DgKbt5OdajZKMsWdbsPywu34KQGf5Qw==",
908
+ "license": "Apache-2.0",
909
+ "bin": {
910
+ "codex": "bin/codex.js"
911
+ },
912
+ "engines": {
913
+ "node": ">=16"
914
+ },
915
+ "optionalDependencies": {
916
+ "@openai/codex-darwin-arm64": "npm:@openai/codex@0.101.0-darwin-arm64",
917
+ "@openai/codex-darwin-x64": "npm:@openai/codex@0.101.0-darwin-x64",
918
+ "@openai/codex-linux-arm64": "npm:@openai/codex@0.101.0-linux-arm64",
919
+ "@openai/codex-linux-x64": "npm:@openai/codex@0.101.0-linux-x64",
920
+ "@openai/codex-win32-arm64": "npm:@openai/codex@0.101.0-win32-arm64",
921
+ "@openai/codex-win32-x64": "npm:@openai/codex@0.101.0-win32-x64"
922
+ }
923
+ },
924
+ "node_modules/@openai/codex-darwin-arm64": {
925
+ "name": "@openai/codex",
926
+ "version": "0.101.0-darwin-arm64",
927
+ "resolved": "https://registry.npmjs.org/@openai/codex/-/codex-0.101.0-darwin-arm64.tgz",
928
+ "integrity": "sha512-unk4rTRQQ9o0w2Upu35IsJHpoZHJ+tU/myn6LNhUjcP9FrjLnEcAQJ6WIMtdTYVPja1PGhFSO0DNxV79GMvehw==",
929
+ "cpu": [
930
+ "arm64"
931
+ ],
932
+ "license": "Apache-2.0",
933
+ "optional": true,
934
+ "os": [
935
+ "darwin"
936
+ ],
937
+ "engines": {
938
+ "node": ">=16"
939
+ }
940
+ },
941
+ "node_modules/@openai/codex-darwin-x64": {
942
+ "name": "@openai/codex",
943
+ "version": "0.101.0-darwin-x64",
944
+ "resolved": "https://registry.npmjs.org/@openai/codex/-/codex-0.101.0-darwin-x64.tgz",
945
+ "integrity": "sha512-+KFi1IapCQGd3vLQp2lI4xI3hu2QffDZYt7Fhfw6NxEFOKhHnTamRtQ5yI8jYQcYF+pQfYF2fyiuXLM1lITLQw==",
946
+ "cpu": [
947
+ "x64"
948
+ ],
949
+ "license": "Apache-2.0",
950
+ "optional": true,
951
+ "os": [
952
+ "darwin"
953
+ ],
954
+ "engines": {
955
+ "node": ">=16"
956
+ }
957
+ },
958
+ "node_modules/@openai/codex-linux-arm64": {
959
+ "name": "@openai/codex",
960
+ "version": "0.101.0-linux-arm64",
961
+ "resolved": "https://registry.npmjs.org/@openai/codex/-/codex-0.101.0-linux-arm64.tgz",
962
+ "integrity": "sha512-RkDnQeq7M6ZBtD+8i+I5ewjjOf02BcJq6r1kN4RBewfAQBsz6B73Ns3OrI2bHVRsuPtAf8Cf1S4xg/eFZT2Omg==",
963
+ "cpu": [
964
+ "arm64"
965
+ ],
966
+ "license": "Apache-2.0",
967
+ "optional": true,
968
+ "os": [
969
+ "linux"
970
+ ],
971
+ "engines": {
972
+ "node": ">=16"
973
+ }
974
+ },
975
+ "node_modules/@openai/codex-linux-x64": {
976
+ "name": "@openai/codex",
977
+ "version": "0.101.0-linux-x64",
978
+ "resolved": "https://registry.npmjs.org/@openai/codex/-/codex-0.101.0-linux-x64.tgz",
979
+ "integrity": "sha512-SJeEdQ4ReEU3nvtceZ1uY3me6oWoB3djr3GnZmAUCEUuYEWD1kRGprAyJB1N0B+8zhSv0SU2e9sX5t3aCV4AwQ==",
980
+ "cpu": [
981
+ "x64"
982
+ ],
983
+ "license": "Apache-2.0",
984
+ "optional": true,
985
+ "os": [
986
+ "linux"
987
+ ],
988
+ "engines": {
989
+ "node": ">=16"
990
+ }
991
+ },
992
+ "node_modules/@openai/codex-sdk": {
993
+ "version": "0.101.0",
994
+ "resolved": "https://registry.npmjs.org/@openai/codex-sdk/-/codex-sdk-0.101.0.tgz",
995
+ "integrity": "sha512-Lrar2pDvGUX64itSbMNKuNBzxh72UwKokY4TPuXJRURwGX0qyDi80n7DiVivC40BwFsQWNs6behSo/9Mr6PoLw==",
996
+ "license": "Apache-2.0",
997
+ "dependencies": {
998
+ "@openai/codex": "0.101.0"
999
+ },
1000
+ "engines": {
1001
+ "node": ">=18"
1002
+ }
1003
+ },
1004
+ "node_modules/@openai/codex-win32-arm64": {
1005
+ "name": "@openai/codex",
1006
+ "version": "0.101.0-win32-arm64",
1007
+ "resolved": "https://registry.npmjs.org/@openai/codex/-/codex-0.101.0-win32-arm64.tgz",
1008
+ "integrity": "sha512-WQ8QsychjHyvlr+vCSTMbd2/yrBIZre5tRuM79eZi973BJz0CSEiFsNSGg5fvpnJuiHHawZ/8HWeir7nlatamQ==",
1009
+ "cpu": [
1010
+ "arm64"
1011
+ ],
1012
+ "license": "Apache-2.0",
1013
+ "optional": true,
1014
+ "os": [
1015
+ "win32"
1016
+ ],
1017
+ "engines": {
1018
+ "node": ">=16"
1019
+ }
1020
+ },
1021
+ "node_modules/@openai/codex-win32-x64": {
1022
+ "name": "@openai/codex",
1023
+ "version": "0.101.0-win32-x64",
1024
+ "resolved": "https://registry.npmjs.org/@openai/codex/-/codex-0.101.0-win32-x64.tgz",
1025
+ "integrity": "sha512-H+7h9x0fYrJRUZZHCA62Dzb/CS5Scl1sUw1aamfmHJzzorX+uTFOgGsibzqFpHTd6nRM4q8//fCdSxe5wUpOQQ==",
1026
+ "cpu": [
1027
+ "x64"
1028
+ ],
1029
+ "license": "Apache-2.0",
1030
+ "optional": true,
1031
+ "os": [
1032
+ "win32"
1033
+ ],
1034
+ "engines": {
1035
+ "node": ">=16"
1036
+ }
1037
+ },
1038
+ "node_modules/@tootallnate/once": {
1039
+ "version": "1.1.2",
1040
+ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
1041
+ "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
1042
+ "license": "MIT",
1043
+ "optional": true,
1044
+ "engines": {
1045
+ "node": ">= 6"
1046
+ }
1047
+ },
1048
+ "node_modules/abbrev": {
1049
+ "version": "1.1.1",
1050
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
1051
+ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
1052
+ "license": "ISC",
1053
+ "optional": true
1054
+ },
1055
+ "node_modules/accepts": {
1056
+ "version": "1.3.8",
1057
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
1058
+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
1059
+ "license": "MIT",
1060
+ "dependencies": {
1061
+ "mime-types": "~2.1.34",
1062
+ "negotiator": "0.6.3"
1063
+ },
1064
+ "engines": {
1065
+ "node": ">= 0.6"
1066
+ }
1067
+ },
1068
+ "node_modules/accepts/node_modules/mime-db": {
1069
+ "version": "1.52.0",
1070
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
1071
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
1072
+ "license": "MIT",
1073
+ "engines": {
1074
+ "node": ">= 0.6"
1075
+ }
1076
+ },
1077
+ "node_modules/accepts/node_modules/mime-types": {
1078
+ "version": "2.1.35",
1079
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
1080
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
1081
+ "license": "MIT",
1082
+ "dependencies": {
1083
+ "mime-db": "1.52.0"
1084
+ },
1085
+ "engines": {
1086
+ "node": ">= 0.6"
1087
+ }
1088
+ },
1089
+ "node_modules/agent-base": {
1090
+ "version": "6.0.2",
1091
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
1092
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
1093
+ "license": "MIT",
1094
+ "optional": true,
1095
+ "dependencies": {
1096
+ "debug": "4"
1097
+ },
1098
+ "engines": {
1099
+ "node": ">= 6.0.0"
1100
+ }
1101
+ },
1102
+ "node_modules/agent-base/node_modules/debug": {
1103
+ "version": "4.4.3",
1104
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1105
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1106
+ "license": "MIT",
1107
+ "optional": true,
1108
+ "dependencies": {
1109
+ "ms": "^2.1.3"
1110
+ },
1111
+ "engines": {
1112
+ "node": ">=6.0"
1113
+ },
1114
+ "peerDependenciesMeta": {
1115
+ "supports-color": {
1116
+ "optional": true
1117
+ }
1118
+ }
1119
+ },
1120
+ "node_modules/agent-base/node_modules/ms": {
1121
+ "version": "2.1.3",
1122
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1123
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1124
+ "license": "MIT",
1125
+ "optional": true
1126
+ },
1127
+ "node_modules/agentkeepalive": {
1128
+ "version": "4.6.0",
1129
+ "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.6.0.tgz",
1130
+ "integrity": "sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==",
1131
+ "license": "MIT",
1132
+ "optional": true,
1133
+ "dependencies": {
1134
+ "humanize-ms": "^1.2.1"
1135
+ },
1136
+ "engines": {
1137
+ "node": ">= 8.0.0"
1138
+ }
1139
+ },
1140
+ "node_modules/aggregate-error": {
1141
+ "version": "3.1.0",
1142
+ "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
1143
+ "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
1144
+ "license": "MIT",
1145
+ "optional": true,
1146
+ "dependencies": {
1147
+ "clean-stack": "^2.0.0",
1148
+ "indent-string": "^4.0.0"
1149
+ },
1150
+ "engines": {
1151
+ "node": ">=8"
1152
+ }
1153
+ },
1154
+ "node_modules/ajv": {
1155
+ "version": "8.18.0",
1156
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz",
1157
+ "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==",
1158
+ "license": "MIT",
1159
+ "dependencies": {
1160
+ "fast-deep-equal": "^3.1.3",
1161
+ "fast-uri": "^3.0.1",
1162
+ "json-schema-traverse": "^1.0.0",
1163
+ "require-from-string": "^2.0.2"
1164
+ },
1165
+ "funding": {
1166
+ "type": "github",
1167
+ "url": "https://github.com/sponsors/epoberezkin"
1168
+ }
1169
+ },
1170
+ "node_modules/ajv-formats": {
1171
+ "version": "3.0.1",
1172
+ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz",
1173
+ "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
1174
+ "license": "MIT",
1175
+ "dependencies": {
1176
+ "ajv": "^8.0.0"
1177
+ },
1178
+ "peerDependencies": {
1179
+ "ajv": "^8.0.0"
1180
+ },
1181
+ "peerDependenciesMeta": {
1182
+ "ajv": {
1183
+ "optional": true
1184
+ }
1185
+ }
1186
+ },
1187
+ "node_modules/ansi-regex": {
1188
+ "version": "5.0.1",
1189
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1190
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1191
+ "license": "MIT",
1192
+ "optional": true,
1193
+ "engines": {
1194
+ "node": ">=8"
1195
+ }
1196
+ },
1197
+ "node_modules/append-field": {
1198
+ "version": "1.0.0",
1199
+ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz",
1200
+ "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==",
1201
+ "license": "MIT"
1202
+ },
1203
+ "node_modules/aproba": {
1204
+ "version": "2.1.0",
1205
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.1.0.tgz",
1206
+ "integrity": "sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==",
1207
+ "license": "ISC",
1208
+ "optional": true
1209
+ },
1210
+ "node_modules/are-we-there-yet": {
1211
+ "version": "3.0.1",
1212
+ "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
1213
+ "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==",
1214
+ "deprecated": "This package is no longer supported.",
1215
+ "license": "ISC",
1216
+ "optional": true,
1217
+ "dependencies": {
1218
+ "delegates": "^1.0.0",
1219
+ "readable-stream": "^3.6.0"
1220
+ },
1221
+ "engines": {
1222
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
1223
+ }
1224
+ },
1225
+ "node_modules/are-we-there-yet/node_modules/readable-stream": {
1226
+ "version": "3.6.2",
1227
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
1228
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
1229
+ "license": "MIT",
1230
+ "optional": true,
1231
+ "dependencies": {
1232
+ "inherits": "^2.0.3",
1233
+ "string_decoder": "^1.1.1",
1234
+ "util-deprecate": "^1.0.1"
1235
+ },
1236
+ "engines": {
1237
+ "node": ">= 6"
1238
+ }
1239
+ },
1240
+ "node_modules/argparse": {
1241
+ "version": "1.0.10",
1242
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
1243
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
1244
+ "license": "MIT",
1245
+ "dependencies": {
1246
+ "sprintf-js": "~1.0.2"
1247
+ }
1248
+ },
1249
+ "node_modules/array-flatten": {
1250
+ "version": "1.1.1",
1251
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
1252
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
1253
+ "license": "MIT"
1254
+ },
1255
+ "node_modules/asn1.js": {
1256
+ "version": "5.4.1",
1257
+ "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz",
1258
+ "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
1259
+ "license": "MIT",
1260
+ "dependencies": {
1261
+ "bn.js": "^4.0.0",
1262
+ "inherits": "^2.0.1",
1263
+ "minimalistic-assert": "^1.0.0",
1264
+ "safer-buffer": "^2.1.0"
1265
+ }
1266
+ },
1267
+ "node_modules/balanced-match": {
1268
+ "version": "1.0.2",
1269
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
1270
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1271
+ "license": "MIT",
1272
+ "optional": true
1273
+ },
1274
+ "node_modules/base64-js": {
1275
+ "version": "1.5.1",
1276
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
1277
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
1278
+ "funding": [
1279
+ {
1280
+ "type": "github",
1281
+ "url": "https://github.com/sponsors/feross"
1282
+ },
1283
+ {
1284
+ "type": "patreon",
1285
+ "url": "https://www.patreon.com/feross"
1286
+ },
1287
+ {
1288
+ "type": "consulting",
1289
+ "url": "https://feross.org/support"
1290
+ }
1291
+ ],
1292
+ "license": "MIT"
1293
+ },
1294
+ "node_modules/bcrypt": {
1295
+ "version": "6.0.0",
1296
+ "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-6.0.0.tgz",
1297
+ "integrity": "sha512-cU8v/EGSrnH+HnxV2z0J7/blxH8gq7Xh2JFT6Aroax7UohdmiJJlxApMxtKfuI7z68NvvVcmR78k2LbT6efhRg==",
1298
+ "hasInstallScript": true,
1299
+ "license": "MIT",
1300
+ "dependencies": {
1301
+ "node-addon-api": "^8.3.0",
1302
+ "node-gyp-build": "^4.8.4"
1303
+ },
1304
+ "engines": {
1305
+ "node": ">= 18"
1306
+ }
1307
+ },
1308
+ "node_modules/before-after-hook": {
1309
+ "version": "4.0.0",
1310
+ "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-4.0.0.tgz",
1311
+ "integrity": "sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ==",
1312
+ "license": "Apache-2.0"
1313
+ },
1314
+ "node_modules/better-sqlite3": {
1315
+ "version": "12.8.0",
1316
+ "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-12.8.0.tgz",
1317
+ "integrity": "sha512-RxD2Vd96sQDjQr20kdP+F+dK/1OUNiVOl200vKBZY8u0vTwysfolF6Hq+3ZK2+h8My9YvZhHsF+RSGZW2VYrPQ==",
1318
+ "hasInstallScript": true,
1319
+ "license": "MIT",
1320
+ "dependencies": {
1321
+ "bindings": "^1.5.0",
1322
+ "prebuild-install": "^7.1.1"
1323
+ },
1324
+ "engines": {
1325
+ "node": "20.x || 22.x || 23.x || 24.x || 25.x"
1326
+ }
1327
+ },
1328
+ "node_modules/bindings": {
1329
+ "version": "1.5.0",
1330
+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
1331
+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
1332
+ "license": "MIT",
1333
+ "dependencies": {
1334
+ "file-uri-to-path": "1.0.0"
1335
+ }
1336
+ },
1337
+ "node_modules/bl": {
1338
+ "version": "4.1.0",
1339
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
1340
+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
1341
+ "license": "MIT",
1342
+ "dependencies": {
1343
+ "buffer": "^5.5.0",
1344
+ "inherits": "^2.0.4",
1345
+ "readable-stream": "^3.4.0"
1346
+ }
1347
+ },
1348
+ "node_modules/bl/node_modules/readable-stream": {
1349
+ "version": "3.6.2",
1350
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
1351
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
1352
+ "license": "MIT",
1353
+ "dependencies": {
1354
+ "inherits": "^2.0.3",
1355
+ "string_decoder": "^1.1.1",
1356
+ "util-deprecate": "^1.0.1"
1357
+ },
1358
+ "engines": {
1359
+ "node": ">= 6"
1360
+ }
1361
+ },
1362
+ "node_modules/bn.js": {
1363
+ "version": "4.12.3",
1364
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz",
1365
+ "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==",
1366
+ "license": "MIT"
1367
+ },
1368
+ "node_modules/body-parser": {
1369
+ "version": "1.20.4",
1370
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.4.tgz",
1371
+ "integrity": "sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==",
1372
+ "license": "MIT",
1373
+ "dependencies": {
1374
+ "bytes": "~3.1.2",
1375
+ "content-type": "~1.0.5",
1376
+ "debug": "2.6.9",
1377
+ "depd": "2.0.0",
1378
+ "destroy": "~1.2.0",
1379
+ "http-errors": "~2.0.1",
1380
+ "iconv-lite": "~0.4.24",
1381
+ "on-finished": "~2.4.1",
1382
+ "qs": "~6.14.0",
1383
+ "raw-body": "~2.5.3",
1384
+ "type-is": "~1.6.18",
1385
+ "unpipe": "~1.0.0"
1386
+ },
1387
+ "engines": {
1388
+ "node": ">= 0.8",
1389
+ "npm": "1.2.8000 || >= 1.4.16"
1390
+ }
1391
+ },
1392
+ "node_modules/body-parser/node_modules/raw-body": {
1393
+ "version": "2.5.3",
1394
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz",
1395
+ "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
1396
+ "license": "MIT",
1397
+ "dependencies": {
1398
+ "bytes": "~3.1.2",
1399
+ "http-errors": "~2.0.1",
1400
+ "iconv-lite": "~0.4.24",
1401
+ "unpipe": "~1.0.0"
1402
+ },
1403
+ "engines": {
1404
+ "node": ">= 0.8"
1405
+ }
1406
+ },
1407
+ "node_modules/brace-expansion": {
1408
+ "version": "1.1.13",
1409
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.13.tgz",
1410
+ "integrity": "sha512-9ZLprWS6EENmhEOpjCYW2c8VkmOvckIJZfkr7rBW6dObmfgJ/L1GpSYW5Hpo9lDz4D1+n0Ckz8rU7FwHDQiG/w==",
1411
+ "license": "MIT",
1412
+ "optional": true,
1413
+ "dependencies": {
1414
+ "balanced-match": "^1.0.0",
1415
+ "concat-map": "0.0.1"
1416
+ }
1417
+ },
1418
+ "node_modules/buffer": {
1419
+ "version": "5.7.1",
1420
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
1421
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
1422
+ "funding": [
1423
+ {
1424
+ "type": "github",
1425
+ "url": "https://github.com/sponsors/feross"
1426
+ },
1427
+ {
1428
+ "type": "patreon",
1429
+ "url": "https://www.patreon.com/feross"
1430
+ },
1431
+ {
1432
+ "type": "consulting",
1433
+ "url": "https://feross.org/support"
1434
+ }
1435
+ ],
1436
+ "license": "MIT",
1437
+ "dependencies": {
1438
+ "base64-js": "^1.3.1",
1439
+ "ieee754": "^1.1.13"
1440
+ }
1441
+ },
1442
+ "node_modules/buffer-equal-constant-time": {
1443
+ "version": "1.0.1",
1444
+ "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
1445
+ "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
1446
+ "license": "BSD-3-Clause"
1447
+ },
1448
+ "node_modules/buffer-from": {
1449
+ "version": "1.1.2",
1450
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
1451
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
1452
+ "license": "MIT"
1453
+ },
1454
+ "node_modules/busboy": {
1455
+ "version": "1.6.0",
1456
+ "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
1457
+ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
1458
+ "dependencies": {
1459
+ "streamsearch": "^1.1.0"
1460
+ },
1461
+ "engines": {
1462
+ "node": ">=10.16.0"
1463
+ }
1464
+ },
1465
+ "node_modules/bytes": {
1466
+ "version": "3.1.2",
1467
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
1468
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
1469
+ "license": "MIT",
1470
+ "engines": {
1471
+ "node": ">= 0.8"
1472
+ }
1473
+ },
1474
+ "node_modules/cacache": {
1475
+ "version": "15.3.0",
1476
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz",
1477
+ "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==",
1478
+ "license": "ISC",
1479
+ "optional": true,
1480
+ "dependencies": {
1481
+ "@npmcli/fs": "^1.0.0",
1482
+ "@npmcli/move-file": "^1.0.1",
1483
+ "chownr": "^2.0.0",
1484
+ "fs-minipass": "^2.0.0",
1485
+ "glob": "^7.1.4",
1486
+ "infer-owner": "^1.0.4",
1487
+ "lru-cache": "^6.0.0",
1488
+ "minipass": "^3.1.1",
1489
+ "minipass-collect": "^1.0.2",
1490
+ "minipass-flush": "^1.0.5",
1491
+ "minipass-pipeline": "^1.2.2",
1492
+ "mkdirp": "^1.0.3",
1493
+ "p-map": "^4.0.0",
1494
+ "promise-inflight": "^1.0.1",
1495
+ "rimraf": "^3.0.2",
1496
+ "ssri": "^8.0.1",
1497
+ "tar": "^6.0.2",
1498
+ "unique-filename": "^1.1.1"
1499
+ },
1500
+ "engines": {
1501
+ "node": ">= 10"
1502
+ }
1503
+ },
1504
+ "node_modules/call-bind-apply-helpers": {
1505
+ "version": "1.0.2",
1506
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
1507
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
1508
+ "license": "MIT",
1509
+ "dependencies": {
1510
+ "es-errors": "^1.3.0",
1511
+ "function-bind": "^1.1.2"
1512
+ },
1513
+ "engines": {
1514
+ "node": ">= 0.4"
1515
+ }
1516
+ },
1517
+ "node_modules/call-bound": {
1518
+ "version": "1.0.4",
1519
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
1520
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
1521
+ "license": "MIT",
1522
+ "dependencies": {
1523
+ "call-bind-apply-helpers": "^1.0.2",
1524
+ "get-intrinsic": "^1.3.0"
1525
+ },
1526
+ "engines": {
1527
+ "node": ">= 0.4"
1528
+ },
1529
+ "funding": {
1530
+ "url": "https://github.com/sponsors/ljharb"
1531
+ }
1532
+ },
1533
+ "node_modules/chokidar": {
1534
+ "version": "4.0.3",
1535
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
1536
+ "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
1537
+ "license": "MIT",
1538
+ "dependencies": {
1539
+ "readdirp": "^4.0.1"
1540
+ },
1541
+ "engines": {
1542
+ "node": ">= 14.16.0"
1543
+ },
1544
+ "funding": {
1545
+ "url": "https://paulmillr.com/funding/"
1546
+ }
1547
+ },
1548
+ "node_modules/chownr": {
1549
+ "version": "2.0.0",
1550
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
1551
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
1552
+ "license": "ISC",
1553
+ "engines": {
1554
+ "node": ">=10"
1555
+ }
1556
+ },
1557
+ "node_modules/clean-stack": {
1558
+ "version": "2.2.0",
1559
+ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
1560
+ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
1561
+ "license": "MIT",
1562
+ "optional": true,
1563
+ "engines": {
1564
+ "node": ">=6"
1565
+ }
1566
+ },
1567
+ "node_modules/color-support": {
1568
+ "version": "1.1.3",
1569
+ "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
1570
+ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
1571
+ "license": "ISC",
1572
+ "optional": true,
1573
+ "bin": {
1574
+ "color-support": "bin.js"
1575
+ }
1576
+ },
1577
+ "node_modules/concat-map": {
1578
+ "version": "0.0.1",
1579
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1580
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
1581
+ "license": "MIT",
1582
+ "optional": true
1583
+ },
1584
+ "node_modules/concat-stream": {
1585
+ "version": "2.0.0",
1586
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz",
1587
+ "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==",
1588
+ "engines": [
1589
+ "node >= 6.0"
1590
+ ],
1591
+ "license": "MIT",
1592
+ "dependencies": {
1593
+ "buffer-from": "^1.0.0",
1594
+ "inherits": "^2.0.3",
1595
+ "readable-stream": "^3.0.2",
1596
+ "typedarray": "^0.0.6"
1597
+ }
1598
+ },
1599
+ "node_modules/concat-stream/node_modules/readable-stream": {
1600
+ "version": "3.6.2",
1601
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
1602
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
1603
+ "license": "MIT",
1604
+ "dependencies": {
1605
+ "inherits": "^2.0.3",
1606
+ "string_decoder": "^1.1.1",
1607
+ "util-deprecate": "^1.0.1"
1608
+ },
1609
+ "engines": {
1610
+ "node": ">= 6"
1611
+ }
1612
+ },
1613
+ "node_modules/console-control-strings": {
1614
+ "version": "1.1.0",
1615
+ "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
1616
+ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
1617
+ "license": "ISC",
1618
+ "optional": true
1619
+ },
1620
+ "node_modules/content-disposition": {
1621
+ "version": "0.5.4",
1622
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
1623
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
1624
+ "license": "MIT",
1625
+ "dependencies": {
1626
+ "safe-buffer": "5.2.1"
1627
+ },
1628
+ "engines": {
1629
+ "node": ">= 0.6"
1630
+ }
1631
+ },
1632
+ "node_modules/content-type": {
1633
+ "version": "1.0.5",
1634
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
1635
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
1636
+ "license": "MIT",
1637
+ "engines": {
1638
+ "node": ">= 0.6"
1639
+ }
1640
+ },
1641
+ "node_modules/cookie": {
1642
+ "version": "0.7.2",
1643
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
1644
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
1645
+ "license": "MIT",
1646
+ "engines": {
1647
+ "node": ">= 0.6"
1648
+ }
1649
+ },
1650
+ "node_modules/cookie-signature": {
1651
+ "version": "1.0.7",
1652
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz",
1653
+ "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==",
1654
+ "license": "MIT"
1655
+ },
1656
+ "node_modules/core-util-is": {
1657
+ "version": "1.0.3",
1658
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
1659
+ "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
1660
+ "license": "MIT"
1661
+ },
1662
+ "node_modules/cors": {
1663
+ "version": "2.8.6",
1664
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
1665
+ "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
1666
+ "license": "MIT",
1667
+ "dependencies": {
1668
+ "object-assign": "^4",
1669
+ "vary": "^1"
1670
+ },
1671
+ "engines": {
1672
+ "node": ">= 0.10"
1673
+ },
1674
+ "funding": {
1675
+ "type": "opencollective",
1676
+ "url": "https://opencollective.com/express"
1677
+ }
1678
+ },
1679
+ "node_modules/cross-spawn": {
1680
+ "version": "7.0.6",
1681
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
1682
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1683
+ "license": "MIT",
1684
+ "dependencies": {
1685
+ "path-key": "^3.1.0",
1686
+ "shebang-command": "^2.0.0",
1687
+ "which": "^2.0.1"
1688
+ },
1689
+ "engines": {
1690
+ "node": ">= 8"
1691
+ }
1692
+ },
1693
+ "node_modules/debug": {
1694
+ "version": "2.6.9",
1695
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
1696
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
1697
+ "license": "MIT",
1698
+ "dependencies": {
1699
+ "ms": "2.0.0"
1700
+ }
1701
+ },
1702
+ "node_modules/decompress-response": {
1703
+ "version": "6.0.0",
1704
+ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
1705
+ "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
1706
+ "license": "MIT",
1707
+ "dependencies": {
1708
+ "mimic-response": "^3.1.0"
1709
+ },
1710
+ "engines": {
1711
+ "node": ">=10"
1712
+ },
1713
+ "funding": {
1714
+ "url": "https://github.com/sponsors/sindresorhus"
1715
+ }
1716
+ },
1717
+ "node_modules/deep-extend": {
1718
+ "version": "0.6.0",
1719
+ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
1720
+ "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
1721
+ "license": "MIT",
1722
+ "engines": {
1723
+ "node": ">=4.0.0"
1724
+ }
1725
+ },
1726
+ "node_modules/delegates": {
1727
+ "version": "1.0.0",
1728
+ "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
1729
+ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
1730
+ "license": "MIT",
1731
+ "optional": true
1732
+ },
1733
+ "node_modules/depd": {
1734
+ "version": "2.0.0",
1735
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
1736
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
1737
+ "license": "MIT",
1738
+ "engines": {
1739
+ "node": ">= 0.8"
1740
+ }
1741
+ },
1742
+ "node_modules/destroy": {
1743
+ "version": "1.2.0",
1744
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
1745
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
1746
+ "license": "MIT",
1747
+ "engines": {
1748
+ "node": ">= 0.8",
1749
+ "npm": "1.2.8000 || >= 1.4.16"
1750
+ }
1751
+ },
1752
+ "node_modules/detect-libc": {
1753
+ "version": "2.1.2",
1754
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1755
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1756
+ "license": "Apache-2.0",
1757
+ "engines": {
1758
+ "node": ">=8"
1759
+ }
1760
+ },
1761
+ "node_modules/dunder-proto": {
1762
+ "version": "1.0.1",
1763
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
1764
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
1765
+ "license": "MIT",
1766
+ "dependencies": {
1767
+ "call-bind-apply-helpers": "^1.0.1",
1768
+ "es-errors": "^1.3.0",
1769
+ "gopd": "^1.2.0"
1770
+ },
1771
+ "engines": {
1772
+ "node": ">= 0.4"
1773
+ }
1774
+ },
1775
+ "node_modules/ecdsa-sig-formatter": {
1776
+ "version": "1.0.11",
1777
+ "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
1778
+ "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
1779
+ "license": "Apache-2.0",
1780
+ "dependencies": {
1781
+ "safe-buffer": "^5.0.1"
1782
+ }
1783
+ },
1784
+ "node_modules/ee-first": {
1785
+ "version": "1.1.1",
1786
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
1787
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
1788
+ "license": "MIT"
1789
+ },
1790
+ "node_modules/emoji-regex": {
1791
+ "version": "8.0.0",
1792
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
1793
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
1794
+ "license": "MIT",
1795
+ "optional": true
1796
+ },
1797
+ "node_modules/encodeurl": {
1798
+ "version": "2.0.0",
1799
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
1800
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
1801
+ "license": "MIT",
1802
+ "engines": {
1803
+ "node": ">= 0.8"
1804
+ }
1805
+ },
1806
+ "node_modules/end-of-stream": {
1807
+ "version": "1.4.5",
1808
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
1809
+ "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
1810
+ "license": "MIT",
1811
+ "dependencies": {
1812
+ "once": "^1.4.0"
1813
+ }
1814
+ },
1815
+ "node_modules/env-paths": {
1816
+ "version": "2.2.1",
1817
+ "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
1818
+ "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
1819
+ "license": "MIT",
1820
+ "optional": true,
1821
+ "engines": {
1822
+ "node": ">=6"
1823
+ }
1824
+ },
1825
+ "node_modules/err-code": {
1826
+ "version": "2.0.3",
1827
+ "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
1828
+ "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
1829
+ "license": "MIT",
1830
+ "optional": true
1831
+ },
1832
+ "node_modules/es-define-property": {
1833
+ "version": "1.0.1",
1834
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
1835
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
1836
+ "license": "MIT",
1837
+ "engines": {
1838
+ "node": ">= 0.4"
1839
+ }
1840
+ },
1841
+ "node_modules/es-errors": {
1842
+ "version": "1.3.0",
1843
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
1844
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
1845
+ "license": "MIT",
1846
+ "engines": {
1847
+ "node": ">= 0.4"
1848
+ }
1849
+ },
1850
+ "node_modules/es-object-atoms": {
1851
+ "version": "1.1.1",
1852
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
1853
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
1854
+ "license": "MIT",
1855
+ "dependencies": {
1856
+ "es-errors": "^1.3.0"
1857
+ },
1858
+ "engines": {
1859
+ "node": ">= 0.4"
1860
+ }
1861
+ },
1862
+ "node_modules/escape-html": {
1863
+ "version": "1.0.3",
1864
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
1865
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
1866
+ "license": "MIT"
1867
+ },
1868
+ "node_modules/esprima": {
1869
+ "version": "4.0.1",
1870
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
1871
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
1872
+ "license": "BSD-2-Clause",
1873
+ "bin": {
1874
+ "esparse": "bin/esparse.js",
1875
+ "esvalidate": "bin/esvalidate.js"
1876
+ },
1877
+ "engines": {
1878
+ "node": ">=4"
1879
+ }
1880
+ },
1881
+ "node_modules/etag": {
1882
+ "version": "1.8.1",
1883
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
1884
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
1885
+ "license": "MIT",
1886
+ "engines": {
1887
+ "node": ">= 0.6"
1888
+ }
1889
+ },
1890
+ "node_modules/eventsource": {
1891
+ "version": "3.0.7",
1892
+ "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-3.0.7.tgz",
1893
+ "integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==",
1894
+ "license": "MIT",
1895
+ "dependencies": {
1896
+ "eventsource-parser": "^3.0.1"
1897
+ },
1898
+ "engines": {
1899
+ "node": ">=18.0.0"
1900
+ }
1901
+ },
1902
+ "node_modules/eventsource-parser": {
1903
+ "version": "3.0.6",
1904
+ "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.6.tgz",
1905
+ "integrity": "sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==",
1906
+ "license": "MIT",
1907
+ "engines": {
1908
+ "node": ">=18.0.0"
1909
+ }
1910
+ },
1911
+ "node_modules/expand-template": {
1912
+ "version": "2.0.3",
1913
+ "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
1914
+ "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
1915
+ "license": "(MIT OR WTFPL)",
1916
+ "engines": {
1917
+ "node": ">=6"
1918
+ }
1919
+ },
1920
+ "node_modules/express": {
1921
+ "version": "4.22.1",
1922
+ "resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz",
1923
+ "integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==",
1924
+ "license": "MIT",
1925
+ "peer": true,
1926
+ "dependencies": {
1927
+ "accepts": "~1.3.8",
1928
+ "array-flatten": "1.1.1",
1929
+ "body-parser": "~1.20.3",
1930
+ "content-disposition": "~0.5.4",
1931
+ "content-type": "~1.0.4",
1932
+ "cookie": "~0.7.1",
1933
+ "cookie-signature": "~1.0.6",
1934
+ "debug": "2.6.9",
1935
+ "depd": "2.0.0",
1936
+ "encodeurl": "~2.0.0",
1937
+ "escape-html": "~1.0.3",
1938
+ "etag": "~1.8.1",
1939
+ "finalhandler": "~1.3.1",
1940
+ "fresh": "~0.5.2",
1941
+ "http-errors": "~2.0.0",
1942
+ "merge-descriptors": "1.0.3",
1943
+ "methods": "~1.1.2",
1944
+ "on-finished": "~2.4.1",
1945
+ "parseurl": "~1.3.3",
1946
+ "path-to-regexp": "~0.1.12",
1947
+ "proxy-addr": "~2.0.7",
1948
+ "qs": "~6.14.0",
1949
+ "range-parser": "~1.2.1",
1950
+ "safe-buffer": "5.2.1",
1951
+ "send": "~0.19.0",
1952
+ "serve-static": "~1.16.2",
1953
+ "setprototypeof": "1.2.0",
1954
+ "statuses": "~2.0.1",
1955
+ "type-is": "~1.6.18",
1956
+ "utils-merge": "1.0.1",
1957
+ "vary": "~1.1.2"
1958
+ },
1959
+ "engines": {
1960
+ "node": ">= 0.10.0"
1961
+ },
1962
+ "funding": {
1963
+ "type": "opencollective",
1964
+ "url": "https://opencollective.com/express"
1965
+ }
1966
+ },
1967
+ "node_modules/express-rate-limit": {
1968
+ "version": "8.3.2",
1969
+ "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.3.2.tgz",
1970
+ "integrity": "sha512-77VmFeJkO0/rvimEDuUC5H30oqUC4EyOhyGccfqoLebB0oiEYfM7nwPrsDsBL1gsTpwfzX8SFy2MT3TDyRq+bg==",
1971
+ "license": "MIT",
1972
+ "dependencies": {
1973
+ "ip-address": "10.1.0"
1974
+ },
1975
+ "engines": {
1976
+ "node": ">= 16"
1977
+ },
1978
+ "funding": {
1979
+ "url": "https://github.com/sponsors/express-rate-limit"
1980
+ },
1981
+ "peerDependencies": {
1982
+ "express": ">= 4.11"
1983
+ }
1984
+ },
1985
+ "node_modules/extend-shallow": {
1986
+ "version": "2.0.1",
1987
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
1988
+ "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
1989
+ "license": "MIT",
1990
+ "dependencies": {
1991
+ "is-extendable": "^0.1.0"
1992
+ },
1993
+ "engines": {
1994
+ "node": ">=0.10.0"
1995
+ }
1996
+ },
1997
+ "node_modules/fast-content-type-parse": {
1998
+ "version": "3.0.0",
1999
+ "resolved": "https://registry.npmjs.org/fast-content-type-parse/-/fast-content-type-parse-3.0.0.tgz",
2000
+ "integrity": "sha512-ZvLdcY8P+N8mGQJahJV5G4U88CSvT1rP8ApL6uETe88MBXrBHAkZlSEySdUlyztF7ccb+Znos3TFqaepHxdhBg==",
2001
+ "funding": [
2002
+ {
2003
+ "type": "github",
2004
+ "url": "https://github.com/sponsors/fastify"
2005
+ },
2006
+ {
2007
+ "type": "opencollective",
2008
+ "url": "https://opencollective.com/fastify"
2009
+ }
2010
+ ],
2011
+ "license": "MIT"
2012
+ },
2013
+ "node_modules/fast-deep-equal": {
2014
+ "version": "3.1.3",
2015
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2016
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
2017
+ "license": "MIT"
2018
+ },
2019
+ "node_modules/fast-uri": {
2020
+ "version": "3.1.0",
2021
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz",
2022
+ "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
2023
+ "funding": [
2024
+ {
2025
+ "type": "github",
2026
+ "url": "https://github.com/sponsors/fastify"
2027
+ },
2028
+ {
2029
+ "type": "opencollective",
2030
+ "url": "https://opencollective.com/fastify"
2031
+ }
2032
+ ],
2033
+ "license": "BSD-3-Clause"
2034
+ },
2035
+ "node_modules/file-uri-to-path": {
2036
+ "version": "1.0.0",
2037
+ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
2038
+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
2039
+ "license": "MIT"
2040
+ },
2041
+ "node_modules/finalhandler": {
2042
+ "version": "1.3.2",
2043
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz",
2044
+ "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==",
2045
+ "license": "MIT",
2046
+ "dependencies": {
2047
+ "debug": "2.6.9",
2048
+ "encodeurl": "~2.0.0",
2049
+ "escape-html": "~1.0.3",
2050
+ "on-finished": "~2.4.1",
2051
+ "parseurl": "~1.3.3",
2052
+ "statuses": "~2.0.2",
2053
+ "unpipe": "~1.0.0"
2054
+ },
2055
+ "engines": {
2056
+ "node": ">= 0.8"
2057
+ }
2058
+ },
2059
+ "node_modules/forwarded": {
2060
+ "version": "0.2.0",
2061
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
2062
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
2063
+ "license": "MIT",
2064
+ "engines": {
2065
+ "node": ">= 0.6"
2066
+ }
2067
+ },
2068
+ "node_modules/fresh": {
2069
+ "version": "0.5.2",
2070
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
2071
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
2072
+ "license": "MIT",
2073
+ "engines": {
2074
+ "node": ">= 0.6"
2075
+ }
2076
+ },
2077
+ "node_modules/fs-constants": {
2078
+ "version": "1.0.0",
2079
+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
2080
+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
2081
+ "license": "MIT"
2082
+ },
2083
+ "node_modules/fs-minipass": {
2084
+ "version": "2.1.0",
2085
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
2086
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
2087
+ "license": "ISC",
2088
+ "dependencies": {
2089
+ "minipass": "^3.0.0"
2090
+ },
2091
+ "engines": {
2092
+ "node": ">= 8"
2093
+ }
2094
+ },
2095
+ "node_modules/fs.realpath": {
2096
+ "version": "1.0.0",
2097
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
2098
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
2099
+ "license": "ISC",
2100
+ "optional": true
2101
+ },
2102
+ "node_modules/function-bind": {
2103
+ "version": "1.1.2",
2104
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
2105
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
2106
+ "license": "MIT",
2107
+ "funding": {
2108
+ "url": "https://github.com/sponsors/ljharb"
2109
+ }
2110
+ },
2111
+ "node_modules/fuse.js": {
2112
+ "version": "7.3.0",
2113
+ "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-7.3.0.tgz",
2114
+ "integrity": "sha512-plz8RVjfcDedTGfVngWH1jmJvBvAwi1v2jecfDerbEnMcmOYUEEwKFTHbNoCiYyzaK2Ws8lABkTCcRSqCY1q4w==",
2115
+ "license": "Apache-2.0",
2116
+ "engines": {
2117
+ "node": ">=10"
2118
+ },
2119
+ "funding": {
2120
+ "type": "github",
2121
+ "url": "https://github.com/sponsors/krisk"
2122
+ }
2123
+ },
2124
+ "node_modules/gauge": {
2125
+ "version": "4.0.4",
2126
+ "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz",
2127
+ "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
2128
+ "deprecated": "This package is no longer supported.",
2129
+ "license": "ISC",
2130
+ "optional": true,
2131
+ "dependencies": {
2132
+ "aproba": "^1.0.3 || ^2.0.0",
2133
+ "color-support": "^1.1.3",
2134
+ "console-control-strings": "^1.1.0",
2135
+ "has-unicode": "^2.0.1",
2136
+ "signal-exit": "^3.0.7",
2137
+ "string-width": "^4.2.3",
2138
+ "strip-ansi": "^6.0.1",
2139
+ "wide-align": "^1.1.5"
2140
+ },
2141
+ "engines": {
2142
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
2143
+ }
2144
+ },
2145
+ "node_modules/get-intrinsic": {
2146
+ "version": "1.3.0",
2147
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
2148
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
2149
+ "license": "MIT",
2150
+ "dependencies": {
2151
+ "call-bind-apply-helpers": "^1.0.2",
2152
+ "es-define-property": "^1.0.1",
2153
+ "es-errors": "^1.3.0",
2154
+ "es-object-atoms": "^1.1.1",
2155
+ "function-bind": "^1.1.2",
2156
+ "get-proto": "^1.0.1",
2157
+ "gopd": "^1.2.0",
2158
+ "has-symbols": "^1.1.0",
2159
+ "hasown": "^2.0.2",
2160
+ "math-intrinsics": "^1.1.0"
2161
+ },
2162
+ "engines": {
2163
+ "node": ">= 0.4"
2164
+ },
2165
+ "funding": {
2166
+ "url": "https://github.com/sponsors/ljharb"
2167
+ }
2168
+ },
2169
+ "node_modules/get-proto": {
2170
+ "version": "1.0.1",
2171
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
2172
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
2173
+ "license": "MIT",
2174
+ "dependencies": {
2175
+ "dunder-proto": "^1.0.1",
2176
+ "es-object-atoms": "^1.0.0"
2177
+ },
2178
+ "engines": {
2179
+ "node": ">= 0.4"
2180
+ }
2181
+ },
2182
+ "node_modules/github-from-package": {
2183
+ "version": "0.0.0",
2184
+ "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
2185
+ "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
2186
+ "license": "MIT"
2187
+ },
2188
+ "node_modules/glob": {
2189
+ "version": "7.2.3",
2190
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
2191
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
2192
+ "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
2193
+ "license": "ISC",
2194
+ "optional": true,
2195
+ "dependencies": {
2196
+ "fs.realpath": "^1.0.0",
2197
+ "inflight": "^1.0.4",
2198
+ "inherits": "2",
2199
+ "minimatch": "^3.1.1",
2200
+ "once": "^1.3.0",
2201
+ "path-is-absolute": "^1.0.0"
2202
+ },
2203
+ "engines": {
2204
+ "node": "*"
2205
+ },
2206
+ "funding": {
2207
+ "url": "https://github.com/sponsors/isaacs"
2208
+ }
2209
+ },
2210
+ "node_modules/gopd": {
2211
+ "version": "1.2.0",
2212
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
2213
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
2214
+ "license": "MIT",
2215
+ "engines": {
2216
+ "node": ">= 0.4"
2217
+ },
2218
+ "funding": {
2219
+ "url": "https://github.com/sponsors/ljharb"
2220
+ }
2221
+ },
2222
+ "node_modules/graceful-fs": {
2223
+ "version": "4.2.11",
2224
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2225
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2226
+ "license": "ISC",
2227
+ "optional": true
2228
+ },
2229
+ "node_modules/gray-matter": {
2230
+ "version": "4.0.3",
2231
+ "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
2232
+ "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
2233
+ "license": "MIT",
2234
+ "dependencies": {
2235
+ "js-yaml": "^3.13.1",
2236
+ "kind-of": "^6.0.2",
2237
+ "section-matter": "^1.0.0",
2238
+ "strip-bom-string": "^1.0.0"
2239
+ },
2240
+ "engines": {
2241
+ "node": ">=6.0"
2242
+ }
2243
+ },
2244
+ "node_modules/has-symbols": {
2245
+ "version": "1.1.0",
2246
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
2247
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
2248
+ "license": "MIT",
2249
+ "engines": {
2250
+ "node": ">= 0.4"
2251
+ },
2252
+ "funding": {
2253
+ "url": "https://github.com/sponsors/ljharb"
2254
+ }
2255
+ },
2256
+ "node_modules/has-unicode": {
2257
+ "version": "2.0.1",
2258
+ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
2259
+ "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
2260
+ "license": "ISC",
2261
+ "optional": true
2262
+ },
2263
+ "node_modules/hasown": {
2264
+ "version": "2.0.2",
2265
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
2266
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
2267
+ "license": "MIT",
2268
+ "dependencies": {
2269
+ "function-bind": "^1.1.2"
2270
+ },
2271
+ "engines": {
2272
+ "node": ">= 0.4"
2273
+ }
2274
+ },
2275
+ "node_modules/hono": {
2276
+ "version": "4.12.12",
2277
+ "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.12.tgz",
2278
+ "integrity": "sha512-p1JfQMKaceuCbpJKAPKVqyqviZdS0eUxH9v82oWo1kb9xjQ5wA6iP3FNVAPDFlz5/p7d45lO+BpSk1tuSZMF4Q==",
2279
+ "license": "MIT",
2280
+ "peer": true,
2281
+ "engines": {
2282
+ "node": ">=16.9.0"
2283
+ }
2284
+ },
2285
+ "node_modules/http_ece": {
2286
+ "version": "1.2.0",
2287
+ "resolved": "https://registry.npmjs.org/http_ece/-/http_ece-1.2.0.tgz",
2288
+ "integrity": "sha512-JrF8SSLVmcvc5NducxgyOrKXe3EsyHMgBFgSaIUGmArKe+rwr0uphRkRXvwiom3I+fpIfoItveHrfudL8/rxuA==",
2289
+ "license": "MIT",
2290
+ "engines": {
2291
+ "node": ">=16"
2292
+ }
2293
+ },
2294
+ "node_modules/http-cache-semantics": {
2295
+ "version": "4.2.0",
2296
+ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
2297
+ "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==",
2298
+ "license": "BSD-2-Clause",
2299
+ "optional": true
2300
+ },
2301
+ "node_modules/http-errors": {
2302
+ "version": "2.0.1",
2303
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
2304
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
2305
+ "license": "MIT",
2306
+ "dependencies": {
2307
+ "depd": "~2.0.0",
2308
+ "inherits": "~2.0.4",
2309
+ "setprototypeof": "~1.2.0",
2310
+ "statuses": "~2.0.2",
2311
+ "toidentifier": "~1.0.1"
2312
+ },
2313
+ "engines": {
2314
+ "node": ">= 0.8"
2315
+ },
2316
+ "funding": {
2317
+ "type": "opencollective",
2318
+ "url": "https://opencollective.com/express"
2319
+ }
2320
+ },
2321
+ "node_modules/http-proxy-agent": {
2322
+ "version": "4.0.1",
2323
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
2324
+ "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
2325
+ "license": "MIT",
2326
+ "optional": true,
2327
+ "dependencies": {
2328
+ "@tootallnate/once": "1",
2329
+ "agent-base": "6",
2330
+ "debug": "4"
2331
+ },
2332
+ "engines": {
2333
+ "node": ">= 6"
2334
+ }
2335
+ },
2336
+ "node_modules/http-proxy-agent/node_modules/debug": {
2337
+ "version": "4.4.3",
2338
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
2339
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
2340
+ "license": "MIT",
2341
+ "optional": true,
2342
+ "dependencies": {
2343
+ "ms": "^2.1.3"
2344
+ },
2345
+ "engines": {
2346
+ "node": ">=6.0"
2347
+ },
2348
+ "peerDependenciesMeta": {
2349
+ "supports-color": {
2350
+ "optional": true
2351
+ }
2352
+ }
2353
+ },
2354
+ "node_modules/http-proxy-agent/node_modules/ms": {
2355
+ "version": "2.1.3",
2356
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2357
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2358
+ "license": "MIT",
2359
+ "optional": true
2360
+ },
2361
+ "node_modules/https-proxy-agent": {
2362
+ "version": "5.0.1",
2363
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
2364
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
2365
+ "license": "MIT",
2366
+ "optional": true,
2367
+ "dependencies": {
2368
+ "agent-base": "6",
2369
+ "debug": "4"
2370
+ },
2371
+ "engines": {
2372
+ "node": ">= 6"
2373
+ }
2374
+ },
2375
+ "node_modules/https-proxy-agent/node_modules/debug": {
2376
+ "version": "4.4.3",
2377
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
2378
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
2379
+ "license": "MIT",
2380
+ "optional": true,
2381
+ "dependencies": {
2382
+ "ms": "^2.1.3"
2383
+ },
2384
+ "engines": {
2385
+ "node": ">=6.0"
2386
+ },
2387
+ "peerDependenciesMeta": {
2388
+ "supports-color": {
2389
+ "optional": true
2390
+ }
2391
+ }
2392
+ },
2393
+ "node_modules/https-proxy-agent/node_modules/ms": {
2394
+ "version": "2.1.3",
2395
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2396
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2397
+ "license": "MIT",
2398
+ "optional": true
2399
+ },
2400
+ "node_modules/humanize-ms": {
2401
+ "version": "1.2.1",
2402
+ "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz",
2403
+ "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==",
2404
+ "license": "MIT",
2405
+ "optional": true,
2406
+ "dependencies": {
2407
+ "ms": "^2.0.0"
2408
+ }
2409
+ },
2410
+ "node_modules/iconv-lite": {
2411
+ "version": "0.4.24",
2412
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
2413
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
2414
+ "license": "MIT",
2415
+ "dependencies": {
2416
+ "safer-buffer": ">= 2.1.2 < 3"
2417
+ },
2418
+ "engines": {
2419
+ "node": ">=0.10.0"
2420
+ }
2421
+ },
2422
+ "node_modules/ieee754": {
2423
+ "version": "1.2.1",
2424
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
2425
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
2426
+ "funding": [
2427
+ {
2428
+ "type": "github",
2429
+ "url": "https://github.com/sponsors/feross"
2430
+ },
2431
+ {
2432
+ "type": "patreon",
2433
+ "url": "https://www.patreon.com/feross"
2434
+ },
2435
+ {
2436
+ "type": "consulting",
2437
+ "url": "https://feross.org/support"
2438
+ }
2439
+ ],
2440
+ "license": "BSD-3-Clause"
2441
+ },
2442
+ "node_modules/immediate": {
2443
+ "version": "3.0.6",
2444
+ "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
2445
+ "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
2446
+ "license": "MIT"
2447
+ },
2448
+ "node_modules/imurmurhash": {
2449
+ "version": "0.1.4",
2450
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2451
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2452
+ "license": "MIT",
2453
+ "optional": true,
2454
+ "engines": {
2455
+ "node": ">=0.8.19"
2456
+ }
2457
+ },
2458
+ "node_modules/indent-string": {
2459
+ "version": "4.0.0",
2460
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
2461
+ "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
2462
+ "license": "MIT",
2463
+ "optional": true,
2464
+ "engines": {
2465
+ "node": ">=8"
2466
+ }
2467
+ },
2468
+ "node_modules/infer-owner": {
2469
+ "version": "1.0.4",
2470
+ "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
2471
+ "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
2472
+ "license": "ISC",
2473
+ "optional": true
2474
+ },
2475
+ "node_modules/inflight": {
2476
+ "version": "1.0.6",
2477
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
2478
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
2479
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
2480
+ "license": "ISC",
2481
+ "optional": true,
2482
+ "dependencies": {
2483
+ "once": "^1.3.0",
2484
+ "wrappy": "1"
2485
+ }
2486
+ },
2487
+ "node_modules/inherits": {
2488
+ "version": "2.0.4",
2489
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
2490
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
2491
+ "license": "ISC"
2492
+ },
2493
+ "node_modules/ini": {
2494
+ "version": "1.3.8",
2495
+ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
2496
+ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
2497
+ "license": "ISC"
2498
+ },
2499
+ "node_modules/ip-address": {
2500
+ "version": "10.1.0",
2501
+ "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.1.0.tgz",
2502
+ "integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==",
2503
+ "license": "MIT",
2504
+ "engines": {
2505
+ "node": ">= 12"
2506
+ }
2507
+ },
2508
+ "node_modules/ipaddr.js": {
2509
+ "version": "1.9.1",
2510
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
2511
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
2512
+ "license": "MIT",
2513
+ "engines": {
2514
+ "node": ">= 0.10"
2515
+ }
2516
+ },
2517
+ "node_modules/is-extendable": {
2518
+ "version": "0.1.1",
2519
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
2520
+ "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
2521
+ "license": "MIT",
2522
+ "engines": {
2523
+ "node": ">=0.10.0"
2524
+ }
2525
+ },
2526
+ "node_modules/is-fullwidth-code-point": {
2527
+ "version": "3.0.0",
2528
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
2529
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
2530
+ "license": "MIT",
2531
+ "optional": true,
2532
+ "engines": {
2533
+ "node": ">=8"
2534
+ }
2535
+ },
2536
+ "node_modules/is-lambda": {
2537
+ "version": "1.0.1",
2538
+ "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz",
2539
+ "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==",
2540
+ "license": "MIT",
2541
+ "optional": true
2542
+ },
2543
+ "node_modules/is-promise": {
2544
+ "version": "4.0.0",
2545
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
2546
+ "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
2547
+ "license": "MIT"
2548
+ },
2549
+ "node_modules/isarray": {
2550
+ "version": "1.0.0",
2551
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
2552
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
2553
+ "license": "MIT"
2554
+ },
2555
+ "node_modules/isexe": {
2556
+ "version": "2.0.0",
2557
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2558
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2559
+ "license": "ISC"
2560
+ },
2561
+ "node_modules/jose": {
2562
+ "version": "6.2.2",
2563
+ "resolved": "https://registry.npmjs.org/jose/-/jose-6.2.2.tgz",
2564
+ "integrity": "sha512-d7kPDd34KO/YnzaDOlikGpOurfF0ByC2sEV4cANCtdqLlTfBlw2p14O/5d/zv40gJPbIQxfES3nSx1/oYNyuZQ==",
2565
+ "license": "MIT",
2566
+ "funding": {
2567
+ "url": "https://github.com/sponsors/panva"
2568
+ }
2569
+ },
2570
+ "node_modules/js-yaml": {
2571
+ "version": "3.14.2",
2572
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz",
2573
+ "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==",
2574
+ "license": "MIT",
2575
+ "dependencies": {
2576
+ "argparse": "^1.0.7",
2577
+ "esprima": "^4.0.0"
2578
+ },
2579
+ "bin": {
2580
+ "js-yaml": "bin/js-yaml.js"
2581
+ }
2582
+ },
2583
+ "node_modules/json-schema-to-ts": {
2584
+ "version": "3.1.1",
2585
+ "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-3.1.1.tgz",
2586
+ "integrity": "sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==",
2587
+ "license": "MIT",
2588
+ "dependencies": {
2589
+ "@babel/runtime": "^7.18.3",
2590
+ "ts-algebra": "^2.0.0"
2591
+ },
2592
+ "engines": {
2593
+ "node": ">=16"
2594
+ }
2595
+ },
2596
+ "node_modules/json-schema-traverse": {
2597
+ "version": "1.0.0",
2598
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
2599
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
2600
+ "license": "MIT"
2601
+ },
2602
+ "node_modules/json-schema-typed": {
2603
+ "version": "8.0.2",
2604
+ "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz",
2605
+ "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==",
2606
+ "license": "BSD-2-Clause"
2607
+ },
2608
+ "node_modules/json-with-bigint": {
2609
+ "version": "3.5.8",
2610
+ "resolved": "https://registry.npmjs.org/json-with-bigint/-/json-with-bigint-3.5.8.tgz",
2611
+ "integrity": "sha512-eq/4KP6K34kwa7TcFdtvnftvHCD9KvHOGGICWwMFc4dOOKF5t4iYqnfLK8otCRCRv06FXOzGGyqE8h8ElMvvdw==",
2612
+ "license": "MIT"
2613
+ },
2614
+ "node_modules/jsonwebtoken": {
2615
+ "version": "9.0.3",
2616
+ "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.3.tgz",
2617
+ "integrity": "sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g==",
2618
+ "license": "MIT",
2619
+ "dependencies": {
2620
+ "jws": "^4.0.1",
2621
+ "lodash.includes": "^4.3.0",
2622
+ "lodash.isboolean": "^3.0.3",
2623
+ "lodash.isinteger": "^4.0.4",
2624
+ "lodash.isnumber": "^3.0.3",
2625
+ "lodash.isplainobject": "^4.0.6",
2626
+ "lodash.isstring": "^4.0.1",
2627
+ "lodash.once": "^4.0.0",
2628
+ "ms": "^2.1.1",
2629
+ "semver": "^7.5.4"
2630
+ },
2631
+ "engines": {
2632
+ "node": ">=12",
2633
+ "npm": ">=6"
2634
+ }
2635
+ },
2636
+ "node_modules/jsonwebtoken/node_modules/ms": {
2637
+ "version": "2.1.3",
2638
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2639
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2640
+ "license": "MIT"
2641
+ },
2642
+ "node_modules/jszip": {
2643
+ "version": "3.10.1",
2644
+ "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz",
2645
+ "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==",
2646
+ "license": "(MIT OR GPL-3.0-or-later)",
2647
+ "dependencies": {
2648
+ "lie": "~3.3.0",
2649
+ "pako": "~1.0.2",
2650
+ "readable-stream": "~2.3.6",
2651
+ "setimmediate": "^1.0.5"
2652
+ }
2653
+ },
2654
+ "node_modules/jwa": {
2655
+ "version": "2.0.1",
2656
+ "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz",
2657
+ "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==",
2658
+ "license": "MIT",
2659
+ "dependencies": {
2660
+ "buffer-equal-constant-time": "^1.0.1",
2661
+ "ecdsa-sig-formatter": "1.0.11",
2662
+ "safe-buffer": "^5.0.1"
2663
+ }
2664
+ },
2665
+ "node_modules/jws": {
2666
+ "version": "4.0.1",
2667
+ "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz",
2668
+ "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==",
2669
+ "license": "MIT",
2670
+ "dependencies": {
2671
+ "jwa": "^2.0.1",
2672
+ "safe-buffer": "^5.0.1"
2673
+ }
2674
+ },
2675
+ "node_modules/kind-of": {
2676
+ "version": "6.0.3",
2677
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
2678
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
2679
+ "license": "MIT",
2680
+ "engines": {
2681
+ "node": ">=0.10.0"
2682
+ }
2683
+ },
2684
+ "node_modules/lie": {
2685
+ "version": "3.3.0",
2686
+ "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
2687
+ "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
2688
+ "license": "MIT",
2689
+ "dependencies": {
2690
+ "immediate": "~3.0.5"
2691
+ }
2692
+ },
2693
+ "node_modules/lodash.includes": {
2694
+ "version": "4.3.0",
2695
+ "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
2696
+ "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==",
2697
+ "license": "MIT"
2698
+ },
2699
+ "node_modules/lodash.isboolean": {
2700
+ "version": "3.0.3",
2701
+ "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
2702
+ "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==",
2703
+ "license": "MIT"
2704
+ },
2705
+ "node_modules/lodash.isinteger": {
2706
+ "version": "4.0.4",
2707
+ "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
2708
+ "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==",
2709
+ "license": "MIT"
2710
+ },
2711
+ "node_modules/lodash.isnumber": {
2712
+ "version": "3.0.3",
2713
+ "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
2714
+ "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==",
2715
+ "license": "MIT"
2716
+ },
2717
+ "node_modules/lodash.isplainobject": {
2718
+ "version": "4.0.6",
2719
+ "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
2720
+ "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
2721
+ "license": "MIT"
2722
+ },
2723
+ "node_modules/lodash.isstring": {
2724
+ "version": "4.0.1",
2725
+ "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
2726
+ "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==",
2727
+ "license": "MIT"
2728
+ },
2729
+ "node_modules/lodash.once": {
2730
+ "version": "4.1.1",
2731
+ "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
2732
+ "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
2733
+ "license": "MIT"
2734
+ },
2735
+ "node_modules/lru-cache": {
2736
+ "version": "6.0.0",
2737
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
2738
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
2739
+ "license": "ISC",
2740
+ "optional": true,
2741
+ "dependencies": {
2742
+ "yallist": "^4.0.0"
2743
+ },
2744
+ "engines": {
2745
+ "node": ">=10"
2746
+ }
2747
+ },
2748
+ "node_modules/make-fetch-happen": {
2749
+ "version": "9.1.0",
2750
+ "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz",
2751
+ "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==",
2752
+ "license": "ISC",
2753
+ "optional": true,
2754
+ "dependencies": {
2755
+ "agentkeepalive": "^4.1.3",
2756
+ "cacache": "^15.2.0",
2757
+ "http-cache-semantics": "^4.1.0",
2758
+ "http-proxy-agent": "^4.0.1",
2759
+ "https-proxy-agent": "^5.0.0",
2760
+ "is-lambda": "^1.0.1",
2761
+ "lru-cache": "^6.0.0",
2762
+ "minipass": "^3.1.3",
2763
+ "minipass-collect": "^1.0.2",
2764
+ "minipass-fetch": "^1.3.2",
2765
+ "minipass-flush": "^1.0.5",
2766
+ "minipass-pipeline": "^1.2.4",
2767
+ "negotiator": "^0.6.2",
2768
+ "promise-retry": "^2.0.1",
2769
+ "socks-proxy-agent": "^6.0.0",
2770
+ "ssri": "^8.0.0"
2771
+ },
2772
+ "engines": {
2773
+ "node": ">= 10"
2774
+ }
2775
+ },
2776
+ "node_modules/math-intrinsics": {
2777
+ "version": "1.1.0",
2778
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
2779
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
2780
+ "license": "MIT",
2781
+ "engines": {
2782
+ "node": ">= 0.4"
2783
+ }
2784
+ },
2785
+ "node_modules/media-typer": {
2786
+ "version": "0.3.0",
2787
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
2788
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
2789
+ "license": "MIT",
2790
+ "engines": {
2791
+ "node": ">= 0.6"
2792
+ }
2793
+ },
2794
+ "node_modules/merge-descriptors": {
2795
+ "version": "1.0.3",
2796
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
2797
+ "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
2798
+ "license": "MIT",
2799
+ "funding": {
2800
+ "url": "https://github.com/sponsors/sindresorhus"
2801
+ }
2802
+ },
2803
+ "node_modules/methods": {
2804
+ "version": "1.1.2",
2805
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
2806
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
2807
+ "license": "MIT",
2808
+ "engines": {
2809
+ "node": ">= 0.6"
2810
+ }
2811
+ },
2812
+ "node_modules/mime": {
2813
+ "version": "1.6.0",
2814
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
2815
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
2816
+ "license": "MIT",
2817
+ "bin": {
2818
+ "mime": "cli.js"
2819
+ },
2820
+ "engines": {
2821
+ "node": ">=4"
2822
+ }
2823
+ },
2824
+ "node_modules/mime-db": {
2825
+ "version": "1.54.0",
2826
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
2827
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
2828
+ "license": "MIT",
2829
+ "engines": {
2830
+ "node": ">= 0.6"
2831
+ }
2832
+ },
2833
+ "node_modules/mime-types": {
2834
+ "version": "3.0.2",
2835
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
2836
+ "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
2837
+ "license": "MIT",
2838
+ "dependencies": {
2839
+ "mime-db": "^1.54.0"
2840
+ },
2841
+ "engines": {
2842
+ "node": ">=18"
2843
+ },
2844
+ "funding": {
2845
+ "type": "opencollective",
2846
+ "url": "https://opencollective.com/express"
2847
+ }
2848
+ },
2849
+ "node_modules/mimic-response": {
2850
+ "version": "3.1.0",
2851
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
2852
+ "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
2853
+ "license": "MIT",
2854
+ "engines": {
2855
+ "node": ">=10"
2856
+ },
2857
+ "funding": {
2858
+ "url": "https://github.com/sponsors/sindresorhus"
2859
+ }
2860
+ },
2861
+ "node_modules/minimalistic-assert": {
2862
+ "version": "1.0.1",
2863
+ "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
2864
+ "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
2865
+ "license": "ISC"
2866
+ },
2867
+ "node_modules/minimatch": {
2868
+ "version": "3.1.5",
2869
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
2870
+ "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
2871
+ "license": "ISC",
2872
+ "optional": true,
2873
+ "dependencies": {
2874
+ "brace-expansion": "^1.1.7"
2875
+ },
2876
+ "engines": {
2877
+ "node": "*"
2878
+ }
2879
+ },
2880
+ "node_modules/minimist": {
2881
+ "version": "1.2.8",
2882
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
2883
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
2884
+ "license": "MIT",
2885
+ "funding": {
2886
+ "url": "https://github.com/sponsors/ljharb"
2887
+ }
2888
+ },
2889
+ "node_modules/minipass": {
2890
+ "version": "3.3.6",
2891
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
2892
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
2893
+ "license": "ISC",
2894
+ "dependencies": {
2895
+ "yallist": "^4.0.0"
2896
+ },
2897
+ "engines": {
2898
+ "node": ">=8"
2899
+ }
2900
+ },
2901
+ "node_modules/minipass-collect": {
2902
+ "version": "1.0.2",
2903
+ "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
2904
+ "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
2905
+ "license": "ISC",
2906
+ "optional": true,
2907
+ "dependencies": {
2908
+ "minipass": "^3.0.0"
2909
+ },
2910
+ "engines": {
2911
+ "node": ">= 8"
2912
+ }
2913
+ },
2914
+ "node_modules/minipass-fetch": {
2915
+ "version": "1.4.1",
2916
+ "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz",
2917
+ "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==",
2918
+ "license": "MIT",
2919
+ "optional": true,
2920
+ "dependencies": {
2921
+ "minipass": "^3.1.0",
2922
+ "minipass-sized": "^1.0.3",
2923
+ "minizlib": "^2.0.0"
2924
+ },
2925
+ "engines": {
2926
+ "node": ">=8"
2927
+ },
2928
+ "optionalDependencies": {
2929
+ "encoding": "^0.1.12"
2930
+ }
2931
+ },
2932
+ "node_modules/minipass-fetch/node_modules/encoding": {
2933
+ "version": "0.1.13",
2934
+ "optional": true
2935
+ },
2936
+ "node_modules/minipass-flush": {
2937
+ "version": "1.0.7",
2938
+ "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.7.tgz",
2939
+ "integrity": "sha512-TbqTz9cUwWyHS2Dy89P3ocAGUGxKjjLuR9z8w4WUTGAVgEj17/4nhgo2Du56i0Fm3Pm30g4iA8Lcqctc76jCzA==",
2940
+ "license": "BlueOak-1.0.0",
2941
+ "optional": true,
2942
+ "dependencies": {
2943
+ "minipass": "^3.0.0"
2944
+ },
2945
+ "engines": {
2946
+ "node": ">= 8"
2947
+ }
2948
+ },
2949
+ "node_modules/minipass-pipeline": {
2950
+ "version": "1.2.4",
2951
+ "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
2952
+ "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
2953
+ "license": "ISC",
2954
+ "optional": true,
2955
+ "dependencies": {
2956
+ "minipass": "^3.0.0"
2957
+ },
2958
+ "engines": {
2959
+ "node": ">=8"
2960
+ }
2961
+ },
2962
+ "node_modules/minipass-sized": {
2963
+ "version": "1.0.3",
2964
+ "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz",
2965
+ "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
2966
+ "license": "ISC",
2967
+ "optional": true,
2968
+ "dependencies": {
2969
+ "minipass": "^3.0.0"
2970
+ },
2971
+ "engines": {
2972
+ "node": ">=8"
2973
+ }
2974
+ },
2975
+ "node_modules/minizlib": {
2976
+ "version": "2.1.2",
2977
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
2978
+ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
2979
+ "license": "MIT",
2980
+ "dependencies": {
2981
+ "minipass": "^3.0.0",
2982
+ "yallist": "^4.0.0"
2983
+ },
2984
+ "engines": {
2985
+ "node": ">= 8"
2986
+ }
2987
+ },
2988
+ "node_modules/mkdirp": {
2989
+ "version": "1.0.4",
2990
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
2991
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
2992
+ "license": "MIT",
2993
+ "bin": {
2994
+ "mkdirp": "bin/cmd.js"
2995
+ },
2996
+ "engines": {
2997
+ "node": ">=10"
2998
+ }
2999
+ },
3000
+ "node_modules/mkdirp-classic": {
3001
+ "version": "0.5.3",
3002
+ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
3003
+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
3004
+ "license": "MIT"
3005
+ },
3006
+ "node_modules/ms": {
3007
+ "version": "2.0.0",
3008
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
3009
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
3010
+ "license": "MIT"
3011
+ },
3012
+ "node_modules/multer": {
3013
+ "version": "2.1.1",
3014
+ "resolved": "https://registry.npmjs.org/multer/-/multer-2.1.1.tgz",
3015
+ "integrity": "sha512-mo+QTzKlx8R7E5ylSXxWzGoXoZbOsRMpyitcht8By2KHvMbf3tjwosZ/Mu/XYU6UuJ3VZnODIrak5ZrPiPyB6A==",
3016
+ "license": "MIT",
3017
+ "dependencies": {
3018
+ "append-field": "^1.0.0",
3019
+ "busboy": "^1.6.0",
3020
+ "concat-stream": "^2.0.0",
3021
+ "type-is": "^1.6.18"
3022
+ },
3023
+ "engines": {
3024
+ "node": ">= 10.16.0"
3025
+ },
3026
+ "funding": {
3027
+ "type": "opencollective",
3028
+ "url": "https://opencollective.com/express"
3029
+ }
3030
+ },
3031
+ "node_modules/napi-build-utils": {
3032
+ "version": "2.0.0",
3033
+ "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz",
3034
+ "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==",
3035
+ "license": "MIT"
3036
+ },
3037
+ "node_modules/negotiator": {
3038
+ "version": "0.6.3",
3039
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
3040
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
3041
+ "license": "MIT",
3042
+ "engines": {
3043
+ "node": ">= 0.6"
3044
+ }
3045
+ },
3046
+ "node_modules/node-abi": {
3047
+ "version": "3.89.0",
3048
+ "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.89.0.tgz",
3049
+ "integrity": "sha512-6u9UwL0HlAl21+agMN3YAMXcKByMqwGx+pq+P76vii5f7hTPtKDp08/H9py6DY+cfDw7kQNTGEj/rly3IgbNQA==",
3050
+ "license": "MIT",
3051
+ "dependencies": {
3052
+ "semver": "^7.3.5"
3053
+ },
3054
+ "engines": {
3055
+ "node": ">=10"
3056
+ }
3057
+ },
3058
+ "node_modules/node-addon-api": {
3059
+ "version": "8.7.0",
3060
+ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.7.0.tgz",
3061
+ "integrity": "sha512-9MdFxmkKaOYVTV+XVRG8ArDwwQ77XIgIPyKASB1k3JPq3M8fGQQQE3YpMOrKm6g//Ktx8ivZr8xo1Qmtqub+GA==",
3062
+ "license": "MIT",
3063
+ "engines": {
3064
+ "node": "^18 || ^20 || >= 21"
3065
+ }
3066
+ },
3067
+ "node_modules/node-fetch": {
3068
+ "version": "2.7.0",
3069
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
3070
+ "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
3071
+ "license": "MIT",
3072
+ "dependencies": {
3073
+ "whatwg-url": "^5.0.0"
3074
+ },
3075
+ "engines": {
3076
+ "node": "4.x || >=6.0.0"
3077
+ },
3078
+ "peerDependencies": {
3079
+ "encoding": "^0.1.0"
3080
+ },
3081
+ "peerDependenciesMeta": {
3082
+ "encoding": {
3083
+ "optional": true
3084
+ }
3085
+ }
3086
+ },
3087
+ "node_modules/node-gyp": {
3088
+ "version": "8.4.1",
3089
+ "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz",
3090
+ "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==",
3091
+ "license": "MIT",
3092
+ "optional": true,
3093
+ "dependencies": {
3094
+ "env-paths": "^2.2.0",
3095
+ "glob": "^7.1.4",
3096
+ "graceful-fs": "^4.2.6",
3097
+ "make-fetch-happen": "^9.1.0",
3098
+ "nopt": "^5.0.0",
3099
+ "npmlog": "^6.0.0",
3100
+ "rimraf": "^3.0.2",
3101
+ "semver": "^7.3.5",
3102
+ "tar": "^6.1.2",
3103
+ "which": "^2.0.2"
3104
+ },
3105
+ "bin": {
3106
+ "node-gyp": "bin/node-gyp.js"
3107
+ },
3108
+ "engines": {
3109
+ "node": ">= 10.12.0"
3110
+ }
3111
+ },
3112
+ "node_modules/node-gyp-build": {
3113
+ "version": "4.8.4",
3114
+ "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz",
3115
+ "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==",
3116
+ "license": "MIT",
3117
+ "bin": {
3118
+ "node-gyp-build": "bin.js",
3119
+ "node-gyp-build-optional": "optional.js",
3120
+ "node-gyp-build-test": "build-test.js"
3121
+ }
3122
+ },
3123
+ "node_modules/node-pty": {
3124
+ "version": "1.1.0",
3125
+ "resolved": "https://registry.npmjs.org/node-pty/-/node-pty-1.1.0.tgz",
3126
+ "integrity": "sha512-20JqtutY6JPXTUnL0ij1uad7Qe1baT46lyolh2sSENDd4sTzKZ4nmAFkeAARDKwmlLjPx6XKRlwRUxwjOy+lUg==",
3127
+ "hasInstallScript": true,
3128
+ "license": "MIT",
3129
+ "dependencies": {
3130
+ "node-addon-api": "^7.1.0"
3131
+ }
3132
+ },
3133
+ "node_modules/node-pty/node_modules/node-addon-api": {
3134
+ "version": "7.1.1",
3135
+ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
3136
+ "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
3137
+ "license": "MIT"
3138
+ },
3139
+ "node_modules/nopt": {
3140
+ "version": "5.0.0",
3141
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
3142
+ "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
3143
+ "license": "ISC",
3144
+ "optional": true,
3145
+ "dependencies": {
3146
+ "abbrev": "1"
3147
+ },
3148
+ "bin": {
3149
+ "nopt": "bin/nopt.js"
3150
+ },
3151
+ "engines": {
3152
+ "node": ">=6"
3153
+ }
3154
+ },
3155
+ "node_modules/npmlog": {
3156
+ "version": "6.0.2",
3157
+ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz",
3158
+ "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
3159
+ "deprecated": "This package is no longer supported.",
3160
+ "license": "ISC",
3161
+ "optional": true,
3162
+ "dependencies": {
3163
+ "are-we-there-yet": "^3.0.0",
3164
+ "console-control-strings": "^1.1.0",
3165
+ "gauge": "^4.0.3",
3166
+ "set-blocking": "^2.0.0"
3167
+ },
3168
+ "engines": {
3169
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
3170
+ }
3171
+ },
3172
+ "node_modules/object-assign": {
3173
+ "version": "4.1.1",
3174
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
3175
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
3176
+ "license": "MIT",
3177
+ "engines": {
3178
+ "node": ">=0.10.0"
3179
+ }
3180
+ },
3181
+ "node_modules/object-inspect": {
3182
+ "version": "1.13.4",
3183
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
3184
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
3185
+ "license": "MIT",
3186
+ "engines": {
3187
+ "node": ">= 0.4"
3188
+ },
3189
+ "funding": {
3190
+ "url": "https://github.com/sponsors/ljharb"
3191
+ }
3192
+ },
3193
+ "node_modules/on-finished": {
3194
+ "version": "2.4.1",
3195
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
3196
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
3197
+ "license": "MIT",
3198
+ "dependencies": {
3199
+ "ee-first": "1.1.1"
3200
+ },
3201
+ "engines": {
3202
+ "node": ">= 0.8"
3203
+ }
3204
+ },
3205
+ "node_modules/once": {
3206
+ "version": "1.4.0",
3207
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
3208
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
3209
+ "license": "ISC",
3210
+ "dependencies": {
3211
+ "wrappy": "1"
3212
+ }
3213
+ },
3214
+ "node_modules/p-map": {
3215
+ "version": "4.0.0",
3216
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
3217
+ "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
3218
+ "license": "MIT",
3219
+ "optional": true,
3220
+ "dependencies": {
3221
+ "aggregate-error": "^3.0.0"
3222
+ },
3223
+ "engines": {
3224
+ "node": ">=10"
3225
+ },
3226
+ "funding": {
3227
+ "url": "https://github.com/sponsors/sindresorhus"
3228
+ }
3229
+ },
3230
+ "node_modules/pako": {
3231
+ "version": "1.0.11",
3232
+ "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
3233
+ "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
3234
+ "license": "(MIT AND Zlib)"
3235
+ },
3236
+ "node_modules/parseurl": {
3237
+ "version": "1.3.3",
3238
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
3239
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
3240
+ "license": "MIT",
3241
+ "engines": {
3242
+ "node": ">= 0.8"
3243
+ }
3244
+ },
3245
+ "node_modules/path-is-absolute": {
3246
+ "version": "1.0.1",
3247
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
3248
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
3249
+ "license": "MIT",
3250
+ "optional": true,
3251
+ "engines": {
3252
+ "node": ">=0.10.0"
3253
+ }
3254
+ },
3255
+ "node_modules/path-key": {
3256
+ "version": "3.1.1",
3257
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
3258
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3259
+ "license": "MIT",
3260
+ "engines": {
3261
+ "node": ">=8"
3262
+ }
3263
+ },
3264
+ "node_modules/path-to-regexp": {
3265
+ "version": "0.1.13",
3266
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz",
3267
+ "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==",
3268
+ "license": "MIT"
3269
+ },
3270
+ "node_modules/pkce-challenge": {
3271
+ "version": "5.0.1",
3272
+ "resolved": "https://registry.npmjs.org/pkce-challenge/-/pkce-challenge-5.0.1.tgz",
3273
+ "integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==",
3274
+ "license": "MIT",
3275
+ "engines": {
3276
+ "node": ">=16.20.0"
3277
+ }
3278
+ },
3279
+ "node_modules/prebuild-install": {
3280
+ "version": "7.1.3",
3281
+ "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz",
3282
+ "integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==",
3283
+ "deprecated": "No longer maintained. Please contact the author of the relevant native addon; alternatives are available.",
3284
+ "license": "MIT",
3285
+ "dependencies": {
3286
+ "detect-libc": "^2.0.0",
3287
+ "expand-template": "^2.0.3",
3288
+ "github-from-package": "0.0.0",
3289
+ "minimist": "^1.2.3",
3290
+ "mkdirp-classic": "^0.5.3",
3291
+ "napi-build-utils": "^2.0.0",
3292
+ "node-abi": "^3.3.0",
3293
+ "pump": "^3.0.0",
3294
+ "rc": "^1.2.7",
3295
+ "simple-get": "^4.0.0",
3296
+ "tar-fs": "^2.0.0",
3297
+ "tunnel-agent": "^0.6.0"
3298
+ },
3299
+ "bin": {
3300
+ "prebuild-install": "bin.js"
3301
+ },
3302
+ "engines": {
3303
+ "node": ">=10"
3304
+ }
3305
+ },
3306
+ "node_modules/process-nextick-args": {
3307
+ "version": "2.0.1",
3308
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
3309
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
3310
+ "license": "MIT"
3311
+ },
3312
+ "node_modules/promise-inflight": {
3313
+ "version": "1.0.1",
3314
+ "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
3315
+ "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==",
3316
+ "license": "ISC",
3317
+ "optional": true
3318
+ },
3319
+ "node_modules/promise-retry": {
3320
+ "version": "2.0.1",
3321
+ "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
3322
+ "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
3323
+ "license": "MIT",
3324
+ "optional": true,
3325
+ "dependencies": {
3326
+ "err-code": "^2.0.2",
3327
+ "retry": "^0.12.0"
3328
+ },
3329
+ "engines": {
3330
+ "node": ">=10"
3331
+ }
3332
+ },
3333
+ "node_modules/proxy-addr": {
3334
+ "version": "2.0.7",
3335
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
3336
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
3337
+ "license": "MIT",
3338
+ "dependencies": {
3339
+ "forwarded": "0.2.0",
3340
+ "ipaddr.js": "1.9.1"
3341
+ },
3342
+ "engines": {
3343
+ "node": ">= 0.10"
3344
+ }
3345
+ },
3346
+ "node_modules/pump": {
3347
+ "version": "3.0.4",
3348
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz",
3349
+ "integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==",
3350
+ "license": "MIT",
3351
+ "dependencies": {
3352
+ "end-of-stream": "^1.1.0",
3353
+ "once": "^1.3.1"
3354
+ }
3355
+ },
3356
+ "node_modules/qs": {
3357
+ "version": "6.14.2",
3358
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
3359
+ "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
3360
+ "license": "BSD-3-Clause",
3361
+ "dependencies": {
3362
+ "side-channel": "^1.1.0"
3363
+ },
3364
+ "engines": {
3365
+ "node": ">=0.6"
3366
+ },
3367
+ "funding": {
3368
+ "url": "https://github.com/sponsors/ljharb"
3369
+ }
3370
+ },
3371
+ "node_modules/range-parser": {
3372
+ "version": "1.2.1",
3373
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
3374
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
3375
+ "license": "MIT",
3376
+ "engines": {
3377
+ "node": ">= 0.6"
3378
+ }
3379
+ },
3380
+ "node_modules/raw-body": {
3381
+ "version": "3.0.2",
3382
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
3383
+ "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
3384
+ "license": "MIT",
3385
+ "dependencies": {
3386
+ "bytes": "~3.1.2",
3387
+ "http-errors": "~2.0.1",
3388
+ "iconv-lite": "~0.7.0",
3389
+ "unpipe": "~1.0.0"
3390
+ },
3391
+ "engines": {
3392
+ "node": ">= 0.10"
3393
+ }
3394
+ },
3395
+ "node_modules/raw-body/node_modules/iconv-lite": {
3396
+ "version": "0.7.2",
3397
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
3398
+ "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
3399
+ "license": "MIT",
3400
+ "dependencies": {
3401
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
3402
+ },
3403
+ "engines": {
3404
+ "node": ">=0.10.0"
3405
+ },
3406
+ "funding": {
3407
+ "type": "opencollective",
3408
+ "url": "https://opencollective.com/express"
3409
+ }
3410
+ },
3411
+ "node_modules/rc": {
3412
+ "version": "1.2.8",
3413
+ "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
3414
+ "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
3415
+ "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
3416
+ "dependencies": {
3417
+ "deep-extend": "^0.6.0",
3418
+ "ini": "~1.3.0",
3419
+ "minimist": "^1.2.0",
3420
+ "strip-json-comments": "~2.0.1"
3421
+ },
3422
+ "bin": {
3423
+ "rc": "cli.js"
3424
+ }
3425
+ },
3426
+ "node_modules/readable-stream": {
3427
+ "version": "2.3.8",
3428
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
3429
+ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
3430
+ "license": "MIT",
3431
+ "dependencies": {
3432
+ "core-util-is": "~1.0.0",
3433
+ "inherits": "~2.0.3",
3434
+ "isarray": "~1.0.0",
3435
+ "process-nextick-args": "~2.0.0",
3436
+ "safe-buffer": "~5.1.1",
3437
+ "string_decoder": "~1.1.1",
3438
+ "util-deprecate": "~1.0.1"
3439
+ }
3440
+ },
3441
+ "node_modules/readable-stream/node_modules/safe-buffer": {
3442
+ "version": "5.1.2",
3443
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
3444
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
3445
+ "license": "MIT"
3446
+ },
3447
+ "node_modules/readdirp": {
3448
+ "version": "4.1.2",
3449
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
3450
+ "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
3451
+ "license": "MIT",
3452
+ "engines": {
3453
+ "node": ">= 14.18.0"
3454
+ },
3455
+ "funding": {
3456
+ "type": "individual",
3457
+ "url": "https://paulmillr.com/funding/"
3458
+ }
3459
+ },
3460
+ "node_modules/require-from-string": {
3461
+ "version": "2.0.2",
3462
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
3463
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
3464
+ "license": "MIT",
3465
+ "engines": {
3466
+ "node": ">=0.10.0"
3467
+ }
3468
+ },
3469
+ "node_modules/retry": {
3470
+ "version": "0.12.0",
3471
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
3472
+ "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
3473
+ "license": "MIT",
3474
+ "optional": true,
3475
+ "engines": {
3476
+ "node": ">= 4"
3477
+ }
3478
+ },
3479
+ "node_modules/rimraf": {
3480
+ "version": "3.0.2",
3481
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
3482
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
3483
+ "deprecated": "Rimraf versions prior to v4 are no longer supported",
3484
+ "license": "ISC",
3485
+ "optional": true,
3486
+ "dependencies": {
3487
+ "glob": "^7.1.3"
3488
+ },
3489
+ "bin": {
3490
+ "rimraf": "bin.js"
3491
+ },
3492
+ "funding": {
3493
+ "url": "https://github.com/sponsors/isaacs"
3494
+ }
3495
+ },
3496
+ "node_modules/router": {
3497
+ "version": "2.2.0",
3498
+ "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
3499
+ "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
3500
+ "license": "MIT",
3501
+ "dependencies": {
3502
+ "debug": "^4.4.0",
3503
+ "depd": "^2.0.0",
3504
+ "is-promise": "^4.0.0",
3505
+ "parseurl": "^1.3.3",
3506
+ "path-to-regexp": "^8.0.0"
3507
+ },
3508
+ "engines": {
3509
+ "node": ">= 18"
3510
+ }
3511
+ },
3512
+ "node_modules/router/node_modules/debug": {
3513
+ "version": "4.4.3",
3514
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
3515
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
3516
+ "license": "MIT",
3517
+ "dependencies": {
3518
+ "ms": "^2.1.3"
3519
+ },
3520
+ "engines": {
3521
+ "node": ">=6.0"
3522
+ },
3523
+ "peerDependenciesMeta": {
3524
+ "supports-color": {
3525
+ "optional": true
3526
+ }
3527
+ }
3528
+ },
3529
+ "node_modules/router/node_modules/ms": {
3530
+ "version": "2.1.3",
3531
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3532
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3533
+ "license": "MIT"
3534
+ },
3535
+ "node_modules/router/node_modules/path-to-regexp": {
3536
+ "version": "8.4.2",
3537
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz",
3538
+ "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==",
3539
+ "license": "MIT",
3540
+ "funding": {
3541
+ "type": "opencollective",
3542
+ "url": "https://opencollective.com/express"
3543
+ }
3544
+ },
3545
+ "node_modules/safe-buffer": {
3546
+ "version": "5.2.1",
3547
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
3548
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
3549
+ "funding": [
3550
+ {
3551
+ "type": "github",
3552
+ "url": "https://github.com/sponsors/feross"
3553
+ },
3554
+ {
3555
+ "type": "patreon",
3556
+ "url": "https://www.patreon.com/feross"
3557
+ },
3558
+ {
3559
+ "type": "consulting",
3560
+ "url": "https://feross.org/support"
3561
+ }
3562
+ ],
3563
+ "license": "MIT"
3564
+ },
3565
+ "node_modules/safer-buffer": {
3566
+ "version": "2.1.2",
3567
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
3568
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
3569
+ "license": "MIT"
3570
+ },
3571
+ "node_modules/section-matter": {
3572
+ "version": "1.0.0",
3573
+ "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
3574
+ "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
3575
+ "license": "MIT",
3576
+ "dependencies": {
3577
+ "extend-shallow": "^2.0.1",
3578
+ "kind-of": "^6.0.0"
3579
+ },
3580
+ "engines": {
3581
+ "node": ">=4"
3582
+ }
3583
+ },
3584
+ "node_modules/semver": {
3585
+ "version": "7.7.4",
3586
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
3587
+ "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
3588
+ "license": "ISC",
3589
+ "bin": {
3590
+ "semver": "bin/semver.js"
3591
+ },
3592
+ "engines": {
3593
+ "node": ">=10"
3594
+ }
3595
+ },
3596
+ "node_modules/send": {
3597
+ "version": "0.19.2",
3598
+ "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz",
3599
+ "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
3600
+ "license": "MIT",
3601
+ "dependencies": {
3602
+ "debug": "2.6.9",
3603
+ "depd": "2.0.0",
3604
+ "destroy": "1.2.0",
3605
+ "encodeurl": "~2.0.0",
3606
+ "escape-html": "~1.0.3",
3607
+ "etag": "~1.8.1",
3608
+ "fresh": "~0.5.2",
3609
+ "http-errors": "~2.0.1",
3610
+ "mime": "1.6.0",
3611
+ "ms": "2.1.3",
3612
+ "on-finished": "~2.4.1",
3613
+ "range-parser": "~1.2.1",
3614
+ "statuses": "~2.0.2"
3615
+ },
3616
+ "engines": {
3617
+ "node": ">= 0.8.0"
3618
+ }
3619
+ },
3620
+ "node_modules/send/node_modules/ms": {
3621
+ "version": "2.1.3",
3622
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3623
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3624
+ "license": "MIT"
3625
+ },
3626
+ "node_modules/serve-static": {
3627
+ "version": "1.16.3",
3628
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz",
3629
+ "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
3630
+ "license": "MIT",
3631
+ "dependencies": {
3632
+ "encodeurl": "~2.0.0",
3633
+ "escape-html": "~1.0.3",
3634
+ "parseurl": "~1.3.3",
3635
+ "send": "~0.19.1"
3636
+ },
3637
+ "engines": {
3638
+ "node": ">= 0.8.0"
3639
+ }
3640
+ },
3641
+ "node_modules/set-blocking": {
3642
+ "version": "2.0.0",
3643
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
3644
+ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
3645
+ "license": "ISC",
3646
+ "optional": true
3647
+ },
3648
+ "node_modules/setimmediate": {
3649
+ "version": "1.0.5",
3650
+ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
3651
+ "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==",
3652
+ "license": "MIT"
3653
+ },
3654
+ "node_modules/setprototypeof": {
3655
+ "version": "1.2.0",
3656
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
3657
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
3658
+ "license": "ISC"
3659
+ },
3660
+ "node_modules/shebang-command": {
3661
+ "version": "2.0.0",
3662
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
3663
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3664
+ "license": "MIT",
3665
+ "dependencies": {
3666
+ "shebang-regex": "^3.0.0"
3667
+ },
3668
+ "engines": {
3669
+ "node": ">=8"
3670
+ }
3671
+ },
3672
+ "node_modules/shebang-regex": {
3673
+ "version": "3.0.0",
3674
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
3675
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3676
+ "license": "MIT",
3677
+ "engines": {
3678
+ "node": ">=8"
3679
+ }
3680
+ },
3681
+ "node_modules/shell-quote": {
3682
+ "version": "1.8.3",
3683
+ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz",
3684
+ "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==",
3685
+ "license": "MIT",
3686
+ "engines": {
3687
+ "node": ">= 0.4"
3688
+ },
3689
+ "funding": {
3690
+ "url": "https://github.com/sponsors/ljharb"
3691
+ }
3692
+ },
3693
+ "node_modules/side-channel": {
3694
+ "version": "1.1.0",
3695
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
3696
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
3697
+ "license": "MIT",
3698
+ "dependencies": {
3699
+ "es-errors": "^1.3.0",
3700
+ "object-inspect": "^1.13.3",
3701
+ "side-channel-list": "^1.0.0",
3702
+ "side-channel-map": "^1.0.1",
3703
+ "side-channel-weakmap": "^1.0.2"
3704
+ },
3705
+ "engines": {
3706
+ "node": ">= 0.4"
3707
+ },
3708
+ "funding": {
3709
+ "url": "https://github.com/sponsors/ljharb"
3710
+ }
3711
+ },
3712
+ "node_modules/side-channel-list": {
3713
+ "version": "1.0.1",
3714
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
3715
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
3716
+ "license": "MIT",
3717
+ "dependencies": {
3718
+ "es-errors": "^1.3.0",
3719
+ "object-inspect": "^1.13.4"
3720
+ },
3721
+ "engines": {
3722
+ "node": ">= 0.4"
3723
+ },
3724
+ "funding": {
3725
+ "url": "https://github.com/sponsors/ljharb"
3726
+ }
3727
+ },
3728
+ "node_modules/side-channel-map": {
3729
+ "version": "1.0.1",
3730
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
3731
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
3732
+ "license": "MIT",
3733
+ "dependencies": {
3734
+ "call-bound": "^1.0.2",
3735
+ "es-errors": "^1.3.0",
3736
+ "get-intrinsic": "^1.2.5",
3737
+ "object-inspect": "^1.13.3"
3738
+ },
3739
+ "engines": {
3740
+ "node": ">= 0.4"
3741
+ },
3742
+ "funding": {
3743
+ "url": "https://github.com/sponsors/ljharb"
3744
+ }
3745
+ },
3746
+ "node_modules/side-channel-weakmap": {
3747
+ "version": "1.0.2",
3748
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
3749
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
3750
+ "license": "MIT",
3751
+ "dependencies": {
3752
+ "call-bound": "^1.0.2",
3753
+ "es-errors": "^1.3.0",
3754
+ "get-intrinsic": "^1.2.5",
3755
+ "object-inspect": "^1.13.3",
3756
+ "side-channel-map": "^1.0.1"
3757
+ },
3758
+ "engines": {
3759
+ "node": ">= 0.4"
3760
+ },
3761
+ "funding": {
3762
+ "url": "https://github.com/sponsors/ljharb"
3763
+ }
3764
+ },
3765
+ "node_modules/signal-exit": {
3766
+ "version": "3.0.7",
3767
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
3768
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
3769
+ "license": "ISC",
3770
+ "optional": true
3771
+ },
3772
+ "node_modules/simple-concat": {
3773
+ "version": "1.0.1",
3774
+ "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
3775
+ "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
3776
+ "funding": [
3777
+ {
3778
+ "type": "github",
3779
+ "url": "https://github.com/sponsors/feross"
3780
+ },
3781
+ {
3782
+ "type": "patreon",
3783
+ "url": "https://www.patreon.com/feross"
3784
+ },
3785
+ {
3786
+ "type": "consulting",
3787
+ "url": "https://feross.org/support"
3788
+ }
3789
+ ],
3790
+ "license": "MIT"
3791
+ },
3792
+ "node_modules/simple-get": {
3793
+ "version": "4.0.1",
3794
+ "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
3795
+ "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
3796
+ "funding": [
3797
+ {
3798
+ "type": "github",
3799
+ "url": "https://github.com/sponsors/feross"
3800
+ },
3801
+ {
3802
+ "type": "patreon",
3803
+ "url": "https://www.patreon.com/feross"
3804
+ },
3805
+ {
3806
+ "type": "consulting",
3807
+ "url": "https://feross.org/support"
3808
+ }
3809
+ ],
3810
+ "license": "MIT",
3811
+ "dependencies": {
3812
+ "decompress-response": "^6.0.0",
3813
+ "once": "^1.3.1",
3814
+ "simple-concat": "^1.0.0"
3815
+ }
3816
+ },
3817
+ "node_modules/smart-buffer": {
3818
+ "version": "4.2.0",
3819
+ "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
3820
+ "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
3821
+ "license": "MIT",
3822
+ "optional": true,
3823
+ "engines": {
3824
+ "node": ">= 6.0.0",
3825
+ "npm": ">= 3.0.0"
3826
+ }
3827
+ },
3828
+ "node_modules/socks": {
3829
+ "version": "2.8.7",
3830
+ "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.7.tgz",
3831
+ "integrity": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==",
3832
+ "license": "MIT",
3833
+ "optional": true,
3834
+ "dependencies": {
3835
+ "ip-address": "^10.0.1",
3836
+ "smart-buffer": "^4.2.0"
3837
+ },
3838
+ "engines": {
3839
+ "node": ">= 10.0.0",
3840
+ "npm": ">= 3.0.0"
3841
+ }
3842
+ },
3843
+ "node_modules/socks-proxy-agent": {
3844
+ "version": "6.2.1",
3845
+ "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz",
3846
+ "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==",
3847
+ "license": "MIT",
3848
+ "optional": true,
3849
+ "dependencies": {
3850
+ "agent-base": "^6.0.2",
3851
+ "debug": "^4.3.3",
3852
+ "socks": "^2.6.2"
3853
+ },
3854
+ "engines": {
3855
+ "node": ">= 10"
3856
+ }
3857
+ },
3858
+ "node_modules/socks-proxy-agent/node_modules/debug": {
3859
+ "version": "4.4.3",
3860
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
3861
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
3862
+ "license": "MIT",
3863
+ "optional": true,
3864
+ "dependencies": {
3865
+ "ms": "^2.1.3"
3866
+ },
3867
+ "engines": {
3868
+ "node": ">=6.0"
3869
+ },
3870
+ "peerDependenciesMeta": {
3871
+ "supports-color": {
3872
+ "optional": true
3873
+ }
3874
+ }
3875
+ },
3876
+ "node_modules/socks-proxy-agent/node_modules/ms": {
3877
+ "version": "2.1.3",
3878
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3879
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3880
+ "license": "MIT",
3881
+ "optional": true
3882
+ },
3883
+ "node_modules/sprintf-js": {
3884
+ "version": "1.0.3",
3885
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
3886
+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
3887
+ "license": "BSD-3-Clause"
3888
+ },
3889
+ "node_modules/sqlite": {
3890
+ "version": "5.1.1",
3891
+ "resolved": "https://registry.npmjs.org/sqlite/-/sqlite-5.1.1.tgz",
3892
+ "integrity": "sha512-oBkezXa2hnkfuJwUo44Hl9hS3er+YFtueifoajrgidvqsJRQFpc5fKoAkAor1O5ZnLoa28GBScfHXs8j0K358Q==",
3893
+ "license": "MIT"
3894
+ },
3895
+ "node_modules/sqlite3": {
3896
+ "version": "5.1.7",
3897
+ "resolved": "https://registry.npmjs.org/sqlite3/-/sqlite3-5.1.7.tgz",
3898
+ "integrity": "sha512-GGIyOiFaG+TUra3JIfkI/zGP8yZYLPQ0pl1bH+ODjiX57sPhrLU5sQJn1y9bDKZUFYkX1crlrPfSYt0BKKdkog==",
3899
+ "hasInstallScript": true,
3900
+ "license": "BSD-3-Clause",
3901
+ "dependencies": {
3902
+ "bindings": "^1.5.0",
3903
+ "node-addon-api": "^7.0.0",
3904
+ "prebuild-install": "^7.1.1",
3905
+ "tar": "^6.1.11"
3906
+ },
3907
+ "optionalDependencies": {
3908
+ "node-gyp": "8.x"
3909
+ },
3910
+ "peerDependencies": {
3911
+ "node-gyp": "8.x"
3912
+ },
3913
+ "peerDependenciesMeta": {
3914
+ "node-gyp": {
3915
+ "optional": true
3916
+ }
3917
+ }
3918
+ },
3919
+ "node_modules/sqlite3/node_modules/node-addon-api": {
3920
+ "version": "7.1.1",
3921
+ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
3922
+ "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
3923
+ "license": "MIT"
3924
+ },
3925
+ "node_modules/ssri": {
3926
+ "version": "8.0.1",
3927
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
3928
+ "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
3929
+ "license": "ISC",
3930
+ "optional": true,
3931
+ "dependencies": {
3932
+ "minipass": "^3.1.1"
3933
+ },
3934
+ "engines": {
3935
+ "node": ">= 8"
3936
+ }
3937
+ },
3938
+ "node_modules/statuses": {
3939
+ "version": "2.0.2",
3940
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
3941
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
3942
+ "license": "MIT",
3943
+ "engines": {
3944
+ "node": ">= 0.8"
3945
+ }
3946
+ },
3947
+ "node_modules/streamsearch": {
3948
+ "version": "1.1.0",
3949
+ "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
3950
+ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
3951
+ "engines": {
3952
+ "node": ">=10.0.0"
3953
+ }
3954
+ },
3955
+ "node_modules/string_decoder": {
3956
+ "version": "1.1.1",
3957
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
3958
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
3959
+ "license": "MIT",
3960
+ "dependencies": {
3961
+ "safe-buffer": "~5.1.0"
3962
+ }
3963
+ },
3964
+ "node_modules/string_decoder/node_modules/safe-buffer": {
3965
+ "version": "5.1.2",
3966
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
3967
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
3968
+ "license": "MIT"
3969
+ },
3970
+ "node_modules/string-width": {
3971
+ "version": "4.2.3",
3972
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
3973
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
3974
+ "license": "MIT",
3975
+ "optional": true,
3976
+ "dependencies": {
3977
+ "emoji-regex": "^8.0.0",
3978
+ "is-fullwidth-code-point": "^3.0.0",
3979
+ "strip-ansi": "^6.0.1"
3980
+ },
3981
+ "engines": {
3982
+ "node": ">=8"
3983
+ }
3984
+ },
3985
+ "node_modules/strip-ansi": {
3986
+ "version": "6.0.1",
3987
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
3988
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3989
+ "license": "MIT",
3990
+ "optional": true,
3991
+ "dependencies": {
3992
+ "ansi-regex": "^5.0.1"
3993
+ },
3994
+ "engines": {
3995
+ "node": ">=8"
3996
+ }
3997
+ },
3998
+ "node_modules/strip-bom-string": {
3999
+ "version": "1.0.0",
4000
+ "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
4001
+ "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==",
4002
+ "license": "MIT",
4003
+ "engines": {
4004
+ "node": ">=0.10.0"
4005
+ }
4006
+ },
4007
+ "node_modules/strip-json-comments": {
4008
+ "version": "2.0.1",
4009
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
4010
+ "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
4011
+ "license": "MIT",
4012
+ "engines": {
4013
+ "node": ">=0.10.0"
4014
+ }
4015
+ },
4016
+ "node_modules/tar": {
4017
+ "version": "6.2.1",
4018
+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz",
4019
+ "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==",
4020
+ "deprecated": "Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
4021
+ "license": "ISC",
4022
+ "dependencies": {
4023
+ "chownr": "^2.0.0",
4024
+ "fs-minipass": "^2.0.0",
4025
+ "minipass": "^5.0.0",
4026
+ "minizlib": "^2.1.1",
4027
+ "mkdirp": "^1.0.3",
4028
+ "yallist": "^4.0.0"
4029
+ },
4030
+ "engines": {
4031
+ "node": ">=10"
4032
+ }
4033
+ },
4034
+ "node_modules/tar-fs": {
4035
+ "version": "2.1.4",
4036
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz",
4037
+ "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==",
4038
+ "license": "MIT",
4039
+ "dependencies": {
4040
+ "chownr": "^1.1.1",
4041
+ "mkdirp-classic": "^0.5.2",
4042
+ "pump": "^3.0.0",
4043
+ "tar-stream": "^2.1.4"
4044
+ }
4045
+ },
4046
+ "node_modules/tar-fs/node_modules/chownr": {
4047
+ "version": "1.1.4",
4048
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
4049
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
4050
+ "license": "ISC"
4051
+ },
4052
+ "node_modules/tar-stream": {
4053
+ "version": "2.2.0",
4054
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
4055
+ "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
4056
+ "license": "MIT",
4057
+ "dependencies": {
4058
+ "bl": "^4.0.3",
4059
+ "end-of-stream": "^1.4.1",
4060
+ "fs-constants": "^1.0.0",
4061
+ "inherits": "^2.0.3",
4062
+ "readable-stream": "^3.1.1"
4063
+ },
4064
+ "engines": {
4065
+ "node": ">=6"
4066
+ }
4067
+ },
4068
+ "node_modules/tar-stream/node_modules/readable-stream": {
4069
+ "version": "3.6.2",
4070
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
4071
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
4072
+ "license": "MIT",
4073
+ "dependencies": {
4074
+ "inherits": "^2.0.3",
4075
+ "string_decoder": "^1.1.1",
4076
+ "util-deprecate": "^1.0.1"
4077
+ },
4078
+ "engines": {
4079
+ "node": ">= 6"
4080
+ }
4081
+ },
4082
+ "node_modules/tar/node_modules/minipass": {
4083
+ "version": "5.0.0",
4084
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
4085
+ "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
4086
+ "license": "ISC",
4087
+ "engines": {
4088
+ "node": ">=8"
4089
+ }
4090
+ },
4091
+ "node_modules/toidentifier": {
4092
+ "version": "1.0.1",
4093
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
4094
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
4095
+ "license": "MIT",
4096
+ "engines": {
4097
+ "node": ">=0.6"
4098
+ }
4099
+ },
4100
+ "node_modules/tr46": {
4101
+ "version": "0.0.3",
4102
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
4103
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
4104
+ "license": "MIT"
4105
+ },
4106
+ "node_modules/ts-algebra": {
4107
+ "version": "2.0.0",
4108
+ "resolved": "https://registry.npmjs.org/ts-algebra/-/ts-algebra-2.0.0.tgz",
4109
+ "integrity": "sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==",
4110
+ "license": "MIT"
4111
+ },
4112
+ "node_modules/tunnel-agent": {
4113
+ "version": "0.6.0",
4114
+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
4115
+ "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
4116
+ "license": "Apache-2.0",
4117
+ "dependencies": {
4118
+ "safe-buffer": "^5.0.1"
4119
+ },
4120
+ "engines": {
4121
+ "node": "*"
4122
+ }
4123
+ },
4124
+ "node_modules/type-is": {
4125
+ "version": "1.6.18",
4126
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
4127
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
4128
+ "license": "MIT",
4129
+ "dependencies": {
4130
+ "media-typer": "0.3.0",
4131
+ "mime-types": "~2.1.24"
4132
+ },
4133
+ "engines": {
4134
+ "node": ">= 0.6"
4135
+ }
4136
+ },
4137
+ "node_modules/type-is/node_modules/mime-db": {
4138
+ "version": "1.52.0",
4139
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
4140
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
4141
+ "license": "MIT",
4142
+ "engines": {
4143
+ "node": ">= 0.6"
4144
+ }
4145
+ },
4146
+ "node_modules/type-is/node_modules/mime-types": {
4147
+ "version": "2.1.35",
4148
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
4149
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
4150
+ "license": "MIT",
4151
+ "dependencies": {
4152
+ "mime-db": "1.52.0"
4153
+ },
4154
+ "engines": {
4155
+ "node": ">= 0.6"
4156
+ }
4157
+ },
4158
+ "node_modules/typedarray": {
4159
+ "version": "0.0.6",
4160
+ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
4161
+ "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==",
4162
+ "license": "MIT"
4163
+ },
4164
+ "node_modules/unique-filename": {
4165
+ "version": "1.1.1",
4166
+ "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
4167
+ "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
4168
+ "license": "ISC",
4169
+ "optional": true,
4170
+ "dependencies": {
4171
+ "unique-slug": "^2.0.0"
4172
+ }
4173
+ },
4174
+ "node_modules/unique-slug": {
4175
+ "version": "2.0.2",
4176
+ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
4177
+ "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
4178
+ "license": "ISC",
4179
+ "optional": true,
4180
+ "dependencies": {
4181
+ "imurmurhash": "^0.1.4"
4182
+ }
4183
+ },
4184
+ "node_modules/universal-user-agent": {
4185
+ "version": "7.0.3",
4186
+ "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz",
4187
+ "integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A==",
4188
+ "license": "ISC"
4189
+ },
4190
+ "node_modules/unpipe": {
4191
+ "version": "1.0.0",
4192
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
4193
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
4194
+ "license": "MIT",
4195
+ "engines": {
4196
+ "node": ">= 0.8"
4197
+ }
4198
+ },
4199
+ "node_modules/util-deprecate": {
4200
+ "version": "1.0.2",
4201
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
4202
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
4203
+ "license": "MIT"
4204
+ },
4205
+ "node_modules/utils-merge": {
4206
+ "version": "1.0.1",
4207
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
4208
+ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
4209
+ "license": "MIT",
4210
+ "engines": {
4211
+ "node": ">= 0.4.0"
4212
+ }
4213
+ },
4214
+ "node_modules/vary": {
4215
+ "version": "1.1.2",
4216
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
4217
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
4218
+ "license": "MIT",
4219
+ "engines": {
4220
+ "node": ">= 0.8"
4221
+ }
4222
+ },
4223
+ "node_modules/web-push": {
4224
+ "version": "3.6.7",
4225
+ "resolved": "https://registry.npmjs.org/web-push/-/web-push-3.6.7.tgz",
4226
+ "integrity": "sha512-OpiIUe8cuGjrj3mMBFWY+e4MMIkW3SVT+7vEIjvD9kejGUypv8GPDf84JdPWskK8zMRIJ6xYGm+Kxr8YkPyA0A==",
4227
+ "license": "MPL-2.0",
4228
+ "dependencies": {
4229
+ "asn1.js": "^5.3.0",
4230
+ "http_ece": "1.2.0",
4231
+ "https-proxy-agent": "^7.0.0",
4232
+ "jws": "^4.0.0",
4233
+ "minimist": "^1.2.5"
4234
+ },
4235
+ "bin": {
4236
+ "web-push": "src/cli.js"
4237
+ },
4238
+ "engines": {
4239
+ "node": ">= 16"
4240
+ }
4241
+ },
4242
+ "node_modules/web-push/node_modules/agent-base": {
4243
+ "version": "7.1.4",
4244
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
4245
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
4246
+ "license": "MIT",
4247
+ "engines": {
4248
+ "node": ">= 14"
4249
+ }
4250
+ },
4251
+ "node_modules/web-push/node_modules/debug": {
4252
+ "version": "4.4.3",
4253
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
4254
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
4255
+ "license": "MIT",
4256
+ "dependencies": {
4257
+ "ms": "^2.1.3"
4258
+ },
4259
+ "engines": {
4260
+ "node": ">=6.0"
4261
+ },
4262
+ "peerDependenciesMeta": {
4263
+ "supports-color": {
4264
+ "optional": true
4265
+ }
4266
+ }
4267
+ },
4268
+ "node_modules/web-push/node_modules/https-proxy-agent": {
4269
+ "version": "7.0.6",
4270
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
4271
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
4272
+ "license": "MIT",
4273
+ "dependencies": {
4274
+ "agent-base": "^7.1.2",
4275
+ "debug": "4"
4276
+ },
4277
+ "engines": {
4278
+ "node": ">= 14"
4279
+ }
4280
+ },
4281
+ "node_modules/web-push/node_modules/ms": {
4282
+ "version": "2.1.3",
4283
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
4284
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
4285
+ "license": "MIT"
4286
+ },
4287
+ "node_modules/webidl-conversions": {
4288
+ "version": "3.0.1",
4289
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
4290
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
4291
+ "license": "BSD-2-Clause"
4292
+ },
4293
+ "node_modules/whatwg-url": {
4294
+ "version": "5.0.0",
4295
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
4296
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
4297
+ "license": "MIT",
4298
+ "dependencies": {
4299
+ "tr46": "~0.0.3",
4300
+ "webidl-conversions": "^3.0.0"
4301
+ }
4302
+ },
4303
+ "node_modules/which": {
4304
+ "version": "2.0.2",
4305
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
4306
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
4307
+ "license": "ISC",
4308
+ "dependencies": {
4309
+ "isexe": "^2.0.0"
4310
+ },
4311
+ "bin": {
4312
+ "node-which": "bin/node-which"
4313
+ },
4314
+ "engines": {
4315
+ "node": ">= 8"
4316
+ }
4317
+ },
4318
+ "node_modules/wide-align": {
4319
+ "version": "1.1.5",
4320
+ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
4321
+ "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
4322
+ "license": "ISC",
4323
+ "optional": true,
4324
+ "dependencies": {
4325
+ "string-width": "^1.0.2 || 2 || 3 || 4"
4326
+ }
4327
+ },
4328
+ "node_modules/wrappy": {
4329
+ "version": "1.0.2",
4330
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
4331
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
4332
+ "license": "ISC"
4333
+ },
4334
+ "node_modules/ws": {
4335
+ "version": "8.20.0",
4336
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.0.tgz",
4337
+ "integrity": "sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==",
4338
+ "license": "MIT",
4339
+ "engines": {
4340
+ "node": ">=10.0.0"
4341
+ },
4342
+ "peerDependencies": {
4343
+ "bufferutil": "^4.0.1",
4344
+ "utf-8-validate": ">=5.0.2"
4345
+ },
4346
+ "peerDependenciesMeta": {
4347
+ "bufferutil": {
4348
+ "optional": true
4349
+ },
4350
+ "utf-8-validate": {
4351
+ "optional": true
4352
+ }
4353
+ }
4354
+ },
4355
+ "node_modules/yallist": {
4356
+ "version": "4.0.0",
4357
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
4358
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
4359
+ "license": "ISC"
4360
+ },
4361
+ "node_modules/zod": {
4362
+ "version": "4.3.6",
4363
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
4364
+ "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
4365
+ "license": "MIT",
4366
+ "peer": true,
4367
+ "funding": {
4368
+ "url": "https://github.com/sponsors/colinhacks"
4369
+ }
4370
+ },
4371
+ "node_modules/zod-to-json-schema": {
4372
+ "version": "3.25.2",
4373
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz",
4374
+ "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==",
4375
+ "license": "ISC",
4376
+ "peerDependencies": {
4377
+ "zod": "^3.25.28 || ^4"
4378
+ }
4379
+ }
4380
+ }
4381
+ }