forked from babel/babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
16162 lines (14624 loc) · 574 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 5
cacheKey: 8
"@ampproject/remapping@npm:^2.0.0, @ampproject/remapping@npm:^2.1.0":
version: 2.1.0
resolution: "@ampproject/remapping@npm:2.1.0"
dependencies:
"@jridgewell/trace-mapping": ^0.3.0
checksum: 10ff0d4a559f930082f1a4c1b68dc521d5b1a75e0b8ab4829e9eedf6621386893e4a008f0db6c716f64db5d8eed49c0abcfbf3bd6ff11d5a00312454a9351ed4
languageName: node
linkType: hard
"@assemblyscript/loader@npm:^0.10.1":
version: 0.10.1
resolution: "@assemblyscript/loader@npm:0.10.1"
checksum: fd1f57bdf2c55252a48c2d93fbec3c5a9ef4ca40e581e8709dd8ee437613eb47af74c8cdba011a324077eda9605d6f24983f429c2ce18b0b582ddcc5acf75c26
languageName: node
linkType: hard
"@babel-baseline/core@npm:@babel/[email protected]":
version: 7.15.8
resolution: "@babel/core@npm:7.15.8"
dependencies:
"@babel/code-frame": ^7.15.8
"@babel/generator": ^7.15.8
"@babel/helper-compilation-targets": ^7.15.4
"@babel/helper-module-transforms": ^7.15.8
"@babel/helpers": ^7.15.4
"@babel/parser": ^7.15.8
"@babel/template": ^7.15.4
"@babel/traverse": ^7.15.4
"@babel/types": ^7.15.6
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.1.2
semver: ^6.3.0
source-map: ^0.5.0
checksum: 61e5050580a2808344f23161c971e917fe711a546e3afa4d022be4ec5325f8bdf559cc9afd962e39ecc3643d9cdcbbac7abc7b8dd05330020475317564c8d290
languageName: node
linkType: hard
"@babel-baseline/generator@npm:@babel/[email protected]":
version: 7.14.5
resolution: "@babel/generator@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 7fcfeaf17e8e76ea91c66dc86c776d2112f52ce0315d3f4ca6a74b6eada0be1592d1ea6286d7241d3f634b63717ceef5d180d041a0b3dca9d071ba2e5fa7c77b
languageName: node
linkType: hard
"@babel-baseline/helper-validator-identifier@npm:@babel/[email protected]":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: 3cbfdff0efea8f3bca050cfe408a156604293d3313c7279c8c02d916a0b3ef82617f28f7729877a94c0e8e922d4b7623c4f0a108ae2853bf762d933e101a5f8c
languageName: node
linkType: hard
"@babel-baseline/parser@npm:@babel/[email protected]":
version: 7.14.8
resolution: "@babel/parser@npm:7.14.8"
bin:
parser: ./bin/babel-parser.js
checksum: 9e532b2bbe690fff8cdaf8c25cfecb684ebe9e9d50d30cd775852dd711649ddb964368b26fda55786404fadf500f944043fb0f731b765104ad857d677dd29ce5
languageName: node
linkType: hard
"@babel-baseline/traverse@npm:@babel/[email protected]":
version: 7.15.4
resolution: "@babel/traverse@npm:7.15.4"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/generator": ^7.15.4
"@babel/helper-function-name": ^7.15.4
"@babel/helper-hoist-variables": ^7.15.4
"@babel/helper-split-export-declaration": ^7.15.4
"@babel/parser": ^7.15.4
"@babel/types": ^7.15.4
debug: ^4.1.0
globals: ^11.1.0
checksum: 831506a92c8ed76dc60504de37663bf5a553d7b1b009a94defc082cddb6c380c5487a1aa9438bcd7b9891a2a72758a63e4f878154aa70699d09b388b1445d774
languageName: node
linkType: hard
"@babel-baseline/types@npm:@babel/[email protected]":
version: 7.15.6
resolution: "@babel/types@npm:7.15.6"
dependencies:
"@babel/helper-validator-identifier": ^7.14.9
to-fast-properties: ^2.0.0
checksum: 37f497dde10d238b5eb184efab83b415a86611e3d73dc0434de0cfb851b20ee606a3b7e1525e5b2d522fac1248d0345fea0468006f246262511b80cd3ed2419f
languageName: node
linkType: hard
"@babel-internal/runtime-integration-rollup@workspace:test/runtime-integration/rollup":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-rollup@workspace:test/runtime-integration/rollup"
dependencies:
"@babel/runtime": "workspace:^"
"@rollup/plugin-commonjs": ^18.1.0
"@rollup/plugin-node-resolve": ^13.0.0
rollup: ~2.54.0
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-src@workspace:test/runtime-integration/src":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-src@workspace:test/runtime-integration/src"
dependencies:
"@babel/runtime": "workspace:^"
"@babel/runtime-corejs3": "workspace:^"
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-webpack-3@workspace:test/runtime-integration/webpack-3":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-webpack-3@workspace:test/runtime-integration/webpack-3"
dependencies:
"@babel/runtime": "workspace:^"
webpack: ^3.12.0
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-webpack-4@workspace:test/runtime-integration/webpack-4":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-webpack-4@workspace:test/runtime-integration/webpack-4"
dependencies:
"@babel/runtime": "workspace:^"
webpack: ^4.46.0
webpack-cli: ^4.5.0
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-webpack-5@workspace:test/runtime-integration/webpack-5":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-webpack-5@workspace:test/runtime-integration/webpack-5"
dependencies:
"@babel/runtime": "workspace:^"
webpack: ^5.24.1
webpack-cli: ^4.5.0
languageName: unknown
linkType: soft
"@babel/benchmark@workspace:benchmark":
version: 0.0.0-use.local
resolution: "@babel/benchmark@workspace:benchmark"
dependencies:
"@babel-baseline/core": "npm:@babel/[email protected]"
"@babel-baseline/generator": "npm:@babel/[email protected]"
"@babel-baseline/helper-validator-identifier": "npm:@babel/[email protected]"
"@babel-baseline/parser": "npm:@babel/[email protected]"
"@babel-baseline/traverse": "npm:@babel/[email protected]"
"@babel-baseline/types": "npm:@babel/[email protected]"
"@babel/core": "workspace:^"
"@babel/generator": "workspace:^"
"@babel/helper-validator-identifier": "workspace:^"
"@babel/parser": "workspace:^"
"@babel/preset-env": "workspace:^"
"@babel/preset-flow": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
benchmark: ^2.1.4
languageName: unknown
linkType: soft
"@babel/cli@npm:^7.17.0":
version: 7.17.0
resolution: "@babel/cli@npm:7.17.0"
dependencies:
"@nicolo-ribaudo/chokidar-2": 2.1.8-no-fsevents.3
chokidar: ^3.4.0
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.0.0
make-dir: ^2.1.0
slash: ^2.0.0
source-map: ^0.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
"@nicolo-ribaudo/chokidar-2":
optional: true
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
checksum: 0d43d42d7aa48dd6f7c65f4f8273072c1e0161a5df08e7808b28e5b007104d92bb7ec36724f4f275b5cc3e636f0e077217ac21593b41decd6025a2a065713b97
languageName: node
linkType: hard
"@babel/cli@workspace:packages/babel-cli":
version: 0.0.0-use.local
resolution: "@babel/cli@workspace:packages/babel-cli"
dependencies:
"@babel/core": "workspace:^"
"@babel/helper-fixtures": "workspace:^"
"@jridgewell/trace-mapping": ^0.3.4
"@nicolo-ribaudo/chokidar-2": "condition:BABEL_8_BREAKING ? : 2.1.8-no-fsevents.3"
chokidar: ^3.4.0
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.0.0
make-dir: "condition:BABEL_8_BREAKING ? : ^2.1.0"
rimraf: ^3.0.0
slash: "condition:BABEL_8_BREAKING ? ^3.0.0 : ^2.0.0"
source-map: ^0.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
"@nicolo-ribaudo/chokidar-2":
optional: true
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
languageName: unknown
linkType: soft
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 3963eff3ebfb0e091c7e6f99596ef4b258683e4ba8a134e4e95f77afe85be5c931e184fff6435fb4885d12eba04a5e25532f7fbc292ca13b48e7da943474e2f3
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.14.5, @babel/code-frame@npm:^7.15.8, @babel/code-frame@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/code-frame@npm:7.16.7"
dependencies:
"@babel/highlight": ^7.16.7
checksum: db2f7faa31bc2c9cf63197b481b30ea57147a5fc1a6fab60e5d6c02cdfbf6de8e17b5121f99917b3dabb5eeb572da078312e70697415940383efc140d4e0808b
languageName: node
linkType: hard
"@babel/code-frame@workspace:^, @babel/code-frame@workspace:packages/babel-code-frame":
version: 0.0.0-use.local
resolution: "@babel/code-frame@workspace:packages/babel-code-frame"
dependencies:
"@babel/highlight": "workspace:^"
"@types/chalk": ^2.0.0
chalk: ^2.0.0
strip-ansi: ^4.0.0
languageName: unknown
linkType: soft
"@babel/compat-data@npm:^7.16.4, @babel/compat-data@npm:^7.16.8":
version: 7.17.0
resolution: "@babel/compat-data@npm:7.17.0"
checksum: fe5afaf529d107a223cd5937dace248464b6df1e9f4ea4031a5723e9571b46a4db1c4ff226bac6351148b1bc02ba1b39cb142662cd235aa99c1dda77882f8c9d
languageName: node
linkType: hard
"@babel/compat-data@workspace:*, @babel/compat-data@workspace:^, @babel/compat-data@workspace:packages/babel-compat-data":
version: 0.0.0-use.local
resolution: "@babel/compat-data@workspace:packages/babel-compat-data"
dependencies:
"@mdn/browser-compat-data": ^4.0.10
core-js-compat: ^3.20.2
electron-to-chromium: ^1.3.893
languageName: unknown
linkType: soft
"@babel/core-7.12@npm:@babel/[email protected]":
version: 7.12.9
resolution: "@babel/core@npm:7.12.9"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.5
"@babel/helper-module-transforms": ^7.12.1
"@babel/helpers": ^7.12.5
"@babel/parser": ^7.12.7
"@babel/template": ^7.12.7
"@babel/traverse": ^7.12.9
"@babel/types": ^7.12.7
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: 4d34eca4688214a4eb6bd5dde906b69a7824f17b931f52cd03628a8ac94d8fbe15565aebffdde106e974c8738cd64ac62c6a6060baa7139a06db1f18c4ff872d
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.17.0, @babel/core@npm:^7.7.2, @babel/core@npm:^7.7.5":
version: 7.17.0
resolution: "@babel/core@npm:7.17.0"
dependencies:
"@ampproject/remapping": ^2.0.0
"@babel/code-frame": ^7.16.7
"@babel/generator": ^7.17.0
"@babel/helper-compilation-targets": ^7.16.7
"@babel/helper-module-transforms": ^7.16.7
"@babel/helpers": ^7.17.0
"@babel/parser": ^7.17.0
"@babel/template": ^7.16.7
"@babel/traverse": ^7.17.0
"@babel/types": ^7.17.0
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.1.2
semver: ^6.3.0
checksum: b05ab50ee3234cf6ead6fc947fff1c577773040d88b6fea64efda046c3b87aa596c5bbfe2bd287680102bda620e5294625fe1350a54d800d09cca51435b70918
languageName: node
linkType: hard
"@babel/core@workspace:^, @babel/core@workspace:packages/babel-core":
version: 0.0.0-use.local
resolution: "@babel/core@workspace:packages/babel-core"
dependencies:
"@ampproject/remapping": ^2.1.0
"@babel/code-frame": "workspace:^"
"@babel/generator": "workspace:^"
"@babel/helper-compilation-targets": "workspace:^"
"@babel/helper-module-transforms": "condition:BABEL_8_BREAKING ? : workspace:^7.17.7"
"@babel/helper-transform-fixture-test-runner": "workspace:^"
"@babel/helpers": "workspace:^"
"@babel/parser": "workspace:^"
"@babel/plugin-transform-modules-commonjs": "workspace:^"
"@babel/template": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
"@jridgewell/trace-mapping": ^0.3.4
"@types/convert-source-map": ^1.5.1
"@types/debug": ^4.1.0
"@types/resolve": ^1.3.2
"@types/semver": ^5.4.0
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.2.1
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.0"
languageName: unknown
linkType: soft
"@babel/eslint-config-internal@workspace:^, @babel/eslint-config-internal@workspace:eslint/babel-eslint-config-internal":
version: 0.0.0-use.local
resolution: "@babel/eslint-config-internal@workspace:eslint/babel-eslint-config-internal"
peerDependencies:
"@babel/eslint-parser": ^7.16.0
eslint-plugin-flowtype: ^8.0.3
languageName: unknown
linkType: soft
"@babel/eslint-parser@workspace:^, @babel/eslint-parser@workspace:eslint/babel-eslint-parser":
version: 0.0.0-use.local
resolution: "@babel/eslint-parser@workspace:eslint/babel-eslint-parser"
dependencies:
"@babel/core": "workspace:^"
dedent: ^0.7.0
eslint: ^7.27.0
eslint-8: "npm:eslint@^8.0.0"
eslint-scope: ^5.1.1
eslint-visitor-keys: ^2.1.0
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.0"
peerDependencies:
"@babel/core": ">=7.11.0"
eslint: ^7.5.0 || ^8.0.0
languageName: unknown
linkType: soft
"@babel/eslint-plugin-development-internal@workspace:^, @babel/eslint-plugin-development-internal@workspace:eslint/babel-eslint-plugin-development-internal":
version: 0.0.0-use.local
resolution: "@babel/eslint-plugin-development-internal@workspace:eslint/babel-eslint-plugin-development-internal"
dependencies:
eslint: ^7.27.0
peerDependencies:
"@babel/eslint-parser": ">=7.11.0"
eslint: ">=7.5.0"
languageName: unknown
linkType: soft
"@babel/eslint-plugin-development@workspace:^, @babel/eslint-plugin-development@workspace:eslint/babel-eslint-plugin-development":
version: 0.0.0-use.local
resolution: "@babel/eslint-plugin-development@workspace:eslint/babel-eslint-plugin-development"
dependencies:
eslint: ^7.27.0
languageName: unknown
linkType: soft
"@babel/eslint-plugin@workspace:eslint/babel-eslint-plugin":
version: 0.0.0-use.local
resolution: "@babel/eslint-plugin@workspace:eslint/babel-eslint-plugin"
dependencies:
clone-deep: ^4.0.1
eslint: ^7.27.0
eslint-rule-composer: ^0.3.0
peerDependencies:
"@babel/eslint-parser": ">=7.11.0"
eslint: ">=7.5.0"
languageName: unknown
linkType: soft
"@babel/eslint-shared-fixtures@workspace:eslint/babel-eslint-shared-fixtures":
version: 0.0.0-use.local
resolution: "@babel/eslint-shared-fixtures@workspace:eslint/babel-eslint-shared-fixtures"
dependencies:
"@babel/core": "workspace:^"
"@babel/eslint-parser": "workspace:^"
"@babel/plugin-proposal-class-properties": "workspace:^"
"@babel/plugin-proposal-decorators": "workspace:^"
"@babel/plugin-proposal-do-expressions": "workspace:^"
"@babel/plugin-proposal-pipeline-operator": "workspace:^"
"@babel/plugin-proposal-private-methods": "workspace:^"
"@babel/plugin-syntax-export-default-from": "workspace:^"
"@babel/preset-env": "workspace:^"
"@babel/preset-flow": "workspace:^"
"@babel/preset-react": "workspace:^"
eslint: ^7.27.0
languageName: unknown
linkType: soft
"@babel/eslint-tests@workspace:eslint/babel-eslint-tests":
version: 0.0.0-use.local
resolution: "@babel/eslint-tests@workspace:eslint/babel-eslint-tests"
dependencies:
"@babel/core": "workspace:^"
"@babel/eslint-parser": "workspace:^"
"@babel/preset-react": "workspace:^"
dedent: ^0.7.0
eslint: ^7.27.0
eslint-plugin-import: ^2.25.4
npm-babel-parser: "npm:@babel/parser@^7.14.0"
languageName: unknown
linkType: soft
"@babel/generator@npm:^7.12.5, @babel/generator@npm:^7.15.4, @babel/generator@npm:^7.15.8, @babel/generator@npm:^7.17.0, @babel/generator@npm:^7.7.2":
version: 7.17.0
resolution: "@babel/generator@npm:7.17.0"
dependencies:
"@babel/types": ^7.17.0
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 2987dbebb484727a227f1ce3db90810320986cfb3ffd23e6d1d87f75bbd8e7871b5bc44252822d4d5f048a2d872a5702b2a9bf7bab7e07f087d7f306f0ea6c0a
languageName: node
linkType: hard
"@babel/generator@workspace:^, @babel/generator@workspace:packages/babel-generator":
version: 0.0.0-use.local
resolution: "@babel/generator@workspace:packages/babel-generator"
dependencies:
"@babel/helper-fixtures": "workspace:^"
"@babel/parser": "workspace:^"
"@babel/types": "workspace:^"
"@jridgewell/trace-mapping": ^0.3.4
"@types/jsesc": ^2.5.0
"@types/source-map": ^0.5.0
charcodes: ^0.2.0
jsesc: "condition: BABEL_8_BREAKING ? ^3.0.2 : ^2.5.1"
source-map: ^0.5.0
languageName: unknown
linkType: soft
"@babel/helper-annotate-as-pure@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-annotate-as-pure@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: d235be963fed5d48a8a4cfabc41c3f03fad6a947810dbcab9cebed7f819811457e10d99b4b2e942ad71baa7ee8e3cd3f5f38a4e4685639ddfddb7528d9a07179
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@workspace:^, @babel/helper-annotate-as-pure@workspace:packages/babel-helper-annotate-as-pure":
version: 0.0.0-use.local
resolution: "@babel/helper-annotate-as-pure@workspace:packages/babel-helper-annotate-as-pure"
dependencies:
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.16.7"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.16.7
"@babel/types": ^7.16.7
checksum: 1784f19a57ecfafca8e5c2e0f3eac53451cb13a857cbe0ca0cd9670922228d099ef8c3dd8cd318e2d7bce316fdb2ece3e527c30f3ecd83706e37ab6beb0c60eb
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@workspace:^, @babel/helper-builder-binary-assignment-operator-visitor@workspace:packages/babel-helper-builder-binary-assignment-operator-visitor":
version: 0.0.0-use.local
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@workspace:packages/babel-helper-builder-binary-assignment-operator-visitor"
dependencies:
"@babel/helper-explode-assignable-expression": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-builder-react-jsx@workspace:^, @babel/helper-builder-react-jsx@workspace:packages/babel-helper-builder-react-jsx":
version: 0.0.0-use.local
resolution: "@babel/helper-builder-react-jsx@workspace:packages/babel-helper-builder-react-jsx"
dependencies:
"@babel/helper-annotate-as-pure": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.15.4, @babel/helper-compilation-targets@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-compilation-targets@npm:7.16.7"
dependencies:
"@babel/compat-data": ^7.16.4
"@babel/helper-validator-option": ^7.16.7
browserslist: ^4.17.5
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 7238aaee78c011a42fb5ca92e5eff098752f7b314c2111d7bb9cdd58792fcab1b9c819b59f6a0851dc210dc09dc06b30d130a23982753e70eb3111bc65204842
languageName: node
linkType: hard
"@babel/helper-compilation-targets@workspace:^, @babel/helper-compilation-targets@workspace:packages/babel-helper-compilation-targets":
version: 0.0.0-use.local
resolution: "@babel/helper-compilation-targets@workspace:packages/babel-helper-compilation-targets"
dependencies:
"@babel/compat-data": "workspace:^"
"@babel/core": "workspace:^"
"@babel/helper-plugin-test-runner": "workspace:^"
"@babel/helper-validator-option": "workspace:^"
"@types/semver": ^5.5.0
browserslist: ^4.17.5
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-create-class-features-plugin@npm:^7.16.10, @babel/helper-create-class-features-plugin@npm:^7.16.7":
version: 7.17.0
resolution: "@babel/helper-create-class-features-plugin@npm:7.17.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.7
"@babel/helper-environment-visitor": ^7.16.7
"@babel/helper-function-name": ^7.16.7
"@babel/helper-member-expression-to-functions": ^7.16.7
"@babel/helper-optimise-call-expression": ^7.16.7
"@babel/helper-replace-supers": ^7.16.7
"@babel/helper-split-export-declaration": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0
checksum: 8f709fd51616db817a75cfe6442984c793d94844e29eef330ea1410bd6f82b3df77d64648cf0047889a62ed08cd6fa86fc294bcbaf78372eecfdb2e799601bbe
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@workspace:^, @babel/helper-create-class-features-plugin@workspace:packages/babel-helper-create-class-features-plugin":
version: 0.0.0-use.local
resolution: "@babel/helper-create-class-features-plugin@workspace:packages/babel-helper-create-class-features-plugin"
dependencies:
"@babel/core": "workspace:^"
"@babel/helper-annotate-as-pure": "workspace:^"
"@babel/helper-environment-visitor": "workspace:^"
"@babel/helper-function-name": "workspace:^"
"@babel/helper-member-expression-to-functions": "workspace:^"
"@babel/helper-optimise-call-expression": "workspace:^"
"@babel/helper-plugin-test-runner": "workspace:^"
"@babel/helper-replace-supers": "workspace:^"
"@babel/helper-split-export-declaration": "workspace:^"
"@babel/plugin-syntax-class-static-block": ^7.14.5
"@babel/preset-env": "workspace:^"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-create-regexp-features-plugin@npm:^7.16.7":
version: 7.17.0
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.17.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.7
regexpu-core: ^5.0.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: eb66d9241544c705e9ce96d2d122b595ef52d926e6e031653e09af8a01050bd9d7e7fee168bf33a863342774d7d6a8cc7e8e9e5a45b955e9c01121c7a2d51708
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@workspace:^, @babel/helper-create-regexp-features-plugin@workspace:packages/babel-helper-create-regexp-features-plugin":
version: 0.0.0-use.local
resolution: "@babel/helper-create-regexp-features-plugin@workspace:packages/babel-helper-create-regexp-features-plugin"
dependencies:
"@babel/core": "workspace:^"
"@babel/helper-annotate-as-pure": "workspace:^"
"@babel/helper-plugin-test-runner": "workspace:^"
regexpu-core: ^5.0.1
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-define-map@workspace:^, @babel/helper-define-map@workspace:packages/babel-helper-define-map":
version: 0.0.0-use.local
resolution: "@babel/helper-define-map@workspace:packages/babel-helper-define-map"
dependencies:
"@babel/helper-function-name": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-define-polyfill-provider@npm:^0.3.0":
version: 0.3.0
resolution: "@babel/helper-define-polyfill-provider@npm:0.3.0"
dependencies:
"@babel/helper-compilation-targets": ^7.13.0
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-plugin-utils": ^7.13.0
"@babel/traverse": ^7.13.0
debug: ^4.1.1
lodash.debounce: ^4.0.8
resolve: ^1.14.2
semver: ^6.1.2
peerDependencies:
"@babel/core": ^7.4.0-0
checksum: 372378ac4235c4fe135f1cd6d0f63697e7cb3ef63a884eb14f4b439984846bcaec0b7a32cf8df6756a21557ae3ebb3c2ee18d9a191260705a583333e5e60df7c
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-environment-visitor@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: c03a10105d9ebd1fe632a77356b2e6e2f3c44edba9a93b0dc3591b6a66bd7a2e323dd9502f9ce96fc6401234abff1907aa877b6674f7826b61c953f7c8204bbe
languageName: node
linkType: hard
"@babel/helper-environment-visitor@workspace:^, @babel/helper-environment-visitor@workspace:packages/babel-helper-environment-visitor":
version: 0.0.0-use.local
resolution: "@babel/helper-environment-visitor@workspace:packages/babel-helper-environment-visitor"
dependencies:
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-explode-assignable-expression@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-explode-assignable-expression@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: ea2135ba36da6a2be059ebc8f10fbbb291eb0e312da54c55c6f50f9cbd8601e2406ec497c5e985f7c07a97f31b3bef9b2be8df53f1d53b974043eaf74fe54bbc
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@workspace:^, @babel/helper-explode-assignable-expression@workspace:packages/babel-helper-explode-assignable-expression":
version: 0.0.0-use.local
resolution: "@babel/helper-explode-assignable-expression@workspace:packages/babel-helper-explode-assignable-expression"
dependencies:
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-fixtures@workspace:^, @babel/helper-fixtures@workspace:packages/babel-helper-fixtures":
version: 0.0.0-use.local
resolution: "@babel/helper-fixtures@workspace:packages/babel-helper-fixtures"
dependencies:
"@types/semver": ^7.3.4
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.0"
languageName: unknown
linkType: soft
"@babel/helper-function-name@npm:^7.15.4, @babel/helper-function-name@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-function-name@npm:7.16.7"
dependencies:
"@babel/helper-get-function-arity": ^7.16.7
"@babel/template": ^7.16.7
"@babel/types": ^7.16.7
checksum: fc77cbe7b10cfa2a262d7a37dca575c037f20419dfe0c5d9317f589599ca24beb5f5c1057748011159149eaec47fe32338c6c6412376fcded68200df470161e1
languageName: node
linkType: hard
"@babel/helper-function-name@workspace:^, @babel/helper-function-name@workspace:packages/babel-helper-function-name":
version: 0.0.0-use.local
resolution: "@babel/helper-function-name@workspace:packages/babel-helper-function-name"
dependencies:
"@babel/template": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-get-function-arity@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-get-function-arity@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: 25d969fb207ff2ad5f57a90d118f6c42d56a0171022e200aaa919ba7dc95ae7f92ec71cdea6c63ef3629a0dc962ab4c78e09ca2b437185ab44539193f796e0c3
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.15.4, @babel/helper-hoist-variables@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-hoist-variables@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: 6ae1641f4a751cd9045346e3f61c3d9ec1312fd779ab6d6fecfe2a96e59a481ad5d7e40d2a840894c13b3fd6114345b157f9e3062fc5f1580f284636e722de60
languageName: node
linkType: hard
"@babel/helper-hoist-variables@workspace:^, @babel/helper-hoist-variables@workspace:packages/babel-helper-hoist-variables":
version: 0.0.0-use.local
resolution: "@babel/helper-hoist-variables@workspace:packages/babel-helper-hoist-variables"
dependencies:
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-member-expression-to-functions@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-member-expression-to-functions@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: e275378022278a7e7974a3f65566690f1804ac88c5f4e848725cf936f61cd1e2557e88cfb6cb4fea92ae5a95ad89d78dbccc9a53715d4363f84c9fd109272c18
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@workspace:^, @babel/helper-member-expression-to-functions@workspace:packages/babel-helper-member-expression-to-functions":
version: 0.0.0-use.local
resolution: "@babel/helper-member-expression-to-functions@workspace:packages/babel-helper-member-expression-to-functions"
dependencies:
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-module-imports@npm:^7.10.4, @babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-module-imports@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: ddd2c4a600a2e9a4fee192ab92bf35a627c5461dbab4af31b903d9ba4d6b6e59e0ff3499fde4e2e9a0eebe24906f00b636f8b4d9bd72ff24d50e6618215c3212
languageName: node
linkType: hard
"@babel/helper-module-imports@workspace:^, @babel/helper-module-imports@workspace:packages/babel-helper-module-imports":
version: 0.0.0-use.local
resolution: "@babel/helper-module-imports@workspace:packages/babel-helper-module-imports"
dependencies:
"@babel/core": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-module-transforms-BABEL_8_BREAKING-false@npm:@babel/helper-module-transforms@workspace:^7.17.7, @babel/helper-module-transforms@workspace:^, @babel/helper-module-transforms@workspace:packages/babel-helper-module-transforms":
version: 0.0.0-use.local
resolution: "@babel/helper-module-transforms@workspace:packages/babel-helper-module-transforms"
dependencies:
"@babel/helper-environment-visitor": "workspace:^"
"@babel/helper-module-imports": "workspace:^"
"@babel/helper-simple-access": "workspace:^"
"@babel/helper-split-export-declaration": "workspace:^"
"@babel/helper-validator-identifier": "workspace:^"
"@babel/template": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-module-transforms@condition:BABEL_8_BREAKING ? : workspace:^7.17.7":
version: 0.0.0-condition-2e33d9
resolution: "@babel/helper-module-transforms@condition:BABEL_8_BREAKING?:workspace:^7.17.7#2e33d9"
dependencies:
"@babel/helper-module-transforms-BABEL_8_BREAKING-false": "npm:@babel/helper-module-transforms@workspace:^7.17.7"
checksum: 36087eb0b3a60e6457fe151618cc5dec55521efcea4e059e0d87bb6e1b6c587494e4f713aca6e0e46b333577b6ec54098f46b1e1b107799ec0fec5aad95bf922
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.15.8, @babel/helper-module-transforms@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-module-transforms@npm:7.16.7"
dependencies:
"@babel/helper-environment-visitor": ^7.16.7
"@babel/helper-module-imports": ^7.16.7
"@babel/helper-simple-access": ^7.16.7
"@babel/helper-split-export-declaration": ^7.16.7
"@babel/helper-validator-identifier": ^7.16.7
"@babel/template": ^7.16.7
"@babel/traverse": ^7.16.7
"@babel/types": ^7.16.7
checksum: 6e930ce776c979f299cdbeaf80187f4ab086d75287b96ecc1c6896d392fcb561065f0d6219fc06fa79b4ceb4bbdc1a9847da8099aba9b077d0a9e583500fb673
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-optimise-call-expression@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: 925feb877d5a30a71db56e2be498b3abbd513831311c0188850896c4c1ada865eea795dce5251a1539b0f883ef82493f057f84286dd01abccc4736acfafe15ea
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@workspace:^, @babel/helper-optimise-call-expression@workspace:packages/babel-helper-optimise-call-expression":
version: 0.0.0-use.local
resolution: "@babel/helper-optimise-call-expression@workspace:packages/babel-helper-optimise-call-expression"
dependencies:
"@babel/generator": "workspace:^"
"@babel/parser": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-plugin-test-runner@workspace:^, @babel/helper-plugin-test-runner@workspace:packages/babel-helper-plugin-test-runner":
version: 0.0.0-use.local
resolution: "@babel/helper-plugin-test-runner@workspace:packages/babel-helper-plugin-test-runner"
dependencies:
"@babel/helper-transform-fixture-test-runner": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.13.0, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.16.7, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.16.7
resolution: "@babel/helper-plugin-utils@npm:7.16.7"
checksum: d08dd86554a186c2538547cd537552e4029f704994a9201d41d82015c10ed7f58f9036e8d1527c3760f042409163269d308b0b3706589039c5f1884619c6d4ce
languageName: node
linkType: hard
"@babel/helper-plugin-utils@workspace:^, @babel/helper-plugin-utils@workspace:packages/babel-helper-plugin-utils":
version: 0.0.0-use.local
resolution: "@babel/helper-plugin-utils@workspace:packages/babel-helper-plugin-utils"
languageName: unknown
linkType: soft
"@babel/helper-remap-async-to-generator@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/helper-remap-async-to-generator@npm:7.16.8"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.7
"@babel/helper-wrap-function": ^7.16.8
"@babel/types": ^7.16.8
checksum: 29282ee36872130085ca111539725abbf20210c2a1d674bee77f338a57c093c3154108d03a275f602e471f583bd2c7ae10d05534f87cbc22b95524fe2b569488
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@workspace:^, @babel/helper-remap-async-to-generator@workspace:packages/babel-helper-remap-async-to-generator":
version: 0.0.0-use.local
resolution: "@babel/helper-remap-async-to-generator@workspace:packages/babel-helper-remap-async-to-generator"
dependencies:
"@babel/helper-annotate-as-pure": "workspace:^"
"@babel/helper-wrap-function": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-replace-supers@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-replace-supers@npm:7.16.7"
dependencies:
"@babel/helper-environment-visitor": ^7.16.7
"@babel/helper-member-expression-to-functions": ^7.16.7
"@babel/helper-optimise-call-expression": ^7.16.7
"@babel/traverse": ^7.16.7
"@babel/types": ^7.16.7
checksum: e5c0b6eb3dad8410a6255f93b580dde9b3c1564646c6ef751de59d5b2a65b5caa80cc9e568155f04bbae895ad0f54305c2e833dbd971a4f641f970c90b3d892b
languageName: node
linkType: hard
"@babel/helper-replace-supers@workspace:^, @babel/helper-replace-supers@workspace:packages/babel-helper-replace-supers":
version: 0.0.0-use.local
resolution: "@babel/helper-replace-supers@workspace:packages/babel-helper-replace-supers"
dependencies:
"@babel/helper-environment-visitor": "workspace:^"
"@babel/helper-member-expression-to-functions": "workspace:^"
"@babel/helper-optimise-call-expression": "workspace:^"
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-simple-access@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-simple-access@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: 8d22c46c5ec2ead0686c4d5a3d1d12b5190c59be676bfe0d9d89df62b437b51d1a3df2ccfb8a77dded2e585176ebf12986accb6d45a18cff229eef3b10344f4b
languageName: node
linkType: hard
"@babel/helper-simple-access@workspace:^, @babel/helper-simple-access@workspace:packages/babel-helper-simple-access":
version: 0.0.0-use.local
resolution: "@babel/helper-simple-access@workspace:packages/babel-helper-simple-access"
dependencies:
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
checksum: b9ed2896eb253e6a85f472b0d4098ed80403758ad1a4e34b02b11e8276e3083297526758b1a3e6886e292987266f10622d7dbced3508cc22b296a74903b41cfb
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@workspace:^, @babel/helper-skip-transparent-expression-wrappers@workspace:packages/babel-helper-skip-transparent-expression-wrappers":
version: 0.0.0-use.local
resolution: "@babel/helper-skip-transparent-expression-wrappers@workspace:packages/babel-helper-skip-transparent-expression-wrappers"
dependencies:
"@babel/traverse": "workspace:^"
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-split-export-declaration@npm:^7.15.4, @babel/helper-split-export-declaration@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-split-export-declaration@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: e10aaf135465c55114627951b79115f24bc7af72ecbb58d541d66daf1edaee5dde7cae3ec8c3639afaf74526c03ae3ce723444e3b5b3dc77140c456cd84bcaa1
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@workspace:^, @babel/helper-split-export-declaration@workspace:packages/babel-helper-split-export-declaration":
version: 0.0.0-use.local
resolution: "@babel/helper-split-export-declaration@workspace:packages/babel-helper-split-export-declaration"
dependencies:
"@babel/types": "workspace:^"
languageName: unknown
linkType: soft
"@babel/helper-transform-fixture-test-runner@workspace:^, @babel/helper-transform-fixture-test-runner@workspace:packages/babel-helper-transform-fixture-test-runner":
version: 0.0.0-use.local
resolution: "@babel/helper-transform-fixture-test-runner@workspace:packages/babel-helper-transform-fixture-test-runner"
dependencies:
"@babel/code-frame": "workspace:^"
"@babel/core": "workspace:^"
"@babel/helper-fixtures": "workspace:^"
"@jridgewell/trace-mapping": ^0.3.4
"@types/jest": ^27.4.1
babel-check-duplicated-nodes: ^1.0.0
quick-lru: 5.1.0
regenerator-runtime: ^0.13.7
languageName: unknown
linkType: soft
"@babel/helper-validator-identifier@npm:^7.14.9, @babel/helper-validator-identifier@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-validator-identifier@npm:7.16.7"
checksum: dbb3db9d184343152520a209b5684f5e0ed416109cde82b428ca9c759c29b10c7450657785a8b5c5256aa74acc6da491c1f0cf6b784939f7931ef82982051b69
languageName: node
linkType: hard
"@babel/helper-validator-identifier@workspace:^, @babel/helper-validator-identifier@workspace:packages/babel-helper-validator-identifier":
version: 0.0.0-use.local
resolution: "@babel/helper-validator-identifier@workspace:packages/babel-helper-validator-identifier"
dependencies:
"@unicode/unicode-14.0.0": ^1.2.1
charcodes: ^0.2.0
languageName: unknown
linkType: soft
"@babel/helper-validator-option@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-validator-option@npm:7.16.7"
checksum: c5ccc451911883cc9f12125d47be69434f28094475c1b9d2ada7c3452e6ac98a1ee8ddd364ca9e3f9855fcdee96cdeafa32543ebd9d17fee7a1062c202e80570
languageName: node
linkType: hard
"@babel/helper-validator-option@workspace:^, @babel/helper-validator-option@workspace:packages/babel-helper-validator-option":
version: 0.0.0-use.local
resolution: "@babel/helper-validator-option@workspace:packages/babel-helper-validator-option"
languageName: unknown
linkType: soft
"@babel/helper-wrap-function@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/helper-wrap-function@npm:7.16.8"
dependencies:
"@babel/helper-function-name": ^7.16.7
"@babel/template": ^7.16.7
"@babel/traverse": ^7.16.8
"@babel/types": ^7.16.8
checksum: d8aae4bacaf138d47dca1421ba82b41eac954cbb0ad17ab1c782825c6f2afe20076fbed926ab265967758336de5112d193a363128cd1c6967c66e0151174f797
languageName: node
linkType: hard
"@babel/helper-wrap-function@workspace:^, @babel/helper-wrap-function@workspace:packages/babel-helper-wrap-function":
version: 0.0.0-use.local