generated from lib-pack/bs-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pnpm-lock.yaml
6152 lines (5551 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: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@douyinfe/semi-foundation':
specifier: ^2.44.0
version: registry.npmjs.org/@douyinfe/semi-foundation@2.44.0
'@douyinfe/semi-icons':
specifier: ^2.44.0
version: registry.npmjs.org/@douyinfe/semi-icons@2.44.0(react@18.2.0)
'@douyinfe/semi-illustrations':
specifier: ^2.44.0
version: registry.npmjs.org/@douyinfe/semi-illustrations@2.44.0(react@18.2.0)
'@douyinfe/semi-ui':
specifier: ^2.44.0
version: registry.npmjs.org/@douyinfe/semi-ui@2.44.0(react-dom@18.2.0)(react@18.2.0)
'@lark-base-open/js-sdk':
specifier: ^0.3.4
version: registry.npmjs.org/@lark-base-open/js-sdk@0.3.4
array-move:
specifier: ^4.0.0
version: registry.npmjs.org/array-move@4.0.0
i18next:
specifier: ^23.5.1
version: registry.npmjs.org/i18next@23.5.1
next:
specifier: ^13.5.3
version: registry.npmjs.org/next@13.5.3(@babel/core@7.23.0)(react-dom@18.2.0)(react@18.2.0)
next-i18next:
specifier: ^14.0.3
version: registry.npmjs.org/next-i18next@14.0.3(i18next@23.5.1)(next@13.5.3)(react-i18next@13.2.2)(react@18.2.0)
react:
specifier: ^18.2.0
version: registry.npmjs.org/react@18.2.0
react-dom:
specifier: 18.2.0
version: registry.npmjs.org/react-dom@18.2.0(react@18.2.0)
react-easy-sort:
specifier: ^1.6.0
version: registry.npmjs.org/react-easy-sort@1.6.0(react-dom@18.2.0)(react@18.2.0)
react-filerobot-image-editor:
specifier: ^4.5.2
version: registry.npmjs.org/react-filerobot-image-editor@4.5.2(@types/react@18.2.23)(react-dom@18.2.0)(react-konva@18.2.10)(react@18.2.0)(styled-components@5.3.11)
react-i18next:
specifier: ^13.2.2
version: registry.npmjs.org/react-i18next@13.2.2(i18next@23.5.1)(react-dom@18.2.0)(react@18.2.0)
reset-css:
specifier: ^5.0.2
version: registry.npmjs.org/reset-css@5.0.2
devDependencies:
'@jest/globals':
specifier: ^29.7.0
version: registry.npmjs.org/@jest/globals@29.7.0
'@types/jest':
specifier: ^29.5.5
version: registry.npmjs.org/@types/jest@29.5.5
'@types/node':
specifier: 20.4.0
version: registry.npmjs.org/@types/node@20.4.0
'@types/react':
specifier: ^18.2.23
version: registry.npmjs.org/@types/react@18.2.23
'@types/react-dom':
specifier: ^18.2.8
version: registry.npmjs.org/@types/react-dom@18.2.8
eslint:
specifier: ^8.50.0
version: registry.npmjs.org/eslint@8.50.0
eslint-config-next:
specifier: ^13.5.3
version: registry.npmjs.org/eslint-config-next@13.5.3(eslint@8.50.0)(typescript@5.2.2)
jest:
specifier: ^29.7.0
version: registry.npmjs.org/jest@29.7.0(@types/node@20.4.0)(ts-node@10.9.1)
ts-jest:
specifier: ^29.1.1
version: registry.npmjs.org/ts-jest@29.1.1(@babel/core@7.23.0)(jest@29.7.0)(typescript@5.2.2)
ts-node:
specifier: ^10.9.1
version: registry.npmjs.org/ts-node@10.9.1(@types/node@20.4.0)(typescript@5.2.2)
typescript:
specifier: ^5.2.2
version: registry.npmjs.org/typescript@5.2.2
packages:
registry.npmjs.org/@aashutoshrathi/word-wrap@1.2.6:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz}
name: '@aashutoshrathi/word-wrap'
version: 1.2.6
engines: {node: '>=0.10.0'}
dev: true
registry.npmjs.org/@ampproject/remapping@2.2.1:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz}
name: '@ampproject/remapping'
version: 2.2.1
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': registry.npmjs.org/@jridgewell/gen-mapping@0.3.3
'@jridgewell/trace-mapping': registry.npmjs.org/@jridgewell/trace-mapping@0.3.19
registry.npmjs.org/@babel/code-frame@7.22.13:
resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz}
name: '@babel/code-frame'
version: 7.22.13
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmjs.org/@babel/highlight@7.22.20
chalk: registry.npmjs.org/chalk@2.4.2
registry.npmjs.org/@babel/compat-data@7.22.20:
resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz}
name: '@babel/compat-data'
version: 7.22.20
engines: {node: '>=6.9.0'}
registry.npmjs.org/@babel/core@7.23.0:
resolution: {integrity: sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/core/-/core-7.23.0.tgz}
name: '@babel/core'
version: 7.23.0
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': registry.npmjs.org/@ampproject/remapping@2.2.1
'@babel/code-frame': registry.npmjs.org/@babel/code-frame@7.22.13
'@babel/generator': registry.npmjs.org/@babel/generator@7.23.0
'@babel/helper-compilation-targets': registry.npmjs.org/@babel/helper-compilation-targets@7.22.15
'@babel/helper-module-transforms': registry.npmjs.org/@babel/helper-module-transforms@7.23.0(@babel/core@7.23.0)
'@babel/helpers': registry.npmjs.org/@babel/helpers@7.23.1
'@babel/parser': registry.npmjs.org/@babel/parser@7.23.0
'@babel/template': registry.npmjs.org/@babel/template@7.22.15
'@babel/traverse': registry.npmjs.org/@babel/traverse@7.23.0(supports-color@5.5.0)
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
convert-source-map: registry.npmjs.org/convert-source-map@2.0.0
debug: registry.npmjs.org/debug@4.3.4(supports-color@5.5.0)
gensync: registry.npmjs.org/gensync@1.0.0-beta.2
json5: registry.npmjs.org/json5@2.2.3
semver: registry.npmjs.org/semver@6.3.1
transitivePeerDependencies:
- supports-color
registry.npmjs.org/@babel/generator@7.23.0:
resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz}
name: '@babel/generator'
version: 7.23.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
'@jridgewell/gen-mapping': registry.npmjs.org/@jridgewell/gen-mapping@0.3.3
'@jridgewell/trace-mapping': registry.npmjs.org/@jridgewell/trace-mapping@0.3.19
jsesc: registry.npmjs.org/jsesc@2.5.2
registry.npmjs.org/@babel/helper-annotate-as-pure@7.22.5:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz}
name: '@babel/helper-annotate-as-pure'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
dev: false
registry.npmjs.org/@babel/helper-compilation-targets@7.22.15:
resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz}
name: '@babel/helper-compilation-targets'
version: 7.22.15
engines: {node: '>=6.9.0'}
dependencies:
'@babel/compat-data': registry.npmjs.org/@babel/compat-data@7.22.20
'@babel/helper-validator-option': registry.npmjs.org/@babel/helper-validator-option@7.22.15
browserslist: registry.npmjs.org/browserslist@4.22.1
lru-cache: registry.npmjs.org/lru-cache@5.1.1
semver: registry.npmjs.org/semver@6.3.1
registry.npmjs.org/@babel/helper-environment-visitor@7.22.20:
resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz}
name: '@babel/helper-environment-visitor'
version: 7.22.20
engines: {node: '>=6.9.0'}
registry.npmjs.org/@babel/helper-function-name@7.23.0:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz}
name: '@babel/helper-function-name'
version: 7.23.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmjs.org/@babel/template@7.22.15
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
registry.npmjs.org/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz}
name: '@babel/helper-hoist-variables'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
registry.npmjs.org/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz}
name: '@babel/helper-module-imports'
version: 7.22.15
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
registry.npmjs.org/@babel/helper-module-transforms@7.23.0(@babel/core@7.23.0):
resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz}
id: registry.npmjs.org/@babel/helper-module-transforms/7.23.0
name: '@babel/helper-module-transforms'
version: 7.23.0
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-environment-visitor': registry.npmjs.org/@babel/helper-environment-visitor@7.22.20
'@babel/helper-module-imports': registry.npmjs.org/@babel/helper-module-imports@7.22.15
'@babel/helper-simple-access': registry.npmjs.org/@babel/helper-simple-access@7.22.5
'@babel/helper-split-export-declaration': registry.npmjs.org/@babel/helper-split-export-declaration@7.22.6
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier@7.22.20
registry.npmjs.org/@babel/helper-plugin-utils@7.22.5:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz}
name: '@babel/helper-plugin-utils'
version: 7.22.5
engines: {node: '>=6.9.0'}
registry.npmjs.org/@babel/helper-simple-access@7.22.5:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz}
name: '@babel/helper-simple-access'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
registry.npmjs.org/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz}
name: '@babel/helper-split-export-declaration'
version: 7.22.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
registry.npmjs.org/@babel/helper-string-parser@7.22.5:
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz}
name: '@babel/helper-string-parser'
version: 7.22.5
engines: {node: '>=6.9.0'}
registry.npmjs.org/@babel/helper-validator-identifier@7.22.20:
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz}
name: '@babel/helper-validator-identifier'
version: 7.22.20
engines: {node: '>=6.9.0'}
registry.npmjs.org/@babel/helper-validator-option@7.22.15:
resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz}
name: '@babel/helper-validator-option'
version: 7.22.15
engines: {node: '>=6.9.0'}
registry.npmjs.org/@babel/helpers@7.23.1:
resolution: {integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.1.tgz}
name: '@babel/helpers'
version: 7.23.1
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmjs.org/@babel/template@7.22.15
'@babel/traverse': registry.npmjs.org/@babel/traverse@7.23.0(supports-color@5.5.0)
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
transitivePeerDependencies:
- supports-color
registry.npmjs.org/@babel/highlight@7.22.20:
resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz}
name: '@babel/highlight'
version: 7.22.20
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier@7.22.20
chalk: registry.npmjs.org/chalk@2.4.2
js-tokens: registry.npmjs.org/js-tokens@4.0.0
registry.npmjs.org/@babel/parser@7.23.0:
resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz}
name: '@babel/parser'
version: 7.23.0
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
registry.npmjs.org/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.0):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-async-generators/7.8.4
name: '@babel/plugin-syntax-async-generators'
version: 7.8.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-bigint/7.8.3
name: '@babel/plugin-syntax-bigint'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.0):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-class-properties/7.12.13
name: '@babel/plugin-syntax-class-properties'
version: 7.12.13
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.0):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-import-meta/7.10.4
name: '@babel/plugin-syntax-import-meta'
version: 7.10.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-json-strings/7.8.3
name: '@babel/plugin-syntax-json-strings'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-jsx/7.22.5
name: '@babel/plugin-syntax-jsx'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.0):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/7.10.4
name: '@babel/plugin-syntax-logical-assignment-operators'
version: 7.10.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3
name: '@babel/plugin-syntax-nullish-coalescing-operator'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.0):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-numeric-separator/7.10.4
name: '@babel/plugin-syntax-numeric-separator'
version: 7.10.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/7.8.3
name: '@babel/plugin-syntax-object-rest-spread'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/7.8.3
name: '@babel/plugin-syntax-optional-catch-binding'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-optional-chaining/7.8.3
name: '@babel/plugin-syntax-optional-chaining'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.0):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-top-level-await/7.14.5
name: '@babel/plugin-syntax-top-level-await'
version: 7.14.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-typescript/7.22.5
name: '@babel/plugin-syntax-typescript'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.23.0
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/runtime@7.23.1:
resolution: {integrity: sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.1.tgz}
name: '@babel/runtime'
version: 7.23.1
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: registry.npmjs.org/regenerator-runtime@0.14.0
registry.npmjs.org/@babel/template@7.22.15:
resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz}
name: '@babel/template'
version: 7.22.15
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame@7.22.13
'@babel/parser': registry.npmjs.org/@babel/parser@7.23.0
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
registry.npmjs.org/@babel/traverse@7.23.0(supports-color@5.5.0):
resolution: {integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.0.tgz}
id: registry.npmjs.org/@babel/traverse/7.23.0
name: '@babel/traverse'
version: 7.23.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame@7.22.13
'@babel/generator': registry.npmjs.org/@babel/generator@7.23.0
'@babel/helper-environment-visitor': registry.npmjs.org/@babel/helper-environment-visitor@7.22.20
'@babel/helper-function-name': registry.npmjs.org/@babel/helper-function-name@7.23.0
'@babel/helper-hoist-variables': registry.npmjs.org/@babel/helper-hoist-variables@7.22.5
'@babel/helper-split-export-declaration': registry.npmjs.org/@babel/helper-split-export-declaration@7.22.6
'@babel/parser': registry.npmjs.org/@babel/parser@7.23.0
'@babel/types': registry.npmjs.org/@babel/types@7.23.0
debug: registry.npmjs.org/debug@4.3.4(supports-color@5.5.0)
globals: registry.npmjs.org/globals@11.12.0
transitivePeerDependencies:
- supports-color
registry.npmjs.org/@babel/types@7.23.0:
resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz}
name: '@babel/types'
version: 7.23.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': registry.npmjs.org/@babel/helper-string-parser@7.22.5
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier@7.22.20
to-fast-properties: registry.npmjs.org/to-fast-properties@2.0.0
registry.npmjs.org/@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz}
name: '@bcoe/v8-coverage'
version: 0.2.3
dev: true
registry.npmjs.org/@cspotcode/source-map-support@0.8.1:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz}
name: '@cspotcode/source-map-support'
version: 0.8.1
engines: {node: '>=12'}
dependencies:
'@jridgewell/trace-mapping': registry.npmjs.org/@jridgewell/trace-mapping@0.3.9
dev: true
registry.npmjs.org/@dnd-kit/accessibility@3.0.1(react@18.2.0):
resolution: {integrity: sha512-HXRrwS9YUYQO9lFRc/49uO/VICbM+O+ZRpFDe9Pd1rwVv2PCNkRiTZRdxrDgng/UkvdC3Re9r2vwPpXXrWeFzg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@dnd-kit/accessibility/-/accessibility-3.0.1.tgz}
id: registry.npmjs.org/@dnd-kit/accessibility/3.0.1
name: '@dnd-kit/accessibility'
version: 3.0.1
peerDependencies:
react: '>=16.8.0'
dependencies:
react: registry.npmjs.org/react@18.2.0
tslib: registry.npmjs.org/tslib@2.6.2
dev: false
registry.npmjs.org/@dnd-kit/core@6.0.8(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-lYaoP8yHTQSLlZe6Rr9qogouGUz9oRUj4AHhDQGQzq/hqaJRpFo65X+JKsdHf8oUFBzx5A+SJPUvxAwTF2OabA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@dnd-kit/core/-/core-6.0.8.tgz}
id: registry.npmjs.org/@dnd-kit/core/6.0.8
name: '@dnd-kit/core'
version: 6.0.8
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
'@dnd-kit/accessibility': registry.npmjs.org/@dnd-kit/accessibility@3.0.1(react@18.2.0)
'@dnd-kit/utilities': registry.npmjs.org/@dnd-kit/utilities@3.2.1(react@18.2.0)
react: registry.npmjs.org/react@18.2.0
react-dom: registry.npmjs.org/react-dom@18.2.0(react@18.2.0)
tslib: registry.npmjs.org/tslib@2.6.2
dev: false
registry.npmjs.org/@dnd-kit/sortable@7.0.2(@dnd-kit/core@6.0.8)(react@18.2.0):
resolution: {integrity: sha512-wDkBHHf9iCi1veM834Gbk1429bd4lHX4RpAwT0y2cHLf246GAvU2sVw/oxWNpPKQNQRQaeGXhAVgrOl1IT+iyA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@dnd-kit/sortable/-/sortable-7.0.2.tgz}
id: registry.npmjs.org/@dnd-kit/sortable/7.0.2
name: '@dnd-kit/sortable'
version: 7.0.2
peerDependencies:
'@dnd-kit/core': ^6.0.7
react: '>=16.8.0'
dependencies:
'@dnd-kit/core': registry.npmjs.org/@dnd-kit/core@6.0.8(react-dom@18.2.0)(react@18.2.0)
'@dnd-kit/utilities': registry.npmjs.org/@dnd-kit/utilities@3.2.1(react@18.2.0)
react: registry.npmjs.org/react@18.2.0
tslib: registry.npmjs.org/tslib@2.6.2
dev: false
registry.npmjs.org/@dnd-kit/utilities@3.2.1(react@18.2.0):
resolution: {integrity: sha512-OOXqISfvBw/1REtkSK2N3Fi2EQiLMlWUlqnOK/UpOISqBZPWpE6TqL+jcPtMOkE8TqYGiURvRdPSI9hltNUjEA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@dnd-kit/utilities/-/utilities-3.2.1.tgz}
id: registry.npmjs.org/@dnd-kit/utilities/3.2.1
name: '@dnd-kit/utilities'
version: 3.2.1
peerDependencies:
react: '>=16.8.0'
dependencies:
react: registry.npmjs.org/react@18.2.0
tslib: registry.npmjs.org/tslib@2.6.2
dev: false
registry.npmjs.org/@douyinfe/semi-animation-react@2.44.0:
resolution: {integrity: sha512-Zo4lpmrWI3cqCyzv9TeytBA3Cu8vrZ2HxqmVJax7PuGB6N13eDOtzOKg6j58MqfB4ClKjqvUBqapXNT3z/Q93g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@douyinfe/semi-animation-react/-/semi-animation-react-2.44.0.tgz}
name: '@douyinfe/semi-animation-react'
version: 2.44.0
dependencies:
'@douyinfe/semi-animation': registry.npmjs.org/@douyinfe/semi-animation@2.44.0
'@douyinfe/semi-animation-styled': registry.npmjs.org/@douyinfe/semi-animation-styled@2.44.0
classnames: registry.npmjs.org/classnames@2.3.2
dev: false
registry.npmjs.org/@douyinfe/semi-animation-styled@2.44.0:
resolution: {integrity: sha512-QSAxxpkamyxR0d81Ep2fDrdgHON9GB0ffarjt7YWJ2VD6oH269ArLtdW/UNCrusJagcO5xkfLNJC0UURExNi7A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@douyinfe/semi-animation-styled/-/semi-animation-styled-2.44.0.tgz}
name: '@douyinfe/semi-animation-styled'
version: 2.44.0
dev: false
registry.npmjs.org/@douyinfe/semi-animation@2.44.0:
resolution: {integrity: sha512-PZPljqV5/yPBdnPtGKBfdDJ0xHLMsC5VK/5tKKXeNp9BT23P5/GOmkvvuQ5on8tPJo/yqOpbg0tVVLorPOx6Hw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@douyinfe/semi-animation/-/semi-animation-2.44.0.tgz}
name: '@douyinfe/semi-animation'
version: 2.44.0
dependencies:
bezier-easing: registry.npmjs.org/bezier-easing@2.1.0
dev: false
registry.npmjs.org/@douyinfe/semi-foundation@2.44.0:
resolution: {integrity: sha512-U96IGnhQH32NuRwTGtwAbtr+eqQkwBJSu56dKbOrxV4fAzSeDvDSB2lVxwOeF53eX/j7c60S2Kohs7E/7oB3fQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@douyinfe/semi-foundation/-/semi-foundation-2.44.0.tgz}
name: '@douyinfe/semi-foundation'
version: 2.44.0
dependencies:
'@douyinfe/semi-animation': registry.npmjs.org/@douyinfe/semi-animation@2.44.0
async-validator: registry.npmjs.org/async-validator@3.5.2
classnames: registry.npmjs.org/classnames@2.3.2
date-fns: registry.npmjs.org/date-fns@2.30.0
date-fns-tz: registry.npmjs.org/date-fns-tz@1.3.8(date-fns@2.30.0)
lodash: registry.npmjs.org/lodash@4.17.21
memoize-one: registry.npmjs.org/memoize-one@5.2.1
scroll-into-view-if-needed: registry.npmjs.org/scroll-into-view-if-needed@2.2.31
dev: false
registry.npmjs.org/@douyinfe/semi-icons@2.44.0(react@18.2.0):
resolution: {integrity: sha512-hWFGNLjGbZl4HSUcnFzcTfxSOGcQmqSJdRYDDiaMB9E8JaqEJO9SA0YRtDNkQ9lUJL3acSts/Oe2oNWUVUkW+Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@douyinfe/semi-icons/-/semi-icons-2.44.0.tgz}
id: registry.npmjs.org/@douyinfe/semi-icons/2.44.0
name: '@douyinfe/semi-icons'
version: 2.44.0
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
classnames: registry.npmjs.org/classnames@2.3.2
react: registry.npmjs.org/react@18.2.0
dev: false
registry.npmjs.org/@douyinfe/semi-illustrations@2.44.0(react@18.2.0):
resolution: {integrity: sha512-mQaBYGoDr+HncJEUKr0qCuPzfdzU06i8on9SrJ23cHFBmXCqzwebm+PkeY3448fNdE9srZP1W4Ca+q/hXGw04Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@douyinfe/semi-illustrations/-/semi-illustrations-2.44.0.tgz}
id: registry.npmjs.org/@douyinfe/semi-illustrations/2.44.0
name: '@douyinfe/semi-illustrations'
version: 2.44.0
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
react: registry.npmjs.org/react@18.2.0
dev: false
registry.npmjs.org/@douyinfe/semi-theme-default@2.44.0:
resolution: {integrity: sha512-YKi7mgFgj9wkL5VFE1cZx/4/4Dfxbf6XNx2fWIbeUcYDESHvOxbmpB13D8fRdF/0lruz0yWBhU7irPT26OhaMg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@douyinfe/semi-theme-default/-/semi-theme-default-2.44.0.tgz}
name: '@douyinfe/semi-theme-default'
version: 2.44.0
dependencies:
glob: registry.npmjs.org/glob@7.2.3
dev: false
registry.npmjs.org/@douyinfe/semi-ui@2.44.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-SYtx/YTfOHEraMeAEONRLeiCMbZZD6pyNnwLIU8dXIXd71sZpKpPl5pvQegxgFzE16A73zk4SslC5CguVxct2w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@douyinfe/semi-ui/-/semi-ui-2.44.0.tgz}
id: registry.npmjs.org/@douyinfe/semi-ui/2.44.0
name: '@douyinfe/semi-ui'
version: 2.44.0
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
'@dnd-kit/core': registry.npmjs.org/@dnd-kit/core@6.0.8(react-dom@18.2.0)(react@18.2.0)
'@dnd-kit/sortable': registry.npmjs.org/@dnd-kit/sortable@7.0.2(@dnd-kit/core@6.0.8)(react@18.2.0)
'@dnd-kit/utilities': registry.npmjs.org/@dnd-kit/utilities@3.2.1(react@18.2.0)
'@douyinfe/semi-animation': registry.npmjs.org/@douyinfe/semi-animation@2.44.0
'@douyinfe/semi-animation-react': registry.npmjs.org/@douyinfe/semi-animation-react@2.44.0
'@douyinfe/semi-foundation': registry.npmjs.org/@douyinfe/semi-foundation@2.44.0
'@douyinfe/semi-icons': registry.npmjs.org/@douyinfe/semi-icons@2.44.0(react@18.2.0)
'@douyinfe/semi-illustrations': registry.npmjs.org/@douyinfe/semi-illustrations@2.44.0(react@18.2.0)
'@douyinfe/semi-theme-default': registry.npmjs.org/@douyinfe/semi-theme-default@2.44.0
async-validator: registry.npmjs.org/async-validator@3.5.2
classnames: registry.npmjs.org/classnames@2.3.2
copy-text-to-clipboard: registry.npmjs.org/copy-text-to-clipboard@2.2.0
date-fns: registry.npmjs.org/date-fns@2.30.0
date-fns-tz: registry.npmjs.org/date-fns-tz@1.3.8(date-fns@2.30.0)
lodash: registry.npmjs.org/lodash@4.17.21
prop-types: registry.npmjs.org/prop-types@15.8.1
react: registry.npmjs.org/react@18.2.0
react-dom: registry.npmjs.org/react-dom@18.2.0(react@18.2.0)
react-resizable: registry.npmjs.org/react-resizable@3.0.5(react-dom@18.2.0)(react@18.2.0)
react-window: registry.npmjs.org/react-window@1.8.9(react-dom@18.2.0)(react@18.2.0)
resize-observer-polyfill: registry.npmjs.org/resize-observer-polyfill@1.5.1
scroll-into-view-if-needed: registry.npmjs.org/scroll-into-view-if-needed@2.2.31
utility-types: registry.npmjs.org/utility-types@3.10.0
dev: false
registry.npmjs.org/@emotion/is-prop-valid@1.2.1:
resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz}
name: '@emotion/is-prop-valid'
version: 1.2.1
dependencies:
'@emotion/memoize': registry.npmjs.org/@emotion/memoize@0.8.1
dev: false
registry.npmjs.org/@emotion/memoize@0.8.1:
resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz}
name: '@emotion/memoize'
version: 0.8.1
dev: false
registry.npmjs.org/@emotion/stylis@0.8.5:
resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz}
name: '@emotion/stylis'
version: 0.8.5
dev: false
registry.npmjs.org/@emotion/unitless@0.7.5:
resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz}
name: '@emotion/unitless'
version: 0.7.5
dev: false
registry.npmjs.org/@eslint-community/eslint-utils@4.4.0(eslint@8.50.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz}
id: registry.npmjs.org/@eslint-community/eslint-utils/4.4.0
name: '@eslint-community/eslint-utils'
version: 4.4.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
eslint: registry.npmjs.org/eslint@8.50.0
eslint-visitor-keys: registry.npmjs.org/eslint-visitor-keys@3.4.3
dev: true
registry.npmjs.org/@eslint-community/regexpp@4.9.0:
resolution: {integrity: sha512-zJmuCWj2VLBt4c25CfBIbMZLGLyhkvs7LznyVX5HfpzeocThgIj5XQK4L+g3U36mMcx8bPMhGyPpwCATamC4jQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.0.tgz}
name: '@eslint-community/regexpp'
version: 4.9.0
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: true
registry.npmjs.org/@eslint/eslintrc@2.1.2:
resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz}
name: '@eslint/eslintrc'
version: 2.1.2
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: registry.npmjs.org/ajv@6.12.6
debug: registry.npmjs.org/debug@4.3.4(supports-color@5.5.0)
espree: registry.npmjs.org/espree@9.6.1
globals: registry.npmjs.org/globals@13.22.0
ignore: registry.npmjs.org/ignore@5.2.4
import-fresh: registry.npmjs.org/import-fresh@3.3.0
js-yaml: registry.npmjs.org/js-yaml@4.1.0
minimatch: registry.npmjs.org/minimatch@3.1.2
strip-json-comments: registry.npmjs.org/strip-json-comments@3.1.1
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/@eslint/js@8.50.0:
resolution: {integrity: sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@eslint/js/-/js-8.50.0.tgz}
name: '@eslint/js'
version: 8.50.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
registry.npmjs.org/@humanwhocodes/config-array@0.11.11:
resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz}
name: '@humanwhocodes/config-array'
version: 0.11.11
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': registry.npmjs.org/@humanwhocodes/object-schema@1.2.1
debug: registry.npmjs.org/debug@4.3.4(supports-color@5.5.0)
minimatch: registry.npmjs.org/minimatch@3.1.2
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/@humanwhocodes/module-importer@1.0.1:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz}
name: '@humanwhocodes/module-importer'
version: 1.0.1
engines: {node: '>=12.22'}
dev: true
registry.npmjs.org/@humanwhocodes/object-schema@1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz}
name: '@humanwhocodes/object-schema'
version: 1.2.1
dev: true
registry.npmjs.org/@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz}
name: '@istanbuljs/load-nyc-config'
version: 1.1.0
engines: {node: '>=8'}
dependencies:
camelcase: registry.npmjs.org/camelcase@5.3.1
find-up: registry.npmjs.org/find-up@4.1.0
get-package-type: registry.npmjs.org/get-package-type@0.1.0
js-yaml: registry.npmjs.org/js-yaml@3.14.1
resolve-from: registry.npmjs.org/resolve-from@5.0.0
dev: true
registry.npmjs.org/@istanbuljs/schema@0.1.3:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz}
name: '@istanbuljs/schema'
version: 0.1.3
engines: {node: '>=8'}
dev: true
registry.npmjs.org/@jest/console@29.7.0:
resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz}
name: '@jest/console'
version: 29.7.0
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': registry.npmjs.org/@jest/types@29.6.3
'@types/node': registry.npmjs.org/@types/node@20.4.0
chalk: registry.npmjs.org/chalk@4.1.2
jest-message-util: registry.npmjs.org/jest-message-util@29.7.0
jest-util: registry.npmjs.org/jest-util@29.7.0
slash: registry.npmjs.org/slash@3.0.0
dev: true
registry.npmjs.org/@jest/core@29.7.0(ts-node@10.9.1):
resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz}
id: registry.npmjs.org/@jest/core/29.7.0
name: '@jest/core'
version: 29.7.0
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
dependencies:
'@jest/console': registry.npmjs.org/@jest/console@29.7.0
'@jest/reporters': registry.npmjs.org/@jest/reporters@29.7.0
'@jest/test-result': registry.npmjs.org/@jest/test-result@29.7.0
'@jest/transform': registry.npmjs.org/@jest/transform@29.7.0
'@jest/types': registry.npmjs.org/@jest/types@29.6.3
'@types/node': registry.npmjs.org/@types/node@20.4.0
ansi-escapes: registry.npmjs.org/ansi-escapes@4.3.2
chalk: registry.npmjs.org/chalk@4.1.2
ci-info: registry.npmjs.org/ci-info@3.8.0
exit: registry.npmjs.org/exit@0.1.2
graceful-fs: registry.npmjs.org/graceful-fs@4.2.11
jest-changed-files: registry.npmjs.org/jest-changed-files@29.7.0
jest-config: registry.npmjs.org/jest-config@29.7.0(@types/node@20.4.0)(ts-node@10.9.1)
jest-haste-map: registry.npmjs.org/jest-haste-map@29.7.0
jest-message-util: registry.npmjs.org/jest-message-util@29.7.0
jest-regex-util: registry.npmjs.org/jest-regex-util@29.6.3
jest-resolve: registry.npmjs.org/jest-resolve@29.7.0
jest-resolve-dependencies: registry.npmjs.org/jest-resolve-dependencies@29.7.0
jest-runner: registry.npmjs.org/jest-runner@29.7.0
jest-runtime: registry.npmjs.org/jest-runtime@29.7.0
jest-snapshot: registry.npmjs.org/jest-snapshot@29.7.0
jest-util: registry.npmjs.org/jest-util@29.7.0
jest-validate: registry.npmjs.org/jest-validate@29.7.0
jest-watcher: registry.npmjs.org/jest-watcher@29.7.0
micromatch: registry.npmjs.org/micromatch@4.0.5
pretty-format: registry.npmjs.org/pretty-format@29.7.0
slash: registry.npmjs.org/slash@3.0.0
strip-ansi: registry.npmjs.org/strip-ansi@6.0.1
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
- ts-node
dev: true
registry.npmjs.org/@jest/environment@29.7.0:
resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz}
name: '@jest/environment'
version: 29.7.0
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/fake-timers': registry.npmjs.org/@jest/fake-timers@29.7.0
'@jest/types': registry.npmjs.org/@jest/types@29.6.3
'@types/node': registry.npmjs.org/@types/node@20.4.0
jest-mock: registry.npmjs.org/jest-mock@29.7.0
dev: true
registry.npmjs.org/@jest/expect-utils@29.7.0:
resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz}
name: '@jest/expect-utils'
version: 29.7.0
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
jest-get-type: registry.npmjs.org/jest-get-type@29.6.3
dev: true
registry.npmjs.org/@jest/expect@29.7.0:
resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz}
name: '@jest/expect'
version: 29.7.0
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
expect: registry.npmjs.org/expect@29.7.0
jest-snapshot: registry.npmjs.org/jest-snapshot@29.7.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/@jest/fake-timers@29.7.0:
resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz}
name: '@jest/fake-timers'
version: 29.7.0
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': registry.npmjs.org/@jest/types@29.6.3
'@sinonjs/fake-timers': registry.npmjs.org/@sinonjs/fake-timers@10.3.0
'@types/node': registry.npmjs.org/@types/node@20.4.0
jest-message-util: registry.npmjs.org/jest-message-util@29.7.0
jest-mock: registry.npmjs.org/jest-mock@29.7.0
jest-util: registry.npmjs.org/jest-util@29.7.0
dev: true
registry.npmjs.org/@jest/globals@29.7.0:
resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz}
name: '@jest/globals'
version: 29.7.0
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/environment': registry.npmjs.org/@jest/environment@29.7.0
'@jest/expect': registry.npmjs.org/@jest/expect@29.7.0
'@jest/types': registry.npmjs.org/@jest/types@29.6.3
jest-mock: registry.npmjs.org/jest-mock@29.7.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/@jest/reporters@29.7.0:
resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz}
name: '@jest/reporters'
version: 29.7.0
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
dependencies:
'@bcoe/v8-coverage': registry.npmjs.org/@bcoe/v8-coverage@0.2.3
'@jest/console': registry.npmjs.org/@jest/console@29.7.0
'@jest/test-result': registry.npmjs.org/@jest/test-result@29.7.0
'@jest/transform': registry.npmjs.org/@jest/transform@29.7.0
'@jest/types': registry.npmjs.org/@jest/types@29.6.3
'@jridgewell/trace-mapping': registry.npmjs.org/@jridgewell/trace-mapping@0.3.19
'@types/node': registry.npmjs.org/@types/node@20.4.0
chalk: registry.npmjs.org/chalk@4.1.2
collect-v8-coverage: registry.npmjs.org/collect-v8-coverage@1.0.2
exit: registry.npmjs.org/exit@0.1.2
glob: registry.npmjs.org/glob@7.2.3
graceful-fs: registry.npmjs.org/graceful-fs@4.2.11
istanbul-lib-coverage: registry.npmjs.org/istanbul-lib-coverage@3.2.0
istanbul-lib-instrument: registry.npmjs.org/istanbul-lib-instrument@6.0.0
istanbul-lib-report: registry.npmjs.org/istanbul-lib-report@3.0.1
istanbul-lib-source-maps: registry.npmjs.org/istanbul-lib-source-maps@4.0.1
istanbul-reports: registry.npmjs.org/istanbul-reports@3.1.6
jest-message-util: registry.npmjs.org/jest-message-util@29.7.0
jest-util: registry.npmjs.org/jest-util@29.7.0
jest-worker: registry.npmjs.org/jest-worker@29.7.0
slash: registry.npmjs.org/slash@3.0.0
string-length: registry.npmjs.org/string-length@4.0.2
strip-ansi: registry.npmjs.org/strip-ansi@6.0.1
v8-to-istanbul: registry.npmjs.org/v8-to-istanbul@9.1.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/@jest/schemas@29.6.3:
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz}
name: '@jest/schemas'
version: 29.6.3
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@sinclair/typebox': registry.npmjs.org/@sinclair/typebox@0.27.8
dev: true
registry.npmjs.org/@jest/source-map@29.6.3:
resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz}
name: '@jest/source-map'
version: 29.6.3
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jridgewell/trace-mapping': registry.npmjs.org/@jridgewell/trace-mapping@0.3.19
callsites: registry.npmjs.org/callsites@3.1.0
graceful-fs: registry.npmjs.org/graceful-fs@4.2.11
dev: true
registry.npmjs.org/@jest/test-result@29.7.0:
resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz}
name: '@jest/test-result'
version: 29.7.0
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/console': registry.npmjs.org/@jest/console@29.7.0
'@jest/types': registry.npmjs.org/@jest/types@29.6.3
'@types/istanbul-lib-coverage': registry.npmjs.org/@types/istanbul-lib-coverage@2.0.4
collect-v8-coverage: registry.npmjs.org/collect-v8-coverage@1.0.2
dev: true
registry.npmjs.org/@jest/test-sequencer@29.7.0:
resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz}
name: '@jest/test-sequencer'