@kaleido-io/workflow-engine-sdk 0.9.3 → 0.9.4

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 (76) hide show
  1. package/README.md +486 -362
  2. package/bin/init.js +14 -15
  3. package/dist/src/client/client.d.ts +22 -0
  4. package/dist/src/client/client.d.ts.map +1 -1
  5. package/dist/src/client/client.js +1 -0
  6. package/dist/src/client/client.js.map +1 -1
  7. package/dist/src/client/client_factory.d.ts +14 -0
  8. package/dist/src/client/client_factory.d.ts.map +1 -0
  9. package/dist/src/client/client_factory.js +64 -0
  10. package/dist/src/client/client_factory.js.map +1 -0
  11. package/dist/src/client/rest-client.d.ts.map +1 -1
  12. package/dist/src/client/rest-client.js +1 -1
  13. package/dist/src/client/rest-client.js.map +1 -1
  14. package/dist/src/config/config.d.ts +81 -1
  15. package/dist/src/config/config.d.ts.map +1 -1
  16. package/dist/src/config/config.js +269 -24
  17. package/dist/src/config/config.js.map +1 -1
  18. package/dist/src/config/config_helpers.d.ts +44 -0
  19. package/dist/src/config/config_helpers.d.ts.map +1 -0
  20. package/dist/src/config/config_helpers.js +68 -0
  21. package/dist/src/config/config_helpers.js.map +1 -0
  22. package/dist/src/helpers/stage_director.js +2 -2
  23. package/dist/src/i18n/errors.d.ts +5 -0
  24. package/dist/src/i18n/errors.d.ts.map +1 -1
  25. package/dist/src/i18n/errors.js +8 -3
  26. package/dist/src/i18n/errors.js.map +1 -1
  27. package/dist/src/index.d.ts +3 -2
  28. package/dist/src/index.d.ts.map +1 -1
  29. package/dist/src/index.js +5 -1
  30. package/dist/src/index.js.map +1 -1
  31. package/dist/src/runtime/handler_runtime.d.ts +22 -0
  32. package/dist/src/runtime/handler_runtime.d.ts.map +1 -1
  33. package/dist/src/runtime/handler_runtime.js +43 -3
  34. package/dist/src/runtime/handler_runtime.js.map +1 -1
  35. package/dist/src/utils/patch.d.ts +1 -1
  36. package/dist-esm/src/client/client.js +2 -1
  37. package/dist-esm/src/client/client.js.map +1 -1
  38. package/dist-esm/src/client/client_factory.js +60 -0
  39. package/dist-esm/src/client/client_factory.js.map +1 -0
  40. package/dist-esm/src/client/rest-client.js +1 -1
  41. package/dist-esm/src/client/rest-client.js.map +1 -1
  42. package/dist-esm/src/config/config.js +235 -25
  43. package/dist-esm/src/config/config.js.map +1 -1
  44. package/dist-esm/src/config/config_helpers.js +61 -0
  45. package/dist-esm/src/config/config_helpers.js.map +1 -0
  46. package/dist-esm/src/helpers/stage_director.js +2 -2
  47. package/dist-esm/src/i18n/errors.js +8 -3
  48. package/dist-esm/src/i18n/errors.js.map +1 -1
  49. package/dist-esm/src/index.js +2 -1
  50. package/dist-esm/src/index.js.map +1 -1
  51. package/dist-esm/src/runtime/handler_runtime.js +38 -2
  52. package/dist-esm/src/runtime/handler_runtime.js.map +1 -1
  53. package/dist-esm/src/utils/patch.js +2 -2
  54. package/package.json +1 -1
  55. package/template/README.md +5 -8
  56. package/template/config/config.yaml +12 -0
  57. package/template/config/wfe-config.yaml +12 -0
  58. package/template/package-lock.json +1908 -0
  59. package/template/package.json +4 -2
  60. package/template/src/connect.ts +35 -37
  61. package/template/src/provider.ts +4 -4
  62. package/template/src/samples/event-source/echo-handler.ts +2 -2
  63. package/template/src/samples/event-source/event-processor.ts +1 -1
  64. package/template/src/samples/event-source/event-source.ts +1 -1
  65. package/template/src/samples/event-source/stream.ts +11 -11
  66. package/template/src/samples/hello/flow.ts +36 -36
  67. package/template/src/samples/hello/handlers.ts +2 -2
  68. package/template/src/samples/hello/transaction.ts +4 -4
  69. package/template/src/samples/http-invoke/flow.ts +29 -29
  70. package/template/src/samples/http-invoke/handlers.ts +88 -39
  71. package/template/src/samples/http-invoke/transaction.ts +3 -3
  72. package/template/src/samples/snap/event-source.ts +1 -1
  73. package/template/src/samples/snap/flow.ts +40 -40
  74. package/template/src/samples/snap/snap-handler.ts +2 -2
  75. package/template/src/samples/snap/transaction.ts +6 -6
  76. package/template/.env.sample +0 -14
@@ -0,0 +1,1908 @@
1
+ {
2
+ "name": "{{PROVIDER_NAME}}",
3
+ "version": "0.0.1",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "{{PROVIDER_NAME}}",
9
+ "version": "0.0.1",
10
+ "dependencies": {
11
+ "@kaleido-io/workflow-engine-sdk": "^0.9.3",
12
+ "dotenv": "^17.2.3",
13
+ "js-yaml": "^4.1.1",
14
+ "web3": "^4.16.0",
15
+ "ws": "^8.18.0"
16
+ },
17
+ "devDependencies": {
18
+ "@types/js-yaml": "^4.0.9",
19
+ "@vitest/coverage-v8": "^4.0.16",
20
+ "tsx": "^4.21.0",
21
+ "typescript": "^5.9.3",
22
+ "vitest": "^4.0.16"
23
+ }
24
+ },
25
+ "node_modules/@adraffy/ens-normalize": {
26
+ "version": "1.11.1",
27
+ "license": "MIT"
28
+ },
29
+ "node_modules/@babel/helper-string-parser": {
30
+ "version": "7.27.1",
31
+ "dev": true,
32
+ "license": "MIT",
33
+ "engines": {
34
+ "node": ">=6.9.0"
35
+ }
36
+ },
37
+ "node_modules/@babel/helper-validator-identifier": {
38
+ "version": "7.28.5",
39
+ "dev": true,
40
+ "license": "MIT",
41
+ "engines": {
42
+ "node": ">=6.9.0"
43
+ }
44
+ },
45
+ "node_modules/@babel/parser": {
46
+ "version": "7.29.0",
47
+ "dev": true,
48
+ "license": "MIT",
49
+ "dependencies": {
50
+ "@babel/types": "^7.29.0"
51
+ },
52
+ "bin": {
53
+ "parser": "bin/babel-parser.js"
54
+ },
55
+ "engines": {
56
+ "node": ">=6.0.0"
57
+ }
58
+ },
59
+ "node_modules/@babel/types": {
60
+ "version": "7.29.0",
61
+ "dev": true,
62
+ "license": "MIT",
63
+ "dependencies": {
64
+ "@babel/helper-string-parser": "^7.27.1",
65
+ "@babel/helper-validator-identifier": "^7.28.5"
66
+ },
67
+ "engines": {
68
+ "node": ">=6.9.0"
69
+ }
70
+ },
71
+ "node_modules/@bcoe/v8-coverage": {
72
+ "version": "1.0.2",
73
+ "dev": true,
74
+ "license": "MIT",
75
+ "engines": {
76
+ "node": ">=18"
77
+ }
78
+ },
79
+ "node_modules/@esbuild/darwin-arm64": {
80
+ "version": "0.27.4",
81
+ "cpu": [
82
+ "arm64"
83
+ ],
84
+ "dev": true,
85
+ "license": "MIT",
86
+ "optional": true,
87
+ "os": [
88
+ "darwin"
89
+ ],
90
+ "engines": {
91
+ "node": ">=18"
92
+ }
93
+ },
94
+ "node_modules/@ethereumjs/rlp": {
95
+ "version": "4.0.1",
96
+ "license": "MPL-2.0",
97
+ "bin": {
98
+ "rlp": "bin/rlp"
99
+ },
100
+ "engines": {
101
+ "node": ">=14"
102
+ }
103
+ },
104
+ "node_modules/@jridgewell/resolve-uri": {
105
+ "version": "3.1.2",
106
+ "dev": true,
107
+ "license": "MIT",
108
+ "engines": {
109
+ "node": ">=6.0.0"
110
+ }
111
+ },
112
+ "node_modules/@jridgewell/sourcemap-codec": {
113
+ "version": "1.5.5",
114
+ "dev": true,
115
+ "license": "MIT"
116
+ },
117
+ "node_modules/@jridgewell/trace-mapping": {
118
+ "version": "0.3.31",
119
+ "dev": true,
120
+ "license": "MIT",
121
+ "dependencies": {
122
+ "@jridgewell/resolve-uri": "^3.1.0",
123
+ "@jridgewell/sourcemap-codec": "^1.4.14"
124
+ }
125
+ },
126
+ "node_modules/@kaleido-io/workflow-engine-sdk": {
127
+ "version": "0.9.3",
128
+ "license": "Apache-2.0",
129
+ "dependencies": {
130
+ "exponential-backoff": "^3.1.1",
131
+ "fast-json-patch": "^3.1.1",
132
+ "js-yaml": "^4.1.1",
133
+ "uuid": "^13.0.0",
134
+ "ws": "^8.14.0"
135
+ },
136
+ "bin": {
137
+ "wesdk": "bin/wesdk.js"
138
+ },
139
+ "engines": {
140
+ "node": ">=20.19.0"
141
+ }
142
+ },
143
+ "node_modules/@noble/curves": {
144
+ "version": "1.4.2",
145
+ "license": "MIT",
146
+ "dependencies": {
147
+ "@noble/hashes": "1.4.0"
148
+ },
149
+ "funding": {
150
+ "url": "https://paulmillr.com/funding/"
151
+ }
152
+ },
153
+ "node_modules/@noble/hashes": {
154
+ "version": "1.4.0",
155
+ "license": "MIT",
156
+ "engines": {
157
+ "node": ">= 16"
158
+ },
159
+ "funding": {
160
+ "url": "https://paulmillr.com/funding/"
161
+ }
162
+ },
163
+ "node_modules/@oxc-project/runtime": {
164
+ "version": "0.115.0",
165
+ "dev": true,
166
+ "license": "MIT",
167
+ "engines": {
168
+ "node": "^20.19.0 || >=22.12.0"
169
+ }
170
+ },
171
+ "node_modules/@oxc-project/types": {
172
+ "version": "0.115.0",
173
+ "dev": true,
174
+ "license": "MIT",
175
+ "funding": {
176
+ "url": "https://github.com/sponsors/Boshen"
177
+ }
178
+ },
179
+ "node_modules/@rolldown/binding-darwin-arm64": {
180
+ "version": "1.0.0-rc.9",
181
+ "cpu": [
182
+ "arm64"
183
+ ],
184
+ "dev": true,
185
+ "license": "MIT",
186
+ "optional": true,
187
+ "os": [
188
+ "darwin"
189
+ ],
190
+ "engines": {
191
+ "node": "^20.19.0 || >=22.12.0"
192
+ }
193
+ },
194
+ "node_modules/@rolldown/pluginutils": {
195
+ "version": "1.0.0-rc.9",
196
+ "dev": true,
197
+ "license": "MIT"
198
+ },
199
+ "node_modules/@scure/base": {
200
+ "version": "1.1.9",
201
+ "license": "MIT",
202
+ "funding": {
203
+ "url": "https://paulmillr.com/funding/"
204
+ }
205
+ },
206
+ "node_modules/@scure/bip32": {
207
+ "version": "1.4.0",
208
+ "license": "MIT",
209
+ "dependencies": {
210
+ "@noble/curves": "~1.4.0",
211
+ "@noble/hashes": "~1.4.0",
212
+ "@scure/base": "~1.1.6"
213
+ },
214
+ "funding": {
215
+ "url": "https://paulmillr.com/funding/"
216
+ }
217
+ },
218
+ "node_modules/@scure/bip39": {
219
+ "version": "1.3.0",
220
+ "license": "MIT",
221
+ "dependencies": {
222
+ "@noble/hashes": "~1.4.0",
223
+ "@scure/base": "~1.1.6"
224
+ },
225
+ "funding": {
226
+ "url": "https://paulmillr.com/funding/"
227
+ }
228
+ },
229
+ "node_modules/@standard-schema/spec": {
230
+ "version": "1.1.0",
231
+ "dev": true,
232
+ "license": "MIT"
233
+ },
234
+ "node_modules/@types/chai": {
235
+ "version": "5.2.3",
236
+ "dev": true,
237
+ "license": "MIT",
238
+ "dependencies": {
239
+ "@types/deep-eql": "*",
240
+ "assertion-error": "^2.0.1"
241
+ }
242
+ },
243
+ "node_modules/@types/deep-eql": {
244
+ "version": "4.0.2",
245
+ "dev": true,
246
+ "license": "MIT"
247
+ },
248
+ "node_modules/@types/estree": {
249
+ "version": "1.0.8",
250
+ "dev": true,
251
+ "license": "MIT"
252
+ },
253
+ "node_modules/@types/js-yaml": {
254
+ "version": "4.0.9",
255
+ "dev": true,
256
+ "license": "MIT"
257
+ },
258
+ "node_modules/@types/node": {
259
+ "version": "25.4.0",
260
+ "license": "MIT",
261
+ "dependencies": {
262
+ "undici-types": "~7.18.0"
263
+ }
264
+ },
265
+ "node_modules/@types/ws": {
266
+ "version": "8.5.3",
267
+ "license": "MIT",
268
+ "dependencies": {
269
+ "@types/node": "*"
270
+ }
271
+ },
272
+ "node_modules/@vitest/coverage-v8": {
273
+ "version": "4.1.0",
274
+ "dev": true,
275
+ "license": "MIT",
276
+ "dependencies": {
277
+ "@bcoe/v8-coverage": "^1.0.2",
278
+ "@vitest/utils": "4.1.0",
279
+ "ast-v8-to-istanbul": "^1.0.0",
280
+ "istanbul-lib-coverage": "^3.2.2",
281
+ "istanbul-lib-report": "^3.0.1",
282
+ "istanbul-reports": "^3.2.0",
283
+ "magicast": "^0.5.2",
284
+ "obug": "^2.1.1",
285
+ "std-env": "^4.0.0-rc.1",
286
+ "tinyrainbow": "^3.0.3"
287
+ },
288
+ "funding": {
289
+ "url": "https://opencollective.com/vitest"
290
+ },
291
+ "peerDependencies": {
292
+ "@vitest/browser": "4.1.0",
293
+ "vitest": "4.1.0"
294
+ },
295
+ "peerDependenciesMeta": {
296
+ "@vitest/browser": {
297
+ "optional": true
298
+ }
299
+ }
300
+ },
301
+ "node_modules/@vitest/expect": {
302
+ "version": "4.1.0",
303
+ "dev": true,
304
+ "license": "MIT",
305
+ "dependencies": {
306
+ "@standard-schema/spec": "^1.1.0",
307
+ "@types/chai": "^5.2.2",
308
+ "@vitest/spy": "4.1.0",
309
+ "@vitest/utils": "4.1.0",
310
+ "chai": "^6.2.2",
311
+ "tinyrainbow": "^3.0.3"
312
+ },
313
+ "funding": {
314
+ "url": "https://opencollective.com/vitest"
315
+ }
316
+ },
317
+ "node_modules/@vitest/mocker": {
318
+ "version": "4.1.0",
319
+ "dev": true,
320
+ "license": "MIT",
321
+ "dependencies": {
322
+ "@vitest/spy": "4.1.0",
323
+ "estree-walker": "^3.0.3",
324
+ "magic-string": "^0.30.21"
325
+ },
326
+ "funding": {
327
+ "url": "https://opencollective.com/vitest"
328
+ },
329
+ "peerDependencies": {
330
+ "msw": "^2.4.9",
331
+ "vite": "^6.0.0 || ^7.0.0 || ^8.0.0-0"
332
+ },
333
+ "peerDependenciesMeta": {
334
+ "msw": {
335
+ "optional": true
336
+ },
337
+ "vite": {
338
+ "optional": true
339
+ }
340
+ }
341
+ },
342
+ "node_modules/@vitest/pretty-format": {
343
+ "version": "4.1.0",
344
+ "dev": true,
345
+ "license": "MIT",
346
+ "dependencies": {
347
+ "tinyrainbow": "^3.0.3"
348
+ },
349
+ "funding": {
350
+ "url": "https://opencollective.com/vitest"
351
+ }
352
+ },
353
+ "node_modules/@vitest/runner": {
354
+ "version": "4.1.0",
355
+ "dev": true,
356
+ "license": "MIT",
357
+ "dependencies": {
358
+ "@vitest/utils": "4.1.0",
359
+ "pathe": "^2.0.3"
360
+ },
361
+ "funding": {
362
+ "url": "https://opencollective.com/vitest"
363
+ }
364
+ },
365
+ "node_modules/@vitest/snapshot": {
366
+ "version": "4.1.0",
367
+ "dev": true,
368
+ "license": "MIT",
369
+ "dependencies": {
370
+ "@vitest/pretty-format": "4.1.0",
371
+ "@vitest/utils": "4.1.0",
372
+ "magic-string": "^0.30.21",
373
+ "pathe": "^2.0.3"
374
+ },
375
+ "funding": {
376
+ "url": "https://opencollective.com/vitest"
377
+ }
378
+ },
379
+ "node_modules/@vitest/spy": {
380
+ "version": "4.1.0",
381
+ "dev": true,
382
+ "license": "MIT",
383
+ "funding": {
384
+ "url": "https://opencollective.com/vitest"
385
+ }
386
+ },
387
+ "node_modules/@vitest/utils": {
388
+ "version": "4.1.0",
389
+ "dev": true,
390
+ "license": "MIT",
391
+ "dependencies": {
392
+ "@vitest/pretty-format": "4.1.0",
393
+ "convert-source-map": "^2.0.0",
394
+ "tinyrainbow": "^3.0.3"
395
+ },
396
+ "funding": {
397
+ "url": "https://opencollective.com/vitest"
398
+ }
399
+ },
400
+ "node_modules/abitype": {
401
+ "version": "0.7.1",
402
+ "license": "MIT",
403
+ "peerDependencies": {
404
+ "typescript": ">=4.9.4",
405
+ "zod": "^3 >=3.19.1"
406
+ },
407
+ "peerDependenciesMeta": {
408
+ "zod": {
409
+ "optional": true
410
+ }
411
+ }
412
+ },
413
+ "node_modules/argparse": {
414
+ "version": "2.0.1",
415
+ "license": "Python-2.0"
416
+ },
417
+ "node_modules/assertion-error": {
418
+ "version": "2.0.1",
419
+ "dev": true,
420
+ "license": "MIT",
421
+ "engines": {
422
+ "node": ">=12"
423
+ }
424
+ },
425
+ "node_modules/ast-v8-to-istanbul": {
426
+ "version": "1.0.0",
427
+ "dev": true,
428
+ "license": "MIT",
429
+ "dependencies": {
430
+ "@jridgewell/trace-mapping": "^0.3.31",
431
+ "estree-walker": "^3.0.3",
432
+ "js-tokens": "^10.0.0"
433
+ }
434
+ },
435
+ "node_modules/available-typed-arrays": {
436
+ "version": "1.0.7",
437
+ "license": "MIT",
438
+ "dependencies": {
439
+ "possible-typed-array-names": "^1.0.0"
440
+ },
441
+ "engines": {
442
+ "node": ">= 0.4"
443
+ },
444
+ "funding": {
445
+ "url": "https://github.com/sponsors/ljharb"
446
+ }
447
+ },
448
+ "node_modules/call-bind": {
449
+ "version": "1.0.8",
450
+ "license": "MIT",
451
+ "dependencies": {
452
+ "call-bind-apply-helpers": "^1.0.0",
453
+ "es-define-property": "^1.0.0",
454
+ "get-intrinsic": "^1.2.4",
455
+ "set-function-length": "^1.2.2"
456
+ },
457
+ "engines": {
458
+ "node": ">= 0.4"
459
+ },
460
+ "funding": {
461
+ "url": "https://github.com/sponsors/ljharb"
462
+ }
463
+ },
464
+ "node_modules/call-bind-apply-helpers": {
465
+ "version": "1.0.2",
466
+ "license": "MIT",
467
+ "dependencies": {
468
+ "es-errors": "^1.3.0",
469
+ "function-bind": "^1.1.2"
470
+ },
471
+ "engines": {
472
+ "node": ">= 0.4"
473
+ }
474
+ },
475
+ "node_modules/call-bound": {
476
+ "version": "1.0.4",
477
+ "license": "MIT",
478
+ "dependencies": {
479
+ "call-bind-apply-helpers": "^1.0.2",
480
+ "get-intrinsic": "^1.3.0"
481
+ },
482
+ "engines": {
483
+ "node": ">= 0.4"
484
+ },
485
+ "funding": {
486
+ "url": "https://github.com/sponsors/ljharb"
487
+ }
488
+ },
489
+ "node_modules/chai": {
490
+ "version": "6.2.2",
491
+ "dev": true,
492
+ "license": "MIT",
493
+ "engines": {
494
+ "node": ">=18"
495
+ }
496
+ },
497
+ "node_modules/convert-source-map": {
498
+ "version": "2.0.0",
499
+ "dev": true,
500
+ "license": "MIT"
501
+ },
502
+ "node_modules/crc-32": {
503
+ "version": "1.2.2",
504
+ "license": "Apache-2.0",
505
+ "bin": {
506
+ "crc32": "bin/crc32.njs"
507
+ },
508
+ "engines": {
509
+ "node": ">=0.8"
510
+ }
511
+ },
512
+ "node_modules/cross-fetch": {
513
+ "version": "4.1.0",
514
+ "license": "MIT",
515
+ "dependencies": {
516
+ "node-fetch": "^2.7.0"
517
+ }
518
+ },
519
+ "node_modules/define-data-property": {
520
+ "version": "1.1.4",
521
+ "license": "MIT",
522
+ "dependencies": {
523
+ "es-define-property": "^1.0.0",
524
+ "es-errors": "^1.3.0",
525
+ "gopd": "^1.0.1"
526
+ },
527
+ "engines": {
528
+ "node": ">= 0.4"
529
+ },
530
+ "funding": {
531
+ "url": "https://github.com/sponsors/ljharb"
532
+ }
533
+ },
534
+ "node_modules/detect-libc": {
535
+ "version": "2.1.2",
536
+ "dev": true,
537
+ "license": "Apache-2.0",
538
+ "engines": {
539
+ "node": ">=8"
540
+ }
541
+ },
542
+ "node_modules/dotenv": {
543
+ "version": "17.3.1",
544
+ "license": "BSD-2-Clause",
545
+ "engines": {
546
+ "node": ">=12"
547
+ },
548
+ "funding": {
549
+ "url": "https://dotenvx.com"
550
+ }
551
+ },
552
+ "node_modules/dunder-proto": {
553
+ "version": "1.0.1",
554
+ "license": "MIT",
555
+ "dependencies": {
556
+ "call-bind-apply-helpers": "^1.0.1",
557
+ "es-errors": "^1.3.0",
558
+ "gopd": "^1.2.0"
559
+ },
560
+ "engines": {
561
+ "node": ">= 0.4"
562
+ }
563
+ },
564
+ "node_modules/es-define-property": {
565
+ "version": "1.0.1",
566
+ "license": "MIT",
567
+ "engines": {
568
+ "node": ">= 0.4"
569
+ }
570
+ },
571
+ "node_modules/es-errors": {
572
+ "version": "1.3.0",
573
+ "license": "MIT",
574
+ "engines": {
575
+ "node": ">= 0.4"
576
+ }
577
+ },
578
+ "node_modules/es-module-lexer": {
579
+ "version": "2.0.0",
580
+ "dev": true,
581
+ "license": "MIT"
582
+ },
583
+ "node_modules/es-object-atoms": {
584
+ "version": "1.1.1",
585
+ "license": "MIT",
586
+ "dependencies": {
587
+ "es-errors": "^1.3.0"
588
+ },
589
+ "engines": {
590
+ "node": ">= 0.4"
591
+ }
592
+ },
593
+ "node_modules/esbuild": {
594
+ "version": "0.27.4",
595
+ "dev": true,
596
+ "hasInstallScript": true,
597
+ "license": "MIT",
598
+ "bin": {
599
+ "esbuild": "bin/esbuild"
600
+ },
601
+ "engines": {
602
+ "node": ">=18"
603
+ },
604
+ "optionalDependencies": {
605
+ "@esbuild/aix-ppc64": "0.27.4",
606
+ "@esbuild/android-arm": "0.27.4",
607
+ "@esbuild/android-arm64": "0.27.4",
608
+ "@esbuild/android-x64": "0.27.4",
609
+ "@esbuild/darwin-arm64": "0.27.4",
610
+ "@esbuild/darwin-x64": "0.27.4",
611
+ "@esbuild/freebsd-arm64": "0.27.4",
612
+ "@esbuild/freebsd-x64": "0.27.4",
613
+ "@esbuild/linux-arm": "0.27.4",
614
+ "@esbuild/linux-arm64": "0.27.4",
615
+ "@esbuild/linux-ia32": "0.27.4",
616
+ "@esbuild/linux-loong64": "0.27.4",
617
+ "@esbuild/linux-mips64el": "0.27.4",
618
+ "@esbuild/linux-ppc64": "0.27.4",
619
+ "@esbuild/linux-riscv64": "0.27.4",
620
+ "@esbuild/linux-s390x": "0.27.4",
621
+ "@esbuild/linux-x64": "0.27.4",
622
+ "@esbuild/netbsd-arm64": "0.27.4",
623
+ "@esbuild/netbsd-x64": "0.27.4",
624
+ "@esbuild/openbsd-arm64": "0.27.4",
625
+ "@esbuild/openbsd-x64": "0.27.4",
626
+ "@esbuild/openharmony-arm64": "0.27.4",
627
+ "@esbuild/sunos-x64": "0.27.4",
628
+ "@esbuild/win32-arm64": "0.27.4",
629
+ "@esbuild/win32-ia32": "0.27.4",
630
+ "@esbuild/win32-x64": "0.27.4"
631
+ }
632
+ },
633
+ "node_modules/estree-walker": {
634
+ "version": "3.0.3",
635
+ "dev": true,
636
+ "license": "MIT",
637
+ "dependencies": {
638
+ "@types/estree": "^1.0.0"
639
+ }
640
+ },
641
+ "node_modules/ethereum-cryptography": {
642
+ "version": "2.2.1",
643
+ "license": "MIT",
644
+ "dependencies": {
645
+ "@noble/curves": "1.4.2",
646
+ "@noble/hashes": "1.4.0",
647
+ "@scure/bip32": "1.4.0",
648
+ "@scure/bip39": "1.3.0"
649
+ }
650
+ },
651
+ "node_modules/eventemitter3": {
652
+ "version": "5.0.4",
653
+ "license": "MIT"
654
+ },
655
+ "node_modules/expect-type": {
656
+ "version": "1.3.0",
657
+ "dev": true,
658
+ "license": "Apache-2.0",
659
+ "engines": {
660
+ "node": ">=12.0.0"
661
+ }
662
+ },
663
+ "node_modules/exponential-backoff": {
664
+ "version": "3.1.3",
665
+ "license": "Apache-2.0"
666
+ },
667
+ "node_modules/fast-json-patch": {
668
+ "version": "3.1.1",
669
+ "license": "MIT"
670
+ },
671
+ "node_modules/fdir": {
672
+ "version": "6.5.0",
673
+ "dev": true,
674
+ "license": "MIT",
675
+ "engines": {
676
+ "node": ">=12.0.0"
677
+ },
678
+ "peerDependencies": {
679
+ "picomatch": "^3 || ^4"
680
+ },
681
+ "peerDependenciesMeta": {
682
+ "picomatch": {
683
+ "optional": true
684
+ }
685
+ }
686
+ },
687
+ "node_modules/for-each": {
688
+ "version": "0.3.5",
689
+ "license": "MIT",
690
+ "dependencies": {
691
+ "is-callable": "^1.2.7"
692
+ },
693
+ "engines": {
694
+ "node": ">= 0.4"
695
+ },
696
+ "funding": {
697
+ "url": "https://github.com/sponsors/ljharb"
698
+ }
699
+ },
700
+ "node_modules/fsevents": {
701
+ "version": "2.3.3",
702
+ "dev": true,
703
+ "license": "MIT",
704
+ "optional": true,
705
+ "os": [
706
+ "darwin"
707
+ ],
708
+ "engines": {
709
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
710
+ }
711
+ },
712
+ "node_modules/function-bind": {
713
+ "version": "1.1.2",
714
+ "license": "MIT",
715
+ "funding": {
716
+ "url": "https://github.com/sponsors/ljharb"
717
+ }
718
+ },
719
+ "node_modules/generator-function": {
720
+ "version": "2.0.1",
721
+ "license": "MIT",
722
+ "engines": {
723
+ "node": ">= 0.4"
724
+ }
725
+ },
726
+ "node_modules/get-intrinsic": {
727
+ "version": "1.3.0",
728
+ "license": "MIT",
729
+ "dependencies": {
730
+ "call-bind-apply-helpers": "^1.0.2",
731
+ "es-define-property": "^1.0.1",
732
+ "es-errors": "^1.3.0",
733
+ "es-object-atoms": "^1.1.1",
734
+ "function-bind": "^1.1.2",
735
+ "get-proto": "^1.0.1",
736
+ "gopd": "^1.2.0",
737
+ "has-symbols": "^1.1.0",
738
+ "hasown": "^2.0.2",
739
+ "math-intrinsics": "^1.1.0"
740
+ },
741
+ "engines": {
742
+ "node": ">= 0.4"
743
+ },
744
+ "funding": {
745
+ "url": "https://github.com/sponsors/ljharb"
746
+ }
747
+ },
748
+ "node_modules/get-proto": {
749
+ "version": "1.0.1",
750
+ "license": "MIT",
751
+ "dependencies": {
752
+ "dunder-proto": "^1.0.1",
753
+ "es-object-atoms": "^1.0.0"
754
+ },
755
+ "engines": {
756
+ "node": ">= 0.4"
757
+ }
758
+ },
759
+ "node_modules/get-tsconfig": {
760
+ "version": "4.13.6",
761
+ "dev": true,
762
+ "license": "MIT",
763
+ "dependencies": {
764
+ "resolve-pkg-maps": "^1.0.0"
765
+ },
766
+ "funding": {
767
+ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
768
+ }
769
+ },
770
+ "node_modules/gopd": {
771
+ "version": "1.2.0",
772
+ "license": "MIT",
773
+ "engines": {
774
+ "node": ">= 0.4"
775
+ },
776
+ "funding": {
777
+ "url": "https://github.com/sponsors/ljharb"
778
+ }
779
+ },
780
+ "node_modules/has-flag": {
781
+ "version": "4.0.0",
782
+ "dev": true,
783
+ "license": "MIT",
784
+ "engines": {
785
+ "node": ">=8"
786
+ }
787
+ },
788
+ "node_modules/has-property-descriptors": {
789
+ "version": "1.0.2",
790
+ "license": "MIT",
791
+ "dependencies": {
792
+ "es-define-property": "^1.0.0"
793
+ },
794
+ "funding": {
795
+ "url": "https://github.com/sponsors/ljharb"
796
+ }
797
+ },
798
+ "node_modules/has-symbols": {
799
+ "version": "1.1.0",
800
+ "license": "MIT",
801
+ "engines": {
802
+ "node": ">= 0.4"
803
+ },
804
+ "funding": {
805
+ "url": "https://github.com/sponsors/ljharb"
806
+ }
807
+ },
808
+ "node_modules/has-tostringtag": {
809
+ "version": "1.0.2",
810
+ "license": "MIT",
811
+ "dependencies": {
812
+ "has-symbols": "^1.0.3"
813
+ },
814
+ "engines": {
815
+ "node": ">= 0.4"
816
+ },
817
+ "funding": {
818
+ "url": "https://github.com/sponsors/ljharb"
819
+ }
820
+ },
821
+ "node_modules/hasown": {
822
+ "version": "2.0.2",
823
+ "license": "MIT",
824
+ "dependencies": {
825
+ "function-bind": "^1.1.2"
826
+ },
827
+ "engines": {
828
+ "node": ">= 0.4"
829
+ }
830
+ },
831
+ "node_modules/html-escaper": {
832
+ "version": "2.0.2",
833
+ "dev": true,
834
+ "license": "MIT"
835
+ },
836
+ "node_modules/inherits": {
837
+ "version": "2.0.4",
838
+ "license": "ISC"
839
+ },
840
+ "node_modules/is-arguments": {
841
+ "version": "1.2.0",
842
+ "license": "MIT",
843
+ "dependencies": {
844
+ "call-bound": "^1.0.2",
845
+ "has-tostringtag": "^1.0.2"
846
+ },
847
+ "engines": {
848
+ "node": ">= 0.4"
849
+ },
850
+ "funding": {
851
+ "url": "https://github.com/sponsors/ljharb"
852
+ }
853
+ },
854
+ "node_modules/is-callable": {
855
+ "version": "1.2.7",
856
+ "license": "MIT",
857
+ "engines": {
858
+ "node": ">= 0.4"
859
+ },
860
+ "funding": {
861
+ "url": "https://github.com/sponsors/ljharb"
862
+ }
863
+ },
864
+ "node_modules/is-generator-function": {
865
+ "version": "1.1.2",
866
+ "license": "MIT",
867
+ "dependencies": {
868
+ "call-bound": "^1.0.4",
869
+ "generator-function": "^2.0.0",
870
+ "get-proto": "^1.0.1",
871
+ "has-tostringtag": "^1.0.2",
872
+ "safe-regex-test": "^1.1.0"
873
+ },
874
+ "engines": {
875
+ "node": ">= 0.4"
876
+ },
877
+ "funding": {
878
+ "url": "https://github.com/sponsors/ljharb"
879
+ }
880
+ },
881
+ "node_modules/is-regex": {
882
+ "version": "1.2.1",
883
+ "license": "MIT",
884
+ "dependencies": {
885
+ "call-bound": "^1.0.2",
886
+ "gopd": "^1.2.0",
887
+ "has-tostringtag": "^1.0.2",
888
+ "hasown": "^2.0.2"
889
+ },
890
+ "engines": {
891
+ "node": ">= 0.4"
892
+ },
893
+ "funding": {
894
+ "url": "https://github.com/sponsors/ljharb"
895
+ }
896
+ },
897
+ "node_modules/is-typed-array": {
898
+ "version": "1.1.15",
899
+ "license": "MIT",
900
+ "dependencies": {
901
+ "which-typed-array": "^1.1.16"
902
+ },
903
+ "engines": {
904
+ "node": ">= 0.4"
905
+ },
906
+ "funding": {
907
+ "url": "https://github.com/sponsors/ljharb"
908
+ }
909
+ },
910
+ "node_modules/isomorphic-ws": {
911
+ "version": "5.0.0",
912
+ "license": "MIT",
913
+ "peerDependencies": {
914
+ "ws": "*"
915
+ }
916
+ },
917
+ "node_modules/istanbul-lib-coverage": {
918
+ "version": "3.2.2",
919
+ "dev": true,
920
+ "license": "BSD-3-Clause",
921
+ "engines": {
922
+ "node": ">=8"
923
+ }
924
+ },
925
+ "node_modules/istanbul-lib-report": {
926
+ "version": "3.0.1",
927
+ "dev": true,
928
+ "license": "BSD-3-Clause",
929
+ "dependencies": {
930
+ "istanbul-lib-coverage": "^3.0.0",
931
+ "make-dir": "^4.0.0",
932
+ "supports-color": "^7.1.0"
933
+ },
934
+ "engines": {
935
+ "node": ">=10"
936
+ }
937
+ },
938
+ "node_modules/istanbul-reports": {
939
+ "version": "3.2.0",
940
+ "dev": true,
941
+ "license": "BSD-3-Clause",
942
+ "dependencies": {
943
+ "html-escaper": "^2.0.0",
944
+ "istanbul-lib-report": "^3.0.0"
945
+ },
946
+ "engines": {
947
+ "node": ">=8"
948
+ }
949
+ },
950
+ "node_modules/js-tokens": {
951
+ "version": "10.0.0",
952
+ "dev": true,
953
+ "license": "MIT"
954
+ },
955
+ "node_modules/js-yaml": {
956
+ "version": "4.1.1",
957
+ "license": "MIT",
958
+ "dependencies": {
959
+ "argparse": "^2.0.1"
960
+ },
961
+ "bin": {
962
+ "js-yaml": "bin/js-yaml.js"
963
+ }
964
+ },
965
+ "node_modules/lightningcss": {
966
+ "version": "1.32.0",
967
+ "dev": true,
968
+ "license": "MPL-2.0",
969
+ "dependencies": {
970
+ "detect-libc": "^2.0.3"
971
+ },
972
+ "engines": {
973
+ "node": ">= 12.0.0"
974
+ },
975
+ "funding": {
976
+ "type": "opencollective",
977
+ "url": "https://opencollective.com/parcel"
978
+ },
979
+ "optionalDependencies": {
980
+ "lightningcss-android-arm64": "1.32.0",
981
+ "lightningcss-darwin-arm64": "1.32.0",
982
+ "lightningcss-darwin-x64": "1.32.0",
983
+ "lightningcss-freebsd-x64": "1.32.0",
984
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
985
+ "lightningcss-linux-arm64-gnu": "1.32.0",
986
+ "lightningcss-linux-arm64-musl": "1.32.0",
987
+ "lightningcss-linux-x64-gnu": "1.32.0",
988
+ "lightningcss-linux-x64-musl": "1.32.0",
989
+ "lightningcss-win32-arm64-msvc": "1.32.0",
990
+ "lightningcss-win32-x64-msvc": "1.32.0"
991
+ }
992
+ },
993
+ "node_modules/lightningcss-darwin-arm64": {
994
+ "version": "1.32.0",
995
+ "cpu": [
996
+ "arm64"
997
+ ],
998
+ "dev": true,
999
+ "license": "MPL-2.0",
1000
+ "optional": true,
1001
+ "os": [
1002
+ "darwin"
1003
+ ],
1004
+ "engines": {
1005
+ "node": ">= 12.0.0"
1006
+ },
1007
+ "funding": {
1008
+ "type": "opencollective",
1009
+ "url": "https://opencollective.com/parcel"
1010
+ }
1011
+ },
1012
+ "node_modules/magic-string": {
1013
+ "version": "0.30.21",
1014
+ "dev": true,
1015
+ "license": "MIT",
1016
+ "dependencies": {
1017
+ "@jridgewell/sourcemap-codec": "^1.5.5"
1018
+ }
1019
+ },
1020
+ "node_modules/magicast": {
1021
+ "version": "0.5.2",
1022
+ "dev": true,
1023
+ "license": "MIT",
1024
+ "dependencies": {
1025
+ "@babel/parser": "^7.29.0",
1026
+ "@babel/types": "^7.29.0",
1027
+ "source-map-js": "^1.2.1"
1028
+ }
1029
+ },
1030
+ "node_modules/make-dir": {
1031
+ "version": "4.0.0",
1032
+ "dev": true,
1033
+ "license": "MIT",
1034
+ "dependencies": {
1035
+ "semver": "^7.5.3"
1036
+ },
1037
+ "engines": {
1038
+ "node": ">=10"
1039
+ },
1040
+ "funding": {
1041
+ "url": "https://github.com/sponsors/sindresorhus"
1042
+ }
1043
+ },
1044
+ "node_modules/math-intrinsics": {
1045
+ "version": "1.1.0",
1046
+ "license": "MIT",
1047
+ "engines": {
1048
+ "node": ">= 0.4"
1049
+ }
1050
+ },
1051
+ "node_modules/nanoid": {
1052
+ "version": "3.3.11",
1053
+ "dev": true,
1054
+ "funding": [
1055
+ {
1056
+ "type": "github",
1057
+ "url": "https://github.com/sponsors/ai"
1058
+ }
1059
+ ],
1060
+ "license": "MIT",
1061
+ "bin": {
1062
+ "nanoid": "bin/nanoid.cjs"
1063
+ },
1064
+ "engines": {
1065
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1066
+ }
1067
+ },
1068
+ "node_modules/node-fetch": {
1069
+ "version": "2.7.0",
1070
+ "license": "MIT",
1071
+ "dependencies": {
1072
+ "whatwg-url": "^5.0.0"
1073
+ },
1074
+ "engines": {
1075
+ "node": "4.x || >=6.0.0"
1076
+ },
1077
+ "peerDependencies": {
1078
+ "encoding": "^0.1.0"
1079
+ },
1080
+ "peerDependenciesMeta": {
1081
+ "encoding": {
1082
+ "optional": true
1083
+ }
1084
+ }
1085
+ },
1086
+ "node_modules/obug": {
1087
+ "version": "2.1.1",
1088
+ "dev": true,
1089
+ "funding": [
1090
+ "https://github.com/sponsors/sxzz",
1091
+ "https://opencollective.com/debug"
1092
+ ],
1093
+ "license": "MIT"
1094
+ },
1095
+ "node_modules/pathe": {
1096
+ "version": "2.0.3",
1097
+ "dev": true,
1098
+ "license": "MIT"
1099
+ },
1100
+ "node_modules/picocolors": {
1101
+ "version": "1.1.1",
1102
+ "dev": true,
1103
+ "license": "ISC"
1104
+ },
1105
+ "node_modules/picomatch": {
1106
+ "version": "4.0.3",
1107
+ "dev": true,
1108
+ "license": "MIT",
1109
+ "engines": {
1110
+ "node": ">=12"
1111
+ },
1112
+ "funding": {
1113
+ "url": "https://github.com/sponsors/jonschlinkert"
1114
+ }
1115
+ },
1116
+ "node_modules/possible-typed-array-names": {
1117
+ "version": "1.1.0",
1118
+ "license": "MIT",
1119
+ "engines": {
1120
+ "node": ">= 0.4"
1121
+ }
1122
+ },
1123
+ "node_modules/postcss": {
1124
+ "version": "8.5.8",
1125
+ "dev": true,
1126
+ "funding": [
1127
+ {
1128
+ "type": "opencollective",
1129
+ "url": "https://opencollective.com/postcss/"
1130
+ },
1131
+ {
1132
+ "type": "tidelift",
1133
+ "url": "https://tidelift.com/funding/github/npm/postcss"
1134
+ },
1135
+ {
1136
+ "type": "github",
1137
+ "url": "https://github.com/sponsors/ai"
1138
+ }
1139
+ ],
1140
+ "license": "MIT",
1141
+ "dependencies": {
1142
+ "nanoid": "^3.3.11",
1143
+ "picocolors": "^1.1.1",
1144
+ "source-map-js": "^1.2.1"
1145
+ },
1146
+ "engines": {
1147
+ "node": "^10 || ^12 || >=14"
1148
+ }
1149
+ },
1150
+ "node_modules/resolve-pkg-maps": {
1151
+ "version": "1.0.0",
1152
+ "dev": true,
1153
+ "license": "MIT",
1154
+ "funding": {
1155
+ "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
1156
+ }
1157
+ },
1158
+ "node_modules/rolldown": {
1159
+ "version": "1.0.0-rc.9",
1160
+ "dev": true,
1161
+ "license": "MIT",
1162
+ "dependencies": {
1163
+ "@oxc-project/types": "=0.115.0",
1164
+ "@rolldown/pluginutils": "1.0.0-rc.9"
1165
+ },
1166
+ "bin": {
1167
+ "rolldown": "bin/cli.mjs"
1168
+ },
1169
+ "engines": {
1170
+ "node": "^20.19.0 || >=22.12.0"
1171
+ },
1172
+ "optionalDependencies": {
1173
+ "@rolldown/binding-android-arm64": "1.0.0-rc.9",
1174
+ "@rolldown/binding-darwin-arm64": "1.0.0-rc.9",
1175
+ "@rolldown/binding-darwin-x64": "1.0.0-rc.9",
1176
+ "@rolldown/binding-freebsd-x64": "1.0.0-rc.9",
1177
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.9",
1178
+ "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.9",
1179
+ "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.9",
1180
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.9",
1181
+ "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.9",
1182
+ "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.9",
1183
+ "@rolldown/binding-linux-x64-musl": "1.0.0-rc.9",
1184
+ "@rolldown/binding-openharmony-arm64": "1.0.0-rc.9",
1185
+ "@rolldown/binding-wasm32-wasi": "1.0.0-rc.9",
1186
+ "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.9",
1187
+ "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.9"
1188
+ }
1189
+ },
1190
+ "node_modules/safe-regex-test": {
1191
+ "version": "1.1.0",
1192
+ "license": "MIT",
1193
+ "dependencies": {
1194
+ "call-bound": "^1.0.2",
1195
+ "es-errors": "^1.3.0",
1196
+ "is-regex": "^1.2.1"
1197
+ },
1198
+ "engines": {
1199
+ "node": ">= 0.4"
1200
+ },
1201
+ "funding": {
1202
+ "url": "https://github.com/sponsors/ljharb"
1203
+ }
1204
+ },
1205
+ "node_modules/semver": {
1206
+ "version": "7.7.4",
1207
+ "dev": true,
1208
+ "license": "ISC",
1209
+ "bin": {
1210
+ "semver": "bin/semver.js"
1211
+ },
1212
+ "engines": {
1213
+ "node": ">=10"
1214
+ }
1215
+ },
1216
+ "node_modules/set-function-length": {
1217
+ "version": "1.2.2",
1218
+ "license": "MIT",
1219
+ "dependencies": {
1220
+ "define-data-property": "^1.1.4",
1221
+ "es-errors": "^1.3.0",
1222
+ "function-bind": "^1.1.2",
1223
+ "get-intrinsic": "^1.2.4",
1224
+ "gopd": "^1.0.1",
1225
+ "has-property-descriptors": "^1.0.2"
1226
+ },
1227
+ "engines": {
1228
+ "node": ">= 0.4"
1229
+ }
1230
+ },
1231
+ "node_modules/setimmediate": {
1232
+ "version": "1.0.5",
1233
+ "license": "MIT"
1234
+ },
1235
+ "node_modules/siginfo": {
1236
+ "version": "2.0.0",
1237
+ "dev": true,
1238
+ "license": "ISC"
1239
+ },
1240
+ "node_modules/source-map-js": {
1241
+ "version": "1.2.1",
1242
+ "dev": true,
1243
+ "license": "BSD-3-Clause",
1244
+ "engines": {
1245
+ "node": ">=0.10.0"
1246
+ }
1247
+ },
1248
+ "node_modules/stackback": {
1249
+ "version": "0.0.2",
1250
+ "dev": true,
1251
+ "license": "MIT"
1252
+ },
1253
+ "node_modules/std-env": {
1254
+ "version": "4.0.0",
1255
+ "dev": true,
1256
+ "license": "MIT"
1257
+ },
1258
+ "node_modules/supports-color": {
1259
+ "version": "7.2.0",
1260
+ "dev": true,
1261
+ "license": "MIT",
1262
+ "dependencies": {
1263
+ "has-flag": "^4.0.0"
1264
+ },
1265
+ "engines": {
1266
+ "node": ">=8"
1267
+ }
1268
+ },
1269
+ "node_modules/tinybench": {
1270
+ "version": "2.9.0",
1271
+ "dev": true,
1272
+ "license": "MIT"
1273
+ },
1274
+ "node_modules/tinyexec": {
1275
+ "version": "1.0.2",
1276
+ "dev": true,
1277
+ "license": "MIT",
1278
+ "engines": {
1279
+ "node": ">=18"
1280
+ }
1281
+ },
1282
+ "node_modules/tinyglobby": {
1283
+ "version": "0.2.15",
1284
+ "dev": true,
1285
+ "license": "MIT",
1286
+ "dependencies": {
1287
+ "fdir": "^6.5.0",
1288
+ "picomatch": "^4.0.3"
1289
+ },
1290
+ "engines": {
1291
+ "node": ">=12.0.0"
1292
+ },
1293
+ "funding": {
1294
+ "url": "https://github.com/sponsors/SuperchupuDev"
1295
+ }
1296
+ },
1297
+ "node_modules/tinyrainbow": {
1298
+ "version": "3.1.0",
1299
+ "dev": true,
1300
+ "license": "MIT",
1301
+ "engines": {
1302
+ "node": ">=14.0.0"
1303
+ }
1304
+ },
1305
+ "node_modules/tr46": {
1306
+ "version": "0.0.3",
1307
+ "license": "MIT"
1308
+ },
1309
+ "node_modules/tsx": {
1310
+ "version": "4.21.0",
1311
+ "dev": true,
1312
+ "license": "MIT",
1313
+ "dependencies": {
1314
+ "esbuild": "~0.27.0",
1315
+ "get-tsconfig": "^4.7.5"
1316
+ },
1317
+ "bin": {
1318
+ "tsx": "dist/cli.mjs"
1319
+ },
1320
+ "engines": {
1321
+ "node": ">=18.0.0"
1322
+ },
1323
+ "optionalDependencies": {
1324
+ "fsevents": "~2.3.3"
1325
+ }
1326
+ },
1327
+ "node_modules/typescript": {
1328
+ "version": "5.9.3",
1329
+ "license": "Apache-2.0",
1330
+ "bin": {
1331
+ "tsc": "bin/tsc",
1332
+ "tsserver": "bin/tsserver"
1333
+ },
1334
+ "engines": {
1335
+ "node": ">=14.17"
1336
+ }
1337
+ },
1338
+ "node_modules/undici-types": {
1339
+ "version": "7.18.2",
1340
+ "license": "MIT"
1341
+ },
1342
+ "node_modules/util": {
1343
+ "version": "0.12.5",
1344
+ "license": "MIT",
1345
+ "dependencies": {
1346
+ "inherits": "^2.0.3",
1347
+ "is-arguments": "^1.0.4",
1348
+ "is-generator-function": "^1.0.7",
1349
+ "is-typed-array": "^1.1.3",
1350
+ "which-typed-array": "^1.1.2"
1351
+ }
1352
+ },
1353
+ "node_modules/uuid": {
1354
+ "version": "13.0.0",
1355
+ "funding": [
1356
+ "https://github.com/sponsors/broofa",
1357
+ "https://github.com/sponsors/ctavan"
1358
+ ],
1359
+ "license": "MIT",
1360
+ "bin": {
1361
+ "uuid": "dist-node/bin/uuid"
1362
+ }
1363
+ },
1364
+ "node_modules/vite": {
1365
+ "version": "8.0.0",
1366
+ "dev": true,
1367
+ "license": "MIT",
1368
+ "dependencies": {
1369
+ "@oxc-project/runtime": "0.115.0",
1370
+ "lightningcss": "^1.32.0",
1371
+ "picomatch": "^4.0.3",
1372
+ "postcss": "^8.5.8",
1373
+ "rolldown": "1.0.0-rc.9",
1374
+ "tinyglobby": "^0.2.15"
1375
+ },
1376
+ "bin": {
1377
+ "vite": "bin/vite.js"
1378
+ },
1379
+ "engines": {
1380
+ "node": "^20.19.0 || >=22.12.0"
1381
+ },
1382
+ "funding": {
1383
+ "url": "https://github.com/vitejs/vite?sponsor=1"
1384
+ },
1385
+ "optionalDependencies": {
1386
+ "fsevents": "~2.3.3"
1387
+ },
1388
+ "peerDependencies": {
1389
+ "@types/node": "^20.19.0 || >=22.12.0",
1390
+ "@vitejs/devtools": "^0.0.0-alpha.31",
1391
+ "esbuild": "^0.27.0",
1392
+ "jiti": ">=1.21.0",
1393
+ "less": "^4.0.0",
1394
+ "sass": "^1.70.0",
1395
+ "sass-embedded": "^1.70.0",
1396
+ "stylus": ">=0.54.8",
1397
+ "sugarss": "^5.0.0",
1398
+ "terser": "^5.16.0",
1399
+ "tsx": "^4.8.1",
1400
+ "yaml": "^2.4.2"
1401
+ },
1402
+ "peerDependenciesMeta": {
1403
+ "@types/node": {
1404
+ "optional": true
1405
+ },
1406
+ "@vitejs/devtools": {
1407
+ "optional": true
1408
+ },
1409
+ "esbuild": {
1410
+ "optional": true
1411
+ },
1412
+ "jiti": {
1413
+ "optional": true
1414
+ },
1415
+ "less": {
1416
+ "optional": true
1417
+ },
1418
+ "sass": {
1419
+ "optional": true
1420
+ },
1421
+ "sass-embedded": {
1422
+ "optional": true
1423
+ },
1424
+ "stylus": {
1425
+ "optional": true
1426
+ },
1427
+ "sugarss": {
1428
+ "optional": true
1429
+ },
1430
+ "terser": {
1431
+ "optional": true
1432
+ },
1433
+ "tsx": {
1434
+ "optional": true
1435
+ },
1436
+ "yaml": {
1437
+ "optional": true
1438
+ }
1439
+ }
1440
+ },
1441
+ "node_modules/vitest": {
1442
+ "version": "4.1.0",
1443
+ "dev": true,
1444
+ "license": "MIT",
1445
+ "dependencies": {
1446
+ "@vitest/expect": "4.1.0",
1447
+ "@vitest/mocker": "4.1.0",
1448
+ "@vitest/pretty-format": "4.1.0",
1449
+ "@vitest/runner": "4.1.0",
1450
+ "@vitest/snapshot": "4.1.0",
1451
+ "@vitest/spy": "4.1.0",
1452
+ "@vitest/utils": "4.1.0",
1453
+ "es-module-lexer": "^2.0.0",
1454
+ "expect-type": "^1.3.0",
1455
+ "magic-string": "^0.30.21",
1456
+ "obug": "^2.1.1",
1457
+ "pathe": "^2.0.3",
1458
+ "picomatch": "^4.0.3",
1459
+ "std-env": "^4.0.0-rc.1",
1460
+ "tinybench": "^2.9.0",
1461
+ "tinyexec": "^1.0.2",
1462
+ "tinyglobby": "^0.2.15",
1463
+ "tinyrainbow": "^3.0.3",
1464
+ "vite": "^6.0.0 || ^7.0.0 || ^8.0.0-0",
1465
+ "why-is-node-running": "^2.3.0"
1466
+ },
1467
+ "bin": {
1468
+ "vitest": "vitest.mjs"
1469
+ },
1470
+ "engines": {
1471
+ "node": "^20.0.0 || ^22.0.0 || >=24.0.0"
1472
+ },
1473
+ "funding": {
1474
+ "url": "https://opencollective.com/vitest"
1475
+ },
1476
+ "peerDependencies": {
1477
+ "@edge-runtime/vm": "*",
1478
+ "@opentelemetry/api": "^1.9.0",
1479
+ "@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
1480
+ "@vitest/browser-playwright": "4.1.0",
1481
+ "@vitest/browser-preview": "4.1.0",
1482
+ "@vitest/browser-webdriverio": "4.1.0",
1483
+ "@vitest/ui": "4.1.0",
1484
+ "happy-dom": "*",
1485
+ "jsdom": "*",
1486
+ "vite": "^6.0.0 || ^7.0.0 || ^8.0.0-0"
1487
+ },
1488
+ "peerDependenciesMeta": {
1489
+ "@edge-runtime/vm": {
1490
+ "optional": true
1491
+ },
1492
+ "@opentelemetry/api": {
1493
+ "optional": true
1494
+ },
1495
+ "@types/node": {
1496
+ "optional": true
1497
+ },
1498
+ "@vitest/browser-playwright": {
1499
+ "optional": true
1500
+ },
1501
+ "@vitest/browser-preview": {
1502
+ "optional": true
1503
+ },
1504
+ "@vitest/browser-webdriverio": {
1505
+ "optional": true
1506
+ },
1507
+ "@vitest/ui": {
1508
+ "optional": true
1509
+ },
1510
+ "happy-dom": {
1511
+ "optional": true
1512
+ },
1513
+ "jsdom": {
1514
+ "optional": true
1515
+ },
1516
+ "vite": {
1517
+ "optional": false
1518
+ }
1519
+ }
1520
+ },
1521
+ "node_modules/web3": {
1522
+ "version": "4.16.0",
1523
+ "license": "LGPL-3.0",
1524
+ "dependencies": {
1525
+ "web3-core": "^4.7.1",
1526
+ "web3-errors": "^1.3.1",
1527
+ "web3-eth": "^4.11.1",
1528
+ "web3-eth-abi": "^4.4.1",
1529
+ "web3-eth-accounts": "^4.3.1",
1530
+ "web3-eth-contract": "^4.7.2",
1531
+ "web3-eth-ens": "^4.4.0",
1532
+ "web3-eth-iban": "^4.0.7",
1533
+ "web3-eth-personal": "^4.1.0",
1534
+ "web3-net": "^4.1.0",
1535
+ "web3-providers-http": "^4.2.0",
1536
+ "web3-providers-ws": "^4.0.8",
1537
+ "web3-rpc-methods": "^1.3.0",
1538
+ "web3-rpc-providers": "^1.0.0-rc.4",
1539
+ "web3-types": "^1.10.0",
1540
+ "web3-utils": "^4.3.3",
1541
+ "web3-validator": "^2.0.6"
1542
+ },
1543
+ "engines": {
1544
+ "node": ">=14.0.0",
1545
+ "npm": ">=6.12.0"
1546
+ }
1547
+ },
1548
+ "node_modules/web3-core": {
1549
+ "version": "4.7.1",
1550
+ "license": "LGPL-3.0",
1551
+ "dependencies": {
1552
+ "web3-errors": "^1.3.1",
1553
+ "web3-eth-accounts": "^4.3.1",
1554
+ "web3-eth-iban": "^4.0.7",
1555
+ "web3-providers-http": "^4.2.0",
1556
+ "web3-providers-ws": "^4.0.8",
1557
+ "web3-types": "^1.10.0",
1558
+ "web3-utils": "^4.3.3",
1559
+ "web3-validator": "^2.0.6"
1560
+ },
1561
+ "engines": {
1562
+ "node": ">=14",
1563
+ "npm": ">=6.12.0"
1564
+ },
1565
+ "optionalDependencies": {
1566
+ "web3-providers-ipc": "^4.0.7"
1567
+ }
1568
+ },
1569
+ "node_modules/web3-errors": {
1570
+ "version": "1.3.1",
1571
+ "license": "LGPL-3.0",
1572
+ "dependencies": {
1573
+ "web3-types": "^1.10.0"
1574
+ },
1575
+ "engines": {
1576
+ "node": ">=14",
1577
+ "npm": ">=6.12.0"
1578
+ }
1579
+ },
1580
+ "node_modules/web3-eth": {
1581
+ "version": "4.11.1",
1582
+ "license": "LGPL-3.0",
1583
+ "dependencies": {
1584
+ "setimmediate": "^1.0.5",
1585
+ "web3-core": "^4.7.1",
1586
+ "web3-errors": "^1.3.1",
1587
+ "web3-eth-abi": "^4.4.1",
1588
+ "web3-eth-accounts": "^4.3.1",
1589
+ "web3-net": "^4.1.0",
1590
+ "web3-providers-ws": "^4.0.8",
1591
+ "web3-rpc-methods": "^1.3.0",
1592
+ "web3-types": "^1.10.0",
1593
+ "web3-utils": "^4.3.3",
1594
+ "web3-validator": "^2.0.6"
1595
+ },
1596
+ "engines": {
1597
+ "node": ">=14",
1598
+ "npm": ">=6.12.0"
1599
+ }
1600
+ },
1601
+ "node_modules/web3-eth-abi": {
1602
+ "version": "4.4.1",
1603
+ "license": "LGPL-3.0",
1604
+ "dependencies": {
1605
+ "abitype": "0.7.1",
1606
+ "web3-errors": "^1.3.1",
1607
+ "web3-types": "^1.10.0",
1608
+ "web3-utils": "^4.3.3",
1609
+ "web3-validator": "^2.0.6"
1610
+ },
1611
+ "engines": {
1612
+ "node": ">=14",
1613
+ "npm": ">=6.12.0"
1614
+ }
1615
+ },
1616
+ "node_modules/web3-eth-accounts": {
1617
+ "version": "4.3.1",
1618
+ "license": "LGPL-3.0",
1619
+ "dependencies": {
1620
+ "@ethereumjs/rlp": "^4.0.1",
1621
+ "crc-32": "^1.2.2",
1622
+ "ethereum-cryptography": "^2.0.0",
1623
+ "web3-errors": "^1.3.1",
1624
+ "web3-types": "^1.10.0",
1625
+ "web3-utils": "^4.3.3",
1626
+ "web3-validator": "^2.0.6"
1627
+ },
1628
+ "engines": {
1629
+ "node": ">=14",
1630
+ "npm": ">=6.12.0"
1631
+ }
1632
+ },
1633
+ "node_modules/web3-eth-contract": {
1634
+ "version": "4.7.2",
1635
+ "license": "LGPL-3.0",
1636
+ "dependencies": {
1637
+ "@ethereumjs/rlp": "^5.0.2",
1638
+ "web3-core": "^4.7.1",
1639
+ "web3-errors": "^1.3.1",
1640
+ "web3-eth": "^4.11.1",
1641
+ "web3-eth-abi": "^4.4.1",
1642
+ "web3-types": "^1.10.0",
1643
+ "web3-utils": "^4.3.3",
1644
+ "web3-validator": "^2.0.6"
1645
+ },
1646
+ "engines": {
1647
+ "node": ">=14",
1648
+ "npm": ">=6.12.0"
1649
+ }
1650
+ },
1651
+ "node_modules/web3-eth-contract/node_modules/@ethereumjs/rlp": {
1652
+ "version": "5.0.2",
1653
+ "license": "MPL-2.0",
1654
+ "bin": {
1655
+ "rlp": "bin/rlp.cjs"
1656
+ },
1657
+ "engines": {
1658
+ "node": ">=18"
1659
+ }
1660
+ },
1661
+ "node_modules/web3-eth-ens": {
1662
+ "version": "4.4.0",
1663
+ "license": "LGPL-3.0",
1664
+ "dependencies": {
1665
+ "@adraffy/ens-normalize": "^1.8.8",
1666
+ "web3-core": "^4.5.0",
1667
+ "web3-errors": "^1.2.0",
1668
+ "web3-eth": "^4.8.0",
1669
+ "web3-eth-contract": "^4.5.0",
1670
+ "web3-net": "^4.1.0",
1671
+ "web3-types": "^1.7.0",
1672
+ "web3-utils": "^4.3.0",
1673
+ "web3-validator": "^2.0.6"
1674
+ },
1675
+ "engines": {
1676
+ "node": ">=14",
1677
+ "npm": ">=6.12.0"
1678
+ }
1679
+ },
1680
+ "node_modules/web3-eth-iban": {
1681
+ "version": "4.0.7",
1682
+ "license": "LGPL-3.0",
1683
+ "dependencies": {
1684
+ "web3-errors": "^1.1.3",
1685
+ "web3-types": "^1.3.0",
1686
+ "web3-utils": "^4.0.7",
1687
+ "web3-validator": "^2.0.3"
1688
+ },
1689
+ "engines": {
1690
+ "node": ">=14",
1691
+ "npm": ">=6.12.0"
1692
+ }
1693
+ },
1694
+ "node_modules/web3-eth-personal": {
1695
+ "version": "4.1.0",
1696
+ "license": "LGPL-3.0",
1697
+ "dependencies": {
1698
+ "web3-core": "^4.6.0",
1699
+ "web3-eth": "^4.9.0",
1700
+ "web3-rpc-methods": "^1.3.0",
1701
+ "web3-types": "^1.8.0",
1702
+ "web3-utils": "^4.3.1",
1703
+ "web3-validator": "^2.0.6"
1704
+ },
1705
+ "engines": {
1706
+ "node": ">=14",
1707
+ "npm": ">=6.12.0"
1708
+ }
1709
+ },
1710
+ "node_modules/web3-net": {
1711
+ "version": "4.1.0",
1712
+ "license": "LGPL-3.0",
1713
+ "dependencies": {
1714
+ "web3-core": "^4.4.0",
1715
+ "web3-rpc-methods": "^1.3.0",
1716
+ "web3-types": "^1.6.0",
1717
+ "web3-utils": "^4.3.0"
1718
+ },
1719
+ "engines": {
1720
+ "node": ">=14",
1721
+ "npm": ">=6.12.0"
1722
+ }
1723
+ },
1724
+ "node_modules/web3-providers-http": {
1725
+ "version": "4.2.0",
1726
+ "license": "LGPL-3.0",
1727
+ "dependencies": {
1728
+ "cross-fetch": "^4.0.0",
1729
+ "web3-errors": "^1.3.0",
1730
+ "web3-types": "^1.7.0",
1731
+ "web3-utils": "^4.3.1"
1732
+ },
1733
+ "engines": {
1734
+ "node": ">=14",
1735
+ "npm": ">=6.12.0"
1736
+ }
1737
+ },
1738
+ "node_modules/web3-providers-ipc": {
1739
+ "version": "4.0.7",
1740
+ "license": "LGPL-3.0",
1741
+ "optional": true,
1742
+ "dependencies": {
1743
+ "web3-errors": "^1.1.3",
1744
+ "web3-types": "^1.3.0",
1745
+ "web3-utils": "^4.0.7"
1746
+ },
1747
+ "engines": {
1748
+ "node": ">=14",
1749
+ "npm": ">=6.12.0"
1750
+ }
1751
+ },
1752
+ "node_modules/web3-providers-ws": {
1753
+ "version": "4.0.8",
1754
+ "license": "LGPL-3.0",
1755
+ "dependencies": {
1756
+ "@types/ws": "8.5.3",
1757
+ "isomorphic-ws": "^5.0.0",
1758
+ "web3-errors": "^1.2.0",
1759
+ "web3-types": "^1.7.0",
1760
+ "web3-utils": "^4.3.1",
1761
+ "ws": "^8.17.1"
1762
+ },
1763
+ "engines": {
1764
+ "node": ">=14",
1765
+ "npm": ">=6.12.0"
1766
+ }
1767
+ },
1768
+ "node_modules/web3-rpc-methods": {
1769
+ "version": "1.3.0",
1770
+ "license": "LGPL-3.0",
1771
+ "dependencies": {
1772
+ "web3-core": "^4.4.0",
1773
+ "web3-types": "^1.6.0",
1774
+ "web3-validator": "^2.0.6"
1775
+ },
1776
+ "engines": {
1777
+ "node": ">=14",
1778
+ "npm": ">=6.12.0"
1779
+ }
1780
+ },
1781
+ "node_modules/web3-rpc-providers": {
1782
+ "version": "1.0.0-rc.4",
1783
+ "license": "LGPL-3.0",
1784
+ "dependencies": {
1785
+ "web3-errors": "^1.3.1",
1786
+ "web3-providers-http": "^4.2.0",
1787
+ "web3-providers-ws": "^4.0.8",
1788
+ "web3-types": "^1.10.0",
1789
+ "web3-utils": "^4.3.3",
1790
+ "web3-validator": "^2.0.6"
1791
+ },
1792
+ "engines": {
1793
+ "node": ">=14",
1794
+ "npm": ">=6.12.0"
1795
+ }
1796
+ },
1797
+ "node_modules/web3-types": {
1798
+ "version": "1.10.0",
1799
+ "license": "LGPL-3.0",
1800
+ "engines": {
1801
+ "node": ">=14",
1802
+ "npm": ">=6.12.0"
1803
+ }
1804
+ },
1805
+ "node_modules/web3-utils": {
1806
+ "version": "4.3.3",
1807
+ "license": "LGPL-3.0",
1808
+ "dependencies": {
1809
+ "ethereum-cryptography": "^2.0.0",
1810
+ "eventemitter3": "^5.0.1",
1811
+ "web3-errors": "^1.3.1",
1812
+ "web3-types": "^1.10.0",
1813
+ "web3-validator": "^2.0.6"
1814
+ },
1815
+ "engines": {
1816
+ "node": ">=14",
1817
+ "npm": ">=6.12.0"
1818
+ }
1819
+ },
1820
+ "node_modules/web3-validator": {
1821
+ "version": "2.0.6",
1822
+ "license": "LGPL-3.0",
1823
+ "dependencies": {
1824
+ "ethereum-cryptography": "^2.0.0",
1825
+ "util": "^0.12.5",
1826
+ "web3-errors": "^1.2.0",
1827
+ "web3-types": "^1.6.0",
1828
+ "zod": "^3.21.4"
1829
+ },
1830
+ "engines": {
1831
+ "node": ">=14",
1832
+ "npm": ">=6.12.0"
1833
+ }
1834
+ },
1835
+ "node_modules/webidl-conversions": {
1836
+ "version": "3.0.1",
1837
+ "license": "BSD-2-Clause"
1838
+ },
1839
+ "node_modules/whatwg-url": {
1840
+ "version": "5.0.0",
1841
+ "license": "MIT",
1842
+ "dependencies": {
1843
+ "tr46": "~0.0.3",
1844
+ "webidl-conversions": "^3.0.0"
1845
+ }
1846
+ },
1847
+ "node_modules/which-typed-array": {
1848
+ "version": "1.1.20",
1849
+ "license": "MIT",
1850
+ "dependencies": {
1851
+ "available-typed-arrays": "^1.0.7",
1852
+ "call-bind": "^1.0.8",
1853
+ "call-bound": "^1.0.4",
1854
+ "for-each": "^0.3.5",
1855
+ "get-proto": "^1.0.1",
1856
+ "gopd": "^1.2.0",
1857
+ "has-tostringtag": "^1.0.2"
1858
+ },
1859
+ "engines": {
1860
+ "node": ">= 0.4"
1861
+ },
1862
+ "funding": {
1863
+ "url": "https://github.com/sponsors/ljharb"
1864
+ }
1865
+ },
1866
+ "node_modules/why-is-node-running": {
1867
+ "version": "2.3.0",
1868
+ "dev": true,
1869
+ "license": "MIT",
1870
+ "dependencies": {
1871
+ "siginfo": "^2.0.0",
1872
+ "stackback": "0.0.2"
1873
+ },
1874
+ "bin": {
1875
+ "why-is-node-running": "cli.js"
1876
+ },
1877
+ "engines": {
1878
+ "node": ">=8"
1879
+ }
1880
+ },
1881
+ "node_modules/ws": {
1882
+ "version": "8.19.0",
1883
+ "license": "MIT",
1884
+ "engines": {
1885
+ "node": ">=10.0.0"
1886
+ },
1887
+ "peerDependencies": {
1888
+ "bufferutil": "^4.0.1",
1889
+ "utf-8-validate": ">=5.0.2"
1890
+ },
1891
+ "peerDependenciesMeta": {
1892
+ "bufferutil": {
1893
+ "optional": true
1894
+ },
1895
+ "utf-8-validate": {
1896
+ "optional": true
1897
+ }
1898
+ }
1899
+ },
1900
+ "node_modules/zod": {
1901
+ "version": "3.25.76",
1902
+ "license": "MIT",
1903
+ "funding": {
1904
+ "url": "https://github.com/sponsors/colinhacks"
1905
+ }
1906
+ }
1907
+ }
1908
+ }