-
Notifications
You must be signed in to change notification settings - Fork 54
/
yarn.lock
16226 lines (14612 loc) · 561 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: 10c0
"@actions/core@npm:^1.4.0":
version: 1.11.1
resolution: "@actions/core@npm:1.11.1"
dependencies:
"@actions/exec": "npm:^1.1.1"
"@actions/http-client": "npm:^2.0.1"
checksum: 10c0/9aa30b397d8d0dbc74e69fe46b23fb105cab989beb420c57eacbfc51c6804abe8da0f46973ca9f639d532ea4c096d0f4d37da0223fbe94f304fa3c5f53537c30
languageName: node
linkType: hard
"@actions/exec@npm:^1.1.1":
version: 1.1.1
resolution: "@actions/exec@npm:1.1.1"
dependencies:
"@actions/io": "npm:^1.0.1"
checksum: 10c0/4a09f6bdbe50ce68b5cf8a7254d176230d6a74bccf6ecc3857feee209a8c950ba9adec87cc5ecceb04110182d1c17117234e45557d72fde6229b7fd3a395322a
languageName: node
linkType: hard
"@actions/github@npm:^6.0.0":
version: 6.0.0
resolution: "@actions/github@npm:6.0.0"
dependencies:
"@actions/http-client": "npm:^2.2.0"
"@octokit/core": "npm:^5.0.1"
"@octokit/plugin-paginate-rest": "npm:^9.0.0"
"@octokit/plugin-rest-endpoint-methods": "npm:^10.0.0"
checksum: 10c0/6f86f564e6ec5873c69ff23bed308cef5f964dbdb559c5415c1ba479517bf18352713a2a757c27f8f67a3d675fdd78446cf142b27762489f697edf9c58e72378
languageName: node
linkType: hard
"@actions/http-client@npm:^2.0.1, @actions/http-client@npm:^2.2.0":
version: 2.2.3
resolution: "@actions/http-client@npm:2.2.3"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^5.25.4"
checksum: 10c0/13141b66a42aa4afd8c50f7479e13a5cdb5084ccb3c73ec48894b8029743389a3d2bf8cdc18e23fb70cd33995740526dd308815613907571e897c3aa1e5eada6
languageName: node
linkType: hard
"@actions/io@npm:^1.0.1":
version: 1.1.3
resolution: "@actions/io@npm:1.1.3"
checksum: 10c0/5b8751918e5bf0bebd923ba917fb1c0e294401e7ff0037f32c92a4efa4215550df1f6633c63fd4efb2bdaae8711e69b9e36925857db1f38935ff62a5c92ec29e
languageName: node
linkType: hard
"@ampproject/remapping@npm:2.3.0, @ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@angular-devkit/architect@npm:0.1900.0-rc.1":
version: 0.1900.0-rc.1
resolution: "@angular-devkit/architect@npm:0.1900.0-rc.1"
dependencies:
"@angular-devkit/core": "npm:19.0.0-rc.1"
rxjs: "npm:7.8.1"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
checksum: 10c0/d0e48c132f5356d56782bee1c3abfa7543a49dd5342712632bf4620ed56721c6386417737c277ee7cf0a6d945d96b2dce2806bbac3226035ff450e8572b8660d
languageName: node
linkType: hard
"@angular-devkit/core@npm:18.2.11":
version: 18.2.11
resolution: "@angular-devkit/core@npm:18.2.11"
dependencies:
ajv: "npm:8.17.1"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.3.1"
picomatch: "npm:4.0.2"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10c0/37e7ef8da14be852c3dab3eef285f65c64ef4315399f87292ecd4d803faf5ac85609bde054e92d49f31ed6626e1ddff2bed6d6bd23e8cbae3a9ed4196fbb3643
languageName: node
linkType: hard
"@angular-devkit/core@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular-devkit/core@npm:19.0.0-rc.1"
dependencies:
ajv: "npm:8.17.1"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.3.1"
picomatch: "npm:4.0.2"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^4.0.0
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10c0/db9a0e27ddccd9d202eba4043c0725be598922aa66adb3516b64ae6604a59fbf4db0c33f351c5a93676ee11fba843124cc32b4280259549dda4e7b69c601de2a
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:18.2.11, @angular-devkit/schematics@npm:^18.0.0":
version: 18.2.11
resolution: "@angular-devkit/schematics@npm:18.2.11"
dependencies:
"@angular-devkit/core": "npm:18.2.11"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.11"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
checksum: 10c0/e9ed796d6b996dbbff9f1f6c9b0da04e8d94addaca6378bce803caf617fb8c414df3dba67fe420e6d08a473dbc50953f74fe4f544761979ab305bae812b0c0d8
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular-devkit/schematics@npm:19.0.0-rc.1"
dependencies:
"@angular-devkit/core": "npm:19.0.0-rc.1"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.12"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
checksum: 10c0/a97723f9c674f76742ac9cbf6e94954054d8c16489f3f18170a8ef301b4e931cddae61ef6eea5efe01deae45451b1ce919e22ba341fe4e9746e769e0a4d2c298
languageName: node
linkType: hard
"@angular/animations@npm:19.0.0-rc.0":
version: 19.0.0-rc.0
resolution: "@angular/animations@npm:19.0.0-rc.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.0.0-rc.0
checksum: 10c0/8b52c7f7a7763abb99fbd444b4a8f03fc3ac3d72251553fa986958dd1e510746a8e461203b38edf2341e76ed3913b6a8f26687d6ba63c87ddbe5600d3b8e440c
languageName: node
linkType: hard
"@angular/bazel@npm:14.1.0-next.2":
version: 14.1.0-next.2
resolution: "@angular/bazel@npm:14.1.0-next.2"
dependencies:
"@microsoft/api-extractor": "npm:^7.24.2"
shelljs: "npm:^0.8.5"
tsickle: "npm:^0.38.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/compiler-cli": 14.1.0-next.2
"@bazel/concatjs": ^5.3.0
"@bazel/worker": ^5.3.0
"@rollup/plugin-commonjs": ^21.0.0
"@rollup/plugin-node-resolve": ^13.0.4
rollup: ^2.56.3
rollup-plugin-sourcemaps: ^0.6.3
terser: ^5.9.0
typescript: ">=4.6.2 <4.8"
peerDependenciesMeta:
terser:
optional: true
bin:
ngc-wrapped: src/ngc-wrapped/index.js
packager: src/ng_package/packager.js
types_bundler: src/types_bundle/index.js
xi18n: src/ngc-wrapped/extract_i18n.js
checksum: 10c0/eefc9a2799b1a130d5c0ee2eaf51965baa0c89c46582bc9413d8cf9c0fd2686fd2e2e8bf95427953c2ff84d4be85e1951f6fa7ccdd79832a97c10dd5a9eaae58
languageName: node
linkType: hard
"@angular/bazel@patch:@angular/bazel@npm:14.1.0-next.2#.yarn/patches/@angular-bazel-npm.patch::locator=%40angular%2Fbuild-tooling%40workspace%3A.":
version: 14.1.0-next.2
resolution: "@angular/bazel@patch:@angular/bazel@npm%3A14.1.0-next.2#.yarn/patches/@angular-bazel-npm.patch::version=14.1.0-next.2&hash=97738b&locator=%40angular%2Fbuild-tooling%40workspace%3A."
dependencies:
"@microsoft/api-extractor": "npm:^7.24.2"
shelljs: "npm:^0.8.5"
tsickle: "npm:^0.38.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/compiler-cli": 14.1.0-next.2
"@bazel/concatjs": ^5.3.0
"@bazel/worker": ^5.3.0
"@rollup/plugin-commonjs": ^21.0.0
"@rollup/plugin-node-resolve": ^13.0.4
rollup: ^2.56.3
rollup-plugin-sourcemaps: ^0.6.3
terser: ^5.9.0
typescript: ">=4.6.2 <4.8"
peerDependenciesMeta:
terser:
optional: true
bin:
ngc-wrapped: src/ngc-wrapped/index.js
packager: src/ng_package/packager.js
types_bundler: src/types_bundle/index.js
xi18n: src/ngc-wrapped/extract_i18n.js
checksum: 10c0/853ca8e98dc456b565120bf02f80b83d4e9c1bc5ab82afbaa8543f737931cc05b2d67133b3beddd8a9a42203c78c7a00cf1ab45a2e9fb86a48921a76eb84db82
languageName: node
linkType: hard
"@angular/benchpress@npm:0.3.0":
version: 0.3.0
resolution: "@angular/benchpress@npm:0.3.0"
dependencies:
"@angular/core": "npm:^13.0.0 || ^14.0.0-0"
reflect-metadata: "npm:^0.1.13"
checksum: 10c0/a18dc93aa79a776a691b66127f961b65e268e443844c48eaf4c0f71fc2407779881459a893fb5a0a6a22bda5ec432ebf711817ca6eed5d67f343ae5509a9438a
languageName: node
linkType: hard
"@angular/build-tooling@workspace:.":
version: 0.0.0-use.local
resolution: "@angular/build-tooling@workspace:."
dependencies:
"@actions/core": "npm:^1.4.0"
"@actions/github": "npm:^6.0.0"
"@angular/animations": "npm:19.0.0-rc.0"
"@angular/bazel": "patch:@angular/bazel@npm:14.1.0-next.2#.yarn/patches/@angular-bazel-npm.patch"
"@angular/benchpress": "npm:0.3.0"
"@angular/build": "npm:19.0.0-rc.1"
"@angular/cdk": "npm:19.0.0-rc.0"
"@angular/cli": "npm:19.0.0-rc.1"
"@angular/common": "npm:19.0.0-rc.0"
"@angular/compiler": "npm:19.0.0-rc.0"
"@angular/compiler-cli": "npm:19.0.0-rc.0"
"@angular/core": "npm:19.0.0-rc.0"
"@angular/fire": "npm:^18.0.0-rc"
"@angular/forms": "npm:19.0.0-rc.0"
"@angular/material": "npm:19.0.0-rc.0"
"@angular/platform-browser": "npm:19.0.0-rc.0"
"@angular/platform-browser-dynamic": "npm:19.0.0-rc.0"
"@angular/router": "npm:19.0.0-rc.0"
"@babel/core": "npm:^7.16.0"
"@babel/plugin-proposal-async-generator-functions": "npm:^7.20.1"
"@bazel/bazelisk": "npm:^1.11.0"
"@bazel/buildifier": "npm:6.3.3"
"@bazel/concatjs": "npm:5.8.1"
"@bazel/esbuild": "npm:5.8.1"
"@bazel/ibazel": "npm:^0.23.0"
"@bazel/jasmine": "patch:@bazel/jasmine@npm:5.8.1#.yarn/patches/@bazel-jasmine-npm.patch"
"@bazel/protractor": "npm:5.8.1"
"@bazel/runfiles": "npm:5.8.1"
"@bazel/terser": "npm:5.8.1"
"@bazel/typescript": "npm:5.8.1"
"@google-cloud/firestore": "npm:^7.0.0"
"@google-cloud/storage": "npm:^7.0.0"
"@inquirer/prompts": "npm:^7.0.0"
"@inquirer/type": "npm:^3.0.0"
"@microsoft/api-extractor": "npm:7.47.11"
"@octokit/auth-app": "npm:7.1.2"
"@octokit/core": "npm:6.1.2"
"@octokit/graphql": "npm:8.1.1"
"@octokit/graphql-schema": "patch:@octokit/graphql-schema@npm%3A15.3.0#~/.yarn/patches/@octokit-graphql-schema-npm-15.3.0-4046a59648.patch"
"@octokit/openapi-types": "npm:22.2.0"
"@octokit/plugin-paginate-rest": "npm:11.3.5"
"@octokit/plugin-rest-endpoint-methods": "npm:13.2.6"
"@octokit/request-error": "npm:6.1.5"
"@octokit/rest": "npm:21.0.2"
"@octokit/types": "npm:13.6.1"
"@octokit/webhooks-definitions": "npm:3.67.3"
"@octokit/webhooks-types": "npm:7.6.1"
"@openid/appauth": "npm:^1.3.1"
"@rollup/plugin-commonjs": "npm:^28.0.0"
"@rollup/plugin-node-resolve": "npm:^13.1.3"
"@types/babel__core": "npm:^7.1.19"
"@types/browser-sync": "npm:^2.26.3"
"@types/cli-progress": "npm:^3.9.1"
"@types/conventional-commits-parser": "npm:^5.0.0"
"@types/diff": "npm:^6.0.0"
"@types/dom-view-transitions": "npm:^1.0.4"
"@types/ejs": "npm:^3.0.6"
"@types/events": "npm:^3.0.0"
"@types/folder-hash": "npm:^4.0.1"
"@types/git-raw-commits": "npm:^2.0.0"
"@types/jasmine": "npm:5.1.4"
"@types/jsdom": "npm:^21.0.0"
"@types/license-checker": "npm:^25.0.3"
"@types/minimatch": "npm:^5.1.2"
"@types/node": "npm:^18.19.21"
"@types/opener": "npm:^1.4.0"
"@types/selenium-webdriver": "npm:^4.1.21"
"@types/semver": "npm:^7.3.6"
"@types/send": "npm:^0.17.1"
"@types/spdx-satisfies": "npm:^0.1.0"
"@types/supports-color": "npm:^8.1.1"
"@types/tmp": "npm:^0.2.1"
"@types/wait-on": "npm:^5.3.1"
"@types/which": "npm:^3.0.0"
"@types/ws": "npm:8.5.13"
"@types/yargs": "npm:^17.0.0"
"@types/yarnpkg__lockfile": "npm:^1.1.5"
"@yarnpkg/lockfile": "npm:^1.1.0"
browser-sync: "npm:^3.0.0"
chalk: "npm:^5.0.1"
cli-progress: "npm:^3.7.0"
conventional-commits-parser: "npm:^5.0.0"
diff: "npm:^7.0.0"
ejs: "npm:^3.1.6"
fast-glob: "npm:^3.3.2"
firebase: "npm:11.0.1"
firebase-admin: "npm:12.7.0"
firebase-functions: "npm:^6.0.0"
firebase-tools: "npm:^13.0.0"
folder-hash: "npm:^4.0.2"
font-color-contrast: "npm:^11.1.0"
gcip-cloud-functions: "npm:0.2.0"
git-raw-commits: "npm:^4.0.0"
husky: "npm:^9.0.0"
jasmine: "npm:~5.4.0"
jasmine-core: "npm:~5.4.0"
jsdom: "npm:^25.0.0"
jsonc-parser: "npm:^3.2.0"
karma: "npm:^6.3.15"
karma-chrome-launcher: "npm:^3.1.0"
karma-coverage: "npm:~2.2.0"
karma-firefox-launcher: "npm:^2.1.2"
karma-jasmine: "npm:^5.0.0"
karma-jasmine-html-reporter: "npm:~2.1.0"
karma-requirejs: "npm:^1.1.0"
karma-sourcemap-loader: "npm:^0.4.0"
license-checker: "npm:^25.0.1"
minimatch: "npm:^10.0.0"
multimatch: "npm:^7.0.0"
nock: "npm:beta"
opener: "npm:^1.5.2"
prettier: "npm:3.3.3"
protobufjs: "npm:^7.0.0"
protractor: "npm:^7.0.0"
requirejs: "npm:^2.3.6"
rxjs: "npm:^7.4.0"
selenium-webdriver: "npm:^4.18.1"
semver: "npm:^7.5.4"
send: "npm:^1.0.0"
source-map: "npm:^0.7.4"
spdx-satisfies: "npm:^5.0.1"
stylelint: "npm:^16.0.0"
supports-color: "npm:9.4.0"
terser: "npm:5.36.0"
tmp: "npm:^0.2.1"
true-case-path: "npm:^2.2.1"
ts-node: "npm:^10.9.2"
tslib: "npm:^2.5.2"
tslint: "npm:^6.1.3"
tsx: "npm:^4.15.7"
typed-graphqlify: "npm:^3.1.1"
typescript: "npm:5.6.3"
undici: "npm:^6.19.8"
uuid: "npm:^11.0.0"
wait-on: "npm:^8.0.0"
which: "npm:^5.0.0"
ws: "npm:^8.8.0"
yaml: "npm:^2.0.0"
yargs: "npm:^17.0.0"
zone.js: "npm:^0.15.0"
dependenciesMeta:
re2:
built: false
languageName: unknown
linkType: soft
"@angular/build@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular/build@npm:19.0.0-rc.1"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.1900.0-rc.1"
"@babel/core": "npm:7.26.0"
"@babel/helper-annotate-as-pure": "npm:7.25.9"
"@babel/helper-split-export-declaration": "npm:7.24.7"
"@babel/plugin-syntax-import-attributes": "npm:7.26.0"
"@inquirer/confirm": "npm:5.0.1"
"@vitejs/plugin-basic-ssl": "npm:1.1.0"
beasties: "npm:0.1.0"
browserslist: "npm:^4.23.0"
esbuild: "npm:0.24.0"
fast-glob: "npm:3.3.2"
https-proxy-agent: "npm:7.0.5"
istanbul-lib-instrument: "npm:6.0.3"
listr2: "npm:8.2.5"
lmdb: "npm:3.1.4"
magic-string: "npm:0.30.12"
mrmime: "npm:2.0.0"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:4.0.2"
piscina: "npm:4.7.0"
rollup: "npm:4.24.4"
sass: "npm:1.80.6"
semver: "npm:7.6.3"
vite: "npm:5.4.10"
watchpack: "npm:2.4.2"
peerDependencies:
"@angular/compiler": ^19.0.0-next.9
"@angular/compiler-cli": ^19.0.0-next.9
"@angular/localize": ^19.0.0-next.9
"@angular/platform-server": ^19.0.0-next.9
"@angular/service-worker": ^19.0.0-next.9
"@angular/ssr": ^19.0.0-rc.1
less: ^4.2.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0
typescript: ">=5.5 <5.7"
dependenciesMeta:
esbuild:
built: true
lmdb:
optional: true
puppeteer:
built: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
"@angular/ssr":
optional: true
less:
optional: true
postcss:
optional: true
tailwindcss:
optional: true
checksum: 10c0/8c55690c235a3d0f4d1814ea863271b1060e1971b0420aee050da432ec896b02cc1ab36b36f82ff449b01892f773b76bdbffb6a052bc3949d08576d1710f22e1
languageName: node
linkType: hard
"@angular/cdk@npm:19.0.0-rc.0":
version: 19.0.0-rc.0
resolution: "@angular/cdk@npm:19.0.0-rc.0"
dependencies:
parse5: "npm:^7.1.2"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
"@angular/core": ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
rxjs: ^6.5.3 || ^7.4.0
dependenciesMeta:
parse5:
optional: true
checksum: 10c0/22c558be245308340c40525b6b9f0d2a38a4832b5480856dc5442fc105432dabab3d759d97dbfc2c3c2f83687285adbfd7cbcf80c8a21d73b43d4c8071b0ed7f
languageName: node
linkType: hard
"@angular/cli@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular/cli@npm:19.0.0-rc.1"
dependencies:
"@angular-devkit/architect": "npm:0.1900.0-rc.1"
"@angular-devkit/core": "npm:19.0.0-rc.1"
"@angular-devkit/schematics": "npm:19.0.0-rc.1"
"@inquirer/prompts": "npm:7.0.1"
"@listr2/prompt-adapter-inquirer": "npm:2.0.17"
"@schematics/angular": "npm:19.0.0-rc.1"
"@yarnpkg/lockfile": "npm:1.1.0"
ini: "npm:5.0.0"
jsonc-parser: "npm:3.3.1"
listr2: "npm:8.2.5"
npm-package-arg: "npm:12.0.0"
npm-pick-manifest: "npm:10.0.0"
pacote: "npm:20.0.0"
resolve: "npm:1.22.8"
semver: "npm:7.6.3"
symbol-observable: "npm:4.0.0"
yargs: "npm:17.7.2"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
bin:
ng: bin/ng.js
checksum: 10c0/94b32c3051ce3d5db1d5ac191649bf2cd84eabf3b9a7ad1c631f3c99c2916ef0da282b7b47354ebdb62393ed715acd5566de30fa35ac22af223f0f38f22eac48
languageName: node
linkType: hard
"@angular/common@npm:19.0.0-rc.0":
version: 19.0.0-rc.0
resolution: "@angular/common@npm:19.0.0-rc.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.0.0-rc.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/26c3109f47778ac8ab106fe1ad20b039fc64607ee3d17c2959ee217694570a1b301f39a8fe99f2e02fd4977139d5a3dc20df3644b2faab5e97e17e6dcbb28c80
languageName: node
linkType: hard
"@angular/compiler-cli@npm:19.0.0-rc.0":
version: 19.0.0-rc.0
resolution: "@angular/compiler-cli@npm:19.0.0-rc.0"
dependencies:
"@babel/core": "npm:7.25.2"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
chokidar: "npm:^4.0.0"
convert-source-map: "npm:^1.5.1"
reflect-metadata: "npm:^0.2.0"
semver: "npm:^7.0.0"
tslib: "npm:^2.3.0"
yargs: "npm:^17.2.1"
peerDependencies:
"@angular/compiler": 19.0.0-rc.0
typescript: ">=5.5 <5.7"
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
ngcc: bundles/ngcc/index.js
checksum: 10c0/a05214d370df1f3d5d6a42f182c3ec9e913c94f4ad4851ec7cbf5f0affd819d866e9044606bea80f59a8fb407623cdd2727c9ede9f36fc683c76a7ecdce64682
languageName: node
linkType: hard
"@angular/compiler@npm:19.0.0-rc.0":
version: 19.0.0-rc.0
resolution: "@angular/compiler@npm:19.0.0-rc.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.0.0-rc.0
peerDependenciesMeta:
"@angular/core":
optional: true
checksum: 10c0/df54a0c49c980369ad8478f5394a59c86845ceff0210d4fef64f86028610ead35b7bd2741a3649ec1073cc383502a3278a02df0962dfe83e7b8c46ca01b25816
languageName: node
linkType: hard
"@angular/core@npm:19.0.0-rc.0":
version: 19.0.0-rc.0
resolution: "@angular/core@npm:19.0.0-rc.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
checksum: 10c0/2b367560c6d767373b3b77c2321b45aa5646629ef407c49db922913a3993f694973317823a0542b06580e60ff88dd862142387bb721cb6984626d2546f074e0c
languageName: node
linkType: hard
"@angular/fire@npm:^18.0.0-rc":
version: 18.0.1
resolution: "@angular/fire@npm:18.0.1"
dependencies:
"@angular-devkit/schematics": "npm:^18.0.0"
"@schematics/angular": "npm:^18.0.0"
firebase: "npm:^10.12.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.3.0"
winston: "npm:^3.0.0"
peerDependencies:
"@angular/common": ^18.0.0
"@angular/core": ^18.0.0
"@angular/platform-browser": ^18.0.0
"@angular/platform-browser-dynamic": ^18.0.0
firebase-tools: ^13.0.0
rxjs: ~7.8.0
peerDependenciesMeta:
firebase-tools:
optional: true
checksum: 10c0/cc3c45b887e74b3037b6a012b07d90d74bc493491e71b0a48c56a3456bc80c18b8908222e467d0dd2751fd288805dadc4b91a14f8136612c0d66086d2ea0e49c
languageName: node
linkType: hard
"@angular/forms@npm:19.0.0-rc.0":
version: 19.0.0-rc.0
resolution: "@angular/forms@npm:19.0.0-rc.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.0.0-rc.0
"@angular/core": 19.0.0-rc.0
"@angular/platform-browser": 19.0.0-rc.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/07fe744c535c19f6fceef8f1e91b934715d5e5d4b917ce79adbae651341e9f3ea3f16ce59de4fd1ebdb20eb63e7d768ffcc0e447ec02eaaebca874ddc2625783
languageName: node
linkType: hard
"@angular/material@npm:19.0.0-rc.0":
version: 19.0.0-rc.0
resolution: "@angular/material@npm:19.0.0-rc.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
"@angular/cdk": 19.0.0-rc.0
"@angular/common": ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
"@angular/core": ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
"@angular/forms": ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
"@angular/platform-browser": ^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/7432fd8330a81ea7ed70c8695dfbd1a30a4ab72cf779ea3f49f1773ec1ce600027508fb6da5a8dee2a2c8c8be9a49264bb68d70ea1fbbfc1eb4aefb1abf66aab
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:19.0.0-rc.0":
version: 19.0.0-rc.0
resolution: "@angular/platform-browser-dynamic@npm:19.0.0-rc.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.0.0-rc.0
"@angular/compiler": 19.0.0-rc.0
"@angular/core": 19.0.0-rc.0
"@angular/platform-browser": 19.0.0-rc.0
checksum: 10c0/3ce5a5e667e87e045502358ef18f1fab04b15f4527135b0ee7989b99bf6a0a15abd61c8bc64b0a89db10ea48884b955036f3948c36bfaf3bc35a1446e99f7f49
languageName: node
linkType: hard
"@angular/platform-browser@npm:19.0.0-rc.0":
version: 19.0.0-rc.0
resolution: "@angular/platform-browser@npm:19.0.0-rc.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 19.0.0-rc.0
"@angular/common": 19.0.0-rc.0
"@angular/core": 19.0.0-rc.0
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 10c0/c0aba8a3b328b314bfceea3c941b9124e03b7ba771ae28a856a8039b3b5ec0c6832f22dbf5417ac666549d9ab87f7cac182e4f137a1401ac5ab828a3edf8dfef
languageName: node
linkType: hard
"@angular/router@npm:19.0.0-rc.0":
version: 19.0.0-rc.0
resolution: "@angular/router@npm:19.0.0-rc.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.0.0-rc.0
"@angular/core": 19.0.0-rc.0
"@angular/platform-browser": 19.0.0-rc.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/b1d76f2069b50c00e317e8e6f48f1c47872b6ce98872ef4b3d55c3c905000f0a3314b1ae95590022ab0ff3d08585998979f388903db7f5dff3a6441c34ba362b
languageName: node
linkType: hard
"@apidevtools/json-schema-ref-parser@npm:^9.0.3":
version: 9.1.2
resolution: "@apidevtools/json-schema-ref-parser@npm:9.1.2"
dependencies:
"@jsdevtools/ono": "npm:^7.1.3"
"@types/json-schema": "npm:^7.0.6"
call-me-maybe: "npm:^1.0.1"
js-yaml: "npm:^4.1.0"
checksum: 10c0/ebf952eb2e00bf0919f024e72897e047fd5012f0a9e47ac361873f6de0a733b9334513cdbc73205a6b43ac4a652b8c87f55e489c39b2d60bd0bc1cb2b411e218
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.24.7, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.25.9":
version: 7.26.2
resolution: "@babel/compat-data@npm:7.26.2"
checksum: 10c0/c9b5f3724828d17f728a778f9d66c19b55c018d0d76de6d731178cca64f182c22b71400a73bf2b65dcc4fcfe52b630088a94d5902911b54206aa90e3ffe07d12
languageName: node
linkType: hard
"@babel/core@npm:7.25.2":
version: 7.25.2
resolution: "@babel/core@npm:7.25.2"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.24.7"
"@babel/generator": "npm:^7.25.0"
"@babel/helper-compilation-targets": "npm:^7.25.2"
"@babel/helper-module-transforms": "npm:^7.25.2"
"@babel/helpers": "npm:^7.25.0"
"@babel/parser": "npm:^7.25.0"
"@babel/template": "npm:^7.25.0"
"@babel/traverse": "npm:^7.25.2"
"@babel/types": "npm:^7.25.2"
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: 10c0/a425fa40e73cb72b6464063a57c478bc2de9dbcc19c280f1b55a3d88b35d572e87e8594e7d7b4880331addb6faef641bbeb701b91b41b8806cd4deae5d74f401
languageName: node
linkType: hard
"@babel/core@npm:7.26.0, @babel/core@npm:^7.12.3, @babel/core@npm:^7.16.0, @babel/core@npm:^7.23.9":
version: 7.26.0
resolution: "@babel/core@npm:7.26.0"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.26.0"
"@babel/generator": "npm:^7.26.0"
"@babel/helper-compilation-targets": "npm:^7.25.9"
"@babel/helper-module-transforms": "npm:^7.26.0"
"@babel/helpers": "npm:^7.26.0"
"@babel/parser": "npm:^7.26.0"
"@babel/template": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.26.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: 10c0/91de73a7ff5c4049fbc747930aa039300e4d2670c2a91f5aa622f1b4868600fc89b01b6278385fbcd46f9574186fa3d9b376a9e7538e50f8d118ec13cfbcb63e
languageName: node
linkType: hard
"@babel/generator@npm:^7.25.0, @babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0":
version: 7.26.2
resolution: "@babel/generator@npm:7.26.2"
dependencies:
"@babel/parser": "npm:^7.26.2"
"@babel/types": "npm:^7.26.0"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10c0/167ebce8977142f5012fad6bd91da51ac52bcd752f2261a54b7ab605d928aebe57e21636cdd2a9c7757e552652c68d9fcb5d40b06fcb66e02d9ee7526e118a5c
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:7.25.9, @babel/helper-annotate-as-pure@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-annotate-as-pure@npm:7.25.9"
dependencies:
"@babel/types": "npm:^7.25.9"
checksum: 10c0/095b6ba50489d797733abebc4596a81918316a99e3632755c9f02508882912b00c2ae5e468532a25a5c2108d109ddbe9b7da78333ee7cc13817fc50c00cf06fe
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.25.2, @babel/helper-compilation-targets@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-compilation-targets@npm:7.25.9"
dependencies:
"@babel/compat-data": "npm:^7.25.9"
"@babel/helper-validator-option": "npm:^7.25.9"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10c0/a6b26a1e4222e69ef8e62ee19374308f060b007828bc11c65025ecc9e814aba21ff2175d6d3f8bf53c863edd728ee8f94ba7870f8f90a37d39552ad9933a8aaa
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.18.9":
version: 7.24.7
resolution: "@babel/helper-environment-visitor@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
checksum: 10c0/36ece78882b5960e2d26abf13cf15ff5689bf7c325b10a2895a74a499e712de0d305f8d78bb382dd3c05cfba7e47ec98fe28aab5674243e0625cd38438dd0b2d
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-module-imports@npm:7.25.9"
dependencies:
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10c0/078d3c2b45d1f97ffe6bb47f61961be4785d2342a4156d8b42c92ee4e1b7b9e365655dd6cb25329e8fe1a675c91eeac7e3d04f0c518b67e417e29d6e27b6aa70
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.25.2, @babel/helper-module-transforms@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/helper-module-transforms@npm:7.26.0"
dependencies:
"@babel/helper-module-imports": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/ee111b68a5933481d76633dad9cdab30c41df4479f0e5e1cc4756dc9447c1afd2c9473b5ba006362e35b17f4ebddd5fca090233bef8dfc84dca9d9127e56ec3a
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.25.9, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.25.9
resolution: "@babel/helper-plugin-utils@npm:7.25.9"
checksum: 10c0/483066a1ba36ff16c0116cd24f93de05de746a603a777cd695ac7a1b034928a65a4ecb35f255761ca56626435d7abdb73219eba196f9aa83b6c3c3169325599d
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.18.9":
version: 7.25.9
resolution: "@babel/helper-remap-async-to-generator@npm:7.25.9"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.25.9"
"@babel/helper-wrap-function": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/6798b562f2788210980f29c5ee96056d90dc73458c88af5bd32f9c82e28e01975588aa2a57bb866c35556bd9b76bac937e824ee63ba472b6430224b91b4879e9
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:7.24.7":
version: 7.24.7
resolution: "@babel/helper-split-export-declaration@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
checksum: 10c0/0254577d7086bf09b01bbde98f731d4fcf4b7c3fa9634fdb87929801307c1f6202a1352e3faa5492450fa8da4420542d44de604daf540704ff349594a78184f6
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-string-parser@npm:7.25.9"
checksum: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-option@npm:7.25.9"
checksum: 10c0/27fb195d14c7dcb07f14e58fe77c44eea19a6a40a74472ec05c441478fa0bb49fa1c32b2d64be7a38870ee48ef6601bdebe98d512f0253aea0b39756c4014f3e
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-wrap-function@npm:7.25.9"
dependencies:
"@babel/template": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10c0/b6627d83291e7b80df020f8ee2890c52b8d49272962cac0114ef90f189889c90f1027985873d1b5261a4e986e109b2754292dc112392f0b1fcbfc91cc08bd003
languageName: node
linkType: hard
"@babel/helpers@npm:^7.25.0, @babel/helpers@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/helpers@npm:7.26.0"
dependencies:
"@babel/template": "npm:^7.25.9"
"@babel/types": "npm:^7.26.0"
checksum: 10c0/343333cced6946fe46617690a1d0789346960910225ce359021a88a60a65bc0d791f0c5d240c0ed46cf8cc63b5fd7df52734ff14e43b9c32feae2b61b1647097
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.0, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/parser@npm:7.26.2"
dependencies:
"@babel/types": "npm:^7.26.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/751a743087b3a9172a7599f1421830d44c38f065ef781588d2bfb1c98f9b461719a226feb13c868d7a284783eee120c88ea522593118f2668f46ebfb1105c4d7
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.20.1":
version: 7.20.7
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.20.7"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-plugin-utils": "npm:^7.20.2"
"@babel/helper-remap-async-to-generator": "npm:^7.18.9"
"@babel/plugin-syntax-async-generators": "npm:^7.8.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/0f4bc01805704ae4840536acc9888c50a32250e9188d025063bd17fe77ed171a12361c3dc83ce99664dcd73aec612accb8da95b0d8b825c854931b2860c0bfb5
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8
languageName: node
linkType: hard
"@babel/plugin-syntax-import-attributes@npm:7.26.0":
version: 7.26.0
resolution: "@babel/plugin-syntax-import-attributes@npm:7.26.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/e594c185b12bfe0bbe7ca78dfeebe870e6d569a12128cac86f3164a075fe0ff70e25ddbd97fd0782906b91f65560c9dc6957716b7b4a68aba2516c9b7455e352
languageName: node
linkType: hard
"@babel/template@npm:^7.25.0, @babel/template@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/template@npm:7.25.9"
dependencies:
"@babel/code-frame": "npm:^7.25.9"
"@babel/parser": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10c0/ebe677273f96a36c92cc15b7aa7b11cc8bc8a3bb7a01d55b2125baca8f19cae94ff3ce15f1b1880fb8437f3a690d9f89d4e91f16fc1dc4d3eb66226d128983ab
languageName: node
linkType: hard
"@babel/traverse@npm:^7.25.2, @babel/traverse@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/traverse@npm:7.25.9"
dependencies:
"@babel/code-frame": "npm:^7.25.9"
"@babel/generator": "npm:^7.25.9"
"@babel/parser": "npm:^7.25.9"
"@babel/template": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
debug: "npm:^4.3.1"
globals: "npm:^11.1.0"
checksum: 10c0/e90be586a714da4adb80e6cb6a3c5cfcaa9b28148abdafb065e34cc109676fc3db22cf98cd2b2fff66ffb9b50c0ef882cab0f466b6844be0f6c637b82719bba1
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/types@npm:7.26.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
checksum: 10c0/b694f41ad1597127e16024d766c33a641508aad037abd08d0d1f73af753e1119fa03b4a107d04b5f92cc19c095a594660547ae9bead1db2299212d644b0a5cb8
languageName: node
linkType: hard
"@bazel/bazelisk@npm:^1.11.0":
version: 1.22.1
resolution: "@bazel/bazelisk@npm:1.22.1"
bin:
bazel: bazelisk.js
bazelisk: bazelisk.js
checksum: 10c0/2858b43b53eee1f88e6b486d6414547bc75c557afdc75a5a8c8154d5e3476b6ec0d5e282836310fe88c5313362454dd6ed40f2a2924125fd3da57cf6c15e017f
languageName: node
linkType: hard
"@bazel/buildifier@npm:6.3.3":
version: 6.3.3
resolution: "@bazel/buildifier@npm:6.3.3"
bin:
buildifier: buildifier.js
checksum: 10c0/899639d028c7070105603c5a6d7f969649049b39c7c90fc03d6025176a80a029ecbd56250eb27b06cd786073df7ee17d32fff97f4cb4dc3eceed7ff0cc113f85
languageName: node
linkType: hard
"@bazel/concatjs@npm:5.8.1":
version: 5.8.1
resolution: "@bazel/concatjs@npm:5.8.1"