wingman-ai 1.0.0__py3-none-any.whl

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 (60) hide show
  1. share/wingman/node_listener/package-lock.json +1785 -0
  2. share/wingman/node_listener/package.json +50 -0
  3. share/wingman/node_listener/src/index.ts +108 -0
  4. share/wingman/node_listener/src/ipc.ts +70 -0
  5. share/wingman/node_listener/src/messageHandler.ts +135 -0
  6. share/wingman/node_listener/src/socket.ts +244 -0
  7. share/wingman/node_listener/src/types.d.ts +13 -0
  8. share/wingman/node_listener/tsconfig.json +19 -0
  9. wingman/__init__.py +4 -0
  10. wingman/__main__.py +6 -0
  11. wingman/cli/__init__.py +5 -0
  12. wingman/cli/commands/__init__.py +1 -0
  13. wingman/cli/commands/auth.py +90 -0
  14. wingman/cli/commands/config.py +109 -0
  15. wingman/cli/commands/init.py +71 -0
  16. wingman/cli/commands/logs.py +84 -0
  17. wingman/cli/commands/start.py +111 -0
  18. wingman/cli/commands/status.py +84 -0
  19. wingman/cli/commands/stop.py +33 -0
  20. wingman/cli/commands/uninstall.py +113 -0
  21. wingman/cli/main.py +50 -0
  22. wingman/cli/wizard.py +356 -0
  23. wingman/config/__init__.py +31 -0
  24. wingman/config/paths.py +153 -0
  25. wingman/config/personality.py +155 -0
  26. wingman/config/registry.py +343 -0
  27. wingman/config/settings.py +294 -0
  28. wingman/core/__init__.py +16 -0
  29. wingman/core/agent.py +257 -0
  30. wingman/core/ipc_handler.py +124 -0
  31. wingman/core/llm/__init__.py +5 -0
  32. wingman/core/llm/client.py +77 -0
  33. wingman/core/memory/__init__.py +6 -0
  34. wingman/core/memory/context.py +109 -0
  35. wingman/core/memory/models.py +213 -0
  36. wingman/core/message_processor.py +277 -0
  37. wingman/core/policy/__init__.py +5 -0
  38. wingman/core/policy/evaluator.py +265 -0
  39. wingman/core/process_manager.py +135 -0
  40. wingman/core/safety/__init__.py +8 -0
  41. wingman/core/safety/cooldown.py +63 -0
  42. wingman/core/safety/quiet_hours.py +75 -0
  43. wingman/core/safety/rate_limiter.py +58 -0
  44. wingman/core/safety/triggers.py +117 -0
  45. wingman/core/transports/__init__.py +14 -0
  46. wingman/core/transports/base.py +106 -0
  47. wingman/core/transports/imessage/__init__.py +5 -0
  48. wingman/core/transports/imessage/db_listener.py +280 -0
  49. wingman/core/transports/imessage/sender.py +162 -0
  50. wingman/core/transports/imessage/transport.py +140 -0
  51. wingman/core/transports/whatsapp.py +180 -0
  52. wingman/daemon/__init__.py +5 -0
  53. wingman/daemon/manager.py +303 -0
  54. wingman/installer/__init__.py +5 -0
  55. wingman/installer/node_installer.py +253 -0
  56. wingman_ai-1.0.0.dist-info/METADATA +553 -0
  57. wingman_ai-1.0.0.dist-info/RECORD +60 -0
  58. wingman_ai-1.0.0.dist-info/WHEEL +4 -0
  59. wingman_ai-1.0.0.dist-info/entry_points.txt +2 -0
  60. wingman_ai-1.0.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,1785 @@
1
+ {
2
+ "name": "wingman-ai",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "wingman-ai",
9
+ "version": "1.0.0",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "@whiskeysockets/baileys": "^6.7.16",
13
+ "pino": "^8.16.0",
14
+ "qrcode-terminal": "^0.12.0"
15
+ },
16
+ "devDependencies": {
17
+ "@types/node": "^20.10.0",
18
+ "typescript": "^5.3.2"
19
+ },
20
+ "engines": {
21
+ "node": ">=20.0.0"
22
+ }
23
+ },
24
+ "node_modules/@borewit/text-codec": {
25
+ "version": "0.2.1",
26
+ "resolved": "https://registry.npmjs.org/@borewit/text-codec/-/text-codec-0.2.1.tgz",
27
+ "integrity": "sha512-k7vvKPbf7J2fZ5klGRD9AeKfUvojuZIQ3BT5u7Jfv+puwXkUBUT5PVyMDfJZpy30CBDXGMgw7fguK/lpOMBvgw==",
28
+ "license": "MIT",
29
+ "funding": {
30
+ "type": "github",
31
+ "url": "https://github.com/sponsors/Borewit"
32
+ }
33
+ },
34
+ "node_modules/@cacheable/memory": {
35
+ "version": "2.0.7",
36
+ "resolved": "https://registry.npmjs.org/@cacheable/memory/-/memory-2.0.7.tgz",
37
+ "integrity": "sha512-RbxnxAMf89Tp1dLhXMS7ceft/PGsDl1Ip7T20z5nZ+pwIAsQ1p2izPjVG69oCLv/jfQ7HDPHTWK0c9rcAWXN3A==",
38
+ "license": "MIT",
39
+ "dependencies": {
40
+ "@cacheable/utils": "^2.3.3",
41
+ "@keyv/bigmap": "^1.3.0",
42
+ "hookified": "^1.14.0",
43
+ "keyv": "^5.5.5"
44
+ }
45
+ },
46
+ "node_modules/@cacheable/node-cache": {
47
+ "version": "1.7.6",
48
+ "resolved": "https://registry.npmjs.org/@cacheable/node-cache/-/node-cache-1.7.6.tgz",
49
+ "integrity": "sha512-6Omk2SgNnjtxB5f/E6bTIWIt5xhdpx39fGNRQgU9lojvRxU68v+qY+SXXLsp3ZGukqoPjsK21wZ6XABFr/Ge3A==",
50
+ "license": "MIT",
51
+ "dependencies": {
52
+ "cacheable": "^2.3.1",
53
+ "hookified": "^1.14.0",
54
+ "keyv": "^5.5.5"
55
+ },
56
+ "engines": {
57
+ "node": ">=18"
58
+ }
59
+ },
60
+ "node_modules/@cacheable/utils": {
61
+ "version": "2.3.3",
62
+ "resolved": "https://registry.npmjs.org/@cacheable/utils/-/utils-2.3.3.tgz",
63
+ "integrity": "sha512-JsXDL70gQ+1Vc2W/KUFfkAJzgb4puKwwKehNLuB+HrNKWf91O736kGfxn4KujXCCSuh6mRRL4XEB0PkAFjWS0A==",
64
+ "license": "MIT",
65
+ "dependencies": {
66
+ "hashery": "^1.3.0",
67
+ "keyv": "^5.5.5"
68
+ }
69
+ },
70
+ "node_modules/@emnapi/runtime": {
71
+ "version": "1.8.1",
72
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
73
+ "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
74
+ "license": "MIT",
75
+ "optional": true,
76
+ "peer": true,
77
+ "dependencies": {
78
+ "tslib": "^2.4.0"
79
+ }
80
+ },
81
+ "node_modules/@hapi/boom": {
82
+ "version": "9.1.4",
83
+ "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.4.tgz",
84
+ "integrity": "sha512-Ls1oH8jaN1vNsqcaHVYJrKmgMcKsC1wcp8bujvXrHaAqD2iDYq3HoOwsxwo09Cuda5R5nC0o0IxlrlTuvPuzSw==",
85
+ "license": "BSD-3-Clause",
86
+ "dependencies": {
87
+ "@hapi/hoek": "9.x.x"
88
+ }
89
+ },
90
+ "node_modules/@hapi/hoek": {
91
+ "version": "9.3.0",
92
+ "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz",
93
+ "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==",
94
+ "license": "BSD-3-Clause"
95
+ },
96
+ "node_modules/@img/colour": {
97
+ "version": "1.0.0",
98
+ "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz",
99
+ "integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==",
100
+ "license": "MIT",
101
+ "peer": true,
102
+ "engines": {
103
+ "node": ">=18"
104
+ }
105
+ },
106
+ "node_modules/@img/sharp-darwin-arm64": {
107
+ "version": "0.34.5",
108
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
109
+ "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
110
+ "cpu": [
111
+ "arm64"
112
+ ],
113
+ "license": "Apache-2.0",
114
+ "optional": true,
115
+ "os": [
116
+ "darwin"
117
+ ],
118
+ "peer": true,
119
+ "engines": {
120
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
121
+ },
122
+ "funding": {
123
+ "url": "https://opencollective.com/libvips"
124
+ },
125
+ "optionalDependencies": {
126
+ "@img/sharp-libvips-darwin-arm64": "1.2.4"
127
+ }
128
+ },
129
+ "node_modules/@img/sharp-darwin-x64": {
130
+ "version": "0.34.5",
131
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
132
+ "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
133
+ "cpu": [
134
+ "x64"
135
+ ],
136
+ "license": "Apache-2.0",
137
+ "optional": true,
138
+ "os": [
139
+ "darwin"
140
+ ],
141
+ "peer": true,
142
+ "engines": {
143
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
144
+ },
145
+ "funding": {
146
+ "url": "https://opencollective.com/libvips"
147
+ },
148
+ "optionalDependencies": {
149
+ "@img/sharp-libvips-darwin-x64": "1.2.4"
150
+ }
151
+ },
152
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
153
+ "version": "1.2.4",
154
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
155
+ "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
156
+ "cpu": [
157
+ "arm64"
158
+ ],
159
+ "license": "LGPL-3.0-or-later",
160
+ "optional": true,
161
+ "os": [
162
+ "darwin"
163
+ ],
164
+ "peer": true,
165
+ "funding": {
166
+ "url": "https://opencollective.com/libvips"
167
+ }
168
+ },
169
+ "node_modules/@img/sharp-libvips-darwin-x64": {
170
+ "version": "1.2.4",
171
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
172
+ "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
173
+ "cpu": [
174
+ "x64"
175
+ ],
176
+ "license": "LGPL-3.0-or-later",
177
+ "optional": true,
178
+ "os": [
179
+ "darwin"
180
+ ],
181
+ "peer": true,
182
+ "funding": {
183
+ "url": "https://opencollective.com/libvips"
184
+ }
185
+ },
186
+ "node_modules/@img/sharp-libvips-linux-arm": {
187
+ "version": "1.2.4",
188
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
189
+ "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
190
+ "cpu": [
191
+ "arm"
192
+ ],
193
+ "license": "LGPL-3.0-or-later",
194
+ "optional": true,
195
+ "os": [
196
+ "linux"
197
+ ],
198
+ "peer": true,
199
+ "funding": {
200
+ "url": "https://opencollective.com/libvips"
201
+ }
202
+ },
203
+ "node_modules/@img/sharp-libvips-linux-arm64": {
204
+ "version": "1.2.4",
205
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
206
+ "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
207
+ "cpu": [
208
+ "arm64"
209
+ ],
210
+ "license": "LGPL-3.0-or-later",
211
+ "optional": true,
212
+ "os": [
213
+ "linux"
214
+ ],
215
+ "peer": true,
216
+ "funding": {
217
+ "url": "https://opencollective.com/libvips"
218
+ }
219
+ },
220
+ "node_modules/@img/sharp-libvips-linux-ppc64": {
221
+ "version": "1.2.4",
222
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
223
+ "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
224
+ "cpu": [
225
+ "ppc64"
226
+ ],
227
+ "license": "LGPL-3.0-or-later",
228
+ "optional": true,
229
+ "os": [
230
+ "linux"
231
+ ],
232
+ "peer": true,
233
+ "funding": {
234
+ "url": "https://opencollective.com/libvips"
235
+ }
236
+ },
237
+ "node_modules/@img/sharp-libvips-linux-riscv64": {
238
+ "version": "1.2.4",
239
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
240
+ "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
241
+ "cpu": [
242
+ "riscv64"
243
+ ],
244
+ "license": "LGPL-3.0-or-later",
245
+ "optional": true,
246
+ "os": [
247
+ "linux"
248
+ ],
249
+ "peer": true,
250
+ "funding": {
251
+ "url": "https://opencollective.com/libvips"
252
+ }
253
+ },
254
+ "node_modules/@img/sharp-libvips-linux-s390x": {
255
+ "version": "1.2.4",
256
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
257
+ "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
258
+ "cpu": [
259
+ "s390x"
260
+ ],
261
+ "license": "LGPL-3.0-or-later",
262
+ "optional": true,
263
+ "os": [
264
+ "linux"
265
+ ],
266
+ "peer": true,
267
+ "funding": {
268
+ "url": "https://opencollective.com/libvips"
269
+ }
270
+ },
271
+ "node_modules/@img/sharp-libvips-linux-x64": {
272
+ "version": "1.2.4",
273
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
274
+ "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
275
+ "cpu": [
276
+ "x64"
277
+ ],
278
+ "license": "LGPL-3.0-or-later",
279
+ "optional": true,
280
+ "os": [
281
+ "linux"
282
+ ],
283
+ "peer": true,
284
+ "funding": {
285
+ "url": "https://opencollective.com/libvips"
286
+ }
287
+ },
288
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
289
+ "version": "1.2.4",
290
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
291
+ "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
292
+ "cpu": [
293
+ "arm64"
294
+ ],
295
+ "license": "LGPL-3.0-or-later",
296
+ "optional": true,
297
+ "os": [
298
+ "linux"
299
+ ],
300
+ "peer": true,
301
+ "funding": {
302
+ "url": "https://opencollective.com/libvips"
303
+ }
304
+ },
305
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
306
+ "version": "1.2.4",
307
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
308
+ "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
309
+ "cpu": [
310
+ "x64"
311
+ ],
312
+ "license": "LGPL-3.0-or-later",
313
+ "optional": true,
314
+ "os": [
315
+ "linux"
316
+ ],
317
+ "peer": true,
318
+ "funding": {
319
+ "url": "https://opencollective.com/libvips"
320
+ }
321
+ },
322
+ "node_modules/@img/sharp-linux-arm": {
323
+ "version": "0.34.5",
324
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
325
+ "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
326
+ "cpu": [
327
+ "arm"
328
+ ],
329
+ "license": "Apache-2.0",
330
+ "optional": true,
331
+ "os": [
332
+ "linux"
333
+ ],
334
+ "peer": true,
335
+ "engines": {
336
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
337
+ },
338
+ "funding": {
339
+ "url": "https://opencollective.com/libvips"
340
+ },
341
+ "optionalDependencies": {
342
+ "@img/sharp-libvips-linux-arm": "1.2.4"
343
+ }
344
+ },
345
+ "node_modules/@img/sharp-linux-arm64": {
346
+ "version": "0.34.5",
347
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
348
+ "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
349
+ "cpu": [
350
+ "arm64"
351
+ ],
352
+ "license": "Apache-2.0",
353
+ "optional": true,
354
+ "os": [
355
+ "linux"
356
+ ],
357
+ "peer": true,
358
+ "engines": {
359
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
360
+ },
361
+ "funding": {
362
+ "url": "https://opencollective.com/libvips"
363
+ },
364
+ "optionalDependencies": {
365
+ "@img/sharp-libvips-linux-arm64": "1.2.4"
366
+ }
367
+ },
368
+ "node_modules/@img/sharp-linux-ppc64": {
369
+ "version": "0.34.5",
370
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
371
+ "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
372
+ "cpu": [
373
+ "ppc64"
374
+ ],
375
+ "license": "Apache-2.0",
376
+ "optional": true,
377
+ "os": [
378
+ "linux"
379
+ ],
380
+ "peer": true,
381
+ "engines": {
382
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
383
+ },
384
+ "funding": {
385
+ "url": "https://opencollective.com/libvips"
386
+ },
387
+ "optionalDependencies": {
388
+ "@img/sharp-libvips-linux-ppc64": "1.2.4"
389
+ }
390
+ },
391
+ "node_modules/@img/sharp-linux-riscv64": {
392
+ "version": "0.34.5",
393
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
394
+ "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
395
+ "cpu": [
396
+ "riscv64"
397
+ ],
398
+ "license": "Apache-2.0",
399
+ "optional": true,
400
+ "os": [
401
+ "linux"
402
+ ],
403
+ "peer": true,
404
+ "engines": {
405
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
406
+ },
407
+ "funding": {
408
+ "url": "https://opencollective.com/libvips"
409
+ },
410
+ "optionalDependencies": {
411
+ "@img/sharp-libvips-linux-riscv64": "1.2.4"
412
+ }
413
+ },
414
+ "node_modules/@img/sharp-linux-s390x": {
415
+ "version": "0.34.5",
416
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
417
+ "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
418
+ "cpu": [
419
+ "s390x"
420
+ ],
421
+ "license": "Apache-2.0",
422
+ "optional": true,
423
+ "os": [
424
+ "linux"
425
+ ],
426
+ "peer": true,
427
+ "engines": {
428
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
429
+ },
430
+ "funding": {
431
+ "url": "https://opencollective.com/libvips"
432
+ },
433
+ "optionalDependencies": {
434
+ "@img/sharp-libvips-linux-s390x": "1.2.4"
435
+ }
436
+ },
437
+ "node_modules/@img/sharp-linux-x64": {
438
+ "version": "0.34.5",
439
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
440
+ "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
441
+ "cpu": [
442
+ "x64"
443
+ ],
444
+ "license": "Apache-2.0",
445
+ "optional": true,
446
+ "os": [
447
+ "linux"
448
+ ],
449
+ "peer": true,
450
+ "engines": {
451
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
452
+ },
453
+ "funding": {
454
+ "url": "https://opencollective.com/libvips"
455
+ },
456
+ "optionalDependencies": {
457
+ "@img/sharp-libvips-linux-x64": "1.2.4"
458
+ }
459
+ },
460
+ "node_modules/@img/sharp-linuxmusl-arm64": {
461
+ "version": "0.34.5",
462
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
463
+ "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
464
+ "cpu": [
465
+ "arm64"
466
+ ],
467
+ "license": "Apache-2.0",
468
+ "optional": true,
469
+ "os": [
470
+ "linux"
471
+ ],
472
+ "peer": true,
473
+ "engines": {
474
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
475
+ },
476
+ "funding": {
477
+ "url": "https://opencollective.com/libvips"
478
+ },
479
+ "optionalDependencies": {
480
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
481
+ }
482
+ },
483
+ "node_modules/@img/sharp-linuxmusl-x64": {
484
+ "version": "0.34.5",
485
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
486
+ "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
487
+ "cpu": [
488
+ "x64"
489
+ ],
490
+ "license": "Apache-2.0",
491
+ "optional": true,
492
+ "os": [
493
+ "linux"
494
+ ],
495
+ "peer": true,
496
+ "engines": {
497
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
498
+ },
499
+ "funding": {
500
+ "url": "https://opencollective.com/libvips"
501
+ },
502
+ "optionalDependencies": {
503
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.4"
504
+ }
505
+ },
506
+ "node_modules/@img/sharp-wasm32": {
507
+ "version": "0.34.5",
508
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
509
+ "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
510
+ "cpu": [
511
+ "wasm32"
512
+ ],
513
+ "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
514
+ "optional": true,
515
+ "peer": true,
516
+ "dependencies": {
517
+ "@emnapi/runtime": "^1.7.0"
518
+ },
519
+ "engines": {
520
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
521
+ },
522
+ "funding": {
523
+ "url": "https://opencollective.com/libvips"
524
+ }
525
+ },
526
+ "node_modules/@img/sharp-win32-arm64": {
527
+ "version": "0.34.5",
528
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
529
+ "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
530
+ "cpu": [
531
+ "arm64"
532
+ ],
533
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
534
+ "optional": true,
535
+ "os": [
536
+ "win32"
537
+ ],
538
+ "peer": true,
539
+ "engines": {
540
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
541
+ },
542
+ "funding": {
543
+ "url": "https://opencollective.com/libvips"
544
+ }
545
+ },
546
+ "node_modules/@img/sharp-win32-ia32": {
547
+ "version": "0.34.5",
548
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
549
+ "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
550
+ "cpu": [
551
+ "ia32"
552
+ ],
553
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
554
+ "optional": true,
555
+ "os": [
556
+ "win32"
557
+ ],
558
+ "peer": true,
559
+ "engines": {
560
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
561
+ },
562
+ "funding": {
563
+ "url": "https://opencollective.com/libvips"
564
+ }
565
+ },
566
+ "node_modules/@img/sharp-win32-x64": {
567
+ "version": "0.34.5",
568
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
569
+ "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
570
+ "cpu": [
571
+ "x64"
572
+ ],
573
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
574
+ "optional": true,
575
+ "os": [
576
+ "win32"
577
+ ],
578
+ "peer": true,
579
+ "engines": {
580
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
581
+ },
582
+ "funding": {
583
+ "url": "https://opencollective.com/libvips"
584
+ }
585
+ },
586
+ "node_modules/@keyv/bigmap": {
587
+ "version": "1.3.1",
588
+ "resolved": "https://registry.npmjs.org/@keyv/bigmap/-/bigmap-1.3.1.tgz",
589
+ "integrity": "sha512-WbzE9sdmQtKy8vrNPa9BRnwZh5UF4s1KTmSK0KUVLo3eff5BlQNNWDnFOouNpKfPKDnms9xynJjsMYjMaT/aFQ==",
590
+ "license": "MIT",
591
+ "dependencies": {
592
+ "hashery": "^1.4.0",
593
+ "hookified": "^1.15.0"
594
+ },
595
+ "engines": {
596
+ "node": ">= 18"
597
+ },
598
+ "peerDependencies": {
599
+ "keyv": "^5.6.0"
600
+ }
601
+ },
602
+ "node_modules/@keyv/serialize": {
603
+ "version": "1.1.1",
604
+ "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.1.1.tgz",
605
+ "integrity": "sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==",
606
+ "license": "MIT"
607
+ },
608
+ "node_modules/@pinojs/redact": {
609
+ "version": "0.4.0",
610
+ "resolved": "https://registry.npmjs.org/@pinojs/redact/-/redact-0.4.0.tgz",
611
+ "integrity": "sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==",
612
+ "license": "MIT"
613
+ },
614
+ "node_modules/@protobufjs/aspromise": {
615
+ "version": "1.1.2",
616
+ "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
617
+ "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
618
+ "license": "BSD-3-Clause"
619
+ },
620
+ "node_modules/@protobufjs/base64": {
621
+ "version": "1.1.2",
622
+ "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
623
+ "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
624
+ "license": "BSD-3-Clause"
625
+ },
626
+ "node_modules/@protobufjs/codegen": {
627
+ "version": "2.0.4",
628
+ "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz",
629
+ "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==",
630
+ "license": "BSD-3-Clause"
631
+ },
632
+ "node_modules/@protobufjs/eventemitter": {
633
+ "version": "1.1.0",
634
+ "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
635
+ "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==",
636
+ "license": "BSD-3-Clause"
637
+ },
638
+ "node_modules/@protobufjs/fetch": {
639
+ "version": "1.1.0",
640
+ "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
641
+ "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==",
642
+ "license": "BSD-3-Clause",
643
+ "dependencies": {
644
+ "@protobufjs/aspromise": "^1.1.1",
645
+ "@protobufjs/inquire": "^1.1.0"
646
+ }
647
+ },
648
+ "node_modules/@protobufjs/float": {
649
+ "version": "1.0.2",
650
+ "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
651
+ "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
652
+ "license": "BSD-3-Clause"
653
+ },
654
+ "node_modules/@protobufjs/inquire": {
655
+ "version": "1.1.0",
656
+ "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz",
657
+ "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==",
658
+ "license": "BSD-3-Clause"
659
+ },
660
+ "node_modules/@protobufjs/path": {
661
+ "version": "1.1.2",
662
+ "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
663
+ "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
664
+ "license": "BSD-3-Clause"
665
+ },
666
+ "node_modules/@protobufjs/pool": {
667
+ "version": "1.1.0",
668
+ "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
669
+ "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
670
+ "license": "BSD-3-Clause"
671
+ },
672
+ "node_modules/@protobufjs/utf8": {
673
+ "version": "1.1.0",
674
+ "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
675
+ "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==",
676
+ "license": "BSD-3-Clause"
677
+ },
678
+ "node_modules/@tokenizer/inflate": {
679
+ "version": "0.4.1",
680
+ "resolved": "https://registry.npmjs.org/@tokenizer/inflate/-/inflate-0.4.1.tgz",
681
+ "integrity": "sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA==",
682
+ "license": "MIT",
683
+ "dependencies": {
684
+ "debug": "^4.4.3",
685
+ "token-types": "^6.1.1"
686
+ },
687
+ "engines": {
688
+ "node": ">=18"
689
+ },
690
+ "funding": {
691
+ "type": "github",
692
+ "url": "https://github.com/sponsors/Borewit"
693
+ }
694
+ },
695
+ "node_modules/@tokenizer/token": {
696
+ "version": "0.3.0",
697
+ "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz",
698
+ "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==",
699
+ "license": "MIT"
700
+ },
701
+ "node_modules/@types/long": {
702
+ "version": "4.0.2",
703
+ "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz",
704
+ "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==",
705
+ "license": "MIT"
706
+ },
707
+ "node_modules/@types/node": {
708
+ "version": "20.19.30",
709
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.30.tgz",
710
+ "integrity": "sha512-WJtwWJu7UdlvzEAUm484QNg5eAoq5QR08KDNx7g45Usrs2NtOPiX8ugDqmKdXkyL03rBqU5dYNYVQetEpBHq2g==",
711
+ "license": "MIT",
712
+ "dependencies": {
713
+ "undici-types": "~6.21.0"
714
+ }
715
+ },
716
+ "node_modules/@whiskeysockets/baileys": {
717
+ "version": "6.7.21",
718
+ "resolved": "https://registry.npmjs.org/@whiskeysockets/baileys/-/baileys-6.7.21.tgz",
719
+ "integrity": "sha512-xx9OHd6jlPiu5yZVuUdwEgFNAOXiEG8sULHxC6XfzNwssnwxnA9Lp44pR05H621GQcKyCfsH33TGy+Na6ygX4w==",
720
+ "hasInstallScript": true,
721
+ "license": "MIT",
722
+ "dependencies": {
723
+ "@cacheable/node-cache": "^1.4.0",
724
+ "@hapi/boom": "^9.1.3",
725
+ "async-mutex": "^0.5.0",
726
+ "axios": "^1.6.0",
727
+ "libsignal": "git+https://github.com/whiskeysockets/libsignal-node.git",
728
+ "music-metadata": "^11.7.0",
729
+ "pino": "^9.6",
730
+ "protobufjs": "^7.2.4",
731
+ "ws": "^8.13.0"
732
+ },
733
+ "engines": {
734
+ "node": ">=20.0.0"
735
+ },
736
+ "peerDependencies": {
737
+ "audio-decode": "^2.1.3",
738
+ "jimp": "^1.6.0",
739
+ "link-preview-js": "^3.0.0",
740
+ "sharp": "*"
741
+ },
742
+ "peerDependenciesMeta": {
743
+ "audio-decode": {
744
+ "optional": true
745
+ },
746
+ "jimp": {
747
+ "optional": true
748
+ },
749
+ "link-preview-js": {
750
+ "optional": true
751
+ }
752
+ }
753
+ },
754
+ "node_modules/@whiskeysockets/baileys/node_modules/pino": {
755
+ "version": "9.14.0",
756
+ "resolved": "https://registry.npmjs.org/pino/-/pino-9.14.0.tgz",
757
+ "integrity": "sha512-8OEwKp5juEvb/MjpIc4hjqfgCNysrS94RIOMXYvpYCdm/jglrKEiAYmiumbmGhCvs+IcInsphYDFwqrjr7398w==",
758
+ "license": "MIT",
759
+ "dependencies": {
760
+ "@pinojs/redact": "^0.4.0",
761
+ "atomic-sleep": "^1.0.0",
762
+ "on-exit-leak-free": "^2.1.0",
763
+ "pino-abstract-transport": "^2.0.0",
764
+ "pino-std-serializers": "^7.0.0",
765
+ "process-warning": "^5.0.0",
766
+ "quick-format-unescaped": "^4.0.3",
767
+ "real-require": "^0.2.0",
768
+ "safe-stable-stringify": "^2.3.1",
769
+ "sonic-boom": "^4.0.1",
770
+ "thread-stream": "^3.0.0"
771
+ },
772
+ "bin": {
773
+ "pino": "bin.js"
774
+ }
775
+ },
776
+ "node_modules/@whiskeysockets/baileys/node_modules/pino-abstract-transport": {
777
+ "version": "2.0.0",
778
+ "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-2.0.0.tgz",
779
+ "integrity": "sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==",
780
+ "license": "MIT",
781
+ "dependencies": {
782
+ "split2": "^4.0.0"
783
+ }
784
+ },
785
+ "node_modules/@whiskeysockets/baileys/node_modules/pino-std-serializers": {
786
+ "version": "7.1.0",
787
+ "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.1.0.tgz",
788
+ "integrity": "sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==",
789
+ "license": "MIT"
790
+ },
791
+ "node_modules/@whiskeysockets/baileys/node_modules/process-warning": {
792
+ "version": "5.0.0",
793
+ "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-5.0.0.tgz",
794
+ "integrity": "sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==",
795
+ "funding": [
796
+ {
797
+ "type": "github",
798
+ "url": "https://github.com/sponsors/fastify"
799
+ },
800
+ {
801
+ "type": "opencollective",
802
+ "url": "https://opencollective.com/fastify"
803
+ }
804
+ ],
805
+ "license": "MIT"
806
+ },
807
+ "node_modules/@whiskeysockets/baileys/node_modules/sonic-boom": {
808
+ "version": "4.2.0",
809
+ "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-4.2.0.tgz",
810
+ "integrity": "sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==",
811
+ "license": "MIT",
812
+ "dependencies": {
813
+ "atomic-sleep": "^1.0.0"
814
+ }
815
+ },
816
+ "node_modules/@whiskeysockets/baileys/node_modules/thread-stream": {
817
+ "version": "3.1.0",
818
+ "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz",
819
+ "integrity": "sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==",
820
+ "license": "MIT",
821
+ "dependencies": {
822
+ "real-require": "^0.2.0"
823
+ }
824
+ },
825
+ "node_modules/abort-controller": {
826
+ "version": "3.0.0",
827
+ "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
828
+ "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
829
+ "license": "MIT",
830
+ "dependencies": {
831
+ "event-target-shim": "^5.0.0"
832
+ },
833
+ "engines": {
834
+ "node": ">=6.5"
835
+ }
836
+ },
837
+ "node_modules/async-mutex": {
838
+ "version": "0.5.0",
839
+ "resolved": "https://registry.npmjs.org/async-mutex/-/async-mutex-0.5.0.tgz",
840
+ "integrity": "sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==",
841
+ "license": "MIT",
842
+ "dependencies": {
843
+ "tslib": "^2.4.0"
844
+ }
845
+ },
846
+ "node_modules/asynckit": {
847
+ "version": "0.4.0",
848
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
849
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
850
+ "license": "MIT"
851
+ },
852
+ "node_modules/atomic-sleep": {
853
+ "version": "1.0.0",
854
+ "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz",
855
+ "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==",
856
+ "license": "MIT",
857
+ "engines": {
858
+ "node": ">=8.0.0"
859
+ }
860
+ },
861
+ "node_modules/axios": {
862
+ "version": "1.13.4",
863
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.4.tgz",
864
+ "integrity": "sha512-1wVkUaAO6WyaYtCkcYCOx12ZgpGf9Zif+qXa4n+oYzK558YryKqiL6UWwd5DqiH3VRW0GYhTZQ/vlgJrCoNQlg==",
865
+ "license": "MIT",
866
+ "dependencies": {
867
+ "follow-redirects": "^1.15.6",
868
+ "form-data": "^4.0.4",
869
+ "proxy-from-env": "^1.1.0"
870
+ }
871
+ },
872
+ "node_modules/base64-js": {
873
+ "version": "1.5.1",
874
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
875
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
876
+ "funding": [
877
+ {
878
+ "type": "github",
879
+ "url": "https://github.com/sponsors/feross"
880
+ },
881
+ {
882
+ "type": "patreon",
883
+ "url": "https://www.patreon.com/feross"
884
+ },
885
+ {
886
+ "type": "consulting",
887
+ "url": "https://feross.org/support"
888
+ }
889
+ ],
890
+ "license": "MIT"
891
+ },
892
+ "node_modules/buffer": {
893
+ "version": "6.0.3",
894
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
895
+ "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
896
+ "funding": [
897
+ {
898
+ "type": "github",
899
+ "url": "https://github.com/sponsors/feross"
900
+ },
901
+ {
902
+ "type": "patreon",
903
+ "url": "https://www.patreon.com/feross"
904
+ },
905
+ {
906
+ "type": "consulting",
907
+ "url": "https://feross.org/support"
908
+ }
909
+ ],
910
+ "license": "MIT",
911
+ "dependencies": {
912
+ "base64-js": "^1.3.1",
913
+ "ieee754": "^1.2.1"
914
+ }
915
+ },
916
+ "node_modules/cacheable": {
917
+ "version": "2.3.2",
918
+ "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-2.3.2.tgz",
919
+ "integrity": "sha512-w+ZuRNmex9c1TR9RcsxbfTKCjSL0rh1WA5SABbrWprIHeNBdmyQLSYonlDy9gpD+63XT8DgZ/wNh1Smvc9WnJA==",
920
+ "license": "MIT",
921
+ "dependencies": {
922
+ "@cacheable/memory": "^2.0.7",
923
+ "@cacheable/utils": "^2.3.3",
924
+ "hookified": "^1.15.0",
925
+ "keyv": "^5.5.5",
926
+ "qified": "^0.6.0"
927
+ }
928
+ },
929
+ "node_modules/call-bind-apply-helpers": {
930
+ "version": "1.0.2",
931
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
932
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
933
+ "license": "MIT",
934
+ "dependencies": {
935
+ "es-errors": "^1.3.0",
936
+ "function-bind": "^1.1.2"
937
+ },
938
+ "engines": {
939
+ "node": ">= 0.4"
940
+ }
941
+ },
942
+ "node_modules/combined-stream": {
943
+ "version": "1.0.8",
944
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
945
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
946
+ "license": "MIT",
947
+ "dependencies": {
948
+ "delayed-stream": "~1.0.0"
949
+ },
950
+ "engines": {
951
+ "node": ">= 0.8"
952
+ }
953
+ },
954
+ "node_modules/content-type": {
955
+ "version": "1.0.5",
956
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
957
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
958
+ "license": "MIT",
959
+ "engines": {
960
+ "node": ">= 0.6"
961
+ }
962
+ },
963
+ "node_modules/curve25519-js": {
964
+ "version": "0.0.4",
965
+ "resolved": "https://registry.npmjs.org/curve25519-js/-/curve25519-js-0.0.4.tgz",
966
+ "integrity": "sha512-axn2UMEnkhyDUPWOwVKBMVIzSQy2ejH2xRGy1wq81dqRwApXfIzfbE3hIX0ZRFBIihf/KDqK158DLwESu4AK1w==",
967
+ "license": "MIT"
968
+ },
969
+ "node_modules/debug": {
970
+ "version": "4.4.3",
971
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
972
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
973
+ "license": "MIT",
974
+ "dependencies": {
975
+ "ms": "^2.1.3"
976
+ },
977
+ "engines": {
978
+ "node": ">=6.0"
979
+ },
980
+ "peerDependenciesMeta": {
981
+ "supports-color": {
982
+ "optional": true
983
+ }
984
+ }
985
+ },
986
+ "node_modules/delayed-stream": {
987
+ "version": "1.0.0",
988
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
989
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
990
+ "license": "MIT",
991
+ "engines": {
992
+ "node": ">=0.4.0"
993
+ }
994
+ },
995
+ "node_modules/detect-libc": {
996
+ "version": "2.1.2",
997
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
998
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
999
+ "license": "Apache-2.0",
1000
+ "peer": true,
1001
+ "engines": {
1002
+ "node": ">=8"
1003
+ }
1004
+ },
1005
+ "node_modules/dunder-proto": {
1006
+ "version": "1.0.1",
1007
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
1008
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
1009
+ "license": "MIT",
1010
+ "dependencies": {
1011
+ "call-bind-apply-helpers": "^1.0.1",
1012
+ "es-errors": "^1.3.0",
1013
+ "gopd": "^1.2.0"
1014
+ },
1015
+ "engines": {
1016
+ "node": ">= 0.4"
1017
+ }
1018
+ },
1019
+ "node_modules/es-define-property": {
1020
+ "version": "1.0.1",
1021
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
1022
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
1023
+ "license": "MIT",
1024
+ "engines": {
1025
+ "node": ">= 0.4"
1026
+ }
1027
+ },
1028
+ "node_modules/es-errors": {
1029
+ "version": "1.3.0",
1030
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
1031
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
1032
+ "license": "MIT",
1033
+ "engines": {
1034
+ "node": ">= 0.4"
1035
+ }
1036
+ },
1037
+ "node_modules/es-object-atoms": {
1038
+ "version": "1.1.1",
1039
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
1040
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
1041
+ "license": "MIT",
1042
+ "dependencies": {
1043
+ "es-errors": "^1.3.0"
1044
+ },
1045
+ "engines": {
1046
+ "node": ">= 0.4"
1047
+ }
1048
+ },
1049
+ "node_modules/es-set-tostringtag": {
1050
+ "version": "2.1.0",
1051
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
1052
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
1053
+ "license": "MIT",
1054
+ "dependencies": {
1055
+ "es-errors": "^1.3.0",
1056
+ "get-intrinsic": "^1.2.6",
1057
+ "has-tostringtag": "^1.0.2",
1058
+ "hasown": "^2.0.2"
1059
+ },
1060
+ "engines": {
1061
+ "node": ">= 0.4"
1062
+ }
1063
+ },
1064
+ "node_modules/event-target-shim": {
1065
+ "version": "5.0.1",
1066
+ "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
1067
+ "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
1068
+ "license": "MIT",
1069
+ "engines": {
1070
+ "node": ">=6"
1071
+ }
1072
+ },
1073
+ "node_modules/events": {
1074
+ "version": "3.3.0",
1075
+ "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
1076
+ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
1077
+ "license": "MIT",
1078
+ "engines": {
1079
+ "node": ">=0.8.x"
1080
+ }
1081
+ },
1082
+ "node_modules/fast-redact": {
1083
+ "version": "3.5.0",
1084
+ "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz",
1085
+ "integrity": "sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==",
1086
+ "license": "MIT",
1087
+ "engines": {
1088
+ "node": ">=6"
1089
+ }
1090
+ },
1091
+ "node_modules/file-type": {
1092
+ "version": "21.3.0",
1093
+ "resolved": "https://registry.npmjs.org/file-type/-/file-type-21.3.0.tgz",
1094
+ "integrity": "sha512-8kPJMIGz1Yt/aPEwOsrR97ZyZaD1Iqm8PClb1nYFclUCkBi0Ma5IsYNQzvSFS9ib51lWyIw5mIT9rWzI/xjpzA==",
1095
+ "license": "MIT",
1096
+ "dependencies": {
1097
+ "@tokenizer/inflate": "^0.4.1",
1098
+ "strtok3": "^10.3.4",
1099
+ "token-types": "^6.1.1",
1100
+ "uint8array-extras": "^1.4.0"
1101
+ },
1102
+ "engines": {
1103
+ "node": ">=20"
1104
+ },
1105
+ "funding": {
1106
+ "url": "https://github.com/sindresorhus/file-type?sponsor=1"
1107
+ }
1108
+ },
1109
+ "node_modules/follow-redirects": {
1110
+ "version": "1.15.11",
1111
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
1112
+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
1113
+ "funding": [
1114
+ {
1115
+ "type": "individual",
1116
+ "url": "https://github.com/sponsors/RubenVerborgh"
1117
+ }
1118
+ ],
1119
+ "license": "MIT",
1120
+ "engines": {
1121
+ "node": ">=4.0"
1122
+ },
1123
+ "peerDependenciesMeta": {
1124
+ "debug": {
1125
+ "optional": true
1126
+ }
1127
+ }
1128
+ },
1129
+ "node_modules/form-data": {
1130
+ "version": "4.0.5",
1131
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
1132
+ "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
1133
+ "license": "MIT",
1134
+ "dependencies": {
1135
+ "asynckit": "^0.4.0",
1136
+ "combined-stream": "^1.0.8",
1137
+ "es-set-tostringtag": "^2.1.0",
1138
+ "hasown": "^2.0.2",
1139
+ "mime-types": "^2.1.12"
1140
+ },
1141
+ "engines": {
1142
+ "node": ">= 6"
1143
+ }
1144
+ },
1145
+ "node_modules/function-bind": {
1146
+ "version": "1.1.2",
1147
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
1148
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
1149
+ "license": "MIT",
1150
+ "funding": {
1151
+ "url": "https://github.com/sponsors/ljharb"
1152
+ }
1153
+ },
1154
+ "node_modules/get-intrinsic": {
1155
+ "version": "1.3.0",
1156
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
1157
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
1158
+ "license": "MIT",
1159
+ "dependencies": {
1160
+ "call-bind-apply-helpers": "^1.0.2",
1161
+ "es-define-property": "^1.0.1",
1162
+ "es-errors": "^1.3.0",
1163
+ "es-object-atoms": "^1.1.1",
1164
+ "function-bind": "^1.1.2",
1165
+ "get-proto": "^1.0.1",
1166
+ "gopd": "^1.2.0",
1167
+ "has-symbols": "^1.1.0",
1168
+ "hasown": "^2.0.2",
1169
+ "math-intrinsics": "^1.1.0"
1170
+ },
1171
+ "engines": {
1172
+ "node": ">= 0.4"
1173
+ },
1174
+ "funding": {
1175
+ "url": "https://github.com/sponsors/ljharb"
1176
+ }
1177
+ },
1178
+ "node_modules/get-proto": {
1179
+ "version": "1.0.1",
1180
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
1181
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
1182
+ "license": "MIT",
1183
+ "dependencies": {
1184
+ "dunder-proto": "^1.0.1",
1185
+ "es-object-atoms": "^1.0.0"
1186
+ },
1187
+ "engines": {
1188
+ "node": ">= 0.4"
1189
+ }
1190
+ },
1191
+ "node_modules/gopd": {
1192
+ "version": "1.2.0",
1193
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
1194
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
1195
+ "license": "MIT",
1196
+ "engines": {
1197
+ "node": ">= 0.4"
1198
+ },
1199
+ "funding": {
1200
+ "url": "https://github.com/sponsors/ljharb"
1201
+ }
1202
+ },
1203
+ "node_modules/has-symbols": {
1204
+ "version": "1.1.0",
1205
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
1206
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
1207
+ "license": "MIT",
1208
+ "engines": {
1209
+ "node": ">= 0.4"
1210
+ },
1211
+ "funding": {
1212
+ "url": "https://github.com/sponsors/ljharb"
1213
+ }
1214
+ },
1215
+ "node_modules/has-tostringtag": {
1216
+ "version": "1.0.2",
1217
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
1218
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
1219
+ "license": "MIT",
1220
+ "dependencies": {
1221
+ "has-symbols": "^1.0.3"
1222
+ },
1223
+ "engines": {
1224
+ "node": ">= 0.4"
1225
+ },
1226
+ "funding": {
1227
+ "url": "https://github.com/sponsors/ljharb"
1228
+ }
1229
+ },
1230
+ "node_modules/hashery": {
1231
+ "version": "1.4.0",
1232
+ "resolved": "https://registry.npmjs.org/hashery/-/hashery-1.4.0.tgz",
1233
+ "integrity": "sha512-Wn2i1In6XFxl8Az55kkgnFRiAlIAushzh26PTjL2AKtQcEfXrcLa7Hn5QOWGZEf3LU057P9TwwZjFyxfS1VuvQ==",
1234
+ "license": "MIT",
1235
+ "dependencies": {
1236
+ "hookified": "^1.14.0"
1237
+ },
1238
+ "engines": {
1239
+ "node": ">=20"
1240
+ }
1241
+ },
1242
+ "node_modules/hasown": {
1243
+ "version": "2.0.2",
1244
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
1245
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
1246
+ "license": "MIT",
1247
+ "dependencies": {
1248
+ "function-bind": "^1.1.2"
1249
+ },
1250
+ "engines": {
1251
+ "node": ">= 0.4"
1252
+ }
1253
+ },
1254
+ "node_modules/hookified": {
1255
+ "version": "1.15.0",
1256
+ "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.15.0.tgz",
1257
+ "integrity": "sha512-51w+ZZGt7Zw5q7rM3nC4t3aLn/xvKDETsXqMczndvwyVQhAHfUmUuFBRFcos8Iyebtk7OAE9dL26wFNzZVVOkw==",
1258
+ "license": "MIT"
1259
+ },
1260
+ "node_modules/ieee754": {
1261
+ "version": "1.2.1",
1262
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
1263
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
1264
+ "funding": [
1265
+ {
1266
+ "type": "github",
1267
+ "url": "https://github.com/sponsors/feross"
1268
+ },
1269
+ {
1270
+ "type": "patreon",
1271
+ "url": "https://www.patreon.com/feross"
1272
+ },
1273
+ {
1274
+ "type": "consulting",
1275
+ "url": "https://feross.org/support"
1276
+ }
1277
+ ],
1278
+ "license": "BSD-3-Clause"
1279
+ },
1280
+ "node_modules/keyv": {
1281
+ "version": "5.6.0",
1282
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.6.0.tgz",
1283
+ "integrity": "sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==",
1284
+ "license": "MIT",
1285
+ "dependencies": {
1286
+ "@keyv/serialize": "^1.1.1"
1287
+ }
1288
+ },
1289
+ "node_modules/libsignal": {
1290
+ "name": "@whiskeysockets/libsignal-node",
1291
+ "version": "2.0.1",
1292
+ "resolved": "git+ssh://git@github.com/whiskeysockets/libsignal-node.git#1c30d7d7e76a3b0aa120b04dc6a26f5a12dccf67",
1293
+ "license": "GPL-3.0",
1294
+ "dependencies": {
1295
+ "curve25519-js": "^0.0.4",
1296
+ "protobufjs": "6.8.8"
1297
+ }
1298
+ },
1299
+ "node_modules/libsignal/node_modules/@types/node": {
1300
+ "version": "10.17.60",
1301
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz",
1302
+ "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==",
1303
+ "license": "MIT"
1304
+ },
1305
+ "node_modules/libsignal/node_modules/long": {
1306
+ "version": "4.0.0",
1307
+ "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz",
1308
+ "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==",
1309
+ "license": "Apache-2.0"
1310
+ },
1311
+ "node_modules/libsignal/node_modules/protobufjs": {
1312
+ "version": "6.8.8",
1313
+ "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.8.8.tgz",
1314
+ "integrity": "sha512-AAmHtD5pXgZfi7GMpllpO3q1Xw1OYldr+dMUlAnffGTAhqkg72WdmSY71uKBF/JuyiKs8psYbtKrhi0ASCD8qw==",
1315
+ "hasInstallScript": true,
1316
+ "license": "BSD-3-Clause",
1317
+ "dependencies": {
1318
+ "@protobufjs/aspromise": "^1.1.2",
1319
+ "@protobufjs/base64": "^1.1.2",
1320
+ "@protobufjs/codegen": "^2.0.4",
1321
+ "@protobufjs/eventemitter": "^1.1.0",
1322
+ "@protobufjs/fetch": "^1.1.0",
1323
+ "@protobufjs/float": "^1.0.2",
1324
+ "@protobufjs/inquire": "^1.1.0",
1325
+ "@protobufjs/path": "^1.1.2",
1326
+ "@protobufjs/pool": "^1.1.0",
1327
+ "@protobufjs/utf8": "^1.1.0",
1328
+ "@types/long": "^4.0.0",
1329
+ "@types/node": "^10.1.0",
1330
+ "long": "^4.0.0"
1331
+ },
1332
+ "bin": {
1333
+ "pbjs": "bin/pbjs",
1334
+ "pbts": "bin/pbts"
1335
+ }
1336
+ },
1337
+ "node_modules/long": {
1338
+ "version": "5.3.2",
1339
+ "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
1340
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
1341
+ "license": "Apache-2.0"
1342
+ },
1343
+ "node_modules/math-intrinsics": {
1344
+ "version": "1.1.0",
1345
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
1346
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
1347
+ "license": "MIT",
1348
+ "engines": {
1349
+ "node": ">= 0.4"
1350
+ }
1351
+ },
1352
+ "node_modules/media-typer": {
1353
+ "version": "1.1.0",
1354
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
1355
+ "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
1356
+ "license": "MIT",
1357
+ "engines": {
1358
+ "node": ">= 0.8"
1359
+ }
1360
+ },
1361
+ "node_modules/mime-db": {
1362
+ "version": "1.52.0",
1363
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
1364
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
1365
+ "license": "MIT",
1366
+ "engines": {
1367
+ "node": ">= 0.6"
1368
+ }
1369
+ },
1370
+ "node_modules/mime-types": {
1371
+ "version": "2.1.35",
1372
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
1373
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
1374
+ "license": "MIT",
1375
+ "dependencies": {
1376
+ "mime-db": "1.52.0"
1377
+ },
1378
+ "engines": {
1379
+ "node": ">= 0.6"
1380
+ }
1381
+ },
1382
+ "node_modules/ms": {
1383
+ "version": "2.1.3",
1384
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1385
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1386
+ "license": "MIT"
1387
+ },
1388
+ "node_modules/music-metadata": {
1389
+ "version": "11.11.1",
1390
+ "resolved": "https://registry.npmjs.org/music-metadata/-/music-metadata-11.11.1.tgz",
1391
+ "integrity": "sha512-8FT+lSLznASDhn5KNJtQE6ZH95VqhxtKWNPrvdfhlqgbdZZEEAXehx+xpUvas4VuEZAu49BhQgLa3NlmPeRaww==",
1392
+ "funding": [
1393
+ {
1394
+ "type": "github",
1395
+ "url": "https://github.com/sponsors/Borewit"
1396
+ },
1397
+ {
1398
+ "type": "buymeacoffee",
1399
+ "url": "https://buymeacoffee.com/borewit"
1400
+ }
1401
+ ],
1402
+ "license": "MIT",
1403
+ "dependencies": {
1404
+ "@borewit/text-codec": "^0.2.1",
1405
+ "@tokenizer/token": "^0.3.0",
1406
+ "content-type": "^1.0.5",
1407
+ "debug": "^4.4.3",
1408
+ "file-type": "^21.3.0",
1409
+ "media-typer": "^1.1.0",
1410
+ "strtok3": "^10.3.4",
1411
+ "token-types": "^6.1.2",
1412
+ "uint8array-extras": "^1.5.0",
1413
+ "win-guid": "^0.2.0"
1414
+ },
1415
+ "engines": {
1416
+ "node": ">=18"
1417
+ }
1418
+ },
1419
+ "node_modules/on-exit-leak-free": {
1420
+ "version": "2.1.2",
1421
+ "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz",
1422
+ "integrity": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==",
1423
+ "license": "MIT",
1424
+ "engines": {
1425
+ "node": ">=14.0.0"
1426
+ }
1427
+ },
1428
+ "node_modules/pino": {
1429
+ "version": "8.21.0",
1430
+ "resolved": "https://registry.npmjs.org/pino/-/pino-8.21.0.tgz",
1431
+ "integrity": "sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==",
1432
+ "license": "MIT",
1433
+ "dependencies": {
1434
+ "atomic-sleep": "^1.0.0",
1435
+ "fast-redact": "^3.1.1",
1436
+ "on-exit-leak-free": "^2.1.0",
1437
+ "pino-abstract-transport": "^1.2.0",
1438
+ "pino-std-serializers": "^6.0.0",
1439
+ "process-warning": "^3.0.0",
1440
+ "quick-format-unescaped": "^4.0.3",
1441
+ "real-require": "^0.2.0",
1442
+ "safe-stable-stringify": "^2.3.1",
1443
+ "sonic-boom": "^3.7.0",
1444
+ "thread-stream": "^2.6.0"
1445
+ },
1446
+ "bin": {
1447
+ "pino": "bin.js"
1448
+ }
1449
+ },
1450
+ "node_modules/pino-abstract-transport": {
1451
+ "version": "1.2.0",
1452
+ "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.2.0.tgz",
1453
+ "integrity": "sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==",
1454
+ "license": "MIT",
1455
+ "dependencies": {
1456
+ "readable-stream": "^4.0.0",
1457
+ "split2": "^4.0.0"
1458
+ }
1459
+ },
1460
+ "node_modules/pino-std-serializers": {
1461
+ "version": "6.2.2",
1462
+ "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz",
1463
+ "integrity": "sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==",
1464
+ "license": "MIT"
1465
+ },
1466
+ "node_modules/process": {
1467
+ "version": "0.11.10",
1468
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
1469
+ "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
1470
+ "license": "MIT",
1471
+ "engines": {
1472
+ "node": ">= 0.6.0"
1473
+ }
1474
+ },
1475
+ "node_modules/process-warning": {
1476
+ "version": "3.0.0",
1477
+ "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-3.0.0.tgz",
1478
+ "integrity": "sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==",
1479
+ "license": "MIT"
1480
+ },
1481
+ "node_modules/protobufjs": {
1482
+ "version": "7.5.4",
1483
+ "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.4.tgz",
1484
+ "integrity": "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==",
1485
+ "hasInstallScript": true,
1486
+ "license": "BSD-3-Clause",
1487
+ "dependencies": {
1488
+ "@protobufjs/aspromise": "^1.1.2",
1489
+ "@protobufjs/base64": "^1.1.2",
1490
+ "@protobufjs/codegen": "^2.0.4",
1491
+ "@protobufjs/eventemitter": "^1.1.0",
1492
+ "@protobufjs/fetch": "^1.1.0",
1493
+ "@protobufjs/float": "^1.0.2",
1494
+ "@protobufjs/inquire": "^1.1.0",
1495
+ "@protobufjs/path": "^1.1.2",
1496
+ "@protobufjs/pool": "^1.1.0",
1497
+ "@protobufjs/utf8": "^1.1.0",
1498
+ "@types/node": ">=13.7.0",
1499
+ "long": "^5.0.0"
1500
+ },
1501
+ "engines": {
1502
+ "node": ">=12.0.0"
1503
+ }
1504
+ },
1505
+ "node_modules/proxy-from-env": {
1506
+ "version": "1.1.0",
1507
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
1508
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
1509
+ "license": "MIT"
1510
+ },
1511
+ "node_modules/qified": {
1512
+ "version": "0.6.0",
1513
+ "resolved": "https://registry.npmjs.org/qified/-/qified-0.6.0.tgz",
1514
+ "integrity": "sha512-tsSGN1x3h569ZSU1u6diwhltLyfUWDp3YbFHedapTmpBl0B3P6U3+Qptg7xu+v+1io1EwhdPyyRHYbEw0KN2FA==",
1515
+ "license": "MIT",
1516
+ "dependencies": {
1517
+ "hookified": "^1.14.0"
1518
+ },
1519
+ "engines": {
1520
+ "node": ">=20"
1521
+ }
1522
+ },
1523
+ "node_modules/qrcode-terminal": {
1524
+ "version": "0.12.0",
1525
+ "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz",
1526
+ "integrity": "sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==",
1527
+ "bin": {
1528
+ "qrcode-terminal": "bin/qrcode-terminal.js"
1529
+ }
1530
+ },
1531
+ "node_modules/quick-format-unescaped": {
1532
+ "version": "4.0.4",
1533
+ "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz",
1534
+ "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==",
1535
+ "license": "MIT"
1536
+ },
1537
+ "node_modules/readable-stream": {
1538
+ "version": "4.7.0",
1539
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz",
1540
+ "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==",
1541
+ "license": "MIT",
1542
+ "dependencies": {
1543
+ "abort-controller": "^3.0.0",
1544
+ "buffer": "^6.0.3",
1545
+ "events": "^3.3.0",
1546
+ "process": "^0.11.10",
1547
+ "string_decoder": "^1.3.0"
1548
+ },
1549
+ "engines": {
1550
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1551
+ }
1552
+ },
1553
+ "node_modules/real-require": {
1554
+ "version": "0.2.0",
1555
+ "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz",
1556
+ "integrity": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==",
1557
+ "license": "MIT",
1558
+ "engines": {
1559
+ "node": ">= 12.13.0"
1560
+ }
1561
+ },
1562
+ "node_modules/safe-buffer": {
1563
+ "version": "5.2.1",
1564
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
1565
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
1566
+ "funding": [
1567
+ {
1568
+ "type": "github",
1569
+ "url": "https://github.com/sponsors/feross"
1570
+ },
1571
+ {
1572
+ "type": "patreon",
1573
+ "url": "https://www.patreon.com/feross"
1574
+ },
1575
+ {
1576
+ "type": "consulting",
1577
+ "url": "https://feross.org/support"
1578
+ }
1579
+ ],
1580
+ "license": "MIT"
1581
+ },
1582
+ "node_modules/safe-stable-stringify": {
1583
+ "version": "2.5.0",
1584
+ "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz",
1585
+ "integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==",
1586
+ "license": "MIT",
1587
+ "engines": {
1588
+ "node": ">=10"
1589
+ }
1590
+ },
1591
+ "node_modules/semver": {
1592
+ "version": "7.7.3",
1593
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
1594
+ "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
1595
+ "license": "ISC",
1596
+ "peer": true,
1597
+ "bin": {
1598
+ "semver": "bin/semver.js"
1599
+ },
1600
+ "engines": {
1601
+ "node": ">=10"
1602
+ }
1603
+ },
1604
+ "node_modules/sharp": {
1605
+ "version": "0.34.5",
1606
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
1607
+ "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
1608
+ "hasInstallScript": true,
1609
+ "license": "Apache-2.0",
1610
+ "peer": true,
1611
+ "dependencies": {
1612
+ "@img/colour": "^1.0.0",
1613
+ "detect-libc": "^2.1.2",
1614
+ "semver": "^7.7.3"
1615
+ },
1616
+ "engines": {
1617
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
1618
+ },
1619
+ "funding": {
1620
+ "url": "https://opencollective.com/libvips"
1621
+ },
1622
+ "optionalDependencies": {
1623
+ "@img/sharp-darwin-arm64": "0.34.5",
1624
+ "@img/sharp-darwin-x64": "0.34.5",
1625
+ "@img/sharp-libvips-darwin-arm64": "1.2.4",
1626
+ "@img/sharp-libvips-darwin-x64": "1.2.4",
1627
+ "@img/sharp-libvips-linux-arm": "1.2.4",
1628
+ "@img/sharp-libvips-linux-arm64": "1.2.4",
1629
+ "@img/sharp-libvips-linux-ppc64": "1.2.4",
1630
+ "@img/sharp-libvips-linux-riscv64": "1.2.4",
1631
+ "@img/sharp-libvips-linux-s390x": "1.2.4",
1632
+ "@img/sharp-libvips-linux-x64": "1.2.4",
1633
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
1634
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.4",
1635
+ "@img/sharp-linux-arm": "0.34.5",
1636
+ "@img/sharp-linux-arm64": "0.34.5",
1637
+ "@img/sharp-linux-ppc64": "0.34.5",
1638
+ "@img/sharp-linux-riscv64": "0.34.5",
1639
+ "@img/sharp-linux-s390x": "0.34.5",
1640
+ "@img/sharp-linux-x64": "0.34.5",
1641
+ "@img/sharp-linuxmusl-arm64": "0.34.5",
1642
+ "@img/sharp-linuxmusl-x64": "0.34.5",
1643
+ "@img/sharp-wasm32": "0.34.5",
1644
+ "@img/sharp-win32-arm64": "0.34.5",
1645
+ "@img/sharp-win32-ia32": "0.34.5",
1646
+ "@img/sharp-win32-x64": "0.34.5"
1647
+ }
1648
+ },
1649
+ "node_modules/sonic-boom": {
1650
+ "version": "3.8.1",
1651
+ "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.8.1.tgz",
1652
+ "integrity": "sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==",
1653
+ "license": "MIT",
1654
+ "dependencies": {
1655
+ "atomic-sleep": "^1.0.0"
1656
+ }
1657
+ },
1658
+ "node_modules/split2": {
1659
+ "version": "4.2.0",
1660
+ "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
1661
+ "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
1662
+ "license": "ISC",
1663
+ "engines": {
1664
+ "node": ">= 10.x"
1665
+ }
1666
+ },
1667
+ "node_modules/string_decoder": {
1668
+ "version": "1.3.0",
1669
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
1670
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
1671
+ "license": "MIT",
1672
+ "dependencies": {
1673
+ "safe-buffer": "~5.2.0"
1674
+ }
1675
+ },
1676
+ "node_modules/strtok3": {
1677
+ "version": "10.3.4",
1678
+ "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-10.3.4.tgz",
1679
+ "integrity": "sha512-KIy5nylvC5le1OdaaoCJ07L+8iQzJHGH6pWDuzS+d07Cu7n1MZ2x26P8ZKIWfbK02+XIL8Mp4RkWeqdUCrDMfg==",
1680
+ "license": "MIT",
1681
+ "dependencies": {
1682
+ "@tokenizer/token": "^0.3.0"
1683
+ },
1684
+ "engines": {
1685
+ "node": ">=18"
1686
+ },
1687
+ "funding": {
1688
+ "type": "github",
1689
+ "url": "https://github.com/sponsors/Borewit"
1690
+ }
1691
+ },
1692
+ "node_modules/thread-stream": {
1693
+ "version": "2.7.0",
1694
+ "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-2.7.0.tgz",
1695
+ "integrity": "sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==",
1696
+ "license": "MIT",
1697
+ "dependencies": {
1698
+ "real-require": "^0.2.0"
1699
+ }
1700
+ },
1701
+ "node_modules/token-types": {
1702
+ "version": "6.1.2",
1703
+ "resolved": "https://registry.npmjs.org/token-types/-/token-types-6.1.2.tgz",
1704
+ "integrity": "sha512-dRXchy+C0IgK8WPC6xvCHFRIWYUbqqdEIKPaKo/AcTUNzwLTK6AH7RjdLWsEZcAN/TBdtfUw3PYEgPr5VPr6ww==",
1705
+ "license": "MIT",
1706
+ "dependencies": {
1707
+ "@borewit/text-codec": "^0.2.1",
1708
+ "@tokenizer/token": "^0.3.0",
1709
+ "ieee754": "^1.2.1"
1710
+ },
1711
+ "engines": {
1712
+ "node": ">=14.16"
1713
+ },
1714
+ "funding": {
1715
+ "type": "github",
1716
+ "url": "https://github.com/sponsors/Borewit"
1717
+ }
1718
+ },
1719
+ "node_modules/tslib": {
1720
+ "version": "2.8.1",
1721
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
1722
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
1723
+ "license": "0BSD"
1724
+ },
1725
+ "node_modules/typescript": {
1726
+ "version": "5.9.3",
1727
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
1728
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
1729
+ "dev": true,
1730
+ "license": "Apache-2.0",
1731
+ "bin": {
1732
+ "tsc": "bin/tsc",
1733
+ "tsserver": "bin/tsserver"
1734
+ },
1735
+ "engines": {
1736
+ "node": ">=14.17"
1737
+ }
1738
+ },
1739
+ "node_modules/uint8array-extras": {
1740
+ "version": "1.5.0",
1741
+ "resolved": "https://registry.npmjs.org/uint8array-extras/-/uint8array-extras-1.5.0.tgz",
1742
+ "integrity": "sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==",
1743
+ "license": "MIT",
1744
+ "engines": {
1745
+ "node": ">=18"
1746
+ },
1747
+ "funding": {
1748
+ "url": "https://github.com/sponsors/sindresorhus"
1749
+ }
1750
+ },
1751
+ "node_modules/undici-types": {
1752
+ "version": "6.21.0",
1753
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
1754
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
1755
+ "license": "MIT"
1756
+ },
1757
+ "node_modules/win-guid": {
1758
+ "version": "0.2.1",
1759
+ "resolved": "https://registry.npmjs.org/win-guid/-/win-guid-0.2.1.tgz",
1760
+ "integrity": "sha512-gEIQU4mkgl2OPeoNrWflcJFJ3Ae2BPd4eCsHHA/XikslkIVms/nHhvnvzIZV7VLmBvtFlDOzLt9rrZT+n6D67A==",
1761
+ "license": "MIT"
1762
+ },
1763
+ "node_modules/ws": {
1764
+ "version": "8.19.0",
1765
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz",
1766
+ "integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==",
1767
+ "license": "MIT",
1768
+ "engines": {
1769
+ "node": ">=10.0.0"
1770
+ },
1771
+ "peerDependencies": {
1772
+ "bufferutil": "^4.0.1",
1773
+ "utf-8-validate": ">=5.0.2"
1774
+ },
1775
+ "peerDependenciesMeta": {
1776
+ "bufferutil": {
1777
+ "optional": true
1778
+ },
1779
+ "utf-8-validate": {
1780
+ "optional": true
1781
+ }
1782
+ }
1783
+ }
1784
+ }
1785
+ }