-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpnpm-lock.yaml
16210 lines (14211 loc) · 729 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:
'@arco-design/web-react':
specifier: ^2.32.2
version: 2.32.2(@types/react@17.0.35)(react-dom@17.0.2)(react@17.0.2)
ahooks:
specifier: ^3.3.13
version: 3.3.13(react@17.0.2)
css2json:
specifier: ^1.1.1
version: 1.1.1
doc-editor-core:
specifier: 1.0.2
version: 1.0.2(react-dom@17.0.2)
doc-editor-delta:
specifier: 1.0.2
version: 1.0.2(react-dom@17.0.2)(react@17.0.2)
doc-editor-plugin:
specifier: 1.0.2
version: 1.0.2(@testing-library/dom@8.11.1)(@types/react@17.0.35)(acorn@7.4.1)(eslint@7.11.0)(sass@1.52.3)
doc-editor-utils:
specifier: 1.0.2
version: 1.0.2(react-dom@17.0.2)(react@17.0.2)
immer:
specifier: ^9.0.12
version: 9.0.12
jsoneditor:
specifier: ^9.9.0
version: 9.9.0
lodash:
specifier: ^4.17.21
version: 4.17.21
react:
specifier: ^17.0.2
version: 17.0.2
react-dom:
specifier: ^17.0.2
version: 17.0.2(react@17.0.2)
react-grid-layout:
specifier: 1.3.4
version: 1.3.4(react-dom@17.0.2)(react@17.0.2)
react-resizable:
specifier: ^3.0.4
version: 3.0.4(react-dom@17.0.2)(react@17.0.2)
react-scripts:
specifier: ^4.0.3
version: 4.0.3(acorn@7.4.1)(eslint@7.11.0)(react@17.0.2)(sass@1.52.3)(typescript@4.5.2)
react-sizeme:
specifier: ^3.0.2
version: 3.0.2
typescript:
specifier: ^4.1.2
version: 4.5.2
use-immer:
specifier: ^0.7.0
version: 0.7.0(immer@9.0.12)(react@17.0.2)
uuid:
specifier: ^8.3.2
version: 8.3.2
devDependencies:
'@babel/core':
specifier: ^7.13.0
version: 7.18.5
'@types/jest':
specifier: ^26.0.15
version: 26.0.24
'@types/jsoneditor':
specifier: ^9.5.1
version: 9.5.1
'@types/lodash':
specifier: ^4.14.182
version: 4.14.182
'@types/node':
specifier: ^12.0.0
version: 12.20.37
'@types/react':
specifier: ^17.0.0
version: 17.0.35
'@types/react-dom':
specifier: ^17.0.0
version: 17.0.11
'@types/react-grid-layout':
specifier: ^1.3.2
version: 1.3.5
'@types/uuid':
specifier: ^8.3.4
version: 8.3.4
'@typescript-eslint/eslint-plugin':
specifier: ^5.4.0
version: 5.4.0(@typescript-eslint/parser@5.4.0)(eslint@7.11.0)(typescript@4.5.2)
'@typescript-eslint/parser':
specifier: ^5.4.0
version: 5.4.0(eslint@7.11.0)(typescript@4.5.2)
babel-plugin-import:
specifier: ^1.13.3
version: registry.nlark.com/babel-plugin-import@1.13.3
cross-env:
specifier: ^7.0.3
version: registry.nlark.com/cross-env@7.0.3
customize-cra:
specifier: ^1.0.0
version: 1.0.0
eslint:
specifier: 7.11.0
version: 7.11.0
eslint-config-prettier:
specifier: ^8.3.0
version: registry.nlark.com/eslint-config-prettier@8.3.0(eslint@7.11.0)
eslint-plugin-import:
specifier: ^2.25.3
version: 2.25.3(@typescript-eslint/parser@5.4.0)(eslint@7.11.0)
eslint-plugin-prettier:
specifier: 3.3.1
version: 3.3.1(eslint-config-prettier@8.3.0)(eslint@7.11.0)(prettier@2.4.1)
eslint-plugin-react:
specifier: ^7.27.0
version: 7.27.0(eslint@7.11.0)
eslint-plugin-react-hooks:
specifier: ^4.3.0
version: 4.3.0(eslint@7.11.0)
husky:
specifier: ^7.0.4
version: 7.0.4
less:
specifier: ^3.0.0
version: 3.13.1
less-loader:
specifier: 5.0.0
version: 5.0.0(less@3.13.1)(webpack@4.44.2)
lint-staged:
specifier: ^12.0.2
version: 12.0.3
postcss:
specifier: ^8.3.3
version: 8.4.14
prettier:
specifier: ^2.4.1
version: 2.4.1
react-app-rewired:
specifier: ^2.1.8
version: registry.nlark.com/react-app-rewired@2.1.8(react-scripts@4.0.3)
sass:
specifier: ^1.52.3
version: 1.52.3
stylelint:
specifier: ^14.8.5
version: 14.8.5
stylelint-config-sass-guidelines:
specifier: ^9.0.1
version: 9.0.1(postcss@8.4.14)(stylelint@14.8.5)
stylelint-config-standard:
specifier: ^25.0.0
version: 25.0.0(stylelint@14.8.5)
uglifyjs-webpack-plugin:
specifier: ^2.2.0
version: 2.2.0(webpack@4.44.2)
webpack:
specifier: ^4.0.0
version: 4.44.2
webpack-bundle-analyzer:
specifier: ^4.6.1
version: 4.6.1
packages:
/@ampproject/remapping@2.2.0:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.1.1
'@jridgewell/trace-mapping': 0.3.13
/@arco-design/color@0.4.0:
resolution: {integrity: sha512-s7p9MSwJgHeL8DwcATaXvWT3m2SigKpxx4JA1BGPHL4gfvaQsmQfrLBDpjOJFJuJ2jG2dMt3R3P8Pm9E65q18g==}
dependencies:
color: 3.2.1
dev: false
/@arco-design/web-react@2.32.2(@types/react@17.0.35)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-AvhXySI6lWLp8x5ce/b4RaQRY9k4hqEl8H7VipEaKFmC1EVY8B5weIYcrIH/GbLmtWNRsqpWuCvq4AlZ9DfWEA==}
peerDependencies:
react: '>=16'
react-dom: '>=16'
dependencies:
'@arco-design/color': 0.4.0
'@babel/runtime': 7.16.3
b-tween: 0.3.3
b-validate: 1.4.0
compute-scroll-into-view: 1.0.17
dayjs: 1.10.7
lodash: 4.17.21
number-precision: 1.5.2
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
react-focus-lock: 2.9.1(@types/react@17.0.35)(react@17.0.2)
react-transition-group: 4.4.2(react-dom@17.0.2)(react@17.0.2)
resize-observer-polyfill: 1.5.1
scroll-into-view-if-needed: 2.2.20
shallowequal: 1.1.0
transitivePeerDependencies:
- '@types/react'
dev: false
/@arco-design/web-react@2.60.3(@types/react@17.0.35)(react-dom@17.0.1)(react@17.0.1):
resolution: {integrity: sha512-mSSxpX0n8SdKr6Jy+Xl4C+CPzbf52wG3Fwv0dkdCkq3FNERJBPCTlbJ5SNb7USWrDEpvY79OrtZ8IAgQVP5ncA==}
peerDependencies:
react: '>=16'
react-dom: '>=16'
dependencies:
'@arco-design/color': 0.4.0
'@babel/runtime': 7.16.3
b-tween: 0.3.3
b-validate: 1.5.3
compute-scroll-into-view: 1.0.17
dayjs: 1.10.7
lodash: 4.17.21
number-precision: 1.5.2
react: 17.0.1
react-dom: 17.0.1(react@17.0.1)
react-focus-lock: 2.9.1(@types/react@17.0.35)(react@17.0.1)
react-is: 18.2.0
react-transition-group: 4.4.2(react-dom@17.0.1)(react@17.0.1)
resize-observer-polyfill: 1.5.1
scroll-into-view-if-needed: 2.2.20
shallowequal: 1.1.0
transitivePeerDependencies:
- '@types/react'
dev: false
/@arco-design/web-react@2.60.3(@types/react@17.0.35)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-mSSxpX0n8SdKr6Jy+Xl4C+CPzbf52wG3Fwv0dkdCkq3FNERJBPCTlbJ5SNb7USWrDEpvY79OrtZ8IAgQVP5ncA==}
peerDependencies:
react: '>=16'
react-dom: '>=16'
dependencies:
'@arco-design/color': 0.4.0
'@babel/runtime': 7.16.3
b-tween: 0.3.3
b-validate: 1.5.3
compute-scroll-into-view: 1.0.17
dayjs: 1.10.7
lodash: 4.17.21
number-precision: 1.5.2
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
react-focus-lock: 2.9.1(@types/react@17.0.35)(react@17.0.2)
react-is: 18.2.0
react-transition-group: 4.4.2(react-dom@17.0.2)(react@17.0.2)
resize-observer-polyfill: 1.5.1
scroll-into-view-if-needed: 2.2.20
shallowequal: 1.1.0
transitivePeerDependencies:
- '@types/react'
dev: false
/@babel/code-frame@7.10.4:
resolution: {integrity: sha1-Fo2ho26Q2miujUnA8bSMfGJJITo=, tarball: https://registry.npmmirror.com/@babel/code-frame/download/@babel/code-frame-7.10.4.tgz}
dependencies:
'@babel/highlight': 7.16.0
/@babel/code-frame@7.16.0:
resolution: {integrity: sha1-DfyAMJvuyEEeZecGRhxAiwu5tDE=, tarball: https://registry.npmmirror.com/@babel/code-frame/download/@babel/code-frame-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.16.0
/@babel/code-frame@7.16.7:
resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.17.12
/@babel/compat-data@7.16.4:
resolution: {integrity: sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==, tarball: https://registry.npmmirror.com/@babel/compat-data/download/@babel/compat-data-7.16.4.tgz}
engines: {node: '>=6.9.0'}
/@babel/compat-data@7.18.5:
resolution: {integrity: sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg==}
engines: {node: '>=6.9.0'}
/@babel/core@7.12.3:
resolution: {integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.16.0
'@babel/generator': 7.16.0
'@babel/helper-module-transforms': 7.16.0
'@babel/helpers': 7.16.3
'@babel/parser': 7.16.4
'@babel/template': 7.16.0
'@babel/traverse': 7.16.3
'@babel/types': 7.16.0
convert-source-map: registry.nlark.com/convert-source-map@1.8.0
debug: 4.3.4(supports-color@6.1.0)
gensync: registry.nlark.com/gensync@1.0.0-beta.2
json5: registry.nlark.com/json5@2.2.0
lodash: 4.17.21
resolve: registry.nlark.com/resolve@1.18.1
semver: registry.nlark.com/semver@5.7.1
source-map: registry.nlark.com/source-map@0.5.7
transitivePeerDependencies:
- supports-color
/@babel/core@7.18.5:
resolution: {integrity: sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.16.7
'@babel/generator': 7.18.2
'@babel/helper-compilation-targets': 7.18.2(@babel/core@7.18.5)
'@babel/helper-module-transforms': 7.18.0
'@babel/helpers': 7.18.2
'@babel/parser': 7.18.5
'@babel/template': 7.16.7
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
convert-source-map: 1.8.0
debug: 4.3.4(supports-color@6.1.0)
gensync: 1.0.0-beta.2
json5: 2.2.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
/@babel/generator@7.16.0:
resolution: {integrity: sha1-1A89HVB15i01ALzLZ/PaqKlSZbI=, tarball: https://registry.npmmirror.com/@babel/generator/download/@babel/generator-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
jsesc: registry.nlark.com/jsesc@2.5.2
source-map: 0.5.7
/@babel/generator@7.18.2:
resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
'@jridgewell/gen-mapping': 0.3.1
jsesc: 2.5.2
/@babel/helper-annotate-as-pure@7.16.0:
resolution: {integrity: sha1-mh8OvNpT2aLQAQjEzqzmpdXx8I0=, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-builder-binary-assignment-operator-visitor@7.16.0:
resolution: {integrity: sha1-8aaGuS2nlAIMJlguuFLprM0NeII=, tarball: https://registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.16.0
'@babel/types': 7.18.4
/@babel/helper-compilation-targets@7.18.2(@babel/core@7.12.3):
resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.18.5
'@babel/core': 7.12.3
'@babel/helper-validator-option': 7.16.7
browserslist: 4.20.4
semver: 6.3.0
/@babel/helper-compilation-targets@7.18.2(@babel/core@7.18.5):
resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.18.5
'@babel/core': 7.18.5
'@babel/helper-validator-option': 7.16.7
browserslist: 4.20.4
semver: 6.3.0
/@babel/helper-create-class-features-plugin@7.16.0(@babel/core@7.12.3):
resolution: {integrity: sha1-CQ1NFms0KgOp/sN+9P1a65x8aks=, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-annotate-as-pure': 7.16.0
'@babel/helper-function-name': 7.16.0
'@babel/helper-member-expression-to-functions': 7.16.0
'@babel/helper-optimise-call-expression': 7.16.0
'@babel/helper-replace-supers': 7.16.0
'@babel/helper-split-export-declaration': 7.16.7
transitivePeerDependencies:
- supports-color
/@babel/helper-create-class-features-plugin@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-CQ1NFms0KgOp/sN+9P1a65x8aks=, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-annotate-as-pure': 7.16.0
'@babel/helper-function-name': 7.16.0
'@babel/helper-member-expression-to-functions': 7.16.0
'@babel/helper-optimise-call-expression': 7.16.0
'@babel/helper-replace-supers': 7.16.0
'@babel/helper-split-export-declaration': 7.16.7
transitivePeerDependencies:
- supports-color
/@babel/helper-create-regexp-features-plugin@7.16.0(@babel/core@7.12.3):
resolution: {integrity: sha1-BrI0jON/zMT14Y3NjXUFPyp8RP8=, tarball: https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/download/@babel/helper-create-regexp-features-plugin-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-annotate-as-pure': 7.16.0
regexpu-core: registry.nlark.com/regexpu-core@4.8.0
/@babel/helper-create-regexp-features-plugin@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-BrI0jON/zMT14Y3NjXUFPyp8RP8=, tarball: https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/download/@babel/helper-create-regexp-features-plugin-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-annotate-as-pure': 7.16.0
regexpu-core: registry.nlark.com/regexpu-core@4.8.0
/@babel/helper-define-polyfill-provider@0.3.0(@babel/core@7.18.5):
resolution: {integrity: sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==, tarball: https://registry.npmmirror.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.3.0.tgz}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-compilation-targets': 7.18.2(@babel/core@7.18.5)
'@babel/helper-module-imports': 7.16.7
'@babel/helper-plugin-utils': 7.14.5
'@babel/traverse': 7.18.5
debug: 4.3.4(supports-color@6.1.0)
lodash.debounce: 4.0.8
resolve: registry.nlark.com/resolve@1.18.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
/@babel/helper-environment-visitor@7.18.2:
resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==}
engines: {node: '>=6.9.0'}
/@babel/helper-explode-assignable-expression@7.16.0:
resolution: {integrity: sha1-dTAXM3oV9G+cCfZ0z/EM7pudd3g=, tarball: https://registry.npmmirror.com/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-function-name@7.16.0:
resolution: {integrity: sha1-t90Hl9ALv+5PB+nE6lsOMMi7FIE=, tarball: https://registry.npmmirror.com/@babel/helper-function-name/download/@babel/helper-function-name-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-get-function-arity': 7.16.0
'@babel/template': 7.16.7
'@babel/types': 7.18.4
/@babel/helper-function-name@7.17.9:
resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.16.7
'@babel/types': 7.18.4
/@babel/helper-get-function-arity@7.16.0:
resolution: {integrity: sha1-AIjHSGspqctdlIsaHeRttm4InPo=, tarball: https://registry.npmmirror.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-hoist-variables@7.16.0:
resolution: {integrity: sha1-TJAjwvHe9+KP9G/B2802o5vqqBo=, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-hoist-variables@7.16.7:
resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-member-expression-to-functions@7.16.0:
resolution: {integrity: sha1-KShwQO/Rl8d2Nu91GI6B2ovM1aQ=, tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-module-imports@7.16.0:
resolution: {integrity: sha1-kFOOYLZy7PG0SPX09UM9N+eaPsM=, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.16.0
/@babel/helper-module-imports@7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-module-transforms@7.16.0:
resolution: {integrity: sha1-HIKo3UyzRXdQLr0pCWmbGUw+m7U=, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-module-imports': 7.16.0
'@babel/helper-replace-supers': 7.16.0
'@babel/helper-simple-access': 7.16.0
'@babel/helper-split-export-declaration': 7.16.0
'@babel/helper-validator-identifier': registry.nlark.com/@babel/helper-validator-identifier@7.15.7
'@babel/template': 7.16.7
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
/@babel/helper-module-transforms@7.18.0:
resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.2
'@babel/helper-module-imports': 7.16.7
'@babel/helper-simple-access': 7.18.2
'@babel/helper-split-export-declaration': 7.16.7
'@babel/helper-validator-identifier': 7.16.7
'@babel/template': 7.16.7
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
/@babel/helper-optimise-call-expression@7.16.0:
resolution: {integrity: sha1-zs2xRdcMVAlrFWT46fEM19GTszg=, tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-plugin-utils@7.14.5:
resolution: {integrity: sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==}
engines: {node: '>=6.9.0'}
/@babel/helper-remap-async-to-generator@7.16.4:
resolution: {integrity: sha512-vGERmmhR+s7eH5Y/cp8PCVzj4XEjerq8jooMfxFdA5xVtAk9Sh4AQsrWgiErUEBjtGrBtOFKDUcWQFW4/dFwMA==, tarball: https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.16.4.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-annotate-as-pure': 7.16.0
'@babel/helper-wrap-function': 7.16.0
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
/@babel/helper-replace-supers@7.16.0:
resolution: {integrity: sha1-cwVejTz5vLqN21XK2T/tyGD2jxc=, tarball: https://registry.npmmirror.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-member-expression-to-functions': 7.16.0
'@babel/helper-optimise-call-expression': 7.16.0
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
/@babel/helper-simple-access@7.16.0:
resolution: {integrity: sha1-IdaidiDjg+N1NM9sELugGab5BRc=, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-simple-access@7.18.2:
resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-skip-transparent-expression-wrappers@7.16.0:
resolution: {integrity: sha1-DuM4gHAUfDrgUeSH7KPrsOLouwk=, tarball: https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-split-export-declaration@7.16.0:
resolution: {integrity: sha1-KWcvQ2Y+k23zcKrrIr7ds7rsdDg=, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-split-export-declaration@7.16.7:
resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
/@babel/helper-validator-identifier@7.16.7:
resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-option@7.16.7:
resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==}
engines: {node: '>=6.9.0'}
/@babel/helper-wrap-function@7.16.0:
resolution: {integrity: sha1-s88xivzndN/nW4Z2fNbWjzSC5Xw=, tarball: https://registry.npmmirror.com/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.17.9
'@babel/template': 7.16.7
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
/@babel/helpers@7.16.3:
resolution: {integrity: sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==, tarball: https://registry.npmmirror.com/@babel/helpers/download/@babel/helpers-7.16.3.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.16.7
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
/@babel/helpers@7.18.2:
resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.16.7
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
/@babel/highlight@7.16.0:
resolution: {integrity: sha1-bOsysspLj182H7f9gh4/3fShclo=, tarball: https://registry.npmmirror.com/@babel/highlight/download/@babel/highlight-7.16.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.nlark.com/@babel/helper-validator-identifier@7.15.7
chalk: registry.nlark.com/chalk@2.4.2
js-tokens: registry.nlark.com/js-tokens@4.0.0
/@babel/highlight@7.17.12:
resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.16.7
chalk: 2.4.2
js-tokens: 4.0.0
/@babel/parser@7.16.4:
resolution: {integrity: sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==, tarball: https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.16.4.tgz?cache=0&sync_timestamp=1637111432396&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.16.4.tgz}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.18.4
/@babel/parser@7.18.5:
resolution: {integrity: sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.18.4
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.2(@babel/core@7.18.5):
resolution: {integrity: sha1-KXf8qbIS2xU8GVZ05Xz6uAdzMYM=, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/download/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz?cache=0&sync_timestamp=1635837571373&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fplugin-bugfix-safari-id-destructuring-collision-in-function-expression%2Fdownload%2F%40babel%2Fplugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.14.5
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-NYly6qsAb16wgmGDsMk8vK8T4eI=, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/download/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.14.5
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
'@babel/plugin-proposal-optional-chaining': 7.16.0(@babel/core@7.18.5)
/@babel/plugin-proposal-async-generator-functions@7.16.4(@babel/core@7.12.3):
resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.16.4.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.14.5
'@babel/helper-remap-async-to-generator': 7.16.4
'@babel/plugin-syntax-async-generators': registry.nlark.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.12.3)
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-async-generator-functions@7.16.4(@babel/core@7.18.5):
resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.16.4.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.14.5
'@babel/helper-remap-async-to-generator': 7.16.4
'@babel/plugin-syntax-async-generators': registry.nlark.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.18.5)
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-class-properties@7.12.1(@babel/core@7.12.3):
resolution: {integrity: sha1-oIL/VB8qKaSCEGW4rdk0bAwW5d4=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.12.1.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-create-class-features-plugin': 7.16.0(@babel/core@7.12.3)
'@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils@7.14.5
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-class-properties@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-wClhgmfd68coD6KG4PjKKieKLRo=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-create-class-features-plugin': 7.16.0(@babel/core@7.18.5)
'@babel/helper-plugin-utils': 7.14.5
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-class-static-block@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-UpaULFZNgUTIPuo0fQqooLiRcOc=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-class-static-block/download/@babel/plugin-proposal-class-static-block-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-create-class-features-plugin': 7.16.0(@babel/core@7.18.5)
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-class-static-block': registry.nlark.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.18.5)
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-decorators@7.12.1(@babel/core@7.12.3):
resolution: {integrity: sha1-WScUOf7UFFRWxBBnRQVDruMy0V8=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-decorators/download/@babel/plugin-proposal-decorators-7.12.1.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-create-class-features-plugin': 7.16.0(@babel/core@7.12.3)
'@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils@7.14.5
'@babel/plugin-syntax-decorators': 7.16.0(@babel/core@7.12.3)
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-dynamic-import@7.16.0(@babel/core@7.12.3):
resolution: {integrity: sha1-eD7KYdUFJiAvmylglUU5d+iGWfE=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-dynamic-import': registry.nlark.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.12.3)
/@babel/plugin-proposal-dynamic-import@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-eD7KYdUFJiAvmylglUU5d+iGWfE=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-dynamic-import': registry.nlark.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.18.5)
/@babel/plugin-proposal-export-namespace-from@7.16.0(@babel/core@7.12.3):
resolution: {integrity: sha1-nAHe5Auda4R7ZWqvSjl2pxdA8iI=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-export-namespace-from/download/@babel/plugin-proposal-export-namespace-from-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-export-namespace-from': registry.nlark.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.12.3)
/@babel/plugin-proposal-export-namespace-from@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-nAHe5Auda4R7ZWqvSjl2pxdA8iI=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-export-namespace-from/download/@babel/plugin-proposal-export-namespace-from-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-export-namespace-from': registry.nlark.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.18.5)
/@babel/plugin-proposal-json-strings@7.16.0(@babel/core@7.12.3):
resolution: {integrity: sha1-yuNale0dKn+inE3EFUC4SnLpqyU=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-json-strings': registry.nlark.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.12.3)
/@babel/plugin-proposal-json-strings@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-yuNale0dKn+inE3EFUC4SnLpqyU=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-json-strings': registry.nlark.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.18.5)
/@babel/plugin-proposal-logical-assignment-operators@7.16.0(@babel/core@7.12.3):
resolution: {integrity: sha1-pxG4zrP/3dPviNOknobb08x9s/0=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-logical-assignment-operators/download/@babel/plugin-proposal-logical-assignment-operators-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-logical-assignment-operators': registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.12.3)
/@babel/plugin-proposal-logical-assignment-operators@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-pxG4zrP/3dPviNOknobb08x9s/0=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-logical-assignment-operators/download/@babel/plugin-proposal-logical-assignment-operators-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-logical-assignment-operators': registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.18.5)
/@babel/plugin-proposal-nullish-coalescing-operator@7.12.1(@babel/core@7.12.3):
resolution: {integrity: sha1-PtT/8xwBXn8/FGfxkNvlRc17BGw=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils@7.14.5
'@babel/plugin-syntax-nullish-coalescing-operator': registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.3)
/@babel/plugin-proposal-nullish-coalescing-operator@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-ROHM4I/iQnSCz0RqkbtFFSjtBZY=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-nullish-coalescing-operator': registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.18.5)
/@babel/plugin-proposal-numeric-separator@7.12.1(@babel/core@7.12.3):
resolution: {integrity: sha1-DixndMTOSL5BIRm01pOsd392haY=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.12.1.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils@7.14.5
'@babel/plugin-syntax-numeric-separator': registry.nlark.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.12.3)
/@babel/plugin-proposal-numeric-separator@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-XUGOT7v4ubfQMSXTpScwQzo3NzQ=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-numeric-separator': registry.nlark.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.18.5)
/@babel/plugin-proposal-object-rest-spread@7.16.0(@babel/core@7.12.3):
resolution: {integrity: sha1-X7MvbZJNbmcSgQNipg4SomCYcuY=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.18.5
'@babel/core': 7.12.3
'@babel/helper-compilation-targets': 7.18.2(@babel/core@7.12.3)
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-object-rest-spread': registry.nlark.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.3)
'@babel/plugin-transform-parameters': 7.16.3(@babel/core@7.12.3)
/@babel/plugin-proposal-object-rest-spread@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-X7MvbZJNbmcSgQNipg4SomCYcuY=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.18.5
'@babel/core': 7.18.5
'@babel/helper-compilation-targets': 7.18.2(@babel/core@7.18.5)
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-object-rest-spread': registry.nlark.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.18.5)
'@babel/plugin-transform-parameters': 7.16.3(@babel/core@7.18.5)
/@babel/plugin-proposal-optional-catch-binding@7.16.0(@babel/core@7.12.3):
resolution: {integrity: sha1-WRAIWBGrTCiwDW6/+kqwJ00eXxY=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-optional-catch-binding': registry.nlark.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.3)
/@babel/plugin-proposal-optional-catch-binding@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-WRAIWBGrTCiwDW6/+kqwJ00eXxY=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-optional-catch-binding': registry.nlark.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.18.5)
/@babel/plugin-proposal-optional-chaining@7.12.1(@babel/core@7.12.3):
resolution: {integrity: sha1-zOEiID/IoyeUKW/Dd8be2vQ2N5c=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.12.1.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils@7.14.5
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
'@babel/plugin-syntax-optional-chaining': registry.nlark.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.3)
/@babel/plugin-proposal-optional-chaining@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-VtvDlwglaDYI6e+1XqgsKi1sjcA=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.14.5
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
'@babel/plugin-syntax-optional-chaining': registry.nlark.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.18.5)
/@babel/plugin-proposal-private-methods@7.16.0(@babel/core@7.12.3):
resolution: {integrity: sha1-tNr7nHF+QwHFd2sw0IDWODyJr/Y=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-create-class-features-plugin': 7.16.0(@babel/core@7.12.3)
'@babel/helper-plugin-utils': 7.14.5
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-private-methods@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha1-tNr7nHF+QwHFd2sw0IDWODyJr/Y=, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.16.0.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-create-class-features-plugin': 7.16.0(@babel/core@7.18.5)
'@babel/helper-plugin-utils': 7.14.5
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-private-property-in-object@7.16.0(@babel/core@7.12.3):
resolution: {integrity: sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-annotate-as-pure': 7.16.0
'@babel/helper-create-class-features-plugin': 7.16.0(@babel/core@7.12.3)
'@babel/helper-plugin-utils': 7.14.5
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.3)
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-private-property-in-object@7.16.0(@babel/core@7.18.5):
resolution: {integrity: sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5