-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyarn.lock
2162 lines (1883 loc) · 88.3 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
"@ampproject/remapping@^2.2.0":
"integrity" "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.24"
"@babel/code-frame@^7.24.6":
"integrity" "sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/highlight" "^7.24.6"
"picocolors" "^1.0.0"
"@babel/compat-data@^7.24.6":
"integrity" "sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.6.tgz"
"version" "7.24.6"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.24.5":
"integrity" "sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.24.6"
"@babel/generator" "^7.24.6"
"@babel/helper-compilation-targets" "^7.24.6"
"@babel/helper-module-transforms" "^7.24.6"
"@babel/helpers" "^7.24.6"
"@babel/parser" "^7.24.6"
"@babel/template" "^7.24.6"
"@babel/traverse" "^7.24.6"
"@babel/types" "^7.24.6"
"convert-source-map" "^2.0.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.3"
"semver" "^6.3.1"
"@babel/generator@^7.24.6":
"integrity" "sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.25"
"jsesc" "^2.5.1"
"@babel/helper-compilation-targets@^7.24.6":
"integrity" "sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/compat-data" "^7.24.6"
"@babel/helper-validator-option" "^7.24.6"
"browserslist" "^4.22.2"
"lru-cache" "^5.1.1"
"semver" "^6.3.1"
"@babel/helper-environment-visitor@^7.24.6":
"integrity" "sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.6.tgz"
"version" "7.24.6"
"@babel/helper-function-name@^7.24.6":
"integrity" "sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/template" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/helper-hoist-variables@^7.24.6":
"integrity" "sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-module-imports@^7.24.6":
"integrity" "sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-module-transforms@^7.24.6":
"integrity" "sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-module-imports" "^7.24.6"
"@babel/helper-simple-access" "^7.24.6"
"@babel/helper-split-export-declaration" "^7.24.6"
"@babel/helper-validator-identifier" "^7.24.6"
"@babel/helper-plugin-utils@^7.24.6":
"integrity" "sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.6.tgz"
"version" "7.24.6"
"@babel/helper-simple-access@^7.24.6":
"integrity" "sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-split-export-declaration@^7.24.6":
"integrity" "sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-string-parser@^7.24.6":
"integrity" "sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.6.tgz"
"version" "7.24.6"
"@babel/helper-validator-identifier@^7.24.6":
"integrity" "sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.6.tgz"
"version" "7.24.6"
"@babel/helper-validator-option@^7.24.6":
"integrity" "sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.6.tgz"
"version" "7.24.6"
"@babel/helpers@^7.24.6":
"integrity" "sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/template" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/highlight@^7.24.6":
"integrity" "sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-validator-identifier" "^7.24.6"
"chalk" "^2.4.2"
"js-tokens" "^4.0.0"
"picocolors" "^1.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.20.7", "@babel/parser@^7.24.6":
"integrity" "sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.24.6.tgz"
"version" "7.24.6"
"@babel/plugin-transform-react-jsx-self@^7.24.5":
"integrity" "sha512-FfZfHXtQ5jYPQsCRyLpOv2GeLIIJhs8aydpNh39vRDjhD411XcfWDni5i7OjP/Rs8GAtTn7sWFFELJSHqkIxYg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-react-jsx-source@^7.24.1":
"integrity" "sha512-BQTBCXmFRreU3oTUXcGKuPOfXAGb1liNY4AvvFKsOBAJ89RKcTsIrSsnMYkj59fNa66OFKnSa4AJZfy5Y4B9WA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/template@^7.24.6":
"integrity" "sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/code-frame" "^7.24.6"
"@babel/parser" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/traverse@^7.24.6":
"integrity" "sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/code-frame" "^7.24.6"
"@babel/generator" "^7.24.6"
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-function-name" "^7.24.6"
"@babel/helper-hoist-variables" "^7.24.6"
"@babel/helper-split-export-declaration" "^7.24.6"
"@babel/parser" "^7.24.6"
"@babel/types" "^7.24.6"
"debug" "^4.3.1"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.24.6":
"integrity" "sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.24.6.tgz"
"version" "7.24.6"
dependencies:
"@babel/helper-string-parser" "^7.24.6"
"@babel/helper-validator-identifier" "^7.24.6"
"to-fast-properties" "^2.0.0"
"@esbuild/[email protected]":
"integrity" "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw=="
"resolved" "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz"
"version" "0.20.2"
"@eslint-community/eslint-utils@^4.2.0":
"integrity" "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA=="
"resolved" "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"eslint-visitor-keys" "^3.3.0"
"@eslint-community/regexpp@^4.6.1":
"integrity" "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA=="
"resolved" "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz"
"version" "4.10.0"
"@eslint/eslintrc@^2.1.4":
"integrity" "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz"
"version" "2.1.4"
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"
"@eslint/[email protected]":
"integrity" "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g=="
"resolved" "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz"
"version" "8.57.0"
"@humanwhocodes/config-array@^0.11.14":
"integrity" "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz"
"version" "0.11.14"
dependencies:
"@humanwhocodes/object-schema" "^2.0.2"
"debug" "^4.3.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@^2.0.2":
"integrity" "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz"
"version" "2.0.3"
"@jridgewell/gen-mapping@^0.3.5":
"integrity" "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz"
"version" "0.3.5"
dependencies:
"@jridgewell/set-array" "^1.2.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.24"
"@jridgewell/resolve-uri@^3.1.0":
"integrity" "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz"
"version" "3.1.2"
"@jridgewell/set-array@^1.2.1":
"integrity" "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz"
"version" "1.2.1"
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
"integrity" "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
"version" "1.4.15"
"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
"integrity" "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz"
"version" "0.3.25"
dependencies:
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
"@nodelib/[email protected]":
"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/[email protected]":
"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.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"
"@rollup/[email protected]":
"integrity" "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w=="
"resolved" "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.0.tgz"
"version" "4.18.0"
"@rollup/[email protected]":
"integrity" "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg=="
"resolved" "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.0.tgz"
"version" "4.18.0"
"@types/babel__core@^7.20.5":
"integrity" "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA=="
"resolved" "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz"
"version" "7.20.5"
dependencies:
"@babel/parser" "^7.20.7"
"@babel/types" "^7.20.7"
"@types/babel__generator" "*"
"@types/babel__template" "*"
"@types/babel__traverse" "*"
"@types/babel__generator@*":
"integrity" "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw=="
"resolved" "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz"
"version" "7.6.8"
dependencies:
"@babel/types" "^7.0.0"
"@types/babel__template@*":
"integrity" "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A=="
"resolved" "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz"
"version" "7.4.4"
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__traverse@*":
"integrity" "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg=="
"resolved" "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz"
"version" "7.20.6"
dependencies:
"@babel/types" "^7.20.7"
"@types/[email protected]":
"integrity" "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw=="
"resolved" "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz"
"version" "1.0.5"
"@types/prop-types@*":
"integrity" "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q=="
"resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz"
"version" "15.7.12"
"@types/react-dom@^18.2.22":
"integrity" "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg=="
"resolved" "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz"
"version" "18.3.0"
dependencies:
"@types/react" "*"
"@types/react@*", "@types/react@^18.2.66":
"integrity" "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz"
"version" "18.3.3"
dependencies:
"@types/prop-types" "*"
"csstype" "^3.0.2"
"@ungap/structured-clone@^1.2.0":
"integrity" "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ=="
"resolved" "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz"
"version" "1.2.0"
"@vitejs/plugin-react@^4.2.1":
"integrity" "sha512-KcEbMsn4Dpk+LIbHMj7gDPRKaTMStxxWRkRmxsg/jVdFdJCZWt1SchZcf0M4t8lIKdwwMsEyzhrcOXRrDPtOBw=="
"resolved" "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"@babel/core" "^7.24.5"
"@babel/plugin-transform-react-jsx-self" "^7.24.5"
"@babel/plugin-transform-react-jsx-source" "^7.24.1"
"@types/babel__core" "^7.20.5"
"react-refresh" "^0.14.2"
"acorn-jsx@^5.3.2":
"integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="
"resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
"version" "5.3.2"
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^8.9.0":
"integrity" "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz"
"version" "8.11.3"
"ajv@^6.12.4":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"argparse@^2.0.1":
"integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
"version" "2.0.1"
"array-buffer-byte-length@^1.0.1":
"integrity" "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg=="
"resolved" "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"call-bind" "^1.0.5"
"is-array-buffer" "^3.0.4"
"array-includes@^3.1.6", "array-includes@^3.1.8":
"integrity" "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ=="
"resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz"
"version" "3.1.8"
dependencies:
"call-bind" "^1.0.7"
"define-properties" "^1.2.1"
"es-abstract" "^1.23.2"
"es-object-atoms" "^1.0.0"
"get-intrinsic" "^1.2.4"
"is-string" "^1.0.7"
"array.prototype.findlast@^1.2.5":
"integrity" "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ=="
"resolved" "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz"
"version" "1.2.5"
dependencies:
"call-bind" "^1.0.7"
"define-properties" "^1.2.1"
"es-abstract" "^1.23.2"
"es-errors" "^1.3.0"
"es-object-atoms" "^1.0.0"
"es-shim-unscopables" "^1.0.2"
"array.prototype.flat@^1.3.1":
"integrity" "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA=="
"resolved" "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.2.0"
"es-abstract" "^1.22.1"
"es-shim-unscopables" "^1.0.0"
"array.prototype.flatmap@^1.3.2":
"integrity" "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ=="
"resolved" "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.2.0"
"es-abstract" "^1.22.1"
"es-shim-unscopables" "^1.0.0"
"array.prototype.toreversed@^1.1.2":
"integrity" "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA=="
"resolved" "https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.2.0"
"es-abstract" "^1.22.1"
"es-shim-unscopables" "^1.0.0"
"array.prototype.tosorted@^1.1.3":
"integrity" "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg=="
"resolved" "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"call-bind" "^1.0.5"
"define-properties" "^1.2.1"
"es-abstract" "^1.22.3"
"es-errors" "^1.1.0"
"es-shim-unscopables" "^1.0.2"
"arraybuffer.prototype.slice@^1.0.3":
"integrity" "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A=="
"resolved" "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"array-buffer-byte-length" "^1.0.1"
"call-bind" "^1.0.5"
"define-properties" "^1.2.1"
"es-abstract" "^1.22.3"
"es-errors" "^1.2.1"
"get-intrinsic" "^1.2.3"
"is-array-buffer" "^3.0.4"
"is-shared-array-buffer" "^1.0.2"
"available-typed-arrays@^1.0.7":
"integrity" "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ=="
"resolved" "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz"
"version" "1.0.7"
dependencies:
"possible-typed-array-names" "^1.0.0"
"balanced-match@^1.0.0":
"integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
"resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"brace-expansion@^1.1.7":
"integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
"resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"browserslist@^4.22.2", "browserslist@>= 4.21.0":
"integrity" "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ=="
"resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz"
"version" "4.23.0"
dependencies:
"caniuse-lite" "^1.0.30001587"
"electron-to-chromium" "^1.4.668"
"node-releases" "^2.0.14"
"update-browserslist-db" "^1.0.13"
"call-bind@^1.0.2", "call-bind@^1.0.5", "call-bind@^1.0.6", "call-bind@^1.0.7":
"integrity" "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w=="
"resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz"
"version" "1.0.7"
dependencies:
"es-define-property" "^1.0.0"
"es-errors" "^1.3.0"
"function-bind" "^1.1.2"
"get-intrinsic" "^1.2.4"
"set-function-length" "^1.2.1"
"callsites@^3.0.0":
"integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
"resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
"version" "3.1.0"
"caniuse-lite@^1.0.30001587":
"integrity" "sha512-4KE9N2gcRH+HQhpeiRZXd+1niLB/XNLAhSy4z7fI8EzcbcPoAqjNInxVHTiTwWfTIV4w096XG8OtCOCQQKPv3w=="
"resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001625.tgz"
"version" "1.0.30001625"
"chalk@^2.4.2":
"integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"ansi-styles" "^3.2.1"
"escape-string-regexp" "^1.0.5"
"supports-color" "^5.3.0"
"chalk@^4.0.0":
"integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"color-convert@^1.9.0":
"integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
"version" "1.9.3"
dependencies:
"color-name" "1.1.3"
"color-convert@^2.0.1":
"integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"color-name" "~1.1.4"
"color-name@~1.1.4":
"integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
"version" "1.1.4"
"integrity" "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
"version" "1.1.3"
"integrity" "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
"resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
"version" "0.0.1"
"convert-source-map@^2.0.0":
"integrity" "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
"resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz"
"version" "2.0.0"
"cross-spawn@^7.0.2":
"integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="
"resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
"version" "7.0.3"
dependencies:
"path-key" "^3.1.0"
"shebang-command" "^2.0.0"
"which" "^2.0.1"
"csstype@^3.0.2":
"integrity" "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
"resolved" "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz"
"version" "3.1.3"
"data-view-buffer@^1.0.1":
"integrity" "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA=="
"resolved" "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"call-bind" "^1.0.6"
"es-errors" "^1.3.0"
"is-data-view" "^1.0.1"
"data-view-byte-length@^1.0.1":
"integrity" "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ=="
"resolved" "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"call-bind" "^1.0.7"
"es-errors" "^1.3.0"
"is-data-view" "^1.0.1"
"data-view-byte-offset@^1.0.0":
"integrity" "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA=="
"resolved" "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"call-bind" "^1.0.6"
"es-errors" "^1.3.0"
"is-data-view" "^1.0.1"
"debug@^4.1.0", "debug@^4.3.1", "debug@^4.3.2":
"integrity" "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="
"resolved" "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
"version" "4.3.4"
dependencies:
"ms" "2.1.2"
"deep-is@^0.1.3":
"integrity" "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
"resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"
"version" "0.1.4"
"define-data-property@^1.0.1", "define-data-property@^1.1.4":
"integrity" "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A=="
"resolved" "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz"
"version" "1.1.4"
dependencies:
"es-define-property" "^1.0.0"
"es-errors" "^1.3.0"
"gopd" "^1.0.1"
"define-properties@^1.2.0", "define-properties@^1.2.1":
"integrity" "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg=="
"resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"define-data-property" "^1.0.1"
"has-property-descriptors" "^1.0.0"
"object-keys" "^1.1.1"
"doctrine@^2.1.0":
"integrity" "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="
"resolved" "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"esutils" "^2.0.2"
"doctrine@^3.0.0":
"integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="
"resolved" "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"esutils" "^2.0.2"
"electron-to-chromium@^1.4.668":
"integrity" "sha512-d0EFmtLPjctczO3LogReyM2pbBiiZbnsKnGF+cdZhsYzHm/A0GV7W94kqzLD8SN4O3f3iHlgLUChqghgyznvCQ=="
"resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.787.tgz"
"version" "1.4.787"
"es-abstract@^1.22.1", "es-abstract@^1.22.3", "es-abstract@^1.23.0", "es-abstract@^1.23.1", "es-abstract@^1.23.2", "es-abstract@^1.23.3":
"integrity" "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A=="
"resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz"
"version" "1.23.3"
dependencies:
"array-buffer-byte-length" "^1.0.1"
"arraybuffer.prototype.slice" "^1.0.3"
"available-typed-arrays" "^1.0.7"
"call-bind" "^1.0.7"
"data-view-buffer" "^1.0.1"
"data-view-byte-length" "^1.0.1"
"data-view-byte-offset" "^1.0.0"
"es-define-property" "^1.0.0"
"es-errors" "^1.3.0"
"es-object-atoms" "^1.0.0"
"es-set-tostringtag" "^2.0.3"
"es-to-primitive" "^1.2.1"
"function.prototype.name" "^1.1.6"
"get-intrinsic" "^1.2.4"
"get-symbol-description" "^1.0.2"
"globalthis" "^1.0.3"
"gopd" "^1.0.1"
"has-property-descriptors" "^1.0.2"
"has-proto" "^1.0.3"
"has-symbols" "^1.0.3"
"hasown" "^2.0.2"
"internal-slot" "^1.0.7"
"is-array-buffer" "^3.0.4"
"is-callable" "^1.2.7"
"is-data-view" "^1.0.1"
"is-negative-zero" "^2.0.3"
"is-regex" "^1.1.4"
"is-shared-array-buffer" "^1.0.3"
"is-string" "^1.0.7"
"is-typed-array" "^1.1.13"
"is-weakref" "^1.0.2"
"object-inspect" "^1.13.1"
"object-keys" "^1.1.1"
"object.assign" "^4.1.5"
"regexp.prototype.flags" "^1.5.2"
"safe-array-concat" "^1.1.2"
"safe-regex-test" "^1.0.3"
"string.prototype.trim" "^1.2.9"
"string.prototype.trimend" "^1.0.8"
"string.prototype.trimstart" "^1.0.8"
"typed-array-buffer" "^1.0.2"
"typed-array-byte-length" "^1.0.1"
"typed-array-byte-offset" "^1.0.2"
"typed-array-length" "^1.0.6"
"unbox-primitive" "^1.0.2"
"which-typed-array" "^1.1.15"
"es-define-property@^1.0.0":
"integrity" "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ=="
"resolved" "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"get-intrinsic" "^1.2.4"
"es-errors@^1.1.0", "es-errors@^1.2.1", "es-errors@^1.3.0":
"integrity" "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="
"resolved" "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz"
"version" "1.3.0"
"es-iterator-helpers@^1.0.19":
"integrity" "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw=="
"resolved" "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz"
"version" "1.0.19"
dependencies:
"call-bind" "^1.0.7"
"define-properties" "^1.2.1"
"es-abstract" "^1.23.3"
"es-errors" "^1.3.0"
"es-set-tostringtag" "^2.0.3"
"function-bind" "^1.1.2"
"get-intrinsic" "^1.2.4"
"globalthis" "^1.0.3"
"has-property-descriptors" "^1.0.2"
"has-proto" "^1.0.3"
"has-symbols" "^1.0.3"
"internal-slot" "^1.0.7"
"iterator.prototype" "^1.1.2"
"safe-array-concat" "^1.1.2"
"es-object-atoms@^1.0.0":
"integrity" "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw=="
"resolved" "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"es-errors" "^1.3.0"
"es-set-tostringtag@^2.0.3":
"integrity" "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ=="
"resolved" "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz"
"version" "2.0.3"
dependencies:
"get-intrinsic" "^1.2.4"
"has-tostringtag" "^1.0.2"
"hasown" "^2.0.1"
"es-shim-unscopables@^1.0.0", "es-shim-unscopables@^1.0.2":
"integrity" "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw=="
"resolved" "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"hasown" "^2.0.0"
"es-to-primitive@^1.2.1":
"integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="
"resolved" "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"is-callable" "^1.1.4"
"is-date-object" "^1.0.1"
"is-symbol" "^1.0.2"
"esbuild@^0.20.1":
"integrity" "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g=="
"resolved" "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz"
"version" "0.20.2"
optionalDependencies:
"@esbuild/aix-ppc64" "0.20.2"
"@esbuild/android-arm" "0.20.2"
"@esbuild/android-arm64" "0.20.2"
"@esbuild/android-x64" "0.20.2"
"@esbuild/darwin-arm64" "0.20.2"
"@esbuild/darwin-x64" "0.20.2"
"@esbuild/freebsd-arm64" "0.20.2"
"@esbuild/freebsd-x64" "0.20.2"
"@esbuild/linux-arm" "0.20.2"
"@esbuild/linux-arm64" "0.20.2"
"@esbuild/linux-ia32" "0.20.2"
"@esbuild/linux-loong64" "0.20.2"
"@esbuild/linux-mips64el" "0.20.2"
"@esbuild/linux-ppc64" "0.20.2"
"@esbuild/linux-riscv64" "0.20.2"
"@esbuild/linux-s390x" "0.20.2"
"@esbuild/linux-x64" "0.20.2"
"@esbuild/netbsd-x64" "0.20.2"
"@esbuild/openbsd-x64" "0.20.2"
"@esbuild/sunos-x64" "0.20.2"
"@esbuild/win32-arm64" "0.20.2"
"@esbuild/win32-ia32" "0.20.2"
"@esbuild/win32-x64" "0.20.2"
"escalade@^3.1.2":
"integrity" "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA=="
"resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz"
"version" "3.1.2"
"escape-string-regexp@^1.0.5":
"integrity" "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
"resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
"version" "1.0.5"
"escape-string-regexp@^4.0.0":
"integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
"resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
"version" "4.0.0"
"eslint-plugin-react-hooks@^4.6.0":
"integrity" "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ=="
"resolved" "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz"
"version" "4.6.2"
"eslint-plugin-react-refresh@^0.4.6":
"integrity" "sha512-yrj+KInFmwuQS2UQcg1SF83ha1tuHC1jMQbRNyuWtlEzzKRDgAl7L4Yp4NlDUZTZNlWvHEzOtJhMi40R7JxcSw=="
"resolved" "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.7.tgz"
"version" "0.4.7"
"eslint-plugin-react@^7.34.1":
"integrity" "sha512-2HCmrU+/JNigDN6tg55cRDKCQWicYAPB38JGSFDQt95jDm8rrvSUo7YPkOIm5l6ts1j1zCvysNcasvfTMQzUOw=="
"resolved" "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.2.tgz"
"version" "7.34.2"
dependencies:
"array-includes" "^3.1.8"
"array.prototype.findlast" "^1.2.5"
"array.prototype.flatmap" "^1.3.2"
"array.prototype.toreversed" "^1.1.2"
"array.prototype.tosorted" "^1.1.3"
"doctrine" "^2.1.0"
"es-iterator-helpers" "^1.0.19"
"estraverse" "^5.3.0"
"jsx-ast-utils" "^2.4.1 || ^3.0.0"
"minimatch" "^3.1.2"
"object.entries" "^1.1.8"
"object.fromentries" "^2.0.8"
"object.hasown" "^1.1.4"
"object.values" "^1.2.0"
"prop-types" "^15.8.1"
"resolve" "^2.0.0-next.5"
"semver" "^6.3.1"
"string.prototype.matchall" "^4.0.11"
"eslint-scope@^7.2.2":
"integrity" "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg=="
"resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz"
"version" "7.2.2"
dependencies:
"esrecurse" "^4.3.0"
"estraverse" "^5.2.0"
"eslint-visitor-keys@^3.3.0", "eslint-visitor-keys@^3.4.1", "eslint-visitor-keys@^3.4.3":
"integrity" "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="
"resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz"
"version" "3.4.3"
"eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^6.0.0 || ^7.0.0 || >=8.0.0", "eslint@^8.57.0", "eslint@>=7":
"integrity" "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ=="
"resolved" "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz"
"version" "8.57.0"
dependencies:
"@eslint-community/eslint-utils" "^4.2.0"
"@eslint-community/regexpp" "^4.6.1"
"@eslint/eslintrc" "^2.1.4"
"@eslint/js" "8.57.0"
"@humanwhocodes/config-array" "^0.11.14"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
"@ungap/structured-clone" "^1.2.0"
"ajv" "^6.12.4"
"chalk" "^4.0.0"
"cross-spawn" "^7.0.2"
"debug" "^4.3.2"
"doctrine" "^3.0.0"
"escape-string-regexp" "^4.0.0"
"eslint-scope" "^7.2.2"
"eslint-visitor-keys" "^3.4.3"
"espree" "^9.6.1"
"esquery" "^1.4.2"
"esutils" "^2.0.2"
"fast-deep-equal" "^3.1.3"
"file-entry-cache" "^6.0.1"
"find-up" "^5.0.0"
"glob-parent" "^6.0.2"
"globals" "^13.19.0"
"graphemer" "^1.4.0"
"ignore" "^5.2.0"
"imurmurhash" "^0.1.4"
"is-glob" "^4.0.0"
"is-path-inside" "^3.0.3"
"js-yaml" "^4.1.0"
"json-stable-stringify-without-jsonify" "^1.0.1"
"levn" "^0.4.1"
"lodash.merge" "^4.6.2"
"minimatch" "^3.1.2"
"natural-compare" "^1.4.0"
"optionator" "^0.9.3"
"strip-ansi" "^6.0.1"
"text-table" "^0.2.0"
"espree@^9.6.0", "espree@^9.6.1":
"integrity" "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ=="
"resolved" "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz"
"version" "9.6.1"
dependencies:
"acorn" "^8.9.0"
"acorn-jsx" "^5.3.2"
"eslint-visitor-keys" "^3.4.1"
"esquery@^1.4.2":
"integrity" "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg=="
"resolved" "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz"
"version" "1.5.0"
dependencies:
"estraverse" "^5.1.0"
"esrecurse@^4.3.0":
"integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="
"resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"estraverse" "^5.2.0"