-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathyarn.lock
13304 lines (12038 loc) · 475 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
"@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.1, @ampproject/remapping@npm:^2.2.0":
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
"@ampproject/remapping@npm:^2.1.0":
version: 2.2.0
resolution: "@ampproject/remapping@npm:2.2.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.1.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 503a58d6e9d645a20debd34fa8df79fb435a79a34b1d487b9ff0be9f20712b1594ce21da16b63af7db8a6b34472212572e53a55613a5a6b3134b23fc74843d04
languageName: node
linkType: hard
"@angular-devkit/architect@npm:*, @angular-devkit/architect@npm:0.1700.1":
version: 0.1700.1
resolution: "@angular-devkit/architect@npm:0.1700.1"
dependencies:
"@angular-devkit/core": "npm:17.0.1"
rxjs: "npm:7.8.1"
checksum: c00b20ec0ddd19170638dd05f4173e00fa9fbc97d8265d95c862db8fa8de77a8da80738a09daffd14d2509f164f60a039174bfcec803c8accd51033ac9650673
languageName: node
linkType: hard
"@angular-devkit/build-angular@npm:^17.0.1":
version: 17.0.1
resolution: "@angular-devkit/build-angular@npm:17.0.1"
dependencies:
"@ampproject/remapping": "npm:2.2.1"
"@angular-devkit/architect": "npm:0.1700.1"
"@angular-devkit/build-webpack": "npm:0.1700.1"
"@angular-devkit/core": "npm:17.0.1"
"@babel/core": "npm:7.23.2"
"@babel/generator": "npm:7.23.0"
"@babel/helper-annotate-as-pure": "npm:7.22.5"
"@babel/helper-split-export-declaration": "npm:7.22.6"
"@babel/plugin-transform-async-generator-functions": "npm:7.23.2"
"@babel/plugin-transform-async-to-generator": "npm:7.22.5"
"@babel/plugin-transform-runtime": "npm:7.23.2"
"@babel/preset-env": "npm:7.23.2"
"@babel/runtime": "npm:7.23.2"
"@discoveryjs/json-ext": "npm:0.5.7"
"@ngtools/webpack": "npm:17.0.1"
"@vitejs/plugin-basic-ssl": "npm:1.0.1"
ansi-colors: "npm:4.1.3"
autoprefixer: "npm:10.4.16"
babel-loader: "npm:9.1.3"
babel-plugin-istanbul: "npm:6.1.1"
browser-sync: "npm:2.29.3"
browserslist: "npm:^4.21.5"
chokidar: "npm:3.5.3"
copy-webpack-plugin: "npm:11.0.0"
critters: "npm:0.0.20"
css-loader: "npm:6.8.1"
esbuild: "npm:0.19.5"
esbuild-wasm: "npm:0.19.5"
fast-glob: "npm:3.3.1"
http-proxy-middleware: "npm:2.0.6"
https-proxy-agent: "npm:7.0.2"
inquirer: "npm:9.2.11"
jsonc-parser: "npm:3.2.0"
karma-source-map-support: "npm:1.4.0"
less: "npm:4.2.0"
less-loader: "npm:11.1.0"
license-webpack-plugin: "npm:4.0.2"
loader-utils: "npm:3.2.1"
magic-string: "npm:0.30.5"
mini-css-extract-plugin: "npm:2.7.6"
mrmime: "npm:1.0.1"
open: "npm:8.4.2"
ora: "npm:5.4.1"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:3.0.1"
piscina: "npm:4.1.0"
postcss: "npm:8.4.31"
postcss-loader: "npm:7.3.3"
resolve-url-loader: "npm:5.0.0"
rxjs: "npm:7.8.1"
sass: "npm:1.69.5"
sass-loader: "npm:13.3.2"
semver: "npm:7.5.4"
source-map-loader: "npm:4.0.1"
source-map-support: "npm:0.5.21"
terser: "npm:5.24.0"
text-table: "npm:0.2.0"
tree-kill: "npm:1.2.2"
tslib: "npm:2.6.2"
undici: "npm:5.27.2"
vite: "npm:4.5.0"
webpack: "npm:5.89.0"
webpack-dev-middleware: "npm:6.1.1"
webpack-dev-server: "npm:4.15.1"
webpack-merge: "npm:5.10.0"
webpack-subresource-integrity: "npm:5.1.0"
peerDependencies:
"@angular/compiler-cli": ^17.0.0
"@angular/localize": ^17.0.0
"@angular/platform-server": ^17.0.0
"@angular/service-worker": ^17.0.0
jest: ^29.5.0
jest-environment-jsdom: ^29.5.0
karma: ^6.3.0
ng-packagr: ^17.0.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0
typescript: ">=5.2 <5.3"
dependenciesMeta:
esbuild:
optional: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
jest:
optional: true
jest-environment-jsdom:
optional: true
karma:
optional: true
ng-packagr:
optional: true
protractor:
optional: true
tailwindcss:
optional: true
checksum: 72673bfe98b66fe9d86d7882eccc8564159798e20d5e989755bdb7e99449c81d63d7ecb5fef0313e1cd91922301081aa4905b1154da44dee655dafd38088267d
languageName: node
linkType: hard
"@angular-devkit/build-webpack@npm:0.1700.1":
version: 0.1700.1
resolution: "@angular-devkit/build-webpack@npm:0.1700.1"
dependencies:
"@angular-devkit/architect": "npm:0.1700.1"
rxjs: "npm:7.8.1"
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^4.0.0
checksum: 88042e6bb67f07e8b8b3d7bc05b92fed666d539a157c6b751d6cfb193b2a56c093143a4c222816222ee59f75d3fe175a7bacddcdfe4fda7bae1a26c2bfe1a60f
languageName: node
linkType: hard
"@angular-devkit/core@npm:*, @angular-devkit/core@npm:17.0.1":
version: 17.0.1
resolution: "@angular-devkit/core@npm:17.0.1"
dependencies:
ajv: "npm:8.12.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.2.0"
picomatch: "npm:3.0.1"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: f2b91e2fd89cbacf61d2aaf5bc1b09a030b03d9b42e16e6dd03061513b314c940cc5f89aef4a5f691dbfe7e948f7ec04ee26e40f5221b76ccd20edc71432b7c1
languageName: node
linkType: hard
"@angular-devkit/core@npm:16.2.8":
version: 16.2.8
resolution: "@angular-devkit/core@npm:16.2.8"
dependencies:
ajv: "npm:8.12.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.2.0"
picomatch: "npm:2.3.1"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: e55a5169e8bbc1272f958820c6476b24feee397de7ddb0ecb7595d2c0d44232dd1e03d2a28dbf1b952701a043fbe6c09b76645e4eb9b742b000b27f880051a5f
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:*, @angular-devkit/schematics@npm:17.0.1":
version: 17.0.1
resolution: "@angular-devkit/schematics@npm:17.0.1"
dependencies:
"@angular-devkit/core": "npm:17.0.1"
jsonc-parser: "npm:3.2.0"
magic-string: "npm:0.30.5"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: db2fe56cb3c6cfc46c150d61bfe431adbb8df4392c1a74118144724b4ff445af43238a662009fbf32b3667ed42556384d211599c355a3ec4f3623ad83626b0bd
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:16.2.8, @angular-devkit/schematics@npm:^16.0.0":
version: 16.2.8
resolution: "@angular-devkit/schematics@npm:16.2.8"
dependencies:
"@angular-devkit/core": "npm:16.2.8"
jsonc-parser: "npm:3.2.0"
magic-string: "npm:0.30.1"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: f1c3877fe7af6163b8119f15db4d97a0798ae38243e8d955de6da744b54717a21f9f186e197cd4286da3d2c32d605a4ae398ac273402dd62043228a75d836514
languageName: node
linkType: hard
"@angular-eslint/builder@npm:17.1.0":
version: 17.1.0
resolution: "@angular-eslint/builder@npm:17.1.0"
dependencies:
"@nx/devkit": "npm:17.1.2"
nx: "npm:17.1.2"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: d33da1bf3ac1b7c0189449e57abe0a41394f9ab2502eb77ba36d21af0e391dc0af3e57a22990832a5d82cfa545270d0e12395bbe8a90ae097bd90564352ea10e
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:17.1.0":
version: 17.1.0
resolution: "@angular-eslint/bundled-angular-compiler@npm:17.1.0"
checksum: 8f673e1a724ce295c08c30db9c88e4713841674a39aa551c0290173607199df0894efb90aac72b0a1678ce678f4e189f26ffe72c87bbf7f73d7fa9d2a6941fd8
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:17.1.0":
version: 17.1.0
resolution: "@angular-eslint/eslint-plugin-template@npm:17.1.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.1.0"
"@angular-eslint/utils": "npm:17.1.0"
"@typescript-eslint/type-utils": "npm:6.11.0"
"@typescript-eslint/utils": "npm:6.11.0"
aria-query: "npm:5.3.0"
axobject-query: "npm:4.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: b725dfe4b9e30451aeb11210beb178613e76e41b064a0220f2c583f03b3ea6110c17ae9d6a8b331e9c4dd80a446fd13ea8d2280bc6a79fb066e6e297f9d518ed
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:17.1.0":
version: 17.1.0
resolution: "@angular-eslint/eslint-plugin@npm:17.1.0"
dependencies:
"@angular-eslint/utils": "npm:17.1.0"
"@typescript-eslint/utils": "npm:6.11.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: f14d93200887596452ebe88060ac3b5d2a243a0803fb76600143d9b61f8bc96f9779a0bfc6d575f447921ff8b40442d1a886839a467fb2084fb615cdb4034e84
languageName: node
linkType: hard
"@angular-eslint/schematics@npm:17.1.0":
version: 17.1.0
resolution: "@angular-eslint/schematics@npm:17.1.0"
dependencies:
"@angular-eslint/eslint-plugin": "npm:17.1.0"
"@angular-eslint/eslint-plugin-template": "npm:17.1.0"
"@nx/devkit": "npm:17.1.2"
ignore: "npm:5.2.4"
nx: "npm:17.1.2"
strip-json-comments: "npm:3.1.1"
tmp: "npm:0.2.1"
peerDependencies:
"@angular/cli": ">= 17.0.0 < 18.0.0"
checksum: 8326aeee48d36de8e912e230126754fda69b0fcd95440b0943e52f9f6f2a1ccbaf0c696a312cdabe054fe589951b8d964e9e9f68e3c8a29a15dcf169beff8b27
languageName: node
linkType: hard
"@angular-eslint/template-parser@npm:17.1.0":
version: 17.1.0
resolution: "@angular-eslint/template-parser@npm:17.1.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.1.0"
eslint-scope: "npm:^7.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 676f3e7783f24c42778852969d2403f16149c7a610336495c622e3c0f953361447c918fd8ce878fc49aabd1743a90f7cd21b79235f0d3f197ec79f48401c27f6
languageName: node
linkType: hard
"@angular-eslint/utils@npm:17.1.0":
version: 17.1.0
resolution: "@angular-eslint/utils@npm:17.1.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.1.0"
"@typescript-eslint/utils": "npm:6.11.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 3b284fbab0435523cec4945603e02a9da9f0affdfca48f358cc8673086ac7bea79d6b7049162bb7c306280054394aa585c7aa04e4eb9da3a151fe7bec491bce0
languageName: node
linkType: hard
"@angular/animations@npm:^17.0.3":
version: 17.0.3
resolution: "@angular/animations@npm:17.0.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.0.3
checksum: d20b4347154dd91da65aa7376a8b6dc693b14b612fc91c325cb4883cbb2e857b9988493a4fa36d1ad1007b001eda4f8f9e8b965f7fba844c2e36bec59cf11c56
languageName: node
linkType: hard
"@angular/cdk@npm:^17.0.1":
version: 17.0.1
resolution: "@angular/cdk@npm:17.0.1"
dependencies:
parse5: "npm:^7.1.2"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^17.0.0 || ^18.0.0
"@angular/core": ^17.0.0 || ^18.0.0
rxjs: ^6.5.3 || ^7.4.0
dependenciesMeta:
parse5:
optional: true
checksum: 157b7eb84066768c5dfca8a907a9beefd413ac2af73b3014ab5facfa80fbcd9cc893a5bd1d787ea01d00274b48761d15eab062442cfe4be460b142c056cf04ba
languageName: node
linkType: hard
"@angular/cli@npm:^17.0.1":
version: 17.0.1
resolution: "@angular/cli@npm:17.0.1"
dependencies:
"@angular-devkit/architect": "npm:0.1700.1"
"@angular-devkit/core": "npm:17.0.1"
"@angular-devkit/schematics": "npm:17.0.1"
"@schematics/angular": "npm:17.0.1"
"@yarnpkg/lockfile": "npm:1.1.0"
ansi-colors: "npm:4.1.3"
ini: "npm:4.1.1"
inquirer: "npm:9.2.11"
jsonc-parser: "npm:3.2.0"
npm-package-arg: "npm:11.0.1"
npm-pick-manifest: "npm:9.0.0"
open: "npm:8.4.2"
ora: "npm:5.4.1"
pacote: "npm:17.0.4"
resolve: "npm:1.22.8"
semver: "npm:7.5.4"
symbol-observable: "npm:4.0.0"
yargs: "npm:17.7.2"
bin:
ng: bin/ng.js
checksum: 3f0f81ef1098e9b1a0a0c253c7a28a1ba654a7f620d7f5d53d7366dcc88019ba133ca974eb3f39b908025181a6b30561fd530fc6aabbf85ee8d249a4c489803b
languageName: node
linkType: hard
"@angular/common@npm:^17.0.3":
version: 17.0.3
resolution: "@angular/common@npm:17.0.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.0.3
rxjs: ^6.5.3 || ^7.4.0
checksum: ff569cde6de81a694096f2eefb88c18705eedd6d4cfe941fe4ffc448bd517df8ad5dbd235daf20aff91ac3f36f23b3e07ba404de5d191b5e8c3e675e30705ff6
languageName: node
linkType: hard
"@angular/compiler-cli@npm:^17.0.3":
version: 17.0.3
resolution: "@angular/compiler-cli@npm:17.0.3"
dependencies:
"@babel/core": "npm:7.23.2"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
chokidar: "npm:^3.0.0"
convert-source-map: "npm:^1.5.1"
reflect-metadata: "npm:^0.1.2"
semver: "npm:^7.0.0"
tslib: "npm:^2.3.0"
yargs: "npm:^17.2.1"
peerDependencies:
"@angular/compiler": 17.0.3
typescript: ">=5.2 <5.3"
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
ngcc: bundles/ngcc/index.js
checksum: ee77256b6afd4319c5178829c0761d03cef5993b4620640d085674070db680122022fa465c48a656854a3749682ab1f8daa43ae4ed23efc299e86357a017e936
languageName: node
linkType: hard
"@angular/compiler@npm:^17.0.3":
version: 17.0.3
resolution: "@angular/compiler@npm:17.0.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.0.3
peerDependenciesMeta:
"@angular/core":
optional: true
checksum: 9819bb4fd41fd096e7390cdc7c8d5bd61122e3a86a724a167627b06ace32d3d234197154ae7c8b3b732323e3be160c00605f6d38029797ee2005099501e87c5f
languageName: node
linkType: hard
"@angular/core@npm:^17.0.3":
version: 17.0.3
resolution: "@angular/core@npm:17.0.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.14.0
checksum: c195050225d817e9946529b0f304d8f216ab9b0d73e150430d2492053f97cc6b2376901a652b813ae51fdf39de8d53d62b9744c29f9512ff9a8b0d055806266a
languageName: node
linkType: hard
"@angular/fire@npm:^16.0.0":
version: 16.0.0
resolution: "@angular/fire@npm:16.0.0"
dependencies:
"@angular-devkit/schematics": "npm:^16.0.0"
"@schematics/angular": "npm:^16.0.0"
firebase: "npm:^10.5.0"
fs-extra: "npm:^8.0.1"
fuzzy: "npm:^0.1.3"
inquirer: "npm:^8.1.1"
inquirer-autocomplete-prompt: "npm:^1.0.1"
jsonc-parser: "npm:^3.0.0"
node-fetch: "npm:^2.6.1"
open: "npm:^8.0.0"
ora: "npm:^5.3.0"
rxfire: "npm:^6.0.5"
semver: "npm:^7.1.3"
triple-beam: "npm:^1.3.0"
tslib: "npm:^2.0.0"
winston: "npm:^3.0.0"
peerDependencies:
"@angular/common": ^16.0.0
"@angular/core": ^16.0.0
"@angular/platform-browser": ^16.0.0
"@angular/platform-browser-dynamic": ^16.0.0
firebase-tools: ^12.0.0
rxjs: ^6.5.3 || ^7.4.0
peerDependenciesMeta:
firebase-tools:
optional: true
checksum: 2c4e4e1bed9e3397d8932dab8788ad614f37e3567ca18a281a816ae0f02b9d068c19fc5b24db0491263f266d0e8f8ba8714e53a860628f21a239bde586723ee7
languageName: node
linkType: hard
"@angular/forms@npm:^17.0.3":
version: 17.0.3
resolution: "@angular/forms@npm:17.0.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.0.3
"@angular/core": 17.0.3
"@angular/platform-browser": 17.0.3
rxjs: ^6.5.3 || ^7.4.0
checksum: 3e274910e51ac73cd60e36ac967f4f47cd90911bff1411e9397302e7b12982ad0d682f76323fc520769eb2d358b61d06dca3967e962b196f53fa19b38b5d849f
languageName: node
linkType: hard
"@angular/material@npm:^17.0.1":
version: 17.0.1
resolution: "@angular/material@npm:17.0.1"
dependencies:
"@material/animation": "npm:15.0.0-canary.a246a4439.0"
"@material/auto-init": "npm:15.0.0-canary.a246a4439.0"
"@material/banner": "npm:15.0.0-canary.a246a4439.0"
"@material/base": "npm:15.0.0-canary.a246a4439.0"
"@material/button": "npm:15.0.0-canary.a246a4439.0"
"@material/card": "npm:15.0.0-canary.a246a4439.0"
"@material/checkbox": "npm:15.0.0-canary.a246a4439.0"
"@material/chips": "npm:15.0.0-canary.a246a4439.0"
"@material/circular-progress": "npm:15.0.0-canary.a246a4439.0"
"@material/data-table": "npm:15.0.0-canary.a246a4439.0"
"@material/density": "npm:15.0.0-canary.a246a4439.0"
"@material/dialog": "npm:15.0.0-canary.a246a4439.0"
"@material/dom": "npm:15.0.0-canary.a246a4439.0"
"@material/drawer": "npm:15.0.0-canary.a246a4439.0"
"@material/elevation": "npm:15.0.0-canary.a246a4439.0"
"@material/fab": "npm:15.0.0-canary.a246a4439.0"
"@material/feature-targeting": "npm:15.0.0-canary.a246a4439.0"
"@material/floating-label": "npm:15.0.0-canary.a246a4439.0"
"@material/form-field": "npm:15.0.0-canary.a246a4439.0"
"@material/icon-button": "npm:15.0.0-canary.a246a4439.0"
"@material/image-list": "npm:15.0.0-canary.a246a4439.0"
"@material/layout-grid": "npm:15.0.0-canary.a246a4439.0"
"@material/line-ripple": "npm:15.0.0-canary.a246a4439.0"
"@material/linear-progress": "npm:15.0.0-canary.a246a4439.0"
"@material/list": "npm:15.0.0-canary.a246a4439.0"
"@material/menu": "npm:15.0.0-canary.a246a4439.0"
"@material/menu-surface": "npm:15.0.0-canary.a246a4439.0"
"@material/notched-outline": "npm:15.0.0-canary.a246a4439.0"
"@material/radio": "npm:15.0.0-canary.a246a4439.0"
"@material/ripple": "npm:15.0.0-canary.a246a4439.0"
"@material/rtl": "npm:15.0.0-canary.a246a4439.0"
"@material/segmented-button": "npm:15.0.0-canary.a246a4439.0"
"@material/select": "npm:15.0.0-canary.a246a4439.0"
"@material/shape": "npm:15.0.0-canary.a246a4439.0"
"@material/slider": "npm:15.0.0-canary.a246a4439.0"
"@material/snackbar": "npm:15.0.0-canary.a246a4439.0"
"@material/switch": "npm:15.0.0-canary.a246a4439.0"
"@material/tab": "npm:15.0.0-canary.a246a4439.0"
"@material/tab-bar": "npm:15.0.0-canary.a246a4439.0"
"@material/tab-indicator": "npm:15.0.0-canary.a246a4439.0"
"@material/tab-scroller": "npm:15.0.0-canary.a246a4439.0"
"@material/textfield": "npm:15.0.0-canary.a246a4439.0"
"@material/theme": "npm:15.0.0-canary.a246a4439.0"
"@material/tooltip": "npm:15.0.0-canary.a246a4439.0"
"@material/top-app-bar": "npm:15.0.0-canary.a246a4439.0"
"@material/touch-target": "npm:15.0.0-canary.a246a4439.0"
"@material/typography": "npm:15.0.0-canary.a246a4439.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": ^17.0.0 || ^18.0.0
"@angular/cdk": 17.0.1
"@angular/common": ^17.0.0 || ^18.0.0
"@angular/core": ^17.0.0 || ^18.0.0
"@angular/forms": ^17.0.0 || ^18.0.0
"@angular/platform-browser": ^17.0.0 || ^18.0.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 24b05832e100c5122759956cbf59138e9c7dde8a98776e1a3938d82a8b13d77a493937518ef5c4c94c21ce3d90d7ef1b50add40e92cc33bc1800cac592ac3350
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:^17.0.3":
version: 17.0.3
resolution: "@angular/platform-browser-dynamic@npm:17.0.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.0.3
"@angular/compiler": 17.0.3
"@angular/core": 17.0.3
"@angular/platform-browser": 17.0.3
checksum: b592506b5b1d29d800817dd02d53a482026e7c96b69ad9c8a39f3eb34096576a20fb7878059620ed9a707e1740a90fef1b1e90bf337ec8505d144b86f4d09e14
languageName: node
linkType: hard
"@angular/platform-browser@npm:^17.0.3":
version: 17.0.3
resolution: "@angular/platform-browser@npm:17.0.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 17.0.3
"@angular/common": 17.0.3
"@angular/core": 17.0.3
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 80cb0cfbe25153927bb5a5f072da299bf51580bf57ed6e42e4cb2432ff6b4cfd58a44cb39537d709ea35a84f603e430867619c59318e333ec3aa5ef906deb5d5
languageName: node
linkType: hard
"@angular/router@npm:^17.0.3":
version: 17.0.3
resolution: "@angular/router@npm:17.0.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.0.3
"@angular/core": 17.0.3
"@angular/platform-browser": 17.0.3
rxjs: ^6.5.3 || ^7.4.0
checksum: 1f3c84a5089a9d606b729ca0d4bdd4c0e4f19cbeb338e9439d9f1e80e1e75237e483ae64f539ce0e18e4f2f871cdee2d66b877ab444ed3705dc71a086bb3589f
languageName: node
linkType: hard
"@assemblyscript/loader@npm:^0.10.1":
version: 0.10.1
resolution: "@assemblyscript/loader@npm:0.10.1"
checksum: 62f3a070052f578c28bdb860b046c6a079f03755fd5b1c97cc4dd17869c1f292fd50cbafc5fb804073d71ba6b6a50b8bce976724d8a0ce402ffe8957e9a5b9ec
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: 195e2be3172d7684bf95cff69ae3b7a15a9841ea9d27d3c843662d50cdd7d6470fd9c8e64be84d031117e4a4083486effba39f9aef6bbb2c89f7f21bcfba33ba
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: bf6ae6ba3a510adfda6a211b4a89b0f1c98ca1352b745c077d113f3b568141e0d44ce750b9ac2a80143ba5c8c4080c50fcfc1aa11d86e194ea6785f62520eb5a
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.20.5":
version: 7.20.10
resolution: "@babel/compat-data@npm:7.20.10"
checksum: 687c6eba9ddbe598cb721ffcde6788137e5cf54657c289629bc6275b1d0138f8d6c13c0cd606f2915c5b0efedbcae639ce3e4df9ded56e4fb8a802e55a8f8f0e
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.22.9":
version: 7.23.2
resolution: "@babel/compat-data@npm:7.23.2"
checksum: c18eccd13975c1434a65d04f721075e30d03ba1608f4872d84e8538c16552b878aaac804ff31243d8c2c0e91524f3bc98de6305e117ba1a55c9956871973b4dc
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.23.2, @babel/compat-data@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/compat-data@npm:7.23.3"
checksum: a3d6c728150c8eb124a77227176723dfd7fd807e731c5bd01d041ae9e6a4efce32f88e6479ad17df9883bb296e181e650aa0034df7e42a3ea130df4c9b0a26fa
languageName: node
linkType: hard
"@babel/core@npm:7.23.2":
version: 7.23.2
resolution: "@babel/core@npm:7.23.2"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.22.13"
"@babel/generator": "npm:^7.23.0"
"@babel/helper-compilation-targets": "npm:^7.22.15"
"@babel/helper-module-transforms": "npm:^7.23.0"
"@babel/helpers": "npm:^7.23.2"
"@babel/parser": "npm:^7.23.0"
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.2"
"@babel/types": "npm:^7.23.0"
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: b69d7008695b2ac7a3a2db83c5c712fbb79f7031c4480f6351cde327930e38873003d1d021059b729a1d0cb48093f1d384c64269b78f6189f50051fe4f64dc2d
languageName: node
linkType: hard
"@babel/core@npm:^7.12.3":
version: 7.20.12
resolution: "@babel/core@npm:7.20.12"
dependencies:
"@ampproject/remapping": "npm:^2.1.0"
"@babel/code-frame": "npm:^7.18.6"
"@babel/generator": "npm:^7.20.7"
"@babel/helper-compilation-targets": "npm:^7.20.7"
"@babel/helper-module-transforms": "npm:^7.20.11"
"@babel/helpers": "npm:^7.20.7"
"@babel/parser": "npm:^7.20.7"
"@babel/template": "npm:^7.20.7"
"@babel/traverse": "npm:^7.20.12"
"@babel/types": "npm:^7.20.7"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.2"
semver: "npm:^6.3.0"
checksum: 4719e2d24e2b23bc8fe2f90fe1d0e0a661699cde6cea8579f22b813c1395282743dbee7541a2edea0186d7ba1da033c14a2fed50b13711bc3253cb3a10bb1464
languageName: node
linkType: hard
"@babel/generator@npm:7.23.0, @babel/generator@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/generator@npm:7.23.0"
dependencies:
"@babel/types": "npm:^7.23.0"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: bd1598bd356756065d90ce26968dd464ac2b915c67623f6f071fb487da5f9eb454031a380e20e7c9a7ce5c4a49d23be6cb9efde404952b0b3f3c0c3a9b73d68a
languageName: node
linkType: hard
"@babel/generator@npm:^7.20.7":
version: 7.20.7
resolution: "@babel/generator@npm:7.20.7"
dependencies:
"@babel/types": "npm:^7.20.7"
"@jridgewell/gen-mapping": "npm:^0.3.2"
jsesc: "npm:^2.5.1"
checksum: 387402fe80c7fb5dbc24bd2f20f4aa43b3ecdaf27e5f5a0615f41d71aaaa73ba82c13094fb34aaac83d0c59d1d0469504793971aece15135b91acf3fc6d61b0e
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:7.22.5, @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-annotate-as-pure@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-annotate-as-pure@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: 88ccd15ced475ef2243fdd3b2916a29ea54c5db3cd0cfabf9d1d29ff6e63b7f7cd1c27264137d7a40ac2e978b9b9a542c332e78f40eb72abe737a7400788fc1b
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.5":
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.20.7":
version: 7.20.7
resolution: "@babel/helper-compilation-targets@npm:7.20.7"
dependencies:
"@babel/compat-data": "npm:^7.20.5"
"@babel/helper-validator-option": "npm:^7.18.6"
browserslist: "npm:^4.21.3"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: b9c8d8ff26e4b286a81ffa9d9c727b838d2c029563cb49d13b4180994624425c5616ae78de75eeead7bac7e30e0312741b3dd233268e78ce4ecd61eca1ef34f6
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.22.15, @babel/helper-compilation-targets@npm:^7.22.5, @babel/helper-compilation-targets@npm:^7.22.6":
version: 7.22.15
resolution: "@babel/helper-compilation-targets@npm:7.22.15"
dependencies:
"@babel/compat-data": "npm:^7.22.9"
"@babel/helper-validator-option": "npm:^7.22.15"
browserslist: "npm:^4.21.9"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 9706decaa1591cf44511b6f3447eb9653b50ca3538215fe2e5387a8598c258c062f4622da5b95e61f0415706534deee619bbf53a2889f9bd967949b8f6024e0e
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.22.15, @babel/helper-create-class-features-plugin@npm:^7.22.5":
version: 7.22.15
resolution: "@babel/helper-create-class-features-plugin@npm:7.22.15"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
"@babel/helper-environment-visitor": "npm:^7.22.5"
"@babel/helper-function-name": "npm:^7.22.5"
"@babel/helper-member-expression-to-functions": "npm:^7.22.15"
"@babel/helper-optimise-call-expression": "npm:^7.22.5"
"@babel/helper-replace-supers": "npm:^7.22.9"
"@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: 000d29f1df397b7fdcb97ad0e9a442781787e5cb0456a9b8da690d13e03549a716bf74348029d3bd3fa4837b35d143a535cad1006f9d552063799ecdd96df672
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6":
version: 7.20.5
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.20.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
regexpu-core: "npm:^5.2.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 857ea266b36b784c5ef4c800473ea8916d5f1f68903425b47caf1a97a14982912f95f0b33d8fed5f8ea47521471b22f2ce64f4ba97150e58eea944049ee28bbb
languageName: node
linkType: hard
"@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.18.9":
version: 7.18.9
resolution: "@babel/helper-environment-visitor@npm:7.18.9"
checksum: b25101f6162ddca2d12da73942c08ad203d7668e06663df685634a8fde54a98bc015f6f62938e8554457a592a024108d45b8f3e651fd6dcdb877275b73cc4420
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.20, @babel/helper-environment-visitor@npm:^7.22.5":
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":
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.18.6":
version: 7.18.6
resolution: "@babel/helper-module-imports@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: 75b0d510271c2d220c426ec1174666febbe8ce520e66f99f87e8944acddaf5d1e88167fe500a1c8e46a770a5cb916e566d3b514ec0af6cbdac93089ed8200716
languageName: node
linkType: hard
"@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.20.11":
version: 7.20.11
resolution: "@babel/helper-module-transforms@npm:7.20.11"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-module-imports": "npm:^7.18.6"
"@babel/helper-simple-access": "npm:^7.20.2"
"@babel/helper-split-export-declaration": "npm:^7.18.6"
"@babel/helper-validator-identifier": "npm:^7.19.1"
"@babel/template": "npm:^7.20.7"
"@babel/traverse": "npm:^7.20.10"
"@babel/types": "npm:^7.20.7"
checksum: 171018be2cf72a953d2fc8b9e64bcf1b908acbf7780f9bf38815b553325ecf86916b40a16eae192970499032b98b7820520f06e07c40e377cb21698acc2c5cd5
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.22.5, @babel/helper-module-transforms@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-module-transforms@npm:7.23.0"
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: d72fe444f7b6c5aadaac8f393298d603eedd48e5dead67273a48e5c83a677cbccbd8a12a06c5bf5d97924666083279158a4bd0e799d28b86cbbfacba9e41f598
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.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.20.2
resolution: "@babel/helper-plugin-utils@npm:7.20.2"
checksum: 7bd5be752998e8bfa616e6fbf1fd8f1a7664039a435d5da11cfd97a320b6eb58e28156f4789b2da242a53ed45994d04632b2e19684c1209e827522a07f0cd022
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.22.5":
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, @babel/helper-remap-async-to-generator@npm:^7.22.5":
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, @babel/helper-replace-supers@npm:^7.22.5, @babel/helper-replace-supers@npm:^7.22.9":
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.20.2":
version: 7.20.2
resolution: "@babel/helper-simple-access@npm:7.20.2"
dependencies:
"@babel/types": "npm:^7.20.2"
checksum: ce313e315123b4e4db1ad61a3e7695aa002ed4d544e69df545386ff11315f9677b8b2728ab543e93ede35fc8854c95be29c4982285d5bf8518cdee55ee444b82
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