-
Notifications
You must be signed in to change notification settings - Fork 0
/
pnpm-lock.yaml
6191 lines (5588 loc) · 324 KB
/
pnpm-lock.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: 5.4
specifiers:
'@emotion/react': ^11.10.0
'@emotion/styled': ^11.10.0
'@mui/icons-material': ^5.8.4
'@mui/material': ^5.10.0
'@plasmohq/prettier-plugin-sort-imports': 1.1.1
'@tailwindcss/forms': ^0.5.3
'@tailwindcss/typography': ^0.5.7
'@types/chrome': 0.0.193
'@types/node': 18.0.3
'@types/react': 18.0.15
'@types/react-dom': 18.0.6
plasmo: 0.50.1
postcss: ^8.4.16
prettier: 2.7.1
react: 18.2.0
react-dom: 18.2.0
tailwindcss: ^3.1.8
typescript: 4.7.4
dependencies:
'@emotion/react': registry.npmmirror.com/@emotion/react/11.10.0_3hx2ussxxho4jajbwrd6gq34qe
'@emotion/styled': registry.npmmirror.com/@emotion/styled/11.10.0_osjhb3oyc3dn55vkfbzx4nrkfi
'@mui/icons-material': registry.npmmirror.com/@mui/icons-material/5.8.4_qrj23asoydlb2kd5uvwylqmzmm
'@mui/material': registry.npmmirror.com/@mui/material/5.10.0_x23mn2l7fw5e56g6ttw67k5uxm
'@tailwindcss/forms': registry.npmmirror.com/@tailwindcss/forms/0.5.3_tailwindcss@3.1.8
'@tailwindcss/typography': registry.npmmirror.com/@tailwindcss/typography/0.5.7_tailwindcss@3.1.8
plasmo: registry.npmmirror.com/plasmo/0.50.1_t3zwlxai2rto6jslfmw3pdgiue
react: registry.npmmirror.com/react/18.2.0
react-dom: registry.npmmirror.com/react-dom/18.2.0_react@18.2.0
tailwindcss: registry.npmmirror.com/tailwindcss/3.1.8_postcss@8.4.16
devDependencies:
'@plasmohq/prettier-plugin-sort-imports': registry.npmmirror.com/@plasmohq/prettier-plugin-sort-imports/1.1.1_prettier@2.7.1
'@types/chrome': registry.npmmirror.com/@types/chrome/0.0.193
'@types/node': registry.npmmirror.com/@types/node/18.0.3
'@types/react': registry.npmmirror.com/@types/react/18.0.15
'@types/react-dom': registry.npmmirror.com/@types/react-dom/18.0.6
postcss: registry.npmmirror.com/postcss/8.4.16
prettier: registry.npmmirror.com/prettier/2.7.1
typescript: registry.npmmirror.com/typescript/4.7.4
packages:
registry.nlark.com/concat-map/0.0.1:
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/concat-map/download/concat-map-0.0.1.tgz}
name: concat-map
version: 0.0.1
dev: false
registry.nlark.com/mute-stream/0.0.8:
resolution: {integrity: sha1-FjDEKyJR/4HiooPelqVJfqkuXg0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mute-stream/download/mute-stream-0.0.8.tgz}
name: mute-stream
version: 0.0.8
dev: false
registry.npmmirror.com/@ampproject/remapping/2.2.0:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.0.tgz}
name: '@ampproject/remapping'
version: 2.2.0
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.1.1
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.14
dev: true
registry.npmmirror.com/@babel/code-frame/7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.18.6.tgz}
name: '@babel/code-frame'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight/7.18.6
registry.npmmirror.com/@babel/compat-data/7.18.8:
resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.18.8.tgz}
name: '@babel/compat-data'
version: 7.18.8
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/core/7.18.6:
resolution: {integrity: sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.18.6.tgz}
name: '@babel/core'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.2.0
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.18.6
'@babel/generator': registry.npmmirror.com/@babel/generator/7.18.7
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.6
'@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.18.9
'@babel/helpers': registry.npmmirror.com/@babel/helpers/7.18.9
'@babel/parser': registry.npmmirror.com/@babel/parser/7.18.8
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.18.8
'@babel/types': registry.npmmirror.com/@babel/types/7.18.8
convert-source-map: registry.npmmirror.com/convert-source-map/1.8.0
debug: registry.npmmirror.com/debug/4.3.4
gensync: registry.npmmirror.com/gensync/1.0.0-beta.2
json5: registry.npmmirror.com/json5/2.2.1
semver: registry.npmmirror.com/semver/6.3.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/generator/7.18.12:
resolution: {integrity: sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.18.12.tgz}
name: '@babel/generator'
version: 7.18.12
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.10
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.2
jsesc: registry.npmmirror.com/jsesc/2.5.2
dev: true
registry.npmmirror.com/@babel/generator/7.18.7:
resolution: {integrity: sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.18.7.tgz}
name: '@babel/generator'
version: 7.18.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.8
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.2
jsesc: registry.npmmirror.com/jsesc/2.5.2
dev: true
registry.npmmirror.com/@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.6:
resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz}
id: registry.npmmirror.com/@babel/helper-compilation-targets/7.18.9
name: '@babel/helper-compilation-targets'
version: 7.18.9
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.18.8
'@babel/core': registry.npmmirror.com/@babel/core/7.18.6
'@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.18.6
browserslist: registry.npmmirror.com/browserslist/4.21.3
semver: registry.npmmirror.com/semver/6.3.0
dev: true
registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz}
name: '@babel/helper-environment-visitor'
version: 7.18.9
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-function-name/7.18.9:
resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz}
name: '@babel/helper-function-name'
version: 7.18.9
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/types': registry.npmmirror.com/@babel/types/7.18.10
dev: true
registry.npmmirror.com/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz}
name: '@babel/helper-hoist-variables'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.10
dev: true
registry.npmmirror.com/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz}
name: '@babel/helper-module-imports'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.10
registry.npmmirror.com/@babel/helper-module-transforms/7.18.9:
resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz}
name: '@babel/helper-module-transforms'
version: 7.18.9
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.18.6
'@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.18.6
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.18.6
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.18.11
'@babel/types': registry.npmmirror.com/@babel/types/7.18.10
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/helper-plugin-utils/7.18.9:
resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz}
name: '@babel/helper-plugin-utils'
version: 7.18.9
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/helper-simple-access/7.18.6:
resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz}
name: '@babel/helper-simple-access'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.10
dev: true
registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz}
name: '@babel/helper-split-export-declaration'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.10
dev: true
registry.npmmirror.com/@babel/helper-string-parser/7.18.10:
resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz}
name: '@babel/helper-string-parser'
version: 7.18.10
engines: {node: '>=6.9.0'}
registry.npmmirror.com/@babel/helper-validator-identifier/7.18.6:
resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz}
name: '@babel/helper-validator-identifier'
version: 7.18.6
engines: {node: '>=6.9.0'}
registry.npmmirror.com/@babel/helper-validator-option/7.18.6:
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz}
name: '@babel/helper-validator-option'
version: 7.18.6
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helpers/7.18.9:
resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.18.9.tgz}
name: '@babel/helpers'
version: 7.18.9
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.18.11
'@babel/types': registry.npmmirror.com/@babel/types/7.18.10
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/highlight/7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.18.6.tgz}
name: '@babel/highlight'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.18.6
chalk: registry.npmmirror.com/chalk/2.4.2
js-tokens: registry.npmmirror.com/js-tokens/4.0.0
registry.npmmirror.com/@babel/parser/7.18.11:
resolution: {integrity: sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.18.11.tgz}
name: '@babel/parser'
version: 7.18.11
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.10
registry.npmmirror.com/@babel/parser/7.18.8:
resolution: {integrity: sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.18.8.tgz}
name: '@babel/parser'
version: 7.18.8
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.8
dev: true
registry.npmmirror.com/@babel/plugin-syntax-jsx/7.18.6:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz}
name: '@babel/plugin-syntax-jsx'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.18.9
dev: false
registry.npmmirror.com/@babel/runtime/7.18.9:
resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.18.9.tgz}
name: '@babel/runtime'
version: 7.18.9
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.13.9
dev: false
registry.npmmirror.com/@babel/template/7.18.10:
resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.18.10.tgz}
name: '@babel/template'
version: 7.18.10
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.18.6
'@babel/parser': registry.npmmirror.com/@babel/parser/7.18.11
'@babel/types': registry.npmmirror.com/@babel/types/7.18.10
dev: true
registry.npmmirror.com/@babel/traverse/7.18.11:
resolution: {integrity: sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.18.11.tgz}
name: '@babel/traverse'
version: 7.18.11
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.18.6
'@babel/generator': registry.npmmirror.com/@babel/generator/7.18.12
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.18.9
'@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.18.6
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6
'@babel/parser': registry.npmmirror.com/@babel/parser/7.18.11
'@babel/types': registry.npmmirror.com/@babel/types/7.18.10
debug: registry.npmmirror.com/debug/4.3.4
globals: registry.npmmirror.com/globals/11.12.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/traverse/7.18.8:
resolution: {integrity: sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.18.8.tgz}
name: '@babel/traverse'
version: 7.18.8
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.18.6
'@babel/generator': registry.npmmirror.com/@babel/generator/7.18.7
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.18.9
'@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.18.6
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6
'@babel/parser': registry.npmmirror.com/@babel/parser/7.18.8
'@babel/types': registry.npmmirror.com/@babel/types/7.18.8
debug: registry.npmmirror.com/debug/4.3.4
globals: registry.npmmirror.com/globals/11.12.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/types/7.18.10:
resolution: {integrity: sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.18.10.tgz}
name: '@babel/types'
version: 7.18.10
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser/7.18.10
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.18.6
to-fast-properties: registry.npmmirror.com/to-fast-properties/2.0.0
registry.npmmirror.com/@babel/types/7.18.8:
resolution: {integrity: sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.18.8.tgz}
name: '@babel/types'
version: 7.18.8
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.18.6
to-fast-properties: registry.npmmirror.com/to-fast-properties/2.0.0
dev: true
registry.npmmirror.com/@emotion/babel-plugin/11.10.0:
resolution: {integrity: sha512-xVnpDAAbtxL1dsuSelU5A7BnY/lftws0wUexNJZTPsvX/1tM4GZJbclgODhvW4E+NH7E5VFcH0bBn30NvniPJA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/babel-plugin/-/babel-plugin-11.10.0.tgz}
name: '@emotion/babel-plugin'
version: 11.10.0
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.18.6
'@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.18.6
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.18.9
'@emotion/hash': registry.npmmirror.com/@emotion/hash/0.9.0
'@emotion/memoize': registry.npmmirror.com/@emotion/memoize/0.8.0
'@emotion/serialize': registry.npmmirror.com/@emotion/serialize/1.1.0
babel-plugin-macros: registry.npmmirror.com/babel-plugin-macros/3.1.0
convert-source-map: registry.npmmirror.com/convert-source-map/1.8.0
escape-string-regexp: registry.npmmirror.com/escape-string-regexp/4.0.0
find-root: registry.npmmirror.com/find-root/1.1.0
source-map: registry.npmmirror.com/source-map/0.5.7
stylis: registry.npmmirror.com/stylis/4.0.13
dev: false
registry.npmmirror.com/@emotion/cache/11.10.1:
resolution: {integrity: sha512-uZTj3Yz5D69GE25iFZcIQtibnVCFsc/6+XIozyL3ycgWvEdif2uEw9wlUt6umjLr4Keg9K6xRPHmD8LGi+6p1A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/cache/-/cache-11.10.1.tgz}
name: '@emotion/cache'
version: 11.10.1
dependencies:
'@emotion/memoize': registry.npmmirror.com/@emotion/memoize/0.8.0
'@emotion/sheet': registry.npmmirror.com/@emotion/sheet/1.2.0
'@emotion/utils': registry.npmmirror.com/@emotion/utils/1.2.0
'@emotion/weak-memoize': registry.npmmirror.com/@emotion/weak-memoize/0.3.0
stylis: registry.npmmirror.com/stylis/4.0.13
dev: false
registry.npmmirror.com/@emotion/hash/0.9.0:
resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/hash/-/hash-0.9.0.tgz}
name: '@emotion/hash'
version: 0.9.0
dev: false
registry.npmmirror.com/@emotion/is-prop-valid/1.2.0:
resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz}
name: '@emotion/is-prop-valid'
version: 1.2.0
dependencies:
'@emotion/memoize': registry.npmmirror.com/@emotion/memoize/0.8.0
dev: false
registry.npmmirror.com/@emotion/memoize/0.8.0:
resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/memoize/-/memoize-0.8.0.tgz}
name: '@emotion/memoize'
version: 0.8.0
dev: false
registry.npmmirror.com/@emotion/react/11.10.0_3hx2ussxxho4jajbwrd6gq34qe:
resolution: {integrity: sha512-K6z9zlHxxBXwN8TcpwBKcEsBsOw4JWCCmR+BeeOWgqp8GIU1yA2Odd41bwdAAr0ssbQrbJbVnndvv7oiv1bZeQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/react/-/react-11.10.0.tgz}
id: registry.npmmirror.com/@emotion/react/11.10.0
name: '@emotion/react'
version: 11.10.0
peerDependencies:
'@babel/core': ^7.0.0
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@babel/core':
optional: true
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.18.9
'@emotion/babel-plugin': registry.npmmirror.com/@emotion/babel-plugin/11.10.0
'@emotion/cache': registry.npmmirror.com/@emotion/cache/11.10.1
'@emotion/serialize': registry.npmmirror.com/@emotion/serialize/1.1.0
'@emotion/utils': registry.npmmirror.com/@emotion/utils/1.2.0
'@emotion/weak-memoize': registry.npmmirror.com/@emotion/weak-memoize/0.3.0
'@types/react': registry.npmmirror.com/@types/react/18.0.15
hoist-non-react-statics: registry.npmmirror.com/hoist-non-react-statics/3.3.2
react: registry.npmmirror.com/react/18.2.0
dev: false
registry.npmmirror.com/@emotion/serialize/1.1.0:
resolution: {integrity: sha512-F1ZZZW51T/fx+wKbVlwsfchr5q97iW8brAnXmsskz4d0hVB4O3M/SiA3SaeH06x02lSNzkkQv+n3AX3kCXKSFA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/serialize/-/serialize-1.1.0.tgz}
name: '@emotion/serialize'
version: 1.1.0
dependencies:
'@emotion/hash': registry.npmmirror.com/@emotion/hash/0.9.0
'@emotion/memoize': registry.npmmirror.com/@emotion/memoize/0.8.0
'@emotion/unitless': registry.npmmirror.com/@emotion/unitless/0.8.0
'@emotion/utils': registry.npmmirror.com/@emotion/utils/1.2.0
csstype: registry.npmmirror.com/csstype/3.1.0
dev: false
registry.npmmirror.com/@emotion/sheet/1.2.0:
resolution: {integrity: sha512-OiTkRgpxescko+M51tZsMq7Puu/KP55wMT8BgpcXVG2hqXc0Vo0mfymJ/Uj24Hp0i083ji/o0aLddh08UEjq8w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/sheet/-/sheet-1.2.0.tgz}
name: '@emotion/sheet'
version: 1.2.0
dev: false
registry.npmmirror.com/@emotion/styled/11.10.0_osjhb3oyc3dn55vkfbzx4nrkfi:
resolution: {integrity: sha512-V9oaEH6V4KePeQpgUE83i8ht+4Ri3E8Djp/ZPJ4DQlqWhSKITvgzlR3/YQE2hdfP4Jw3qVRkANJz01LLqK9/TA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/styled/-/styled-11.10.0.tgz}
id: registry.npmmirror.com/@emotion/styled/11.10.0
name: '@emotion/styled'
version: 11.10.0
peerDependencies:
'@babel/core': ^7.0.0
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@babel/core':
optional: true
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.18.9
'@emotion/babel-plugin': registry.npmmirror.com/@emotion/babel-plugin/11.10.0
'@emotion/is-prop-valid': registry.npmmirror.com/@emotion/is-prop-valid/1.2.0
'@emotion/react': registry.npmmirror.com/@emotion/react/11.10.0_3hx2ussxxho4jajbwrd6gq34qe
'@emotion/serialize': registry.npmmirror.com/@emotion/serialize/1.1.0
'@emotion/utils': registry.npmmirror.com/@emotion/utils/1.2.0
'@types/react': registry.npmmirror.com/@types/react/18.0.15
react: registry.npmmirror.com/react/18.2.0
dev: false
registry.npmmirror.com/@emotion/unitless/0.8.0:
resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/unitless/-/unitless-0.8.0.tgz}
name: '@emotion/unitless'
version: 0.8.0
dev: false
registry.npmmirror.com/@emotion/utils/1.2.0:
resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/utils/-/utils-1.2.0.tgz}
name: '@emotion/utils'
version: 1.2.0
dev: false
registry.npmmirror.com/@emotion/weak-memoize/0.3.0:
resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz}
name: '@emotion/weak-memoize'
version: 0.3.0
dev: false
registry.npmmirror.com/@expo/spawn-async/1.7.0:
resolution: {integrity: sha512-sqPAjOEFTrjaTybrh9SnPFLInDXcoMC06psEFmH68jLTmoipSQCq8GCEfIoHhxRDALWB+DsiwXJSbXlE/iVIIQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@expo/spawn-async/-/spawn-async-1.7.0.tgz}
name: '@expo/spawn-async'
version: 1.7.0
engines: {node: '>=12'}
dependencies:
cross-spawn: registry.npmmirror.com/cross-spawn/7.0.3
dev: false
registry.npmmirror.com/@jridgewell/gen-mapping/0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz}
name: '@jridgewell/gen-mapping'
version: 0.1.1
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array/1.1.2
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.14
dev: true
registry.npmmirror.com/@jridgewell/gen-mapping/0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz}
name: '@jridgewell/gen-mapping'
version: 0.3.2
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array/1.1.2
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.14
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.14
registry.npmmirror.com/@jridgewell/resolve-uri/3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz}
name: '@jridgewell/resolve-uri'
version: 3.1.0
engines: {node: '>=6.0.0'}
registry.npmmirror.com/@jridgewell/set-array/1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz}
name: '@jridgewell/set-array'
version: 1.1.2
engines: {node: '>=6.0.0'}
registry.npmmirror.com/@jridgewell/source-map/0.3.2:
resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.2.tgz}
name: '@jridgewell/source-map'
version: 0.3.2
dependencies:
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.2
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.14
dev: false
registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz}
name: '@jridgewell/sourcemap-codec'
version: 1.4.14
registry.npmmirror.com/@jridgewell/trace-mapping/0.3.14:
resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz}
name: '@jridgewell/trace-mapping'
version: 0.3.14
dependencies:
'@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri/3.1.0
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.14
registry.npmmirror.com/@lezer/common/0.15.12:
resolution: {integrity: sha512-edfwCxNLnzq5pBA/yaIhwJ3U3Kz8VAUOTRg0hhxaizaI1N+qxV7EXDv/kLCkLeq2RzSFvxexlaj5Mzfn2kY0Ig==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@lezer/common/-/common-0.15.12.tgz}
name: '@lezer/common'
version: 0.15.12
dev: false
registry.npmmirror.com/@lezer/lr/0.15.8:
resolution: {integrity: sha512-bM6oE6VQZ6hIFxDNKk8bKPa14hqFrV07J/vHGOeiAbJReIaQXmkVb6xQu4MR+JBTLa5arGRyAAjJe1qaQt3Uvg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@lezer/lr/-/lr-0.15.8.tgz}
name: '@lezer/lr'
version: 0.15.8
dependencies:
'@lezer/common': registry.npmmirror.com/@lezer/common/0.15.12
dev: false
registry.npmmirror.com/@lmdb/lmdb-darwin-arm64/2.5.2:
resolution: {integrity: sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz}
name: '@lmdb/lmdb-darwin-arm64'
version: 2.5.2
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@lmdb/lmdb-darwin-x64/2.5.2:
resolution: {integrity: sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz}
name: '@lmdb/lmdb-darwin-x64'
version: 2.5.2
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@lmdb/lmdb-linux-arm/2.5.2:
resolution: {integrity: sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz}
name: '@lmdb/lmdb-linux-arm'
version: 2.5.2
cpu: [arm]
os: [linux]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@lmdb/lmdb-linux-arm64/2.5.2:
resolution: {integrity: sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz}
name: '@lmdb/lmdb-linux-arm64'
version: 2.5.2
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@lmdb/lmdb-linux-x64/2.5.2:
resolution: {integrity: sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz}
name: '@lmdb/lmdb-linux-x64'
version: 2.5.2
cpu: [x64]
os: [linux]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@lmdb/lmdb-win32-x64/2.5.2:
resolution: {integrity: sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz}
name: '@lmdb/lmdb-win32-x64'
version: 2.5.2
cpu: [x64]
os: [win32]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@mischnic/json-sourcemap/0.1.0:
resolution: {integrity: sha512-dQb3QnfNqmQNYA4nFSN/uLaByIic58gOXq4Y4XqLOWmOrw73KmJPt/HLyG0wvn1bnR6mBKs/Uwvkh+Hns1T0XA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mischnic/json-sourcemap/-/json-sourcemap-0.1.0.tgz}
name: '@mischnic/json-sourcemap'
version: 0.1.0
engines: {node: '>=12.0.0'}
dependencies:
'@lezer/common': registry.npmmirror.com/@lezer/common/0.15.12
'@lezer/lr': registry.npmmirror.com/@lezer/lr/0.15.8
json5: registry.npmmirror.com/json5/2.2.1
dev: false
registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-darwin-arm64/2.1.2:
resolution: {integrity: sha512-TyVLn3S/+ikMDsh0gbKv2YydKClN8HaJDDpONlaZR+LVJmsxLFUgA+O7zu59h9+f9gX1aj/ahw9wqa6rosmrYQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-2.1.2.tgz}
name: '@msgpackr-extract/msgpackr-extract-darwin-arm64'
version: 2.1.2
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-darwin-x64/2.1.2:
resolution: {integrity: sha512-YPXtcVkhmVNoMGlqp81ZHW4dMxK09msWgnxtsDpSiZwTzUBG2N+No2bsr7WMtBKCVJMSD6mbAl7YhKUqkp/Few==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-2.1.2.tgz}
name: '@msgpackr-extract/msgpackr-extract-darwin-x64'
version: 2.1.2
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-linux-arm/2.1.2:
resolution: {integrity: sha512-42R4MAFeIeNn+L98qwxAt360bwzX2Kf0ZQkBBucJ2Ircza3asoY4CDbgiu9VWklq8gWJVSJSJBwDI+c/THiWkA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-2.1.2.tgz}
name: '@msgpackr-extract/msgpackr-extract-linux-arm'
version: 2.1.2
cpu: [arm]
os: [linux]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-linux-arm64/2.1.2:
resolution: {integrity: sha512-vHZ2JiOWF2+DN9lzltGbhtQNzDo8fKFGrf37UJrgqxU0yvtERrzUugnfnX1wmVfFhSsF8OxrfqiNOUc5hko1Zg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-2.1.2.tgz}
name: '@msgpackr-extract/msgpackr-extract-linux-arm64'
version: 2.1.2
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-linux-x64/2.1.2:
resolution: {integrity: sha512-RjRoRxg7Q3kPAdUSC5EUUPlwfMkIVhmaRTIe+cqHbKrGZ4M6TyCA/b5qMaukQ/1CHWrqYY2FbKOAU8Hg0pQFzg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-2.1.2.tgz}
name: '@msgpackr-extract/msgpackr-extract-linux-x64'
version: 2.1.2
cpu: [x64]
os: [linux]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-win32-x64/2.1.2:
resolution: {integrity: sha512-rIZVR48zA8hGkHIK7ED6+ZiXsjRCcAVBJbm8o89OKAMTmEAQ2QvoOxoiu3w2isAaWwzgtQIOFIqHwvZDyLKCvw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-2.1.2.tgz}
name: '@msgpackr-extract/msgpackr-extract-win32-x64'
version: 2.1.2
cpu: [x64]
os: [win32]
requiresBuild: true
dev: false
optional: true
registry.npmmirror.com/@mui/base/5.0.0-alpha.92_bb2bxwco6ptpubzwpazr52qf6i:
resolution: {integrity: sha512-ZgnSLrTXL4iUdLQhjp01dAOTQPQlnwrqjZRwDT3E6LZXEYn6cMv1MY6LZkWcF/zxrUnyasnsyMAgZ5d8AXS7bA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mui/base/-/base-5.0.0-alpha.92.tgz}
id: registry.npmmirror.com/@mui/base/5.0.0-alpha.92
name: '@mui/base'
version: 5.0.0-alpha.92
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.18.9
'@emotion/is-prop-valid': registry.npmmirror.com/@emotion/is-prop-valid/1.2.0
'@mui/types': registry.npmmirror.com/@mui/types/7.1.5_@types+react@18.0.15
'@mui/utils': registry.npmmirror.com/@mui/utils/5.9.3_react@18.2.0
'@popperjs/core': registry.npmmirror.com/@popperjs/core/2.11.5
'@types/react': registry.npmmirror.com/@types/react/18.0.15
clsx: registry.npmmirror.com/clsx/1.2.1
prop-types: registry.npmmirror.com/prop-types/15.8.1
react: registry.npmmirror.com/react/18.2.0
react-dom: registry.npmmirror.com/react-dom/18.2.0_react@18.2.0
react-is: registry.npmmirror.com/react-is/18.2.0
dev: false
registry.npmmirror.com/@mui/icons-material/5.8.4_qrj23asoydlb2kd5uvwylqmzmm:
resolution: {integrity: sha512-9Z/vyj2szvEhGWDvb+gG875bOGm8b8rlHBKOD1+nA3PcgC3fV6W1AU6pfOorPeBfH2X4mb9Boe97vHvaSndQvA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mui/icons-material/-/icons-material-5.8.4.tgz}
id: registry.npmmirror.com/@mui/icons-material/5.8.4
name: '@mui/icons-material'
version: 5.8.4
engines: {node: '>=12.0.0'}
peerDependencies:
'@mui/material': ^5.0.0
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.18.9
'@mui/material': registry.npmmirror.com/@mui/material/5.10.0_x23mn2l7fw5e56g6ttw67k5uxm
'@types/react': registry.npmmirror.com/@types/react/18.0.15
react: registry.npmmirror.com/react/18.2.0
dev: false
registry.npmmirror.com/@mui/material/5.10.0_x23mn2l7fw5e56g6ttw67k5uxm:
resolution: {integrity: sha512-MSEzkE2vhpM37m8Gh3+TcZCWL70p+MxzNvS8FHugBB6YZpafhBFmFKX7/pYJ2kVD87PpUhNR4szWub7/ohE02Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mui/material/-/material-5.10.0.tgz}
id: registry.npmmirror.com/@mui/material/5.10.0
name: '@mui/material'
version: 5.10.0
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
'@emotion/styled':
optional: true
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.18.9
'@emotion/react': registry.npmmirror.com/@emotion/react/11.10.0_3hx2ussxxho4jajbwrd6gq34qe
'@emotion/styled': registry.npmmirror.com/@emotion/styled/11.10.0_osjhb3oyc3dn55vkfbzx4nrkfi
'@mui/base': registry.npmmirror.com/@mui/base/5.0.0-alpha.92_bb2bxwco6ptpubzwpazr52qf6i
'@mui/system': registry.npmmirror.com/@mui/system/5.10.0_ihaomijnambxwtysddndddrzzy
'@mui/types': registry.npmmirror.com/@mui/types/7.1.5_@types+react@18.0.15
'@mui/utils': registry.npmmirror.com/@mui/utils/5.9.3_react@18.2.0
'@types/react': registry.npmmirror.com/@types/react/18.0.15
'@types/react-transition-group': registry.npmmirror.com/@types/react-transition-group/4.4.5
clsx: registry.npmmirror.com/clsx/1.2.1
csstype: registry.npmmirror.com/csstype/3.1.0
prop-types: registry.npmmirror.com/prop-types/15.8.1
react: registry.npmmirror.com/react/18.2.0
react-dom: registry.npmmirror.com/react-dom/18.2.0_react@18.2.0
react-is: registry.npmmirror.com/react-is/18.2.0
react-transition-group: registry.npmmirror.com/react-transition-group/4.4.5_biqbaboplfbrettd7655fr4n2y
dev: false
registry.npmmirror.com/@mui/private-theming/5.9.3_3hx2ussxxho4jajbwrd6gq34qe:
resolution: {integrity: sha512-Ys3WO39WqoGciGX9k5AIi/k2zJhlydv4FzlEEwtw9OqdMaV0ydK/TdZekKzjP9sTI/JcdAP3H5DWtUaPLQJjWg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mui/private-theming/-/private-theming-5.9.3.tgz}
id: registry.npmmirror.com/@mui/private-theming/5.9.3
name: '@mui/private-theming'
version: 5.9.3
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.18.9
'@mui/utils': registry.npmmirror.com/@mui/utils/5.9.3_react@18.2.0
'@types/react': registry.npmmirror.com/@types/react/18.0.15
prop-types: registry.npmmirror.com/prop-types/15.8.1
react: registry.npmmirror.com/react/18.2.0
dev: false
registry.npmmirror.com/@mui/styled-engine/5.10.0_rq3l25qc4qpq3j4w6o4x7hatzy:
resolution: {integrity: sha512-V0MmOx7KBDomDYg2/dRItVsvrpHpd51uZZiNqeuXiZruUJ1vPwtxztpvtSjX/xKvIxN7C0mxf8jmuwVUn6uaEA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mui/styled-engine/-/styled-engine-5.10.0.tgz}
id: registry.npmmirror.com/@mui/styled-engine/5.10.0
name: '@mui/styled-engine'
version: 5.10.0
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.4.1
'@emotion/styled': ^11.3.0
react: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
'@emotion/styled':
optional: true
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.18.9
'@emotion/cache': registry.npmmirror.com/@emotion/cache/11.10.1
'@emotion/react': registry.npmmirror.com/@emotion/react/11.10.0_3hx2ussxxho4jajbwrd6gq34qe
'@emotion/styled': registry.npmmirror.com/@emotion/styled/11.10.0_osjhb3oyc3dn55vkfbzx4nrkfi
csstype: registry.npmmirror.com/csstype/3.1.0
prop-types: registry.npmmirror.com/prop-types/15.8.1
react: registry.npmmirror.com/react/18.2.0
dev: false
registry.npmmirror.com/@mui/system/5.10.0_ihaomijnambxwtysddndddrzzy:
resolution: {integrity: sha512-HNu3LdA+37cWqgJBEhOF4F5LX4WVmvg6SoHRfajRO0neKXLdooibMP3W1bhSd27QcPxyMUmvY9/Dlp9znDeCRw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mui/system/-/system-5.10.0.tgz}
id: registry.npmmirror.com/@mui/system/5.10.0
name: '@mui/system'
version: 5.10.0
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
'@emotion/styled':
optional: true
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.18.9
'@emotion/react': registry.npmmirror.com/@emotion/react/11.10.0_3hx2ussxxho4jajbwrd6gq34qe
'@emotion/styled': registry.npmmirror.com/@emotion/styled/11.10.0_osjhb3oyc3dn55vkfbzx4nrkfi
'@mui/private-theming': registry.npmmirror.com/@mui/private-theming/5.9.3_3hx2ussxxho4jajbwrd6gq34qe
'@mui/styled-engine': registry.npmmirror.com/@mui/styled-engine/5.10.0_rq3l25qc4qpq3j4w6o4x7hatzy
'@mui/types': registry.npmmirror.com/@mui/types/7.1.5_@types+react@18.0.15
'@mui/utils': registry.npmmirror.com/@mui/utils/5.9.3_react@18.2.0
'@types/react': registry.npmmirror.com/@types/react/18.0.15
clsx: registry.npmmirror.com/clsx/1.2.1
csstype: registry.npmmirror.com/csstype/3.1.0
prop-types: registry.npmmirror.com/prop-types/15.8.1
react: registry.npmmirror.com/react/18.2.0
dev: false
registry.npmmirror.com/@mui/types/7.1.5_@types+react@18.0.15:
resolution: {integrity: sha512-HnRXrxgHJYJcT8ZDdDCQIlqk0s0skOKD7eWs9mJgBUu70hyW4iA6Kiv3yspJR474RFH8hysKR65VVSzUSzkuwA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mui/types/-/types-7.1.5.tgz}
id: registry.npmmirror.com/@mui/types/7.1.5
name: '@mui/types'
version: 7.1.5
peerDependencies:
'@types/react': '*'
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@types/react': registry.npmmirror.com/@types/react/18.0.15
dev: false
registry.npmmirror.com/@mui/utils/5.9.3_react@18.2.0:
resolution: {integrity: sha512-l0N5bcrenE9hnwZ/jPecpIRqsDFHkPXoFUcmkgysaJwVZzJ3yQkGXB47eqmXX5yyGrSc6HksbbqXEaUya+siew==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mui/utils/-/utils-5.9.3.tgz}
id: registry.npmmirror.com/@mui/utils/5.9.3
name: '@mui/utils'
version: 5.9.3
engines: {node: '>=12.0.0'}
peerDependencies:
react: ^17.0.0 || ^18.0.0
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.18.9
'@types/prop-types': registry.npmmirror.com/@types/prop-types/15.7.5
'@types/react-is': registry.npmmirror.com/@types/react-is/17.0.3
prop-types: registry.npmmirror.com/prop-types/15.8.1
react: registry.npmmirror.com/react/18.2.0
react-is: registry.npmmirror.com/react-is/18.2.0
dev: false
registry.npmmirror.com/@nodelib/fs.scandir/2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz}
name: '@nodelib/fs.scandir'
version: 2.1.5
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
run-parallel: registry.npmmirror.com/run-parallel/1.2.0
dev: false
registry.npmmirror.com/@nodelib/fs.stat/2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz}
name: '@nodelib/fs.stat'
version: 2.0.5
engines: {node: '>= 8'}
dev: false
registry.npmmirror.com/@nodelib/fs.walk/1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz}
name: '@nodelib/fs.walk'
version: 1.2.8
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir/2.1.5
fastq: registry.npmmirror.com/fastq/1.13.0
dev: false
registry.npmmirror.com/@parcel/bundler-default/2.6.2_@parcel+core@2.6.2:
resolution: {integrity: sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@parcel/bundler-default/-/bundler-default-2.6.2.tgz}
id: registry.npmmirror.com/@parcel/bundler-default/2.6.2
name: '@parcel/bundler-default'
version: 2.6.2
engines: {node: '>= 12.0.0', parcel: ^2.6.2}
dependencies:
'@parcel/diagnostic': registry.npmmirror.com/@parcel/diagnostic/2.6.2
'@parcel/hash': registry.npmmirror.com/@parcel/hash/2.6.2
'@parcel/plugin': registry.npmmirror.com/@parcel/plugin/2.6.2_@parcel+core@2.6.2
'@parcel/utils': registry.npmmirror.com/@parcel/utils/2.6.2
nullthrows: registry.npmmirror.com/nullthrows/1.1.1
transitivePeerDependencies:
- '@parcel/core'
dev: false
registry.npmmirror.com/@parcel/cache/2.6.2_@parcel+core@2.6.2:
resolution: {integrity: sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@parcel/cache/-/cache-2.6.2.tgz}
id: registry.npmmirror.com/@parcel/cache/2.6.2
name: '@parcel/cache'
version: 2.6.2
engines: {node: '>= 12.0.0'}
peerDependencies:
'@parcel/core': ^2.6.2
dependencies:
'@parcel/core': registry.npmmirror.com/@parcel/core/2.6.2
'@parcel/fs': registry.npmmirror.com/@parcel/fs/2.6.2_@parcel+core@2.6.2
'@parcel/logger': registry.npmmirror.com/@parcel/logger/2.6.2
'@parcel/utils': registry.npmmirror.com/@parcel/utils/2.6.2
lmdb: registry.npmmirror.com/lmdb/2.5.2
dev: false
registry.npmmirror.com/@parcel/codeframe/2.6.2:
resolution: {integrity: sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@parcel/codeframe/-/codeframe-2.6.2.tgz}
name: '@parcel/codeframe'
version: 2.6.2
engines: {node: '>= 12.0.0'}
dependencies:
chalk: registry.npmmirror.com/chalk/4.1.2
dev: false
registry.npmmirror.com/@parcel/compressor-raw/2.6.2_@parcel+core@2.6.2:
resolution: {integrity: sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@parcel/compressor-raw/-/compressor-raw-2.6.2.tgz}
id: registry.npmmirror.com/@parcel/compressor-raw/2.6.2
name: '@parcel/compressor-raw'
version: 2.6.2
engines: {node: '>= 12.0.0', parcel: ^2.6.2}
dependencies:
'@parcel/plugin': registry.npmmirror.com/@parcel/plugin/2.6.2_@parcel+core@2.6.2
transitivePeerDependencies:
- '@parcel/core'
dev: false
registry.npmmirror.com/@parcel/config-default/2.6.2_jbwpslf6qohhoo53unfq6jzdse:
resolution: {integrity: sha512-kuZFY0rhaioCRX2LqxaMM2ylui6ms/nmdVxuceP4/SAWi/9duc+y1lG2a1zGNShbc6OEgpdQr/W/jxdYM7NJDw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@parcel/config-default/-/config-default-2.6.2.tgz}