notioncode 0.1.0 → 0.1.2

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