-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpnpm-lock.yaml
17339 lines (13971 loc) · 587 KB
/
pnpm-lock.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
devDependencies:
'@0xsequence/connect':
specifier: workspace:*
version: link:packages/connect
'@arethetypeswrong/cli':
specifier: ^0.17.4
version: 0.17.4
'@changesets/changelog-github':
specifier: ^0.5.0
version: 0.5.0
'@changesets/cli':
specifier: ^2.25.2
version: 2.27.11
'@eslint/js':
specifier: ^9.22.0
version: 9.22.0
'@types/node':
specifier: ^20.12.12
version: 20.17.14
'@types/react':
specifier: ^19.0.10
version: 19.0.10
'@types/react-dom':
specifier: ^19.0.4
version: 19.0.4(@types/react@19.0.10)
eslint:
specifier: ^9.22.0
version: 9.22.0(jiti@2.4.2)
eslint-plugin-import:
specifier: ^2.29.1
version: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))
eslint-plugin-react-hooks:
specifier: ^5.2.0
version: 5.2.0(eslint@9.22.0(jiti@2.4.2))
ethers:
specifier: ^6.13.0
version: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
husky:
specifier: ^9.1.7
version: 9.1.7
prettier:
specifier: ^3.2.5
version: 3.4.2
react:
specifier: ^19.0.0
version: 19.0.0
react-dom:
specifier: ^19.0.0
version: 19.0.0(react@19.0.0)
rimraf:
specifier: ^5.0.7
version: 5.0.10
turbo:
specifier: 2.0.1
version: 2.0.1
typescript:
specifier: ^5.8.2
version: 5.8.2
typescript-eslint:
specifier: ^8.26.1
version: 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
viem:
specifier: ^2.28.0
version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
wagmi:
specifier: ^2.15.0
version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
examples/components:
dependencies:
'@0xsequence/design-system':
specifier: 2.1.6
version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@0xsequence/network':
specifier: '*'
version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@radix-ui/react-popover':
specifier: ^1.0.7
version: 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
typescript:
specifier: ^5.8.2
version: 5.8.2
wagmi:
specifier: ^2.15.0
version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
examples/next:
dependencies:
'@0xsequence/checkout':
specifier: workspace:*
version: link:../../packages/checkout
'@0xsequence/connect':
specifier: workspace:*
version: link:../../packages/connect
'@0xsequence/design-system':
specifier: 2.1.6
version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../../packages/hooks
'@0xsequence/network':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/waas':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/wallet-widget':
specifier: workspace:*
version: link:../../packages/wallet-widget
'@tailwindcss/postcss':
specifier: ^4.0.6
version: 4.0.12
'@tanstack/react-query':
specifier: ^5.62.0
version: 5.64.2(react@19.0.0)
example-shared-components:
specifier: workspace:*
version: link:../components
next:
specifier: 14.2.3
version: 14.2.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
react:
specifier: ^19.0.0
version: 19.0.0
react-dom:
specifier: ^19.0.0
version: 19.0.0(react@19.0.0)
tailwindcss:
specifier: ^4.0.6
version: 4.0.12
viem:
specifier: ^2.28.0
version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
wagmi:
specifier: ^2.15.0
version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
devDependencies:
'@types/node':
specifier: ^20.12.12
version: 20.17.14
'@types/react':
specifier: ^19.0.10
version: 19.0.10
'@types/react-dom':
specifier: ^19.0.4
version: 19.0.4(@types/react@19.0.10)
eslint:
specifier: ^8
version: 8.57.1
eslint-config-next:
specifier: 14.2.3
version: 14.2.3(eslint@8.57.1)(typescript@5.8.2)
postcss:
specifier: ^8.5.1
version: 8.5.1
typescript:
specifier: ^5.8.2
version: 5.8.2
examples/react:
dependencies:
'@0xsequence/checkout':
specifier: workspace:*
version: link:../../packages/checkout
'@0xsequence/connect':
specifier: workspace:*
version: link:../../packages/connect
'@0xsequence/design-system':
specifier: 2.1.6
version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../../packages/hooks
'@0xsequence/immutable-connector':
specifier: workspace:*
version: link:../../packages/immutable-connector
'@0xsequence/network':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/waas':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/wallet-widget':
specifier: workspace:*
version: link:../../packages/wallet-widget
'@imtbl/config':
specifier: ^2.1.2
version: 2.1.15
'@imtbl/sdk':
specifier: ^2.1.2
version: 2.1.15(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
'@tanstack/react-query':
specifier: ^5.62.0
version: 5.64.2(react@19.0.0)
clsx:
specifier: ^2.1.1
version: 2.1.1
example-shared-components:
specifier: workspace:*
version: link:../components
motion:
specifier: ^12.3.1
version: 12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
react:
specifier: ^19.0.0
version: 19.0.0
react-dom:
specifier: ^19.0.0
version: 19.0.0(react@19.0.0)
react-router-dom:
specifier: ^7.3.0
version: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
tailwindcss:
specifier: ^4.0.6
version: 4.0.12
typescript:
specifier: ^5.8.2
version: 5.8.2
viem:
specifier: ^2.28.0
version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
wagmi:
specifier: ^2.15.0
version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
devDependencies:
'@tailwindcss/postcss':
specifier: ^4.0.6
version: 4.0.12
'@types/node':
specifier: ^20.12.12
version: 20.17.14
'@types/react':
specifier: ^19.0.10
version: 19.0.10
'@types/react-dom':
specifier: ^19.0.4
version: 19.0.4(@types/react@19.0.10)
'@vitejs/plugin-react':
specifier: ^4.3.0
version: 4.3.4(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2))
postcss:
specifier: ^8.5.3
version: 8.5.3
vite:
specifier: ^5.2.11
version: 5.4.14(@types/node@20.17.14)(lightningcss@1.29.2)
vite-plugin-node-polyfills:
specifier: ^0.21.0
version: 0.21.0(rollup@4.31.0)(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2))
vite-plugin-svgr:
specifier: ^4.2.0
version: 4.3.0(rollup@4.31.0)(typescript@5.8.2)(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2))
vite-tsconfig-paths:
specifier: ^4.3.2
version: 4.3.2(typescript@5.8.2)(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2))
packages/checkout:
dependencies:
0xsequence:
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/api':
specifier: '>=2.3.7'
version: 2.3.9
'@0xsequence/design-system':
specifier: 2.1.6
version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../hooks
'@0xsequence/indexer':
specifier: '>= 2.3.7'
version: 2.3.9
'@0xsequence/marketplace':
specifier: ^2.1.3
version: 2.2.7
'@0xsequence/metadata':
specifier: '>= 2.3.7'
version: 2.3.9
'@0xsequence/network':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/waas':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
motion:
specifier: ^12.3.1
version: 12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
pako:
specifier: ^2.1.0
version: 2.1.0
qrcode.react:
specifier: ^4.0.1
version: 4.2.0(react@19.0.0)
react-copy-to-clipboard:
specifier: ^5.1.0
version: 5.1.0(react@19.0.0)
timeago-react:
specifier: ^3.0.6
version: 3.0.6(react@19.0.0)
devDependencies:
'@0xsequence/connect':
specifier: workspace:*
version: link:../connect
'@tanstack/react-query':
specifier: ^5.62.0
version: 5.64.2(react@19.0.0)
'@types/pako':
specifier: ^2.0.3
version: 2.0.3
'@types/react-copy-to-clipboard':
specifier: ^5.0.7
version: 5.0.7
ethers:
specifier: ^6.13.0
version: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
react:
specifier: ^19.0.0
version: 19.0.0
react-dom:
specifier: ^19.0.0
version: 19.0.0(react@19.0.0)
viem:
specifier: ^2.28.0
version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
vite:
specifier: ^5.2.11
version: 5.4.14(@types/node@22.7.5)(lightningcss@1.29.2)
wagmi:
specifier: ^2.15.0
version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
packages/connect:
dependencies:
'@0xsequence/api':
specifier: '>=2.3.7'
version: 2.3.9
'@0xsequence/auth':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/core':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/design-system':
specifier: 2.1.6
version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@0xsequence/ethauth':
specifier: ^1.0.0
version: 1.0.0(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/hooks':
specifier: workspace:*
version: link:../hooks
'@0xsequence/indexer':
specifier: '>= 2.3.7'
version: 2.3.9
'@0xsequence/metadata':
specifier: '>= 2.3.7'
version: 2.3.9
'@0xsequence/network':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/provider':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/utils':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/waas':
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@databeat/tracker':
specifier: ^0.9.3
version: 0.9.3
'@react-oauth/google':
specifier: ^0.11.1
version: 0.11.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@tailwindcss/cli':
specifier: ^4.0.14
version: 4.0.14
clsx:
specifier: ^2.1.1
version: 2.1.1
fuse.js:
specifier: ^6.6.2
version: 6.6.2
motion:
specifier: ^12.3.1
version: 12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
react-apple-signin-auth:
specifier: ^1.1.0
version: 1.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
tailwindcss:
specifier: ^4.0.6
version: 4.0.12
uuid:
specifier: ^10.0.0
version: 10.0.0
devDependencies:
0xsequence:
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@tanstack/react-query':
specifier: ^5.62.0
version: 5.64.2(react@19.0.0)
'@types/uuid':
specifier: ^9.0.8
version: 9.0.8
concurrently:
specifier: ^9.1.2
version: 9.1.2
ethers:
specifier: ^6.13.0
version: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
react:
specifier: ^19.0.0
version: 19.0.0
react-dom:
specifier: ^19.0.0
version: 19.0.0(react@19.0.0)
viem:
specifier: ^2.28.0
version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
wagmi:
specifier: ^2.15.0
version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
packages/hooks:
devDependencies:
'@0xsequence/api':
specifier: '>=2.3.7'
version: 2.3.9
'@0xsequence/indexer':
specifier: '>=2.3.7'
version: 2.3.9
'@0xsequence/metadata':
specifier: '>=2.3.7'
version: 2.3.9
'@0xsequence/network':
specifier: '>=2.3.7'
version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@tanstack/react-query':
specifier: ^5.62.0
version: 5.64.2(react@19.0.0)
'@testing-library/jest-dom':
specifier: ^6.6.3
version: 6.6.3
'@testing-library/react':
specifier: ^16.0.1
version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@testing-library/user-event':
specifier: ^14.5.2
version: 14.6.1(@testing-library/dom@10.4.0)
'@vitejs/plugin-react':
specifier: ^4.3.4
version: 4.3.4(vite@6.2.1(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2))
jsdom:
specifier: ^25.0.1
version: 25.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
msw:
specifier: ^2.6.6
version: 2.7.3(@types/node@22.7.5)(typescript@5.8.2)
react:
specifier: ^19.0.0
version: 19.0.0
react-dom:
specifier: ^19.0.0
version: 19.0.0(react@19.0.0)
typescript:
specifier: ^5.8.2
version: 5.8.2
viem:
specifier: ^2.28.0
version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
vite:
specifier: ^6.0.2
version: 6.2.1(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2)
vitest:
specifier: ^2.1.8
version: 2.1.9(@types/node@22.7.5)(jsdom@25.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(msw@2.7.3(@types/node@22.7.5)(typescript@5.8.2))
packages/immutable-connector:
dependencies:
0xsequence:
specifier: '>= 2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/connect':
specifier: workspace:*
version: link:../connect
'@imtbl/config':
specifier: '>=2.1.2'
version: 2.1.15
'@imtbl/sdk':
specifier: '>=2.1.2'
version: 2.1.15(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
ethers:
specifier: ^6.13.0
version: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
react:
specifier: '>= 17 < 19'
version: 18.3.1
react-dom:
specifier: '>= 17 < 19'
version: 18.3.1(react@18.3.1)
viem:
specifier: ^2.28.0
version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
wagmi:
specifier: ^2.15.0
version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@18.3.1))(@types/react@19.0.10)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
packages/wallet-widget:
dependencies:
'@0xsequence/api':
specifier: '>=2.3.7'
version: 2.3.9
'@0xsequence/design-system':
specifier: 2.1.6
version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../hooks
'@0xsequence/indexer':
specifier: '>=2.3.7'
version: 2.3.9
'@0xsequence/metadata':
specifier: '>=2.3.7'
version: 2.3.9
'@0xsequence/network':
specifier: '>=2.3.7'
version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@radix-ui/react-popover':
specifier: ^1.0.7
version: 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
dayjs:
specifier: ^1.11.11
version: 1.11.13
fuse.js:
specifier: ^6.6.2
version: 6.6.2
micro-observables:
specifier: 1.7.2
version: 1.7.2(react@19.0.0)
motion:
specifier: ^12.3.1
version: 12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
qrcode.react:
specifier: ^4.0.1
version: 4.2.0(react@19.0.0)
react-copy-to-clipboard:
specifier: ^5.1.0
version: 5.1.0(react@19.0.0)
devDependencies:
'@0xsequence/checkout':
specifier: workspace:*
version: link:../checkout
'@0xsequence/connect':
specifier: workspace:*
version: link:../connect
'@tanstack/react-query':
specifier: ^5.62.0
version: 5.64.2(react@19.0.0)
'@types/react-copy-to-clipboard':
specifier: ^5.0.7
version: 5.0.7
ethers:
specifier: ^6.13.0
version: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
react:
specifier: ^19.0.0
version: 19.0.0
react-dom:
specifier: ^19.0.0
version: 19.0.0(react@19.0.0)
viem:
specifier: ^2.28.0
version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
wagmi:
specifier: ^2.15.0
version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
packages:
0xsequence@2.3.9:
resolution: {integrity: sha512-kpXi/pZda+t0RUeDnoj2hwsYrIJu0ciaYMcb5SCABCkwtBOoO6VMUWPujerNgHQWq+E6Djy8LmzL++OKZAGmwA==}
peerDependencies:
ethers: '>=6'
'@0xsequence/abi@2.3.9':
resolution: {integrity: sha512-5bFZIerqx4VMxny5PdFAGH4uyZhzvsH3Ri1/U0Tr2a05t5jSSXM5YVCf8QzWpSS51lpPRknMrvuuBUfEcV2dgw==}
'@0xsequence/account@2.3.9':
resolution: {integrity: sha512-iiy0BQFfVEJfvn3F3e1KceJXoQwwSZenkV74Rk92+jmO0gT0B+HqVrKgZhiPZS8qrf9/qA63R5KxYfNfr0My5Q==}
peerDependencies:
ethers: '>=6'
'@0xsequence/api@2.3.9':
resolution: {integrity: sha512-ktvuf57SlsqMjNngMJCTu0fHzl1lh3IbyR6JLJBTYA7mWVGE7HQmjKzobpeRJeBhNFlGBsDsCQDNE5MDT+t+FA==}
'@0xsequence/auth@2.3.9':
resolution: {integrity: sha512-WT5wi4dPZJ3wmOA8y5QlY7SJZ/OXyzZuDv/TEeVWSSQcohEFhZ8JygiMIvr+zqsOhX4V1c4Hb3xrYZHx/i1KRw==}
peerDependencies:
ethers: '>=6'
'@0xsequence/core@2.3.9':
resolution: {integrity: sha512-N97jPBe//72upmkelaypiSRLhGzVIHttOxRGa2w8b3lH6lNJ6tVHYkcrCU3I8GCnnURyINbVYR+r2C2s0+2sYQ==}
peerDependencies:
ethers: '>=6'
'@0xsequence/design-system@2.1.6':
resolution: {integrity: sha512-XRUAKrzKZBSEkWZFBm/OJq8qaMFtfCe6/n3nhnJSefGUWOuThYbM11muKlFzpT3gD/RJhBOMR1fCOVJXsnfvUA==}
peerDependencies:
motion: '>= 12'
react: '>= 17'
react-dom: '>= 17'
'@0xsequence/ethauth@1.0.0':
resolution: {integrity: sha512-piihXzbS8Sq7P670a+GyTm3igTJL3Ts6pqjJcC0Sv86yqeK6QD0pzJP4APP+/IQa5k+0s2l1SeZwMjR7gSPtCA==}
peerDependencies:
ethers: '>=6'
'@0xsequence/guard@2.3.9':
resolution: {integrity: sha512-rBoCHuqfc4FkyBWwdtMXTbpsllz/ukJfSVZrtsRcus0GZSg7sRUANJflm5hm1Y0qta+ndHU/dpRlIaGDr90wiQ==}
peerDependencies:
ethers: '>=6'
'@0xsequence/indexer@2.3.9':
resolution: {integrity: sha512-ZtiA7827BTjujOupom5dGJd4oMvfQA2HQ9orjrreZusQPmfadie9ldVrnzX19YS+AZDeCOix9qDG+cRSpYfHwQ==}
'@0xsequence/marketplace@2.2.7':
resolution: {integrity: sha512-fVVDnen71g6goQojZV2YJ/NP8x4+t967gSTjlGc3J2EtbK3Z8w2DJRveB4j6Fnh3ovDJqUU/NF6Opo/NDBSlZA==}
'@0xsequence/metadata@2.3.9':
resolution: {integrity: sha512-h4HK+vhKWKl/I96TUj4vWcGEIVJHLrbkDALGqERxz9i/q7JL1TuV/7q0Uo7GKHX/ojB8cOZwLXaC09TAEjIv6A==}
'@0xsequence/migration@2.3.9':
resolution: {integrity: sha512-X1a23ni++om8oKSI2NaBgtA5SHKgvvy1jLRBOy0Mnkf2u+hqJs+2DF4vENRq3AtKx3SclWDj7J6S4jFO+G8k4w==}
peerDependencies:
ethers: '>=6'
'@0xsequence/network@2.3.9':
resolution: {integrity: sha512-QFvGsfkjkuENI3yrBAil1Axm0iBK/BMO8nqEo5MZ8zxYPkOG3I4Lyjr28s4Ny2aOUzaV8I3R4udTOM+S6b5vXw==}
peerDependencies:
ethers: '>=6'
'@0xsequence/provider@2.3.9':
resolution: {integrity: sha512-NzuNeepA/2np7BrVjuJudiDLGf5YbS6rUvVsJ/GGiskqGzbUpu2ZmALdUnRYrnJGvQaNTApfpEgobXCa71zYxQ==}
peerDependencies:
ethers: '>=6'
'@0xsequence/relayer@2.3.9':
resolution: {integrity: sha512-Ta9vYWfl38nNj1HVgf8igjH41oj5aY+ZK923Rio1ms5D4WWR6oSoHBBFRmbU5qT8HzTa8GWoYrxhohHcPV5S6g==}
peerDependencies:
ethers: '>=6'
'@0xsequence/replacer@2.3.9':
resolution: {integrity: sha512-JFWdUdorDwIiu+Nv0dFNa5rMk2T5AGRV0/S04TmishjJGOim+B8rVScnwPTFxohOUb2T9fi1LEtFrUof7tFsKw==}
peerDependencies:
ethers: '>=6'
'@0xsequence/sessions@2.3.9':
resolution: {integrity: sha512-tiAkWDNbLtaMRvreu4iLuymBexiEclHOlclxCYdlEwISejRYCVJgUFBEpSrfM8CdksRgc4fmbFQQAbT9QkHNIg==}
peerDependencies:
ethers: '>=6'
'@0xsequence/signhub@2.3.9':
resolution: {integrity: sha512-hp5sgs8WWEfLE28DzrMyXf8xoz6NlWs0NQk9Wx9dp65B/c3hrTWdvC16raJHrUgqsnGRFnZ6skjuxudAmiDcCQ==}
peerDependencies:
ethers: '>=6'
'@0xsequence/utils@2.3.9':
resolution: {integrity: sha512-dZI3dWkHABkRj39fp+GdieadQiXzntosrClwYKf7wT780/e6DlBMZV2tb/iI+j73Qq64+MfSheimEw7Tjk+kww==}
peerDependencies:
ethers: '>=6'
'@0xsequence/waas@2.3.9':
resolution: {integrity: sha512-0yxvRkUW7kjkzmPZyaAEQSMJ+tK2DPXEZXnFWSqL3ncXidAYmWKjs10NQfjPpNZGGlTN7n9OfQ2KLda4kuG/Iw==}
peerDependencies:
ethers: '>=6'
'@0xsequence/wallet@2.3.9':
resolution: {integrity: sha512-DPgMt5fXVjPmS8/D/4lkvBv9JWnZY+yMoLJr1zK1BUR9L1iKPpBhBDMv90wrBh82hd26WhBIFlNPEjPp7ZteZg==}
peerDependencies:
ethers: '>=6'
'@adobe/css-tools@4.4.2':
resolution: {integrity: sha512-baYZExFpsdkBNuvGKTKWCwKH57HRZLVtycZS05WTQNVOiXVSeAki3nU35zlRbToeMW8aHlJfyS+1C4BOv27q0A==}
'@adraffy/ens-normalize@1.10.1':
resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==}
'@adraffy/ens-normalize@1.11.0':
resolution: {integrity: sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@andrewbranch/untar.js@1.0.3':
resolution: {integrity: sha512-Jh15/qVmrLGhkKJBdXlK1+9tY4lZruYjsgkDFj08ZmDiWVBLJcqkok7Z0/R0In+i1rScBpJlSvrTS2Lm41Pbnw==}
'@arethetypeswrong/cli@0.17.4':
resolution: {integrity: sha512-AeiKxtf67XD/NdOqXgBOE5TZWH3EOCt+0GkbUpekOzngc+Q/cRZ5azjWyMxISxxfp0EItgm5NoSld9p7BAA5xQ==}
engines: {node: '>=18'}
hasBin: true
'@arethetypeswrong/core@0.17.4':
resolution: {integrity: sha512-Izvir8iIoU+X4SKtDAa5kpb+9cpifclzsbA8x/AZY0k0gIfXYQ1fa1B6Epfe6vNA2YfDX8VtrZFgvnXB6aPEoQ==}
engines: {node: '>=18'}
'@asamuzakjp/css-color@3.1.1':
resolution: {integrity: sha512-hpRD68SV2OMcZCsrbdkccTw5FXjNDLo5OuqSHyHZfwweGsDWZwDJ2+gONyNAbazZclobMirACLw0lk8WVxIqxA==}
'@aws-crypto/sha256-browser@5.2.0':
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
'@aws-crypto/sha256-js@5.2.0':
resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
engines: {node: '>=16.0.0'}
'@aws-crypto/supports-web-crypto@5.2.0':
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
'@aws-sdk/client-cognito-identity-provider@3.731.1':
resolution: {integrity: sha512-J9fODSKaw4/Sd2vrGmZs40yc2q+SMXg8jhlYWjU+ywv5jZnYIwUIRW/CndWRNYjh6OiWlfPE8xjuTAQVQ36fMQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/client-sso@3.731.0':
resolution: {integrity: sha512-O4C/UYGgqMsBg21MMApFdgyh8BX568hQhbdoNFmRVTBoSnCZ3w+H4a1wBPX4Gyl0NX+ab6Xxo9rId8HiyPXJ0A==}
engines: {node: '>=18.0.0'}
'@aws-sdk/core@3.731.0':
resolution: {integrity: sha512-ithBN1VWASkvAIlozJmenqDvNnFddr/SZXAs58+jCnBHgy3tXLHABZGVNCjetZkHRqNdXEO1kirnoxaFeXMeDA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-env@3.731.0':
resolution: {integrity: sha512-h0WWZg4QMLgFVyIvQrC43zpVqsUWg1mPM1clpogP43B8+wEhDEQ4qWRzvFs3dQ4cqx/FLyDUZZF4cqgd94z7kw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-http@3.731.0':
resolution: {integrity: sha512-iRtrjtcYaWgbvtu2cvDhIsPWXZGvhy1Hgks4682MEBNTc9AUwlfvDrYz2EEnTtJJyrbOdEHVrYrzqD8qPyVLCg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-ini@3.731.1':
resolution: {integrity: sha512-0M0ejuqW8iHNcTH2ZXSY9m+I7Y06qVkj6k3vfQU9XaB//mTUCxxfGfqWAtgfr7Yi73egABTcPc0jyPdcvSW4Kw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-node@3.731.1':
resolution: {integrity: sha512-5c0ZiagMTPmWilXNffeXJCLoCEz97jilHr3QJWwf2GaTay4tzN+Ld71rpdfEenzUR7fuxEWFfVlwQbFOzFNYHg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-process@3.731.0':
resolution: {integrity: sha512-6yNMY6q3xHLbs2f2+C6GhvMrjTgtFBiPJJqKaPLsTIhlTRvh4sK8pGm3ITcma0jOxtPDIuoPfBAV8N8XVMBlZg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-sso@3.731.1':
resolution: {integrity: sha512-p1tp+rMUf5YNQLr8rVRmDgNtKGYLL0KCdq3K2hwwvFnx9MjReF1sA4lfm3xWsxBQM+j3QN9AvMQqBzDJ+NOSdw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-web-identity@3.731.1':
resolution: {integrity: sha512-+ynAvEGWDR5ZJFxgpwwzhvlQ3WQ7BleWXU6JwpIw3yFrD4eZEn85b8DZC1aEz7C9kb1HSV6B3gpqHqlyS6wj8g==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-host-header@3.731.0':
resolution: {integrity: sha512-ndAJsm5uWPPJRZowLKpB1zuL17qWlWVtCJP4I/ynBkq1PU1DijDXBul2UZaG6Mpvsgms1NXo/h9noHuK7T3v8w==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-logger@3.731.0':
resolution: {integrity: sha512-IIZrOdjbY2vKzPJPrwE7FoFQCIPEL6UqURi8LEaiVyCag4p2fvaTN5pgKuQtGC2+iYd/HHcGT4qn2bAqF5Jmmw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-recursion-detection@3.731.0':
resolution: {integrity: sha512-y6FLASB1iKWuR5tUipMyo77bt0lEl3OnCrrd2xw/H24avq1HhJjjPR0HHhJE6QKJzF/FYXeV88tcyPSMe32VDw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-user-agent@3.731.0':
resolution: {integrity: sha512-Ngr2Gz0aec/uduoKaO3srN52SYkEHndYtFzkK/gDUyQwQzi4ha2eIisxPiuHEX6RvXT31V9ouqn/YtVkt0R76A==}
engines: {node: '>=18.0.0'}
'@aws-sdk/nested-clients@3.731.1':
resolution: {integrity: sha512-/L8iVrulnXZl+kgmTn+oxRxNnhcSIbf+r12C06vGUq60w0YMidLvxJZN7vt8H9SnCAGCHqud2MS7ExCEvhc0gA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/region-config-resolver@3.731.0':
resolution: {integrity: sha512-XlDpRNkDVHF59f07JmkuAidEv//m3hT6/JL85h0l3+zrpaRWhf8n8lVUyAPNq35ZujK8AcorYM+93u7hdWsliQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/token-providers@3.731.1':
resolution: {integrity: sha512-t34GOPwBZsX7zGHjiTXmMHGY3kHM7fLiQ60Jqk0On9P0ASHTDE5U75RgCXboE3u+qEv9wyKyaqMNyMWj9qQlFg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/types@3.731.0':
resolution: {integrity: sha512-NrdkJg6oOUbXR2r9WvHP408CLyvST8cJfp1/jP9pemtjvjPoh6NukbCtiSFdOOb1eryP02CnqQWItfJC1p2Y/Q==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-endpoints@3.731.0':
resolution: {integrity: sha512-riztxTAfncFS9yQWcBJffGgOgLoKSa63ph+rxWJxKl6BHAmWEvHICj1qDcVmnWfIcvJ5cClclY75l9qKaUH7rQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-locate-window@3.723.0':
resolution: {integrity: sha512-Yf2CS10BqK688DRsrKI/EO6B8ff5J86NXe4C+VCysK7UOgN0l1zOTeTukZ3H8Q9tYYX3oaF1961o8vRkFm7Nmw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-user-agent-browser@3.731.0':
resolution: {integrity: sha512-EnYXxTkCNCjTTBjW/pelRPv4Thsi9jepoB6qQjPMA9/ixrZ71BhhQecz9kgqzZLR9BPCwb6hgJ/Yd702jqJ4aQ==}
'@aws-sdk/util-user-agent-node@3.731.0':
resolution: {integrity: sha512-Rze78Ym5Bx7aWMvmZE2iL3JPo2INNCC5N9rLVx98Gg1G0ZaxclVRUvJrh1AojNlOFxU+otkxAe7FA3Foy2iLLQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.26.5':
resolution: {integrity: sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.26.0':
resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.26.5':
resolution: {integrity: sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.26.5':
resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.25.9':
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.26.0':
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-plugin-utils@7.26.5':
resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.26.0':
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.26.5':
resolution: {integrity: sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-syntax-async-generators@7.8.4':
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-bigint@7.8.3':
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-class-properties@7.12.13':
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-class-static-block@7.14.5':
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-import-attributes@7.26.0':
resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-import-meta@7.10.4':
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-json-strings@7.8.3':
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-jsx@7.25.9':
resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-logical-assignment-operators@7.10.4':
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-numeric-separator@7.10.4':
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-object-rest-spread@7.8.3':
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-optional-catch-binding@7.8.3':
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-optional-chaining@7.8.3':
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-private-property-in-object@7.14.5':
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-top-level-await@7.14.5':
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-typescript@7.25.9':
resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx-self@7.25.9':
resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx-source@7.25.9':
resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@babel/template@7.25.9':
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.26.5':
resolution: {integrity: sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==}
engines: {node: '>=6.9.0'}