generated from un-ts/lib-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
21508 lines (19468 loc) · 769 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: 8
cacheKey: 10
"@1stg/app-config@npm:^10.0.1":
version: 10.0.1
resolution: "@1stg/app-config@npm:10.0.1"
dependencies:
"@1stg/browserslist-config": "npm:^2.0.0"
"@1stg/common-config": "npm:^10.0.0"
"@1stg/postcss-config": "npm:^6.0.0"
"@1stg/stylelint-config": "npm:^6.0.0"
"@pkgr/es-modules": "npm:^0.6.3"
"@pkgr/imagemin": "npm:^4.1.0"
browserslist: "npm:^4.22.2"
postcss: "npm:^8.4.32"
stylelint: "npm:^16.1.0"
checksum: c396b5c34c15c5d0f65c4c1a88e3a8acca219a9f556e9082a9446075c9916122b44b5cc66630bc94af2603379a6fed9222db5ef056b21c900df94ac5583b9560
languageName: node
linkType: hard
"@1stg/babel-preset@npm:^4.0.0":
version: 4.0.0
resolution: "@1stg/babel-preset@npm:4.0.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-proposal-class-properties": "npm:^7.18.6"
"@babel/plugin-proposal-decorators": "npm:^7.23.6"
"@babel/preset-env": "npm:^7.23.6"
"@babel/preset-react": "npm:^7.23.3"
"@babel/preset-typescript": "npm:^7.23.3"
"@pkgr/utils": "npm:^3.0.0"
"@vue/babel-helper-vue-jsx-merge-props": "npm:^1.4.0"
"@vue/babel-plugin-jsx": "npm:^1.1.5"
"@vue/babel-preset-jsx": "npm:^1.4.0"
babel-plugin-import: "npm:^1.13.8"
babel-plugin-transform-async-to-promises: "npm:^0.8.18"
babel-plugin-transform-react-remove-prop-types: "npm:^0.4.24"
babel-plugin-transform-remove-console: "npm:^6.9.4"
babel-plugin-transform-typescript-metadata: "npm:^0.3.2"
babel-preset-proposal-typescript: "npm:^4.0.0"
core-js: "npm:^3.35.0"
fast-async: "npm:^7.0.6"
peerDependencies:
"@babel/core": ">=7.14.1"
checksum: 9f2ff1de3a4ecc810d1c12fedb790afa1ff7d6d837af49e0ab515e9f6e75a32431b112ac54ab1a7023f1c0a0fbf56946a4073e5b7396ad2572d5ca55d51e32f8
languageName: node
linkType: hard
"@1stg/browserslist-config@npm:^2.0.0":
version: 2.0.0
resolution: "@1stg/browserslist-config@npm:2.0.0"
peerDependencies:
browserslist: ">=4.0.0"
checksum: 2be4061a8d9d94442acbf8556482ce1bb332a89f7c92885efceb495fa043ed6172a15a20b8f71b34d0799af90448253efc18733198f56f65e6f1f23c7501b003
languageName: node
linkType: hard
"@1stg/commitlint-config@npm:^4.0.0":
version: 4.0.0
resolution: "@1stg/commitlint-config@npm:4.0.0"
dependencies:
"@commitlint/config-conventional": "npm:^18.4.3"
"@commitlint/config-lerna-scopes": "npm:^18.4.3"
"@pkgr/utils": "npm:^3.0.0"
checksum: eedb310e8c2981c23035b22baad7309e747250b6a2cf3bf7485875767ecbc348d95ca392914feeaf156591f90b3df5536ca6bb2e722198ad921b0d85b157be0e
languageName: node
linkType: hard
"@1stg/common-config@npm:^10.0.0":
version: 10.0.0
resolution: "@1stg/common-config@npm:10.0.0"
dependencies:
"@1stg/babel-preset": "npm:^4.0.0"
"@1stg/commitlint-config": "npm:^4.0.0"
"@1stg/eslint-config": "npm:^8.0.0"
"@1stg/lint-staged": "npm:^4.0.0"
"@1stg/markuplint-config": "npm:^3.0.1"
"@1stg/prettier-config": "npm:^4.0.0"
"@1stg/remark-preset": "npm:^2.0.0"
"@1stg/simple-git-hooks": "npm:^0.2.3"
"@1stg/tsconfig": "npm:^2.3.3"
"@babel/core": "npm:^7.23.6"
"@commitlint/cli": "npm:^18.4.3"
eslint: "npm:^8.56.0"
lint-staged: "npm:^15.2.0"
npm-run-all: "npm:^4.1.5"
prettier: "npm:^3.1.1"
simple-git-hooks: "npm:^2.9.0"
tslib: "npm:^2.6.2"
checksum: 68fdab953b33b541305535a5abab18a56ebb4a084e6575f2736a35e089248c524f5af106fa20b8a8665f7e0495ecee821e6ef714c6af96a303d2d20d9b62b19b
languageName: node
linkType: hard
"@1stg/config@npm:^0.2.2":
version: 0.2.2
resolution: "@1stg/config@npm:0.2.2"
checksum: 6cad68d09aed2d11f0975927dbb7fbc2f06f3c70bd29165203ac765815c1d9a092d149705557f3c89d0d4b8edca9802e51bf993aa3b03ba738ad084b2d1fa0ee
languageName: node
linkType: hard
"@1stg/eslint-config@npm:^8.0.0":
version: 8.0.0
resolution: "@1stg/eslint-config@npm:8.0.0"
dependencies:
"@1stg/config": "npm:^0.2.2"
"@angular-eslint/eslint-plugin": "npm:^17.1.1"
"@angular-eslint/eslint-plugin-template": "npm:^17.1.1"
"@angular-eslint/template-parser": "npm:^17.1.1"
"@babel/eslint-parser": "npm:^7.23.3"
"@babel/eslint-plugin": "npm:^7.23.5"
"@eslint-community/eslint-plugin-eslint-comments": "npm:^4.1.0"
"@pkgr/utils": "npm:^3.0.0"
"@typescript-eslint/eslint-plugin": "npm:^6.16.0"
"@typescript-eslint/parser": "npm:^6.16.0"
angular-eslint-template-parser: "npm:^0.1.1"
eslint-config-prettier: "npm:^9.1.0"
eslint-config-standard: "npm:^17.1.0"
eslint-config-standard-jsx: "npm:^11.0.0"
eslint-config-standard-react: "npm:^13.0.0"
eslint-formatter-friendly: "npm:^7.0.0"
eslint-import-resolver-typescript: "npm:^3.6.1"
eslint-plugin-css: "npm:^0.8.1"
eslint-plugin-es-x: "npm:^7.5.0"
eslint-plugin-import: "npm:eslint-plugin-i@^2.29.1"
eslint-plugin-jest: "npm:^27.6.0"
eslint-plugin-jsdoc: "npm:^46.9.1"
eslint-plugin-jsonc: "npm:^2.11.2"
eslint-plugin-markup: "npm:^0.11.0"
eslint-plugin-mdx: "npm:^2.3.0"
eslint-plugin-n: "npm:^16.6.0"
eslint-plugin-prettier: "npm:^5.1.2"
eslint-plugin-promise: "npm:^6.1.1"
eslint-plugin-react: "npm:^7.33.2"
eslint-plugin-react-hooks: "npm:^4.6.0"
eslint-plugin-regexp: "npm:^2.1.2"
eslint-plugin-simple-import-sort: "npm:^10.0.0"
eslint-plugin-sonar: "npm:^0.13.1"
eslint-plugin-sonarjs: "npm:^0.23.0"
eslint-plugin-svelte: "npm:^2.35.1"
eslint-plugin-toml: "npm:^0.8.0"
eslint-plugin-unicorn: "npm:^50.0.1"
eslint-plugin-vue: "npm:^9.19.2"
eslint-plugin-yml: "npm:^1.11.0"
peerDependencies:
eslint: ">=8.0.0"
checksum: c9d4cda834e39992c588dc4c8a3768562b750d514f742c7d74662d40de153fb29d86a87f16bae326431f526d9fec282773ddee049c67d2385d4869a047e38d9e
languageName: node
linkType: hard
"@1stg/lint-staged@npm:^4.0.0":
version: 4.0.0
resolution: "@1stg/lint-staged@npm:4.0.0"
dependencies:
"@1stg/config": "npm:^0.2.2"
"@1stg/prettier-config": "npm:^4.0.0"
"@1stg/tsconfig": "npm:^2.3.3"
"@pkgr/core": "npm:^0.1.0"
prettier: "npm:^3.1.1"
peerDependencies:
lint-staged: ">=10.0.0"
checksum: 014ffcc017d0963bbb267e083b0b6b89d21f6b967ad3d737fe41df64c1f64dbd3026851538cec9c2884b50c40ac4a3ee4546ba5b664c5a4219f42ececb9f0cd3
languageName: node
linkType: hard
"@1stg/markuplint-config@npm:^3.0.1":
version: 3.0.1
resolution: "@1stg/markuplint-config@npm:3.0.1"
dependencies:
"@markuplint/svelte-parser": "npm:^3.8.0"
"@markuplint/vue-parser": "npm:^3.8.0"
"@markuplint/vue-spec": "npm:^3.9.0"
markuplint-angular-parser: "npm:^2.0.0"
peerDependencies:
markuplint: ^3.0.0
checksum: 8b2d4c89b124453f06906a71faabcadfc0f6faf580d7baca7d6b22dc1bae488c72aca24d25ac70e044afc4458ba3bd9f4bffc2a35a6c8d0d7e8160656301fe83
languageName: node
linkType: hard
"@1stg/postcss-config@npm:^6.0.0":
version: 6.0.0
resolution: "@1stg/postcss-config@npm:6.0.0"
dependencies:
"@pkgr/utils": "npm:^3.0.0"
autoprefixer: "npm:^10.4.16"
cssnano: "npm:^6.0.2"
cssnano-preset-advanced: "npm:^6.0.2"
postcss-import: "npm:^15.1.0"
postcss-modules: "npm:^6.0.0"
postcss-normalize: "npm:^10.0.1"
postcss-preset-env: "npm:^9.3.0"
postcss-url: "npm:^10.1.3"
peerDependencies:
postcss: ">=7.0.0"
checksum: 32cd98de19f0917e73774501326f8e1b26b3d730ec17a7d90bd55c07fc9c53bbf7f2d999d9e96b9a816c576818207895fc14d6a7f0581e3c251586f9fb0a5e45
languageName: node
linkType: hard
"@1stg/prettier-config@npm:^4.0.0":
version: 4.0.0
resolution: "@1stg/prettier-config@npm:4.0.0"
dependencies:
"@1stg/config": "npm:^0.2.2"
"@prettier/plugin-pug": "npm:^3.0.0"
"@prettier/plugin-ruby": "npm:^4.0.4"
"@prettier/plugin-xml": "npm:^3.2.2"
prettier-plugin-ini: "npm:^1.1.0"
prettier-plugin-pkg: "npm:^0.18.0"
prettier-plugin-properties: "npm:^0.3.0"
prettier-plugin-sh: "npm:^0.13.1"
prettier-plugin-stylus: "npm:^0.1.0"
prettier-plugin-svelte: "npm:^3.1.2"
prettier-plugin-toml: "npm:^2.0.1"
peerDependencies:
prettier: ">=1.18.0"
checksum: 9455901f73079728863b749e35bab7d3cace608882088e4193c09fc8fcce2369f9d070e1b44d3e10332786462668d5f109853e262c0df9ead216e14e1e345628
languageName: node
linkType: hard
"@1stg/remark-preset@npm:^2.0.0":
version: 2.0.0
resolution: "@1stg/remark-preset@npm:2.0.0"
dependencies:
remark-frontmatter: "npm:^4.0.1"
remark-gfm: "npm:^3.0.1"
remark-lint: "npm:^9.1.1"
remark-lint-no-duplicate-headings: "npm:^3.1.1"
remark-lint-no-duplicate-headings-in-section: "npm:^3.1.1"
remark-preset-lint-consistent: "npm:^5.1.1"
remark-preset-lint-markdown-style-guide: "npm:^5.1.2"
remark-preset-lint-recommended: "npm:^6.1.2"
remark-preset-prettier: "npm:^2.0.1"
remark-validate-links: "npm:^12.1.0"
checksum: 3a4b0da727b10e2a9e79ccb99f96b2c324ce3a6d04542e5a9c1d3c00effaebc42c8e0be2b79b7b0092c568819e6f9884c65eea12a5ab9d6a9d58491a92ac54fa
languageName: node
linkType: hard
"@1stg/simple-git-hooks@npm:^0.2.3":
version: 0.2.3
resolution: "@1stg/simple-git-hooks@npm:0.2.3"
dependencies:
"@pkgr/utils": "npm:^2.3.1"
peerDependencies:
"@commitlint/cli": ">=11.0.0"
lint-staged: ">=9.0.0"
simple-git-hooks: ">=2.2.0"
checksum: 1c5778578fa2cd82965034e362ef7b288176b95c81f81e1f4ec672d2b2190115912ee722de796ccc8f818dc9270c09ab7ccedd72b80167c94cc5f1ee935c626b
languageName: node
linkType: hard
"@1stg/stylelint-config@npm:^6.0.0":
version: 6.0.0
resolution: "@1stg/stylelint-config@npm:6.0.0"
dependencies:
"@1stg/config": "npm:^0.2.2"
"@pkgr/core": "npm:^0.1.0"
postcss-html: "npm:^1.5.0"
postcss-less: "npm:^6.0.0"
postcss-markdown: "npm:^1.2.0"
postcss-scss: "npm:^4.0.9"
postcss-syntax: "npm:^0.36.2"
stylelint-config-prettier: "npm:^9.0.5"
stylelint-config-standard: "npm:^36.0.0"
stylelint-high-performance-animation: "npm:^1.10.0"
stylelint-no-unsupported-browser-features: "npm:^7.0.0"
stylelint-prettier: "npm:^5.0.0"
stylelint-scss: "npm:^6.0.0"
stylelint-stylus: "npm:^1.0.0"
peerDependencies:
stylelint: ">=13.0.0"
checksum: 8ed6c0a28ebb5667ec27e3b83fc4e81406da3eaa64411fbf6554aebfae9fda2909450171ed90bb44d9ea03da0d87e932785fef0aba4ca821a1667a9f42cd836d
languageName: node
linkType: hard
"@1stg/tsconfig@npm:^2.3.3":
version: 2.3.3
resolution: "@1stg/tsconfig@npm:2.3.3"
peerDependencies:
typescript: ">=3.0.0"
checksum: 84d225e11ae51b5cdb5b983ab505800874f77fee3f88901c5707bb3509584c3b7d22a4968d445e464ad943019f61cc22f4c18d62a35640308dbda390a848d64b
languageName: node
linkType: hard
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0, @ampproject/remapping@npm:^2.2.1":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:17.1.1":
version: 17.1.1
resolution: "@angular-eslint/bundled-angular-compiler@npm:17.1.1"
checksum: 0e66b36274889618a191c5a8583d46918e73f9776e75ed71c1f7177a8354e033699af62c9efc2ecbf58b3ac673b2a7478a8c6903d1cb0d1b0a287a75a0e02793
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:^17.1.1":
version: 17.1.1
resolution: "@angular-eslint/eslint-plugin-template@npm:17.1.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.1.1"
"@angular-eslint/utils": "npm:17.1.1"
"@typescript-eslint/type-utils": "npm:6.13.1"
"@typescript-eslint/utils": "npm:6.13.1"
aria-query: "npm:5.3.0"
axobject-query: "npm:4.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: e40aa55b8fb37a8730bbcf1dc82091fe77541dbe7b3c6bab199c305677d3b0eb16668d767fe07d474ddd1351ed1f5124788fe8064dfb99818beb9a2766459bd3
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:^17.1.1":
version: 17.1.1
resolution: "@angular-eslint/eslint-plugin@npm:17.1.1"
dependencies:
"@angular-eslint/utils": "npm:17.1.1"
"@typescript-eslint/utils": "npm:6.13.1"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 0ebfa514fcf6ce187bf62ec4813f188d64a2dde5ecd948f5e719f360a2d428477742b2e9975899afed76994971d993354cf774e42080b16aa7bfa6df7134e05f
languageName: node
linkType: hard
"@angular-eslint/template-parser@npm:^17.1.1":
version: 17.1.1
resolution: "@angular-eslint/template-parser@npm:17.1.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.1.1"
eslint-scope: "npm:^7.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 54f75e626775bddf77a50829346e74067eca999f765ca9f1135e5ec58bf2f0fd540e17801f290b8744815ff0e3ea4d81307b667a06f7724ea8f1a38dd7edc127
languageName: node
linkType: hard
"@angular-eslint/utils@npm:17.1.1":
version: 17.1.1
resolution: "@angular-eslint/utils@npm:17.1.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.1.1"
"@typescript-eslint/utils": "npm:6.13.1"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: eb7cb7c952438f94d6024bfec3579c7363053cbde2e377d4ff18e5ee57c4900cd621408d9d4d916e06e95091059a19486ef9f47147df5dd54355d3545f59218a
languageName: node
linkType: hard
"@antfu/utils@npm:^0.7.7":
version: 0.7.7
resolution: "@antfu/utils@npm:0.7.7"
checksum: 28b1a9caecc26bb43c5b08ea18c384f97a1eccc29763ad19c719e57f252fc12296f13849917fdf6611bd3aceff17137011363703e7ac0a07a083c9dce4676e42
languageName: node
linkType: hard
"@babel/code-frame@npm:7.0.0":
version: 7.0.0
resolution: "@babel/code-frame@npm:7.0.0"
dependencies:
"@babel/highlight": "npm:^7.0.0"
checksum: ac4d13f8678155249e272afe22f84710c2343a863767ab5a7c3a54f0fb5f6f57b192a5cb2a625d4f7f05f33ad806d8b9ab4ce83ba9ec280119e665a8bd48123d
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.16.0, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: 44e58529c9d93083288dc9e649c553c5ba997475a7b0758cc3ddc4d77b8a7d985dbe78cc39c9bbc61f26d50af6da1ddf0a3427eae8cc222a9370619b671ed8f5
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.23.3, @babel/compat-data@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/compat-data@npm:7.23.5"
checksum: 088f14f646ecbddd5ef89f120a60a1b3389a50a9705d44603dca77662707d0175a5e0e0da3943c3298f1907a4ab871468656fbbf74bb7842cd8b0686b2c19736
languageName: node
linkType: hard
"@babel/core@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/core@npm:7.23.6"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.23.5"
"@babel/generator": "npm:^7.23.6"
"@babel/helper-compilation-targets": "npm:^7.23.6"
"@babel/helper-module-transforms": "npm:^7.23.3"
"@babel/helpers": "npm:^7.23.6"
"@babel/parser": "npm:^7.23.6"
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.6"
"@babel/types": "npm:^7.23.6"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: a72ba71d2f557d09ff58a5f0846344b9cea9dfcbd7418729a3a74d5b0f37a5ca024942fef4d19f248de751928a1be3d5cb0488746dd8896009dd55b974bb552e
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/eslint-parser@npm:7.23.3"
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals": "npm:5.1.1-v1"
eslint-visitor-keys: "npm:^2.1.0"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.11.0
eslint: ^7.5.0 || ^8.0.0
checksum: bc487f67aac64f1f8b351b8ec5e83bd1de5770e2e39c648d4df486e4079110f8594ef5b60b6e8379a9bb944dbbe5d96295f04fa47ef17901186568875b804b99
languageName: node
linkType: hard
"@babel/eslint-plugin@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/eslint-plugin@npm:7.23.5"
dependencies:
eslint-rule-composer: "npm:^0.3.0"
peerDependencies:
"@babel/eslint-parser": ^7.11.0
eslint: ^7.5.0 || ^8.0.0
checksum: 07b0907d100d5fabb05d0e3d573872dfed1ec094f167679928ddd20f3dcf6d914d0d08dd202590e2afa5a80550eede18cc96f69795505d88a7d7ab5b8b4071d8
languageName: node
linkType: hard
"@babel/generator@npm:^7.0.0-beta.44, @babel/generator@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/generator@npm:7.23.6"
dependencies:
"@babel/types": "npm:^7.23.6"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: 864090d5122c0aa3074471fd7b79d8a880c1468480cbd28925020a3dcc7eb6e98bedcdb38983df299c12b44b166e30915b8085a7bc126e68fa7e2aadc7bd1ac5
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.18.6, @babel/helper-annotate-as-pure@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-annotate-as-pure@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 53da330f1835c46f26b7bf4da31f7a496dee9fd8696cca12366b94ba19d97421ce519a74a837f687749318f94d1a37f8d1abcbf35e8ed22c32d16373b2f6198d
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.15":
version: 7.22.15
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 639c697a1c729f9fafa2dd4c9af2e18568190299b5907bd4c2d0bc818fcbd1e83ffeecc2af24327a7faa7ac4c34edd9d7940510a5e66296c19bad17001cf5c7a
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.22.15, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/helper-compilation-targets@npm:7.23.6"
dependencies:
"@babel/compat-data": "npm:^7.23.5"
"@babel/helper-validator-option": "npm:^7.23.5"
browserslist: "npm:^4.22.2"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 05595cd73087ddcd81b82d2f3297aac0c0422858dfdded43d304786cf680ec33e846e2317e6992d2c964ee61d93945cbf1fa8ec80b55aee5bfb159227fb02cb9
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.21.0, @babel/helper-create-class-features-plugin@npm:^7.22.15, @babel/helper-create-class-features-plugin@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/helper-create-class-features-plugin@npm:7.23.6"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-function-name": "npm:^7.23.0"
"@babel/helper-member-expression-to-functions": "npm:^7.23.0"
"@babel/helper-optimise-call-expression": "npm:^7.22.5"
"@babel/helper-replace-supers": "npm:^7.22.20"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 5e0cff67a6809d2285215057be45de9dd8900b91e3526fad5eac79023c1d6bee32aed1a04fcdf0e4d99ee4bd49ea5459cb98260c13222edf3bb983621bb452f4
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.15, @babel/helper-create-regexp-features-plugin@npm:^7.22.5":
version: 7.22.15
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
regexpu-core: "npm:^5.3.1"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 886b675e82f1327b4f7a2c69a68eefdb5dbb0b9d4762c2d4f42a694960a9ccf61e1a3bcad601efd92c110033eb1a944fcd1e5cac188aa6b2e2076b541e210e20
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.4.3":
version: 0.4.3
resolution: "@babel/helper-define-polyfill-provider@npm:0.4.3"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.22.6"
"@babel/helper-plugin-utils": "npm:^7.22.5"
debug: "npm:^4.1.1"
lodash.debounce: "npm:^4.0.8"
resolve: "npm:^1.14.2"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
checksum: 9ab9d6a2cfaffc44f8b7ad661b642b03f31597282557686b7f4c64f67acd3c5844d4eac028e63d238819bcec0549ddef7dc0539d10966ace96f4c61e97b33138
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-environment-visitor@npm:7.22.20"
checksum: d80ee98ff66f41e233f36ca1921774c37e88a803b2f7dca3db7c057a5fea0473804db9fb6729e5dbfd07f4bed722d60f7852035c2c739382e84c335661590b69
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.22.5, @babel/helper-function-name@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-function-name@npm:7.23.0"
dependencies:
"@babel/template": "npm:^7.22.15"
"@babel/types": "npm:^7.23.0"
checksum: 7b2ae024cd7a09f19817daf99e0153b3bf2bc4ab344e197e8d13623d5e36117ed0b110914bc248faa64e8ccd3e97971ec7b41cc6fd6163a2b980220c58dcdf6d
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-hoist-variables@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.22.15, @babel/helper-member-expression-to-functions@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.23.0"
dependencies:
"@babel/types": "npm:^7.23.0"
checksum: 325feb6e200478c8cd6e10433fabe993a7d3315cc1a2a457e45514a5f95a73dff4c69bea04cc2daea0ffe72d8ed85d504b3f00b2e0767b7d4f5ae25fec9b35b2
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.0.0-beta.44, @babel/helper-module-imports@npm:^7.22.15, @babel/helper-module-imports@npm:^7.22.5":
version: 7.22.15
resolution: "@babel/helper-module-imports@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 5ecf9345a73b80c28677cfbe674b9f567bb0d079e37dcba9055e36cb337db24ae71992a58e1affa9d14a60d3c69907d30fe1f80aea105184501750a58d15c81c
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/helper-module-transforms@npm:7.23.3"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-module-imports": "npm:^7.22.15"
"@babel/helper-simple-access": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
"@babel/helper-validator-identifier": "npm:^7.22.20"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 583fa580f8e50e6f45c4f46aa76a8e49c2528deb84e25f634d66461b9a0e2420e13979b0a607b67aef67eaf8db8668eb9edc038b4514b16e3879fe09e8fd294b
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-optimise-call-expression@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: c70ef6cc6b6ed32eeeec4482127e8be5451d0e5282d5495d5d569d39eb04d7f1d66ec99b327f45d1d5842a9ad8c22d48567e93fc502003a47de78d122e355f7c
languageName: node
linkType: hard
"@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.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.22.5
resolution: "@babel/helper-plugin-utils@npm:7.22.5"
checksum: ab220db218089a2aadd0582f5833fd17fa300245999f5f8784b10f5a75267c4e808592284a29438a0da365e702f05acb369f99e1c915c02f9f9210ec60eab8ea
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-remap-async-to-generator@npm:7.22.20"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-wrap-function": "npm:^7.22.20"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 2fe6300a6f1b58211dffa0aed1b45d4958506d096543663dba83bd9251fe8d670fa909143a65b45e72acb49e7e20fbdb73eae315d9ddaced467948c3329986e7
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-replace-supers@npm:7.22.20"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-member-expression-to-functions": "npm:^7.22.15"
"@babel/helper-optimise-call-expression": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 617666f57b0f94a2f430ee66b67c8f6fa94d4c22400f622947580d8f3638ea34b71280af59599ed4afbb54ae6e2bdd4f9083fe0e341184a4bb0bd26ef58d3017
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-simple-access@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 7d5430eecf880937c27d1aed14245003bd1c7383ae07d652b3932f450f60bfcf8f2c1270c593ab063add185108d26198c69d1aca0e6fb7c6fdada4bcf72ab5b7
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 1012ef2295eb12dc073f2b9edf3425661e9b8432a3387e62a8bc27c42963f1f216ab3124228015c748770b2257b4f1fda882ca8fa34c0bf485e929ae5bc45244
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.22.6":
version: 7.22.6
resolution: "@babel/helper-split-export-declaration@npm:7.22.6"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: e141cace583b19d9195f9c2b8e17a3ae913b7ee9b8120246d0f9ca349ca6f03cb2c001fd5ec57488c544347c0bb584afec66c936511e447fd20a360e591ac921
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/helper-string-parser@npm:7.23.4"
checksum: c352082474a2ee1d2b812bd116a56b2e8b38065df9678a32a535f151ec6f58e54633cc778778374f10544b930703cca6ddf998803888a636afa27e2658068a9c
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: df882d2675101df2d507b95b195ca2f86a3ef28cb711c84f37e79ca23178e13b9f0d8b522774211f51e40168bf5142be4c1c9776a150cddb61a0d5bf3e95750b
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.22.15, @babel/helper-validator-option@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/helper-validator-option@npm:7.23.5"
checksum: 537cde2330a8aede223552510e8a13e9c1c8798afee3757995a7d4acae564124fe2bf7e7c3d90d62d3657434a74340a274b3b3b1c6f17e9a2be1f48af29cb09e
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-wrap-function@npm:7.22.20"
dependencies:
"@babel/helper-function-name": "npm:^7.22.5"
"@babel/template": "npm:^7.22.15"
"@babel/types": "npm:^7.22.19"
checksum: b22e4666dec3d401bdf8ebd01d448bb3733617dae5aa6fbd1b684a22a35653cca832edd876529fd139577713b44fb89b4f5e52b7315ab218620f78b8a8ae23de
languageName: node
linkType: hard
"@babel/helpers@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/helpers@npm:7.23.6"
dependencies:
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.6"
"@babel/types": "npm:^7.23.6"
checksum: 2a85fd2bcbc15a6c94dbe7b9e94d8920f9de76d164179d6895fee89c4339079d9e3e56f572bf19b5e7d1e6f1997d7fbaeaa686b47d35136852631dfd09e85c2f
languageName: node
linkType: hard
"@babel/highlight@npm:^7.0.0, @babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 62fef9b5bcea7131df4626d009029b1ae85332042f4648a4ce6e740c3fd23112603c740c45575caec62f260c96b11054d3be5987f4981a5479793579c3aac71f
languageName: node
linkType: hard
"@babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.3, @babel/parser@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/parser@npm:7.23.6"
bin:
parser: ./bin/babel-parser.js
checksum: 6be3a63d3c9d07b035b5a79c022327cb7e16cbd530140ecb731f19a650c794c315a72c699a22413ebeafaff14aa8f53435111898d59e01a393d741b85629fa7d
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: ddbaf2c396b7780f15e80ee01d6dd790db076985f3dfeb6527d1a8d4cacf370e49250396a3aa005b2c40233cac214a106232f83703d5e8491848bde273938232
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5"
"@babel/plugin-transform-optional-chaining": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.13.0
checksum: 434b9d710ae856fa1a456678cc304fbc93915af86d581ee316e077af746a709a741ea39d7e1d4f5b98861b629cc7e87f002d3138f5e836775632466d4c74aef2
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.23.3"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 6e13f14949eb943d33cf4d3775a7195fa93c92851dfb648931038e9eb92a9b1709fdaa5a0ff6cf063cfcd68b3e52d280f3ebc0f3085b3e006e64dd6196ecb72a
languageName: node
linkType: hard
"@babel/plugin-proposal-async-do-expressions@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-async-do-expressions@npm:7.23.3"
dependencies:
"@babel/helper-hoist-variables": "npm:^7.22.5"
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-async-do-expressions": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.13.0
checksum: ca4c7b9bc5b7be9f1c632bf3c7bc0ad21daddcc7882780ecfcce17a09cbb707c043244ce369b21f63a40f82da41a9b5b32f28967c8abb9c50beb5f7f8fec0a71
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 49a78a2773ec0db56e915d9797e44fd079ab8a9b2e1716e0df07c92532f2c65d76aeda9543883916b8e0ff13606afeffa67c5b93d05b607bc87653ad18a91422
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/plugin-proposal-decorators@npm:7.23.6"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.23.6"
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/helper-replace-supers": "npm:^7.22.20"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
"@babel/plugin-syntax-decorators": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 091796967ad728c7a00ae60c978d20f17cea08fa37bf977568880324b2619f8ce11b4a3797ef1b3137085fcb890639c49462f6be19f7cc3707e17e057df11c75
languageName: node
linkType: hard
"@babel/plugin-proposal-destructuring-private@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-destructuring-private@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-destructuring-private": "npm:^7.23.3"
"@babel/plugin-transform-destructuring": "npm:^7.23.3"
"@babel/plugin-transform-parameters": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.17.0
checksum: cfef18f96d19a5d427d02a5b24de3ffc87d7747c820b5b2ac0fbb8f7047c333161d1f1e2c06b592717770ff6d3a09307153d7006ef7ae046e892b40d2bc715c0
languageName: node
linkType: hard
"@babel/plugin-proposal-do-expressions@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-do-expressions@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-do-expressions": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f8542c36d2a14648d51a36ed6de70e022061f6e00fae2b65d11ebc3505c4a883eafe0f6de897432557475aa73aecab8c32823eae1d1e18716aa96c4f4f402dc7
languageName: node
linkType: hard
"@babel/plugin-proposal-duplicate-named-capturing-groups-regex@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-duplicate-named-capturing-groups-regex@npm:7.23.3"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.22.15"
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 5744cfa41d2b3a705278f1eff7803aab931e985b56da990a6db32b0f4367f3c87b52b6f45a3d39ca472e38550543afd0481400bd92e70502691c8f3232ccbbe8
languageName: node
linkType: hard
"@babel/plugin-proposal-function-bind@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-function-bind@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-function-bind": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b1ecb9a267f0061320412dfd7560249f224ffedc1a7fbc9bfb7accd3ff9fff4752edbc5f57de600f75d968a9e896bc86e36a0a9ff6acb68722c6c0edc6348248
languageName: node
linkType: hard
"@babel/plugin-proposal-function-sent@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-function-sent@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/helper-wrap-function": "npm:^7.22.20"
"@babel/plugin-syntax-function-sent": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c4e384f6b6cdcda8e1e51cf6c1e235b17093b14711215876b0791109c1718cb81c7ca181e661bfb39d9e372aed1c08b5a27713dedceab81444787c7d983b6cfb
languageName: node
linkType: hard
"@babel/plugin-proposal-import-defer@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/plugin-proposal-import-defer@npm:7.23.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-import-defer": "npm:^7.23.0"
"@babel/plugin-transform-modules-commonjs": "npm:^7.23.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0e342e17eb12aecd40f48e3f8776d8cb18bf0928f2a99fdd46768d8843969baae748797381e7082299634dd524b330314d83d870d9e50eff25c7ffc2d486705e
languageName: node
linkType: hard
"@babel/plugin-proposal-import-wasm-source@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/plugin-proposal-import-wasm-source@npm:7.23.0"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.22.15"
"@babel/helper-module-imports": "npm:^7.22.15"
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-import-source": "npm:^7.23.0"
peerDependencies:
"@babel/core": ^7.22.0
checksum: b2403e8171a2a5b86c40e30092affc8249efcf9f6752521f26ad7c3343f88418ed9061a90b9ec880dcc1190c5c1ac8669a542ddbd3225e36f32fe9a0679c16f0
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining-assign@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/plugin-proposal-optional-chaining-assign@npm:7.23.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5"
"@babel/plugin-syntax-optional-chaining-assign": "npm:^7.23.0"
"@babel/plugin-transform-optional-chaining": "npm:^7.23.0"
peerDependencies:
"@babel/core": ^7.22.5
checksum: 624b6dbcf3df78ffaed4d41bb5e01df497ec4f036c72f5fe89279c374758549cec5e3afd9313d255610899a9b485126b87bafb21717950b155725027f9c164b4
languageName: node
linkType: hard
"@babel/plugin-proposal-partial-application@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-partial-application@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-partial-application": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 96302dd9234ac8016e0c4f71679d81ace9ce005d952ea288a9a803665430a6f37cf41d2e2fdee6b4a145d55ef375c65ca4fbc4f1648aab860afdc6f43d33db48
languageName: node
linkType: hard
"@babel/plugin-proposal-pipeline-operator@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-pipeline-operator@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-pipeline-operator": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5b534d9e808785c332da2c6bd9d56aa8e2090c601c222f1925f43b3ef3670f7e9fb7257dbca715f7a70a5930e0f0b3eb827e8fd3569ad050b1b45e9629f0e923
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2":
version: 7.21.0-placeholder-for-preset-env.2
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fab70f399aa869275690ec6c7cedb4ef361d4e8b6f55c3d7b04bfee61d52fb93c87cec2c65d73cddbaca89fb8ef5ec0921fce675c9169d9d51f18305ab34e78a
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:^7.21.11":
version: 7.21.11
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.11"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
"@babel/helper-create-class-features-plugin": "npm:^7.21.0"
"@babel/helper-plugin-utils": "npm:^7.20.2"
"@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f803b5e1de0cb7c53f0d7f70bfbf57f2b3a20d95c19f8f2710719c4938149b490ee14d2d0c2f8316080823f0943c6cb8668fa8c139420e7bc7f80a66bfd50fff
languageName: node
linkType: hard
"@babel/plugin-proposal-record-and-tuple@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-record-and-tuple@npm:7.23.3"
dependencies:
"@babel/helper-module-imports": "npm:^7.22.15"
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/helper-validator-option": "npm:^7.22.15"
"@babel/plugin-syntax-record-and-tuple": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.12.0
checksum: 79671fd9aacab03c8b2a2762fd0538f97c7d3604975a827f3842fd69249a6be984f6e85b5b1f1a0cf304f944d10525db6e366231f8fd63eae0e5b71a73bbfbc1
languageName: node
linkType: hard
"@babel/plugin-proposal-regexp-modifiers@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-regexp-modifiers@npm:7.23.3"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.22.15"
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 7d869d87849b7ec497ffc56ec6db73435d6d47ff7f55aa74b57e19c3d4861ba7b63af09b9156f2868587798b9297d4f85f9d3cfc97386c672e98c35302c70998
languageName: node
linkType: hard
"@babel/plugin-proposal-throw-expressions@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-throw-expressions@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-throw-expressions": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: af281d7d0120281ec130ba16ce0e28142b752e056e8438212e1051fd994e97764786cb62d8f46333810b332ad5d236ffba554f5d3e076d8c0dd0b6618abbf7f9
languageName: node
linkType: hard
"@babel/plugin-syntax-async-do-expressions@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-syntax-async-do-expressions@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"