-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyarn.lock
5828 lines (5046 loc) · 239 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@altano/tiny-async-pool@^1.0.2":
"integrity" "sha512-qQzaI0TBUPdpjZ3qo5b2ziQY9MSNpbziH2ZrE5lvtUZL+kn9GwVuVJwoOubaoNkeDB+rqEefnpu1k+oMpOCYiw=="
"resolved" "https://registry.npmjs.org/@altano/tiny-async-pool/-/tiny-async-pool-1.0.2.tgz"
"version" "1.0.2"
"@ampproject/remapping@^2.1.0":
"integrity" "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"@jridgewell/gen-mapping" "^0.1.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@astrojs/compiler@^0.31.3":
"integrity" "sha512-6bBFeDTtPOn4jZaiD3p0f05MEGQL9pw2Zbfj546oFETNmjJFWO3nzHz6/m+P53calknCvyVzZ5YhoBLIvzn5iw=="
"resolved" "https://registry.npmjs.org/@astrojs/compiler/-/compiler-0.31.4.tgz"
"version" "0.31.4"
"@astrojs/compiler@^1.0.0", "@astrojs/compiler@^1.0.1", "@astrojs/compiler@^1.1.0", "@astrojs/compiler@>=0.27.0":
"integrity" "sha512-JRDEARnuUUOlKUE4XVu8+NoeNWpOHtYQW39uWjqTbpefMjL95og54vTKLHqeUajXWeY115zZtO7jIVdOmQ1IPQ=="
"resolved" "https://registry.npmjs.org/@astrojs/compiler/-/compiler-1.1.1.tgz"
"version" "1.1.1"
"@astrojs/image@^0.15.0":
"integrity" "sha512-Dw47TNCF1dkX3gM1jEmtov4aLR/N5XNzTyToRv99OJZmAAY7J19DN+FUaCHYj3gsiF9N5FekhgOeKu1v4A5DgA=="
"resolved" "https://registry.npmjs.org/@astrojs/image/-/image-0.15.0.tgz"
"version" "0.15.0"
dependencies:
"@altano/tiny-async-pool" "^1.0.2"
"http-cache-semantics" "^4.1.0"
"image-size" "^1.0.2"
"kleur" "^4.1.5"
"magic-string" "^0.27.0"
"mime" "^3.0.0"
"@astrojs/language-server@^0.28.3":
"integrity" "sha512-fPovAX/X46eE2w03jNRMpQ7W9m2mAvNt4Ay65lD9wl1Z5vIQYxlg7Enp9qP225muTr4jSVB5QiLumFJmZMAaVA=="
"resolved" "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.28.3.tgz"
"version" "0.28.3"
dependencies:
"@vscode/emmet-helper" "^2.8.4"
"events" "^3.3.0"
"prettier" "^2.7.1"
"prettier-plugin-astro" "^0.7.0"
"source-map" "^0.7.3"
"vscode-css-languageservice" "^6.0.1"
"vscode-html-languageservice" "^5.0.0"
"vscode-languageserver" "^8.0.1"
"vscode-languageserver-protocol" "^3.17.1"
"vscode-languageserver-textdocument" "^1.0.4"
"vscode-languageserver-types" "^3.17.1"
"vscode-uri" "^3.0.3"
"@astrojs/markdown-remark@^2.0.1":
"integrity" "sha512-xQF1rXGJN18m+zZucwRRtmNehuhPMMhZhi6HWKrtpEAKnHSPk8lqf1GXgKH7/Sypglu8ivdECZ+EGs6kOYVasQ=="
"resolved" "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"@astrojs/prism" "^2.0.0"
"github-slugger" "^1.4.0"
"import-meta-resolve" "^2.1.0"
"rehype-raw" "^6.1.1"
"rehype-stringify" "^9.0.3"
"remark-gfm" "^3.0.1"
"remark-parse" "^10.0.1"
"remark-rehype" "^10.1.0"
"remark-smartypants" "^2.0.0"
"shiki" "^0.11.1"
"unified" "^10.1.2"
"unist-util-visit" "^4.1.0"
"vfile" "^5.3.2"
"@astrojs/prism@^2.0.0":
"integrity" "sha512-YgeoeEPqsxaEpg0rwe/bUq3653LqSQnMjrLlpYwrbQQMQQqz6Y5yXN+RX3SfLJ6ppNb4+Fu2+Z49EXjk48Ihjw=="
"resolved" "https://registry.npmjs.org/@astrojs/prism/-/prism-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"prismjs" "^1.28.0"
"@astrojs/react@^2.0.2":
"integrity" "sha512-UmQNvzJul5M/Q9aZJXnqz4z0ODZXkLuaNvgsYoKB7OdM8c2v85FsTjMZZJ7BvFo4On31jJ0rL/gwTaCeuYqmpw=="
"resolved" "https://registry.npmjs.org/@astrojs/react/-/react-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"@babel/core" ">=7.0.0-0 <8.0.0"
"@babel/plugin-transform-react-jsx" "^7.17.12"
"@astrojs/sitemap@^1.0.1":
"integrity" "sha512-qexepZPH6/dLToI/njxr2FjvyxJU0HBAnQRNzEggF0ok811oSNC6su1DkyW2VKp0TNPbWoujuSbcb1yFOjnAqA=="
"resolved" "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"sitemap" "^7.1.1"
"zod" "^3.17.3"
"@astrojs/tailwind@^3.0.1":
"integrity" "sha512-QSYh/xmz454j1yZU9rjw2J24PpH7j3h2ClesqMaAniOtcuL8RfP7KYCnCrk01xvjwqqO+QBpZNDD/SUhHNtFFg=="
"resolved" "https://registry.npmjs.org/@astrojs/tailwind/-/tailwind-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"@proload/core" "^0.3.2"
"autoprefixer" "^10.4.7"
"postcss" "^8.4.14"
"postcss-load-config" "^4.0.1"
"@astrojs/telemetry@^2.0.0":
"integrity" "sha512-RnWojVMIsql3GGWDP5pNWmhmBQVkCpxGNZ8yPr2cbmUqsUYGSvErhqfkLfro9j2/STi5UDmSpNgjPkQmXpgnKw=="
"resolved" "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"ci-info" "^3.3.1"
"debug" "^4.3.4"
"dlv" "^1.1.3"
"dset" "^3.1.2"
"is-docker" "^3.0.0"
"is-wsl" "^2.2.0"
"undici" "^5.14.0"
"which-pm-runs" "^1.1.0"
"@astrojs/webapi@^2.0.0":
"integrity" "sha512-gziwy+XvY+/B9mq/eurgJMZ4iFnkcqg1wb0tA8BsVfiUPwl7yQKAFrBxrs2rWfKMXyWlVaTFc8rAYcB5VXQEuw=="
"resolved" "https://registry.npmjs.org/@astrojs/webapi/-/webapi-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"undici" "^5.14.0"
"@babel/code-frame@^7.18.6":
"integrity" "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/highlight" "^7.18.6"
"@babel/compat-data@^7.20.5":
"integrity" "sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.10.tgz"
"version" "7.20.10"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.18.2", "@babel/core@>=7.0.0-0 <8.0.0":
"integrity" "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz"
"version" "7.20.12"
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.20.7"
"@babel/helper-compilation-targets" "^7.20.7"
"@babel/helper-module-transforms" "^7.20.11"
"@babel/helpers" "^7.20.7"
"@babel/parser" "^7.20.7"
"@babel/template" "^7.20.7"
"@babel/traverse" "^7.20.12"
"@babel/types" "^7.20.7"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.2"
"semver" "^6.3.0"
"@babel/generator@^7.18.2", "@babel/generator@^7.20.7":
"integrity" "sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/types" "^7.20.7"
"@jridgewell/gen-mapping" "^0.3.2"
"jsesc" "^2.5.1"
"@babel/helper-annotate-as-pure@^7.18.6":
"integrity" "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA=="
"resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-compilation-targets@^7.20.7":
"integrity" "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/compat-data" "^7.20.5"
"@babel/helper-validator-option" "^7.18.6"
"browserslist" "^4.21.3"
"lru-cache" "^5.1.1"
"semver" "^6.3.0"
"@babel/helper-environment-visitor@^7.18.9":
"integrity" "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz"
"version" "7.18.9"
"@babel/helper-function-name@^7.19.0":
"integrity" "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz"
"version" "7.19.0"
dependencies:
"@babel/template" "^7.18.10"
"@babel/types" "^7.19.0"
"@babel/helper-hoist-variables@^7.18.6":
"integrity" "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-module-imports@^7.18.6":
"integrity" "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-module-transforms@^7.20.11":
"integrity" "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz"
"version" "7.20.11"
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-simple-access" "^7.20.2"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.19.1"
"@babel/template" "^7.20.7"
"@babel/traverse" "^7.20.10"
"@babel/types" "^7.20.7"
"@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2":
"integrity" "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz"
"version" "7.20.2"
"@babel/helper-simple-access@^7.20.2":
"integrity" "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz"
"version" "7.20.2"
dependencies:
"@babel/types" "^7.20.2"
"@babel/helper-split-export-declaration@^7.18.6":
"integrity" "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-string-parser@^7.19.4":
"integrity" "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz"
"version" "7.19.4"
"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
"integrity" "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"
"version" "7.19.1"
"@babel/helper-validator-option@^7.18.6":
"integrity" "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz"
"version" "7.18.6"
"@babel/helpers@^7.20.7":
"integrity" "sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/template" "^7.20.7"
"@babel/traverse" "^7.20.7"
"@babel/types" "^7.20.7"
"@babel/highlight@^7.18.6":
"integrity" "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-validator-identifier" "^7.18.6"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.18.4", "@babel/parser@^7.20.7":
"integrity" "sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.20.7.tgz"
"version" "7.20.7"
"@babel/plugin-syntax-jsx@^7.18.6":
"integrity" "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-react-jsx@^7.17.12":
"integrity" "sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-jsx" "^7.18.6"
"@babel/types" "^7.20.7"
"@babel/runtime@^7.19.4", "@babel/runtime@^7.20.13", "@babel/runtime@^7.20.6", "@babel/runtime@^7.20.7":
"integrity" "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz"
"version" "7.20.13"
dependencies:
"regenerator-runtime" "^0.13.11"
"@babel/template@^7.18.10", "@babel/template@^7.20.7":
"integrity" "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/code-frame" "^7.18.6"
"@babel/parser" "^7.20.7"
"@babel/types" "^7.20.7"
"@babel/traverse@^7.18.2", "@babel/traverse@^7.20.10", "@babel/traverse@^7.20.12", "@babel/traverse@^7.20.7":
"integrity" "sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.12.tgz"
"version" "7.20.12"
dependencies:
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.20.7"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/parser" "^7.20.7"
"@babel/types" "^7.20.7"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.18.4", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.3.0":
"integrity" "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/helper-string-parser" "^7.19.4"
"@babel/helper-validator-identifier" "^7.19.1"
"to-fast-properties" "^2.0.0"
"@emmetio/abbreviation@^2.2.3":
"integrity" "sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA=="
"resolved" "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.2.3.tgz"
"version" "2.2.3"
dependencies:
"@emmetio/scanner" "^1.0.0"
"@emmetio/css-abbreviation@^2.1.4":
"integrity" "sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw=="
"resolved" "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.4.tgz"
"version" "2.1.4"
dependencies:
"@emmetio/scanner" "^1.0.0"
"@emmetio/scanner@^1.0.0":
"integrity" "sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA=="
"resolved" "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.0.tgz"
"version" "1.0.0"
"@esbuild/darwin-x64@0.16.17":
"integrity" "sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg=="
"resolved" "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz"
"version" "0.16.17"
"@eslint/eslintrc@^1.4.1":
"integrity" "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz"
"version" "1.4.1"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
"espree" "^9.4.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"
"@fontsource/outfit@^4.5.11":
"integrity" "sha512-msPqJLLmSyWj/YtJknO75RjoTHIep6mDjnDO5IrZUJea31bO4s1QCuepG54LsmMXLKs+gp603nPM8/SUv5ZgSg=="
"resolved" "https://registry.npmjs.org/@fontsource/outfit/-/outfit-4.5.11.tgz"
"version" "4.5.11"
"@humanwhocodes/config-array@^0.11.8":
"integrity" "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz"
"version" "0.11.8"
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
"debug" "^4.1.1"
"minimatch" "^3.0.5"
"@humanwhocodes/module-importer@^1.0.1":
"integrity" "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
"version" "1.0.1"
"@humanwhocodes/object-schema@^1.2.1":
"integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
"@jridgewell/gen-mapping@^0.1.0":
"integrity" "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"
"version" "0.1.1"
dependencies:
"@jridgewell/set-array" "^1.0.0"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/gen-mapping@^0.3.2":
"integrity" "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"
"version" "0.3.2"
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/resolve-uri@3.1.0":
"integrity" "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
"version" "3.1.0"
"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
"integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
"version" "1.1.2"
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@1.4.14":
"integrity" "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
"version" "1.4.14"
"@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz"
"version" "0.3.17"
dependencies:
"@jridgewell/resolve-uri" "3.1.0"
"@jridgewell/sourcemap-codec" "1.4.14"
"@ljharb/has-package-exports-patterns@^0.0.2":
"integrity" "sha512-4/RWEeXDO6bocPONheFe6gX/oQdP/bEpv0oL4HqjPP5DCenBSt0mHgahppY49N0CpsaqffdwPq+TlX9CYOq2Dw=="
"resolved" "https://registry.npmjs.org/@ljharb/has-package-exports-patterns/-/has-package-exports-patterns-0.0.2.tgz"
"version" "0.0.2"
"@nanostores/react@^0.4.1":
"integrity" "sha512-lsv0CYrMxczbXtoV/mxFVEoL/uVjEjseoP89srO/5yNAOkJka+dSFS7LYyWEbuvCPO7EgbtkvRpO5V+OztKQOw=="
"resolved" "https://registry.npmjs.org/@nanostores/react/-/react-0.4.1.tgz"
"version" "0.4.1"
dependencies:
"use-sync-external-store" "^1.2.0"
"@noble/hashes@1.2.0":
"integrity" "sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ=="
"resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.2.0.tgz"
"version" "1.2.0"
"@noble/secp256k1@1.7.1":
"integrity" "sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw=="
"resolved" "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz"
"version" "1.7.1"
"@nodelib/fs.scandir@2.1.5":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@pkgr/utils@^2.3.1":
"integrity" "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw=="
"resolved" "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz"
"version" "2.3.1"
dependencies:
"cross-spawn" "^7.0.3"
"is-glob" "^4.0.3"
"open" "^8.4.0"
"picocolors" "^1.0.0"
"tiny-glob" "^0.2.9"
"tslib" "^2.4.0"
"@polkadot/api-augment@9.14.1":
"integrity" "sha512-wx9mrNTI3QmO3lfy34KN+TQUwEdgEZzDbZTH8Y+AiQx5hX34oAHTHcKbKoIEF9ENhXhmbNMiEERccH+0GC/1OQ=="
"resolved" "https://registry.npmjs.org/@polkadot/api-augment/-/api-augment-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/api-base" "9.14.1"
"@polkadot/rpc-augment" "9.14.1"
"@polkadot/types" "9.14.1"
"@polkadot/types-augment" "9.14.1"
"@polkadot/types-codec" "9.14.1"
"@polkadot/util" "^10.4.1"
"@polkadot/api-base@9.14.1":
"integrity" "sha512-bhVZEexTq7qMaq5OoTxjJZgHRA8OPY050tn741JSD5qP9cnZ1xX1H2SElmw3yIlA5juA34V+1gwhxxa4tkDOwA=="
"resolved" "https://registry.npmjs.org/@polkadot/api-base/-/api-base-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/rpc-core" "9.14.1"
"@polkadot/types" "9.14.1"
"@polkadot/util" "^10.4.1"
"rxjs" "^7.8.0"
"@polkadot/api-derive@9.14.1":
"integrity" "sha512-urDXH+LHTJHEn5eAT4dOQAGFi3MGa2OnZo0lRYeIkIis9Bl7+Lhh2YKmoL5iFR1BBpmNSL82nlVNjfI2m7oiKA=="
"resolved" "https://registry.npmjs.org/@polkadot/api-derive/-/api-derive-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/api" "9.14.1"
"@polkadot/api-augment" "9.14.1"
"@polkadot/api-base" "9.14.1"
"@polkadot/rpc-core" "9.14.1"
"@polkadot/types" "9.14.1"
"@polkadot/types-codec" "9.14.1"
"@polkadot/util" "^10.4.1"
"@polkadot/util-crypto" "^10.4.1"
"rxjs" "^7.8.0"
"@polkadot/api@*", "@polkadot/api@^9.14.1", "@polkadot/api@9.14.1":
"integrity" "sha512-7fQxH6cPOUTH6psEDkaskkgfD+R0CUL0vBYj0BD8e4yxWMsdz4lbuyBl8A6DOVjMD40ZU9HTL3GqQzud5dEdMw=="
"resolved" "https://registry.npmjs.org/@polkadot/api/-/api-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/api-augment" "9.14.1"
"@polkadot/api-base" "9.14.1"
"@polkadot/api-derive" "9.14.1"
"@polkadot/keyring" "^10.4.1"
"@polkadot/rpc-augment" "9.14.1"
"@polkadot/rpc-core" "9.14.1"
"@polkadot/rpc-provider" "9.14.1"
"@polkadot/types" "9.14.1"
"@polkadot/types-augment" "9.14.1"
"@polkadot/types-codec" "9.14.1"
"@polkadot/types-create" "9.14.1"
"@polkadot/types-known" "9.14.1"
"@polkadot/util" "^10.4.1"
"@polkadot/util-crypto" "^10.4.1"
"eventemitter3" "^5.0.0"
"rxjs" "^7.8.0"
"@polkadot/extension-dapp@^0.44.8":
"integrity" "sha512-CaGrY+Vh9u2ABPpLsbMEVQniQDKreBWEmtp0RzfmIbed8lmmOgwtfDZjb7ncTNR79WJX+1AD+VX5dKQtvT3S4w=="
"resolved" "https://registry.npmjs.org/@polkadot/extension-dapp/-/extension-dapp-0.44.8.tgz"
"version" "0.44.8"
dependencies:
"@babel/runtime" "^7.20.7"
"@polkadot/extension-inject" "^0.44.8"
"@polkadot/util" "^10.2.3"
"@polkadot/util-crypto" "^10.2.3"
"@polkadot/extension-inject@^0.44.8":
"integrity" "sha512-srBjCgOMUuQTCvU2Mu6hPHEmrxqJb+DImh8lHy79bpz4IoTATepuJGdeDONUiLS4KFhUstFSxkVsbL/4YSEVng=="
"resolved" "https://registry.npmjs.org/@polkadot/extension-inject/-/extension-inject-0.44.8.tgz"
"version" "0.44.8"
dependencies:
"@babel/runtime" "^7.20.7"
"@polkadot/rpc-provider" "^9.11.1"
"@polkadot/types" "^9.11.1"
"@polkadot/util" "^10.2.3"
"@polkadot/util-crypto" "^10.2.3"
"@polkadot/x-global" "^10.2.3"
"@polkadot/keyring@^10.4.1":
"integrity" "sha512-urTl0ReOr1A1b2kSF6QnGlVc2IcJpDnTacxwA4kIVn45p4Kysi19ek7odSdLA5yNcDZSB+/4uITZQ6meClS71Q=="
"resolved" "https://registry.npmjs.org/@polkadot/keyring/-/keyring-10.4.1.tgz"
"version" "10.4.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/util" "10.4.1"
"@polkadot/util-crypto" "10.4.1"
"@polkadot/networks@^10.4.1", "@polkadot/networks@10.4.1":
"integrity" "sha512-kmSy8iAnYKNWXZBv7bTfI10cSLJzOrFFEdngzohHMjDOG5FKoaX3Pix6MUkcWc2asX0hCyACtNTlcp+MBnS9eQ=="
"resolved" "https://registry.npmjs.org/@polkadot/networks/-/networks-10.4.1.tgz"
"version" "10.4.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/util" "10.4.1"
"@substrate/ss58-registry" "^1.38.0"
"@polkadot/rpc-augment@9.14.1":
"integrity" "sha512-F7pP7YzSrQKDE6LFpfcGIsr1/XLLFwwuIeqyT1nBP9KN9FzykvrDdWaxM0TJqNEf27EFkd3HXeWbGISTPLje0A=="
"resolved" "https://registry.npmjs.org/@polkadot/rpc-augment/-/rpc-augment-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/rpc-core" "9.14.1"
"@polkadot/types" "9.14.1"
"@polkadot/types-codec" "9.14.1"
"@polkadot/util" "^10.4.1"
"@polkadot/rpc-core@9.14.1":
"integrity" "sha512-OxbzpDFTvJsHfCbs8DjZJxCyWVeroHUqFwQaQsVQwpbfmSfKf/WxaDTvVGqPw50dfOfCQd9RSndR+52LWQpp2Q=="
"resolved" "https://registry.npmjs.org/@polkadot/rpc-core/-/rpc-core-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/rpc-augment" "9.14.1"
"@polkadot/rpc-provider" "9.14.1"
"@polkadot/types" "9.14.1"
"@polkadot/util" "^10.4.1"
"rxjs" "^7.8.0"
"@polkadot/rpc-provider@^9.11.1", "@polkadot/rpc-provider@9.14.1":
"integrity" "sha512-29EnMJ+7F/62Cdrw92iWvhl+misIeYpX4+a5wZZggBpVb6SSIjj26TzqxxFRG6McZLx/Bh2dKkcFC8qbwINdLw=="
"resolved" "https://registry.npmjs.org/@polkadot/rpc-provider/-/rpc-provider-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/keyring" "^10.4.1"
"@polkadot/types" "9.14.1"
"@polkadot/types-support" "9.14.1"
"@polkadot/util" "^10.4.1"
"@polkadot/util-crypto" "^10.4.1"
"@polkadot/x-fetch" "^10.4.1"
"@polkadot/x-global" "^10.4.1"
"@polkadot/x-ws" "^10.4.1"
"eventemitter3" "^5.0.0"
"mock-socket" "^9.2.0"
"nock" "^13.3.0"
optionalDependencies:
"@substrate/connect" "0.7.19"
"@polkadot/types-augment@9.14.1":
"integrity" "sha512-/jNdIdfVtnVkO+mXzqvTSDxNMmsSXc434m4dmyVIazCQ8DD/EreA9myHHqQUOGUh+NDXxkhV0RpTmRCx07d0+g=="
"resolved" "https://registry.npmjs.org/@polkadot/types-augment/-/types-augment-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/types" "9.14.1"
"@polkadot/types-codec" "9.14.1"
"@polkadot/util" "^10.4.1"
"@polkadot/types-codec@9.14.1":
"integrity" "sha512-sKas3MD9RTa9EfY7qNdimv5/VktZR/ecK9VcHEKXQt2H4SDUn5afOUjfrhELuKmjEWnhQqzSfp0nCnds2el0SA=="
"resolved" "https://registry.npmjs.org/@polkadot/types-codec/-/types-codec-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/util" "^10.4.1"
"@polkadot/x-bigint" "^10.4.1"
"@polkadot/types-create@9.14.1":
"integrity" "sha512-Sw7srNZ+3xx/8uWR0wWX2gWGue6GBojZMZkeHVURdF2RNVoYRQB/UQIRFEg7ehjSkBWikVT+Z3a0mntBYATZgA=="
"resolved" "https://registry.npmjs.org/@polkadot/types-create/-/types-create-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/types-codec" "9.14.1"
"@polkadot/util" "^10.4.1"
"@polkadot/types-known@9.14.1":
"integrity" "sha512-fF3pKNtie0TxPSYE1MZHu/xKVGCqYLqcdMs/GAvD2+spwSMVAfyefwNB1Yv2FKz3OSUj4OBLnCZT2fmm4HsHnA=="
"resolved" "https://registry.npmjs.org/@polkadot/types-known/-/types-known-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/networks" "^10.4.1"
"@polkadot/types" "9.14.1"
"@polkadot/types-codec" "9.14.1"
"@polkadot/types-create" "9.14.1"
"@polkadot/util" "^10.4.1"
"@polkadot/types-support@9.14.1":
"integrity" "sha512-kjZ8wwyYucWwobrZLxK9v0mkhUZiorFEVHp4QphaKnX9PPaTWxYW68AVlHZdIXmy88k4sl4qDGgthXH3I/04CA=="
"resolved" "https://registry.npmjs.org/@polkadot/types-support/-/types-support-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/util" "^10.4.1"
"@polkadot/types@^9.11.1", "@polkadot/types@9.14.1":
"integrity" "sha512-aFhXTcRbDvj0NulJ0utPNZveyP/vFr+CoLssAEZC8jL+kM0Q80zV2vF8RvWAXFPd46i+JWPSy2ELjpwI/3BqXw=="
"resolved" "https://registry.npmjs.org/@polkadot/types/-/types-9.14.1.tgz"
"version" "9.14.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/keyring" "^10.4.1"
"@polkadot/types-augment" "9.14.1"
"@polkadot/types-codec" "9.14.1"
"@polkadot/types-create" "9.14.1"
"@polkadot/util" "^10.4.1"
"@polkadot/util-crypto" "^10.4.1"
"rxjs" "^7.8.0"
"@polkadot/util-crypto@^10.2.3", "@polkadot/util-crypto@^10.4.1", "@polkadot/util-crypto@10.4.1":
"integrity" "sha512-29vOZLZJl5mNb8lHd2NwP51O7kEV1QOitBX7UsBw66nJOPZQ0imPFPJFGuI6ySPUuck1Lu4vBTC76nE5xpzjAQ=="
"resolved" "https://registry.npmjs.org/@polkadot/util-crypto/-/util-crypto-10.4.1.tgz"
"version" "10.4.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@noble/hashes" "1.2.0"
"@noble/secp256k1" "1.7.1"
"@polkadot/networks" "10.4.1"
"@polkadot/util" "10.4.1"
"@polkadot/wasm-crypto" "^6.4.1"
"@polkadot/x-bigint" "10.4.1"
"@polkadot/x-randomvalues" "10.4.1"
"@scure/base" "1.1.1"
"ed2curve" "^0.3.0"
"tweetnacl" "^1.0.3"
"@polkadot/util@*", "@polkadot/util@^10.2.3", "@polkadot/util@^10.4.1", "@polkadot/util@10.4.1":
"integrity" "sha512-dOlmue4nhbk8msbs/YgoBqVtUzDx5iqhiDnC62GWC8b+JmIlIM4Ddgg1rhBf1KJ6TfEQrzQA0FwLaqCCH5vYmA=="
"resolved" "https://registry.npmjs.org/@polkadot/util/-/util-10.4.1.tgz"
"version" "10.4.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/x-bigint" "10.4.1"
"@polkadot/x-global" "10.4.1"
"@polkadot/x-textdecoder" "10.4.1"
"@polkadot/x-textencoder" "10.4.1"
"@types/bn.js" "^5.1.1"
"bn.js" "^5.2.1"
"@polkadot/wasm-bridge@6.4.1":
"integrity" "sha512-QZDvz6dsUlbYsaMV5biZgZWkYH9BC5AfhT0f0/knv8+LrbAoQdP3Asbvddw8vyU9sbpuCHXrd4bDLBwUCRfrBQ=="
"resolved" "https://registry.npmjs.org/@polkadot/wasm-bridge/-/wasm-bridge-6.4.1.tgz"
"version" "6.4.1"
dependencies:
"@babel/runtime" "^7.20.6"
"@polkadot/wasm-crypto-asmjs@6.4.1":
"integrity" "sha512-UxZTwuBZlnODGIQdCsE2Sn/jU0O2xrNQ/TkhRFELfkZXEXTNu4lw6NpaKq7Iey4L+wKd8h4lT3VPVkMcPBLOvA=="
"resolved" "https://registry.npmjs.org/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.4.1.tgz"
"version" "6.4.1"
dependencies:
"@babel/runtime" "^7.20.6"
"@polkadot/wasm-crypto-init@6.4.1":
"integrity" "sha512-1ALagSi/nfkyFaH6JDYfy/QbicVbSn99K8PV9rctDUfxc7P06R7CoqbjGQ4OMPX6w1WYVPU7B4jPHGLYBlVuMw=="
"resolved" "https://registry.npmjs.org/@polkadot/wasm-crypto-init/-/wasm-crypto-init-6.4.1.tgz"
"version" "6.4.1"
dependencies:
"@babel/runtime" "^7.20.6"
"@polkadot/wasm-bridge" "6.4.1"
"@polkadot/wasm-crypto-asmjs" "6.4.1"
"@polkadot/wasm-crypto-wasm" "6.4.1"
"@polkadot/wasm-crypto-wasm@6.4.1":
"integrity" "sha512-3VV9ZGzh0ZY3SmkkSw+0TRXxIpiO0nB8lFwlRgcwaCihwrvLfRnH9GI8WE12mKsHVjWTEVR3ogzILJxccAUjDA=="
"resolved" "https://registry.npmjs.org/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.4.1.tgz"
"version" "6.4.1"
dependencies:
"@babel/runtime" "^7.20.6"
"@polkadot/wasm-util" "6.4.1"
"@polkadot/wasm-crypto@^6.4.1":
"integrity" "sha512-FH+dcDPdhSLJvwL0pMLtn/LIPd62QDPODZRCmDyw+pFjLOMaRBc7raomWUOqyRWJTnqVf/iscc2rLVLNMyt7ag=="
"resolved" "https://registry.npmjs.org/@polkadot/wasm-crypto/-/wasm-crypto-6.4.1.tgz"
"version" "6.4.1"
dependencies:
"@babel/runtime" "^7.20.6"
"@polkadot/wasm-bridge" "6.4.1"
"@polkadot/wasm-crypto-asmjs" "6.4.1"
"@polkadot/wasm-crypto-init" "6.4.1"
"@polkadot/wasm-crypto-wasm" "6.4.1"
"@polkadot/wasm-util" "6.4.1"
"@polkadot/wasm-util@6.4.1":
"integrity" "sha512-Uwo+WpEsDmFExWC5kTNvsVhvqXMZEKf4gUHXFn4c6Xz4lmieRT5g+1bO1KJ21pl4msuIgdV3Bksfs/oiqMFqlw=="
"resolved" "https://registry.npmjs.org/@polkadot/wasm-util/-/wasm-util-6.4.1.tgz"
"version" "6.4.1"
dependencies:
"@babel/runtime" "^7.20.6"
"@polkadot/x-bigint@^10.4.1", "@polkadot/x-bigint@10.4.1":
"integrity" "sha512-CpTGPwNUDrJcrnfDU/94mfZ16TZoTwWAwTLH0oMUJtrM2mHo+LtWZBlCTG+thhkcGcSRy/rrpzx4ffNsj5Sy1w=="
"resolved" "https://registry.npmjs.org/@polkadot/x-bigint/-/x-bigint-10.4.1.tgz"
"version" "10.4.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/x-global" "10.4.1"
"@polkadot/x-fetch@^10.4.1":
"integrity" "sha512-9LDskIW74Iz5Nen6p9xhVw1D6Z3r/K5buchZW2DERKCA3gZ98wUkTnpHDcwEyLGw0Lvq+1Trvm/txaEMWjUT6w=="
"resolved" "https://registry.npmjs.org/@polkadot/x-fetch/-/x-fetch-10.4.1.tgz"
"version" "10.4.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/x-global" "10.4.1"
"@types/node-fetch" "^2.6.2"
"node-fetch" "^3.3.0"
"@polkadot/x-global@^10.2.3", "@polkadot/x-global@^10.4.1", "@polkadot/x-global@10.4.1":
"integrity" "sha512-Kdh2Fzl1fpEwU6vL1HMaXJy+fadX79eSy4VAnIx/uyCF3H5Z4WaxzoiNVmHdDZSVaamqtbuKepi1nkE3q1nvlA=="
"resolved" "https://registry.npmjs.org/@polkadot/x-global/-/x-global-10.4.1.tgz"
"version" "10.4.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/x-randomvalues@*", "@polkadot/x-randomvalues@10.4.1":
"integrity" "sha512-dB4OGOiBbJbNQV040Ggh2CujSXtVe9bxXn1g5LuJEw1iioeraoduJ6yEYmh0olfaQjCUXnyWLr8uCPtPpfJ9uQ=="
"resolved" "https://registry.npmjs.org/@polkadot/x-randomvalues/-/x-randomvalues-10.4.1.tgz"
"version" "10.4.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/x-global" "10.4.1"
"@polkadot/x-textdecoder@10.4.1":
"integrity" "sha512-OcAL0napRM4hukgvH6kYGdiczqvbkFYoLBgQFalZChktjL1tDNiF6tzzt4Nn8WQXYYFlfyxp5LoZRtNrcFJq4w=="
"resolved" "https://registry.npmjs.org/@polkadot/x-textdecoder/-/x-textdecoder-10.4.1.tgz"
"version" "10.4.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/x-global" "10.4.1"
"@polkadot/x-textencoder@10.4.1":
"integrity" "sha512-YBS04HV/QgRppt0XC5n48c89ueH3ErivrcmqFTlkKMcXNzvtpMCTZGCTzG5vU8ozP0tl/4Is5N8agmYHLMu1Cg=="
"resolved" "https://registry.npmjs.org/@polkadot/x-textencoder/-/x-textencoder-10.4.1.tgz"
"version" "10.4.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/x-global" "10.4.1"
"@polkadot/x-ws@^10.4.1":
"integrity" "sha512-acS2kAAvFOrGo5gVLuOY4DKRschGafvruh491O7jE5r7QbZUNG1Q948g6TA/67I4g8N0k096DYFryID4OK9Ufg=="
"resolved" "https://registry.npmjs.org/@polkadot/x-ws/-/x-ws-10.4.1.tgz"
"version" "10.4.1"
dependencies:
"@babel/runtime" "^7.20.13"
"@polkadot/x-global" "10.4.1"
"@types/websocket" "^1.0.5"
"websocket" "^1.0.34"
"@proload/core@^0.3.2", "@proload/core@^0.3.3":
"integrity" "sha512-7dAFWsIK84C90AMl24+N/ProHKm4iw0akcnoKjRvbfHifJZBLhaDsDus1QJmhG12lXj4e/uB/8mB/0aduCW+NQ=="
"resolved" "https://registry.npmjs.org/@proload/core/-/core-0.3.3.tgz"
"version" "0.3.3"
dependencies:
"deepmerge" "^4.2.2"
"escalade" "^3.1.1"
"@proload/plugin-tsm@^0.2.1":
"integrity" "sha512-Ex1sL2BxU+g8MHdAdq9SZKz+pU34o8Zcl9PHWo2WaG9hrnlZme607PU6gnpoAYsDBpHX327+eu60wWUk+d/b+A=="
"resolved" "https://registry.npmjs.org/@proload/plugin-tsm/-/plugin-tsm-0.2.1.tgz"
"version" "0.2.1"
dependencies:
"tsm" "^2.1.4"
"@scure/base@1.1.1":
"integrity" "sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA=="
"resolved" "https://registry.npmjs.org/@scure/base/-/base-1.1.1.tgz"
"version" "1.1.1"
"@substrate/connect-extension-protocol@^1.0.1":
"integrity" "sha512-161JhCC1csjH3GE5mPLEd7HbWtwNSPJBg3p1Ksz9SFlTzj/bgEwudiRN2y5i0MoLGCIJRYKyKGMxVnd29PzNjg=="
"resolved" "https://registry.npmjs.org/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.1.tgz"
"version" "1.0.1"
"@substrate/connect@0.7.19":
"integrity" "sha512-+DDRadc466gCmDU71sHrYOt1HcI2Cbhm7zdCFjZfFVHXhC/E8tOdrVSglAH2HDEHR0x2SiHRxtxOGC7ak2Zjog=="
"resolved" "https://registry.npmjs.org/@substrate/connect/-/connect-0.7.19.tgz"
"version" "0.7.19"
dependencies:
"@substrate/connect-extension-protocol" "^1.0.1"
"@substrate/smoldot-light" "0.7.9"
"eventemitter3" "^4.0.7"
"@substrate/smoldot-light@0.7.9":
"integrity" "sha512-HP8iP7sFYlpSgjjbo0lqHyU+gu9lL2hbDNce6dWk5/10mFFF9jKIFGfui4zCecUY808o/Go9pan/31kMJoLbug=="
"resolved" "https://registry.npmjs.org/@substrate/smoldot-light/-/smoldot-light-0.7.9.tgz"
"version" "0.7.9"
dependencies:
"pako" "^2.0.4"
"ws" "^8.8.1"
"@substrate/ss58-registry@^1.38.0":
"integrity" "sha512-sHiVRWekGMRZAjPukN9/W166NM6D5wtHcK6RVyLy66kg3CHNZ1BXfpXcjOiXSwhbd7guQFDEwnOVaDrbk1XL1g=="
"resolved" "https://registry.npmjs.org/@substrate/ss58-registry/-/ss58-registry-1.38.0.tgz"
"version" "1.38.0"
"@trysound/sax@0.2.0":
"integrity" "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="
"resolved" "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz"
"version" "0.2.0"
"@types/babel__core@^7.1.19":
"integrity" "sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ=="
"resolved" "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.20.tgz"
"version" "7.1.20"
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__generator" "*"
"@types/babel__template" "*"
"@types/babel__traverse" "*"
"@types/babel__generator@*":
"integrity" "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg=="
"resolved" "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz"
"version" "7.6.4"
dependencies:
"@babel/types" "^7.0.0"
"@types/babel__template@*":
"integrity" "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="
"resolved" "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz"
"version" "7.4.1"
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__traverse@*":
"integrity" "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w=="
"resolved" "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz"
"version" "7.18.3"
dependencies:
"@babel/types" "^7.3.0"
"@types/bn.js@^5.1.1":
"integrity" "sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g=="
"resolved" "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz"
"version" "5.1.1"
dependencies:
"@types/node" "*"
"@types/debug@^4.0.0":
"integrity" "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg=="
"resolved" "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz"
"version" "4.1.7"
dependencies:
"@types/ms" "*"
"@types/hast@^2.0.0":
"integrity" "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g=="
"resolved" "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz"
"version" "2.3.4"
dependencies:
"@types/unist" "*"
"@types/json-schema@^7.0.9":
"integrity" "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="
"resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz"
"version" "7.0.11"
"@types/json5@^0.0.30":
"integrity" "sha512-sqm9g7mHlPY/43fcSNrCYfOeX9zkTTK+euO5E6+CVijSMm5tTjkVdwdqRkY3ljjIAf8679vps5jKUoJBCLsMDA=="
"resolved" "https://registry.npmjs.org/@types/json5/-/json5-0.0.30.tgz"
"version" "0.0.30"
"@types/luxon@^3.2.0":
"integrity" "sha512-lGmaGFoaXHuOLXFvuju2bfvZRqxAqkHPx9Y9IQdQABrinJJshJwfNCKV+u7rR3kJbiqfTF/NhOkcxxAFrObyaA=="
"resolved" "https://registry.npmjs.org/@types/luxon/-/luxon-3.2.0.tgz"
"version" "3.2.0"
"@types/mdast@^3.0.0":
"integrity" "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA=="
"resolved" "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz"
"version" "3.0.10"
dependencies:
"@types/unist" "*"
"@types/ms@*":
"integrity" "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA=="
"resolved" "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz"
"version" "0.7.31"
"@types/nlcst@^1.0.0":
"integrity" "sha512-3TGCfOcy8R8mMQ4CNSNOe3PG66HttvjcLzCoOpvXvDtfWOTi+uT/rxeOKm/qEwbM4SNe1O/PjdiBK2YcTjU4OQ=="
"resolved" "https://registry.npmjs.org/@types/nlcst/-/nlcst-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"@types/unist" "*"
"@types/node-fetch@^2.6.2":
"integrity" "sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A=="
"resolved" "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz"
"version" "2.6.2"
dependencies:
"@types/node" "*"
"form-data" "^3.0.0"