-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
7940 lines (7940 loc) · 288 KB
/
package-lock.json
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
{
"name": "etf-explorer",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "etf-explorer",
"version": "0.1.0",
"dependencies": {
"@headlessui/react": "^2.0.4",
"@heroicons/react": "^2.1.3",
"@ideallabs/etf.js": "^0.1.13-dev",
"@polkadot/api": "^12.2.3",
"@polkadot/api-contract": "^12.2.3",
"@polkadot/extension-dapp": "^0.50.1",
"@polkadot/util": "^13.0.2",
"@polkadot/util-crypto": "^13.0.2",
"clsx": "^2.1.1",
"framer-motion": "^11.2.6",
"next": "^14.2.15",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"reflect-metadata": "^0.2.2",
"sha3": "^2.1.4",
"tsyringe": "^4.8.0",
"use-debounce": "^10.0.3"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-next": "^14.2.15",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
},
"node_modules/@alloc/quick-lru": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
"dev": true,
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@babel/runtime": {
"version": "7.24.6",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.6.tgz",
"integrity": "sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw==",
"dev": true,
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
"dev": true,
"dependencies": {
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.10.0",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
"integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/js": {
"version": "8.57.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
"integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@floating-ui/core": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.2.tgz",
"integrity": "sha512-+2XpQV9LLZeanU4ZevzRnGFg2neDeKHgFLjP6YLW+tly0IvrhqT4u8enLGjLH3qeh85g19xY5rsAusfwTdn5lg==",
"dependencies": {
"@floating-ui/utils": "^0.2.0"
}
},
"node_modules/@floating-ui/dom": {
"version": "1.6.5",
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.5.tgz",
"integrity": "sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==",
"dependencies": {
"@floating-ui/core": "^1.0.0",
"@floating-ui/utils": "^0.2.0"
}
},
"node_modules/@floating-ui/react": {
"version": "0.26.16",
"resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.16.tgz",
"integrity": "sha512-HEf43zxZNAI/E781QIVpYSF3K2VH4TTYZpqecjdsFkjsaU1EbaWcM++kw0HXFffj7gDUcBFevX8s0rQGQpxkow==",
"dependencies": {
"@floating-ui/react-dom": "^2.1.0",
"@floating-ui/utils": "^0.2.0",
"tabbable": "^6.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
},
"node_modules/@floating-ui/react-dom": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.0.tgz",
"integrity": "sha512-lNzj5EQmEKn5FFKc04+zasr09h/uX8RtJRNj5gUXsSQIXHVWTVh+hVAg1vOMCexkX8EgvemMvIFpQfkosnVNyA==",
"dependencies": {
"@floating-ui/dom": "^1.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
},
"node_modules/@floating-ui/utils": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.2.tgz",
"integrity": "sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw=="
},
"node_modules/@headlessui/react": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@headlessui/react/-/react-2.0.4.tgz",
"integrity": "sha512-16d/rOLeYsFsmPlRmXGu8DCBzrWD0zV1Ccx3n73wN87yFu8Y9+X04zflv8EJEt9TAYRyLKOmQXUnOnqQl6NgpA==",
"dependencies": {
"@floating-ui/react": "^0.26.13",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@tanstack/react-virtual": "3.5.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
}
},
"node_modules/@heroicons/react": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/@heroicons/react/-/react-2.1.3.tgz",
"integrity": "sha512-fEcPfo4oN345SoqdlCDdSa4ivjaKbk0jTd+oubcgNxnNgAfzysfwWfQUr+51wigiWHQQRiZNd1Ao0M5Y3M2EGg==",
"peerDependencies": {
"react": ">= 16"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.14",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
"integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^2.0.2",
"debug": "^4.3.1",
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz",
"integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==",
"dev": true
},
"node_modules/@ideallabs/etf-sdk": {
"version": "0.1.10-dev",
"resolved": "https://registry.npmjs.org/@ideallabs/etf-sdk/-/etf-sdk-0.1.10-dev.tgz",
"integrity": "sha512-AAlcHzchW3spImeC4jcnf5IoGO/EH5BxqMTUmKEq3UyZ/9KPDxb0N5GsjiabpfdrogXJAsOVrVJB+hcpzyHC1g==",
"license": "GPL-3.0-only"
},
"node_modules/@ideallabs/etf.js": {
"version": "0.1.13-dev",
"resolved": "https://registry.npmjs.org/@ideallabs/etf.js/-/etf.js-0.1.13-dev.tgz",
"integrity": "sha512-bC/WyZa806Dr0gxO+EJTK77dT6HZUpWuLfeh8EKT/4tdX+ufVaVAnX5m867IE0aM7lMi81PMQ+8h6YYcuDTSTg==",
"dependencies": {
"@ideallabs/etf-sdk": "^0.1.10-dev",
"@polkadot/api": "^10.9.1",
"@polkadot/api-augment": "^10.9.1",
"@polkadot/extension-dapp": "^0.46.3",
"@polkadot/rpc-provider": "^10.9.1",
"@polkadot/types": "^10.9.1",
"@polkadot/util": "^12.0.1",
"@polkadot/util-crypto": "^12.6.2",
"@substrate/connect": "^0.8.11",
"@substrate/txwrapper-substrate": "^7.0.1",
"events": "^3.3.0",
"js-crypto-hkdf": "^1.0.7"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot-api/json-rpc-provider-proxy": {
"version": "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0",
"resolved": "https://registry.npmjs.org/@polkadot-api/json-rpc-provider-proxy/-/json-rpc-provider-proxy-0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0.tgz",
"integrity": "sha512-0hZ8vtjcsyCX8AyqP2sqUHa1TFFfxGWmlXJkit0Nqp9b32MwZqn5eaUAiV2rNuEpoglKOdKnkGtUF8t5MoodKw==",
"license": "MIT",
"optional": true
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot-api/metadata-builders": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/@polkadot-api/metadata-builders/-/metadata-builders-0.3.2.tgz",
"integrity": "sha512-TKpfoT6vTb+513KDzMBTfCb/ORdgRnsS3TDFpOhAhZ08ikvK+hjHMt5plPiAX/OWkm1Wc9I3+K6W0hX5Ab7MVg==",
"license": "MIT",
"dependencies": {
"@polkadot-api/substrate-bindings": "0.6.0",
"@polkadot-api/utils": "0.1.0"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot-api/substrate-bindings": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@polkadot-api/substrate-bindings/-/substrate-bindings-0.6.0.tgz",
"integrity": "sha512-lGuhE74NA1/PqdN7fKFdE5C1gNYX357j1tWzdlPXI0kQ7h3kN0zfxNOpPUN7dIrPcOFZ6C0tRRVrBylXkI6xPw==",
"license": "MIT",
"dependencies": {
"@noble/hashes": "^1.3.1",
"@polkadot-api/utils": "0.1.0",
"@scure/base": "^1.1.1",
"scale-ts": "^1.6.0"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot-api/substrate-client": {
"version": "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0",
"resolved": "https://registry.npmjs.org/@polkadot-api/substrate-client/-/substrate-client-0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0.tgz",
"integrity": "sha512-lcdvd2ssUmB1CPzF8s2dnNOqbrDa+nxaaGbuts+Vo8yjgSKwds2Lo7Oq+imZN4VKW7t9+uaVcKFLMF7PdH0RWw==",
"license": "MIT",
"optional": true
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot-api/utils": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/@polkadot-api/utils/-/utils-0.1.0.tgz",
"integrity": "sha512-MXzWZeuGxKizPx2Xf/47wx9sr/uxKw39bVJUptTJdsaQn/TGq+z310mHzf1RCGvC1diHM8f593KrnDgc9oNbJA==",
"license": "MIT"
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/api": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/api/-/api-10.13.1.tgz",
"integrity": "sha512-YrKWR4TQR5CDyGkF0mloEUo7OsUA+bdtENpJGOtNavzOQUDEbxFE0PVzokzZfVfHhHX2CojPVmtzmmLxztyJkg==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/api-augment": "10.13.1",
"@polkadot/api-base": "10.13.1",
"@polkadot/api-derive": "10.13.1",
"@polkadot/keyring": "^12.6.2",
"@polkadot/rpc-augment": "10.13.1",
"@polkadot/rpc-core": "10.13.1",
"@polkadot/rpc-provider": "10.13.1",
"@polkadot/types": "10.13.1",
"@polkadot/types-augment": "10.13.1",
"@polkadot/types-codec": "10.13.1",
"@polkadot/types-create": "10.13.1",
"@polkadot/types-known": "10.13.1",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"eventemitter3": "^5.0.1",
"rxjs": "^7.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/api-augment": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/api-augment/-/api-augment-10.13.1.tgz",
"integrity": "sha512-IAKaCp19QxgOG4HKk9RAgUgC/VNVqymZ2GXfMNOZWImZhxRIbrK+raH5vN2MbWwtVHpjxyXvGsd1RRhnohI33A==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/api-base": "10.13.1",
"@polkadot/rpc-augment": "10.13.1",
"@polkadot/types": "10.13.1",
"@polkadot/types-augment": "10.13.1",
"@polkadot/types-codec": "10.13.1",
"@polkadot/util": "^12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/api-base": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/api-base/-/api-base-10.13.1.tgz",
"integrity": "sha512-Okrw5hjtEjqSMOG08J6qqEwlUQujTVClvY1/eZkzKwNzPelWrtV6vqfyJklB7zVhenlxfxqhZKKcY7zWSW/q5Q==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/rpc-core": "10.13.1",
"@polkadot/types": "10.13.1",
"@polkadot/util": "^12.6.2",
"rxjs": "^7.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/api-derive": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/api-derive/-/api-derive-10.13.1.tgz",
"integrity": "sha512-ef0H0GeCZ4q5Om+c61eLLLL29UxFC2/u/k8V1K2JOIU+2wD5LF7sjAoV09CBMKKHfkLenRckVk2ukm4rBqFRpg==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/api": "10.13.1",
"@polkadot/api-augment": "10.13.1",
"@polkadot/api-base": "10.13.1",
"@polkadot/rpc-core": "10.13.1",
"@polkadot/types": "10.13.1",
"@polkadot/types-codec": "10.13.1",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"rxjs": "^7.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/extension-dapp": {
"version": "0.46.9",
"resolved": "https://registry.npmjs.org/@polkadot/extension-dapp/-/extension-dapp-0.46.9.tgz",
"integrity": "sha512-y5udSeQ/X9MEoyjlpTcCn0UAEjZ2jjy6U3V/jiVFQo5vBKhdqAhN1oN8X5c4yWurmhYM/7oibImxAjEoXuwH+Q==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/extension-inject": "0.46.9",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@polkadot/api": "*",
"@polkadot/util": "*",
"@polkadot/util-crypto": "*"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/extension-inject": {
"version": "0.46.9",
"resolved": "https://registry.npmjs.org/@polkadot/extension-inject/-/extension-inject-0.46.9.tgz",
"integrity": "sha512-m0jnrs9+jEOpMH6OUNl7nHpz9SFFWK9LzuqB8T3htEE3RUYPL//SLCPyEKxAAgHu7F8dgkUHssAWQfANofALCQ==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/api": "^10.12.4",
"@polkadot/rpc-provider": "^10.12.4",
"@polkadot/types": "^10.12.4",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@polkadot/x-global": "^12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@polkadot/api": "*",
"@polkadot/util": "*"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/keyring": {
"version": "12.6.2",
"resolved": "https://registry.npmjs.org/@polkadot/keyring/-/keyring-12.6.2.tgz",
"integrity": "sha512-O3Q7GVmRYm8q7HuB3S0+Yf/q/EB2egKRRU3fv9b3B7V+A52tKzA+vIwEmNVaD1g5FKW9oB97rmpggs0zaKFqHw==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/util": "12.6.2",
"@polkadot/util-crypto": "12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@polkadot/util": "12.6.2",
"@polkadot/util-crypto": "12.6.2"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/networks": {
"version": "12.6.2",
"resolved": "https://registry.npmjs.org/@polkadot/networks/-/networks-12.6.2.tgz",
"integrity": "sha512-1oWtZm1IvPWqvMrldVH6NI2gBoCndl5GEwx7lAuQWGr7eNL+6Bdc5K3Z9T0MzFvDGoi2/CBqjX9dRKo39pDC/w==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/util": "12.6.2",
"@substrate/ss58-registry": "^1.44.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/rpc-augment": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/rpc-augment/-/rpc-augment-10.13.1.tgz",
"integrity": "sha512-iLsWUW4Jcx3DOdVrSHtN0biwxlHuTs4QN2hjJV0gd0jo7W08SXhWabZIf9mDmvUJIbR7Vk+9amzvegjRyIf5+A==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/rpc-core": "10.13.1",
"@polkadot/types": "10.13.1",
"@polkadot/types-codec": "10.13.1",
"@polkadot/util": "^12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/rpc-core": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/rpc-core/-/rpc-core-10.13.1.tgz",
"integrity": "sha512-eoejSHa+/tzHm0vwic62/aptTGbph8vaBpbvLIK7gd00+rT813ROz5ckB1CqQBFB23nHRLuzzX/toY8ID3xrKw==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/rpc-augment": "10.13.1",
"@polkadot/rpc-provider": "10.13.1",
"@polkadot/types": "10.13.1",
"@polkadot/util": "^12.6.2",
"rxjs": "^7.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/rpc-provider": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/rpc-provider/-/rpc-provider-10.13.1.tgz",
"integrity": "sha512-oJ7tatVXYJ0L7NpNiGd69D558HG5y5ZDmH2Bp9Dd4kFTQIiV8A39SlWwWUPCjSsen9lqSvvprNLnG/VHTpenbw==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/keyring": "^12.6.2",
"@polkadot/types": "10.13.1",
"@polkadot/types-support": "10.13.1",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@polkadot/x-fetch": "^12.6.2",
"@polkadot/x-global": "^12.6.2",
"@polkadot/x-ws": "^12.6.2",
"eventemitter3": "^5.0.1",
"mock-socket": "^9.3.1",
"nock": "^13.5.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
},
"optionalDependencies": {
"@substrate/connect": "0.8.8"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/rpc-provider/node_modules/@substrate/connect": {
"version": "0.8.8",
"resolved": "https://registry.npmjs.org/@substrate/connect/-/connect-0.8.8.tgz",
"integrity": "sha512-zwaxuNEVI9bGt0rT8PEJiXOyebLIo6QN1SyiAHRPBOl6g3Sy0KKdSN8Jmyn++oXhVRD8aIe75/V8ZkS81T+BPQ==",
"deprecated": "versions below 1.x are no longer maintained",
"license": "GPL-3.0-only",
"optional": true,
"dependencies": {
"@substrate/connect-extension-protocol": "^2.0.0",
"@substrate/connect-known-chains": "^1.1.1",
"@substrate/light-client-extension-helpers": "^0.0.4",
"smoldot": "2.0.22"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/types": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/types/-/types-10.13.1.tgz",
"integrity": "sha512-Hfvg1ZgJlYyzGSAVrDIpp3vullgxrjOlh/CSThd/PI4TTN1qHoPSFm2hs77k3mKkOzg+LrWsLE0P/LP2XddYcw==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/keyring": "^12.6.2",
"@polkadot/types-augment": "10.13.1",
"@polkadot/types-codec": "10.13.1",
"@polkadot/types-create": "10.13.1",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"rxjs": "^7.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/types-augment": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/types-augment/-/types-augment-10.13.1.tgz",
"integrity": "sha512-TcrLhf95FNFin61qmVgOgayzQB/RqVsSg9thAso1Fh6pX4HSbvI35aGPBAn3SkA6R+9/TmtECirpSNLtIGFn0g==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/types": "10.13.1",
"@polkadot/types-codec": "10.13.1",
"@polkadot/util": "^12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/types-codec": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/types-codec/-/types-codec-10.13.1.tgz",
"integrity": "sha512-AiQ2Vv2lbZVxEdRCN8XSERiWlOWa2cTDLnpAId78EnCtx4HLKYQSd+Jk9Y4BgO35R79mchK4iG+w6gZ+ukG2bg==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/util": "^12.6.2",
"@polkadot/x-bigint": "^12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/types-create": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/types-create/-/types-create-10.13.1.tgz",
"integrity": "sha512-Usn1jqrz35SXgCDAqSXy7mnD6j4RvB4wyzTAZipFA6DGmhwyxxIgOzlWQWDb+1PtPKo9vtMzen5IJ+7w5chIeA==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/types-codec": "10.13.1",
"@polkadot/util": "^12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/types-known": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/types-known/-/types-known-10.13.1.tgz",
"integrity": "sha512-uHjDW05EavOT5JeU8RbiFWTgPilZ+odsCcuEYIJGmK+es3lk/Qsdns9Zb7U7NJl7eJ6OWmRtyrWsLs+bU+jjIQ==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/networks": "^12.6.2",
"@polkadot/types": "10.13.1",
"@polkadot/types-codec": "10.13.1",
"@polkadot/types-create": "10.13.1",
"@polkadot/util": "^12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/types-support": {
"version": "10.13.1",
"resolved": "https://registry.npmjs.org/@polkadot/types-support/-/types-support-10.13.1.tgz",
"integrity": "sha512-4gEPfz36XRQIY7inKq0HXNVVhR6HvXtm7yrEmuBuhM86LE0lQQBkISUSgR358bdn2OFSLMxMoRNoh3kcDvdGDQ==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/util": "^12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/util": {
"version": "12.6.2",
"resolved": "https://registry.npmjs.org/@polkadot/util/-/util-12.6.2.tgz",
"integrity": "sha512-l8TubR7CLEY47240uki0TQzFvtnxFIO7uI/0GoWzpYD/O62EIAMRsuY01N4DuwgKq2ZWD59WhzsLYmA5K6ksdw==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/x-bigint": "12.6.2",
"@polkadot/x-global": "12.6.2",
"@polkadot/x-textdecoder": "12.6.2",
"@polkadot/x-textencoder": "12.6.2",
"@types/bn.js": "^5.1.5",
"bn.js": "^5.2.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/util-crypto": {
"version": "12.6.2",
"resolved": "https://registry.npmjs.org/@polkadot/util-crypto/-/util-crypto-12.6.2.tgz",
"integrity": "sha512-FEWI/dJ7wDMNN1WOzZAjQoIcCP/3vz3wvAp5QQm+lOrzOLj0iDmaIGIcBkz8HVm3ErfSe/uKP0KS4jgV/ib+Mg==",
"license": "Apache-2.0",
"dependencies": {
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3",
"@polkadot/networks": "12.6.2",
"@polkadot/util": "12.6.2",
"@polkadot/wasm-crypto": "^7.3.2",
"@polkadot/wasm-util": "^7.3.2",
"@polkadot/x-bigint": "12.6.2",
"@polkadot/x-randomvalues": "12.6.2",
"@scure/base": "^1.1.5",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@polkadot/util": "12.6.2"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/x-bigint": {
"version": "12.6.2",
"resolved": "https://registry.npmjs.org/@polkadot/x-bigint/-/x-bigint-12.6.2.tgz",
"integrity": "sha512-HSIk60uFPX4GOFZSnIF7VYJz7WZA7tpFJsne7SzxOooRwMTWEtw3fUpFy5cYYOeLh17/kHH1Y7SVcuxzVLc74Q==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/x-global": "12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/x-fetch": {
"version": "12.6.2",
"resolved": "https://registry.npmjs.org/@polkadot/x-fetch/-/x-fetch-12.6.2.tgz",
"integrity": "sha512-8wM/Z9JJPWN1pzSpU7XxTI1ldj/AfC8hKioBlUahZ8gUiJaOF7K9XEFCrCDLis/A1BoOu7Ne6WMx/vsJJIbDWw==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/x-global": "12.6.2",
"node-fetch": "^3.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/x-global": {
"version": "12.6.2",
"resolved": "https://registry.npmjs.org/@polkadot/x-global/-/x-global-12.6.2.tgz",
"integrity": "sha512-a8d6m+PW98jmsYDtAWp88qS4dl8DyqUBsd0S+WgyfSMtpEXu6v9nXDgPZgwF5xdDvXhm+P0ZfVkVTnIGrScb5g==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/x-randomvalues": {
"version": "12.6.2",
"resolved": "https://registry.npmjs.org/@polkadot/x-randomvalues/-/x-randomvalues-12.6.2.tgz",
"integrity": "sha512-Vr8uG7rH2IcNJwtyf5ebdODMcr0XjoCpUbI91Zv6AlKVYOGKZlKLYJHIwpTaKKB+7KPWyQrk4Mlym/rS7v9feg==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/x-global": "12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@polkadot/util": "12.6.2",
"@polkadot/wasm-util": "*"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/x-textdecoder": {
"version": "12.6.2",
"resolved": "https://registry.npmjs.org/@polkadot/x-textdecoder/-/x-textdecoder-12.6.2.tgz",
"integrity": "sha512-M1Bir7tYvNappfpFWXOJcnxUhBUFWkUFIdJSyH0zs5LmFtFdbKAeiDXxSp2Swp5ddOZdZgPac294/o2TnQKN1w==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/x-global": "12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/x-textencoder": {
"version": "12.6.2",
"resolved": "https://registry.npmjs.org/@polkadot/x-textencoder/-/x-textencoder-12.6.2.tgz",
"integrity": "sha512-4N+3UVCpI489tUJ6cv3uf0PjOHvgGp9Dl+SZRLgFGt9mvxnvpW/7+XBADRMtlG4xi5gaRK7bgl5bmY6OMDsNdw==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/x-global": "12.6.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@polkadot/x-ws": {
"version": "12.6.2",
"resolved": "https://registry.npmjs.org/@polkadot/x-ws/-/x-ws-12.6.2.tgz",
"integrity": "sha512-cGZWo7K5eRRQCRl2LrcyCYsrc3lRbTlixZh3AzgU8uX4wASVGRlNWi/Hf4TtHNe1ExCDmxabJzdIsABIfrr7xw==",
"license": "Apache-2.0",
"dependencies": {
"@polkadot/x-global": "12.6.2",
"tslib": "^2.6.2",
"ws": "^8.15.1"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@substrate/connect": {
"version": "0.8.11",
"resolved": "https://registry.npmjs.org/@substrate/connect/-/connect-0.8.11.tgz",
"integrity": "sha512-ofLs1PAO9AtDdPbdyTYj217Pe+lBfTLltdHDs3ds8no0BseoLeAGxpz1mHfi7zB4IxI3YyAiLjH6U8cw4pj4Nw==",
"deprecated": "versions below 1.x are no longer maintained",
"license": "GPL-3.0-only",
"dependencies": {
"@substrate/connect-extension-protocol": "^2.0.0",
"@substrate/connect-known-chains": "^1.1.5",
"@substrate/light-client-extension-helpers": "^1.0.0",
"smoldot": "2.0.26"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@substrate/connect/node_modules/@polkadot-api/json-rpc-provider-proxy": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/@polkadot-api/json-rpc-provider-proxy/-/json-rpc-provider-proxy-0.1.0.tgz",
"integrity": "sha512-8GSFE5+EF73MCuLQm8tjrbCqlgclcHBSRaswvXziJ0ZW7iw3UEMsKkkKvELayWyBuOPa2T5i1nj6gFOeIsqvrg==",
"license": "MIT"
},
"node_modules/@ideallabs/etf.js/node_modules/@substrate/connect/node_modules/@polkadot-api/observable-client": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/@polkadot-api/observable-client/-/observable-client-0.3.2.tgz",
"integrity": "sha512-HGgqWgEutVyOBXoGOPp4+IAq6CNdK/3MfQJmhCJb8YaJiaK4W6aRGrdQuQSTPHfERHCARt9BrOmEvTXAT257Ug==",
"license": "MIT",
"dependencies": {
"@polkadot-api/metadata-builders": "0.3.2",
"@polkadot-api/substrate-bindings": "0.6.0",
"@polkadot-api/utils": "0.1.0"
},
"peerDependencies": {
"@polkadot-api/substrate-client": "0.1.4",
"rxjs": ">=7.8.0"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@substrate/connect/node_modules/@polkadot-api/substrate-client": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/@polkadot-api/substrate-client/-/substrate-client-0.1.4.tgz",
"integrity": "sha512-MljrPobN0ZWTpn++da9vOvt+Ex+NlqTlr/XT7zi9sqPtDJiQcYl+d29hFAgpaeTqbeQKZwz3WDE9xcEfLE8c5A==",
"license": "MIT",
"dependencies": {
"@polkadot-api/json-rpc-provider": "0.0.1",
"@polkadot-api/utils": "0.1.0"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@substrate/connect/node_modules/@substrate/light-client-extension-helpers": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@substrate/light-client-extension-helpers/-/light-client-extension-helpers-1.0.0.tgz",
"integrity": "sha512-TdKlni1mBBZptOaeVrKnusMg/UBpWUORNDv5fdCaJklP4RJiFOzBCrzC+CyVI5kQzsXBisZ+2pXm+rIjS38kHg==",
"license": "MIT",
"dependencies": {
"@polkadot-api/json-rpc-provider": "^0.0.1",
"@polkadot-api/json-rpc-provider-proxy": "^0.1.0",
"@polkadot-api/observable-client": "^0.3.0",
"@polkadot-api/substrate-client": "^0.1.2",
"@substrate/connect-extension-protocol": "^2.0.0",
"@substrate/connect-known-chains": "^1.1.5",
"rxjs": "^7.8.1"
},
"peerDependencies": {
"smoldot": "2.x"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@substrate/connect/node_modules/smoldot": {
"version": "2.0.26",
"resolved": "https://registry.npmjs.org/smoldot/-/smoldot-2.0.26.tgz",
"integrity": "sha512-F+qYmH4z2s2FK+CxGj8moYcd1ekSIKH8ywkdqlOz88Dat35iB1DIYL11aILN46YSGMzQW/lbJNS307zBSDN5Ig==",
"license": "GPL-3.0-or-later WITH Classpath-exception-2.0",
"dependencies": {
"ws": "^8.8.1"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@substrate/light-client-extension-helpers": {
"version": "0.0.4",
"resolved": "https://registry.npmjs.org/@substrate/light-client-extension-helpers/-/light-client-extension-helpers-0.0.4.tgz",
"integrity": "sha512-vfKcigzL0SpiK+u9sX6dq2lQSDtuFLOxIJx2CKPouPEHIs8C+fpsufn52r19GQn+qDhU8POMPHOVoqLktj8UEA==",
"license": "MIT",
"optional": true,
"dependencies": {
"@polkadot-api/client": "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0",
"@polkadot-api/json-rpc-provider": "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0",
"@polkadot-api/json-rpc-provider-proxy": "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0",
"@polkadot-api/substrate-client": "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0",
"@substrate/connect-extension-protocol": "^2.0.0",
"@substrate/connect-known-chains": "^1.1.1",
"rxjs": "^7.8.1"
},
"peerDependencies": {
"smoldot": "2.x"
}
},
"node_modules/@ideallabs/etf.js/node_modules/@substrate/light-client-extension-helpers/node_modules/@polkadot-api/json-rpc-provider": {
"version": "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0",
"resolved": "https://registry.npmjs.org/@polkadot-api/json-rpc-provider/-/json-rpc-provider-0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0.tgz",
"integrity": "sha512-EaUS9Fc3wsiUr6ZS43PQqaRScW7kM6DYbuM/ou0aYjm8N9MBqgDbGm2oL6RE1vAVmOfEuHcXZuZkhzWtyvQUtA==",
"license": "MIT",
"optional": true
},
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
"dev": true,
"dependencies": {
"string-width": "^5.1.2",
"string-width-cjs": "npm:string-width@^4.2.0",
"strip-ansi": "^7.0.1",
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
"wrap-ansi": "^8.1.0",
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
"dev": true,
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dev": true,
"dependencies": {
"ansi-regex": "^6.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.5",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
"integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
"dev": true,
"dependencies": {
"@jridgewell/set-array": "^1.2.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
"dev": true,
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/set-array": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
"dev": true,
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.15",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
"dev": true
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.25",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
"dev": true,
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"node_modules/@next/env": {
"version": "14.2.15",
"resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.15.tgz",
"integrity": "sha512-S1qaj25Wru2dUpcIZMjxeMVSwkt8BK4dmWHHiBuRstcIyOsMapqT4A4jSB6onvqeygkSSmOkyny9VVx8JIGamQ=="
},
"node_modules/@next/eslint-plugin-next": {
"version": "14.2.15",
"resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.2.15.tgz",
"integrity": "sha512-pKU0iqKRBlFB/ocOI1Ip2CkKePZpYpnw5bEItEkuZ/Nr9FQP1+p7VDWr4VfOdff4i9bFmrOaeaU1bFEyAcxiMQ==",
"dev": true,
"dependencies": {
"glob": "10.3.10"
}
},
"node_modules/@next/swc-darwin-arm64": {
"version": "14.2.15",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.15.tgz",
"integrity": "sha512-Rvh7KU9hOUBnZ9TJ28n2Oa7dD9cvDBKua9IKx7cfQQ0GoYUwg9ig31O2oMwH3wm+pE3IkAQ67ZobPfEgurPZIA==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-darwin-x64": {
"version": "14.2.15",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.15.tgz",
"integrity": "sha512-5TGyjFcf8ampZP3e+FyCax5zFVHi+Oe7sZyaKOngsqyaNEpOgkKB3sqmymkZfowy3ufGA/tUgDPPxpQx931lHg==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-gnu": {
"version": "14.2.15",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.15.tgz",
"integrity": "sha512-3Bwv4oc08ONiQ3FiOLKT72Q+ndEMyLNsc/D3qnLMbtUYTQAmkx9E/JRu0DBpHxNddBmNT5hxz1mYBphJ3mfrrw==",
"cpu": [
"arm64"
],
"optional": true,