-
Notifications
You must be signed in to change notification settings - Fork 12k
/
yarn.lock
18754 lines (16947 loc) · 658 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
"@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-cli@workspace:packages/angular_devkit/architect_cli":
version: 0.0.0-use.local
resolution: "@angular-devkit/architect-cli@workspace:packages/angular_devkit/architect_cli"
dependencies:
"@angular-devkit/architect": "npm:0.0.0-EXPERIMENTAL-PLACEHOLDER"
"@angular-devkit/core": "npm:0.0.0-PLACEHOLDER"
"@types/progress": "npm:2.0.7"
ansi-colors: "npm:4.1.3"
progress: "npm:2.0.3"
symbol-observable: "npm:4.0.0"
yargs-parser: "npm:21.1.1"
bin:
architect: ./bin/architect.js
languageName: unknown
linkType: soft
"@angular-devkit/architect@npm:0.0.0-EXPERIMENTAL-PLACEHOLDER, @angular-devkit/architect@workspace:packages/angular_devkit/architect":
version: 0.0.0-use.local
resolution: "@angular-devkit/architect@workspace:packages/angular_devkit/architect"
dependencies:
"@angular-devkit/core": "npm:0.0.0-PLACEHOLDER"
rxjs: "npm:7.8.1"
languageName: unknown
linkType: soft
"@angular-devkit/architect@npm:0.1900.0-rc.2":
version: 0.1900.0-rc.2
resolution: "@angular-devkit/architect@npm:0.1900.0-rc.2"
dependencies:
"@angular-devkit/core": "npm:19.0.0-rc.2"
rxjs: "npm:7.8.1"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
checksum: 10c0/bc3423a6b0295cf0feb9f04b4e880abe021fdedc5ae4ad1bbd1eefc5c4a0ec7f8245d18d4431801425d85c15444e46704f13ab6b7a06b01d6cbbc24fa4b475aa
languageName: node
linkType: hard
"@angular-devkit/build-angular@workspace:packages/angular_devkit/build_angular":
version: 0.0.0-use.local
resolution: "@angular-devkit/build-angular@workspace:packages/angular_devkit/build_angular"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.0.0-EXPERIMENTAL-PLACEHOLDER"
"@angular-devkit/build-webpack": "npm:0.0.0-EXPERIMENTAL-PLACEHOLDER"
"@angular-devkit/core": "npm:0.0.0-PLACEHOLDER"
"@angular/build": "npm:0.0.0-PLACEHOLDER"
"@babel/core": "npm:7.26.0"
"@babel/generator": "npm:7.26.2"
"@babel/helper-annotate-as-pure": "npm:7.25.9"
"@babel/helper-split-export-declaration": "npm:7.24.7"
"@babel/plugin-transform-async-generator-functions": "npm:7.25.9"
"@babel/plugin-transform-async-to-generator": "npm:7.25.9"
"@babel/plugin-transform-runtime": "npm:7.25.9"
"@babel/preset-env": "npm:7.26.0"
"@babel/runtime": "npm:7.26.0"
"@discoveryjs/json-ext": "npm:0.6.3"
"@ngtools/webpack": "npm:0.0.0-PLACEHOLDER"
"@vitejs/plugin-basic-ssl": "npm:1.1.0"
ansi-colors: "npm:4.1.3"
autoprefixer: "npm:10.4.20"
babel-loader: "npm:9.2.1"
browserslist: "npm:^4.21.5"
copy-webpack-plugin: "npm:12.0.2"
css-loader: "npm:7.1.2"
esbuild: "npm:0.24.0"
esbuild-wasm: "npm:0.24.0"
fast-glob: "npm:3.3.2"
http-proxy-middleware: "npm:3.0.3"
istanbul-lib-instrument: "npm:6.0.3"
jsonc-parser: "npm:3.3.1"
karma-source-map-support: "npm:1.4.0"
less: "npm:4.2.0"
less-loader: "npm:12.2.0"
license-webpack-plugin: "npm:4.0.2"
loader-utils: "npm:3.3.1"
mini-css-extract-plugin: "npm:2.9.2"
open: "npm:10.1.0"
ora: "npm:5.4.1"
picomatch: "npm:4.0.2"
piscina: "npm:4.7.0"
postcss: "npm:8.4.49"
postcss-loader: "npm:8.1.1"
resolve-url-loader: "npm:5.0.0"
rxjs: "npm:7.8.1"
sass: "npm:1.80.7"
sass-loader: "npm:16.0.3"
semver: "npm:7.6.3"
source-map-loader: "npm:5.0.0"
source-map-support: "npm:0.5.21"
terser: "npm:5.36.0"
tree-kill: "npm:1.2.2"
tslib: "npm:2.8.1"
undici: "npm:6.21.0"
webpack: "npm:5.96.1"
webpack-dev-middleware: "npm:7.4.2"
webpack-dev-server: "npm:5.1.0"
webpack-merge: "npm:6.0.1"
webpack-subresource-integrity: "npm:5.1.0"
peerDependencies:
"@angular/compiler-cli": ^19.0.0-next.0
"@angular/localize": ^19.0.0-next.0
"@angular/platform-server": ^19.0.0-next.0
"@angular/service-worker": ^19.0.0-next.0
"@angular/ssr": ^0.0.0-PLACEHOLDER
"@web/test-runner": ^0.19.0
browser-sync: ^3.0.2
jest: ^29.5.0
jest-environment-jsdom: ^29.5.0
karma: ^6.3.0
ng-packagr: ^19.0.0-next.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0
typescript: ">=5.5 <5.7"
dependenciesMeta:
esbuild:
optional: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
"@angular/ssr":
optional: true
"@web/test-runner":
optional: true
browser-sync:
optional: true
jest:
optional: true
jest-environment-jsdom:
optional: true
karma:
optional: true
ng-packagr:
optional: true
protractor:
optional: true
tailwindcss:
optional: true
languageName: unknown
linkType: soft
"@angular-devkit/build-webpack@npm:0.0.0-EXPERIMENTAL-PLACEHOLDER, @angular-devkit/build-webpack@workspace:packages/angular_devkit/build_webpack":
version: 0.0.0-use.local
resolution: "@angular-devkit/build-webpack@workspace:packages/angular_devkit/build_webpack"
dependencies:
"@angular-devkit/architect": "npm:0.0.0-EXPERIMENTAL-PLACEHOLDER"
"@angular-devkit/core": "npm:0.0.0-PLACEHOLDER"
rxjs: "npm:7.8.1"
webpack: "npm:5.96.1"
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^5.0.2
languageName: unknown
linkType: soft
"@angular-devkit/core@npm:0.0.0-PLACEHOLDER, @angular-devkit/core@workspace:packages/angular_devkit/core":
version: 0.0.0-use.local
resolution: "@angular-devkit/core@workspace:packages/angular_devkit/core"
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
peerDependenciesMeta:
chokidar:
optional: true
languageName: unknown
linkType: soft
"@angular-devkit/core@npm:19.0.0-rc.2":
version: 19.0.0-rc.2
resolution: "@angular-devkit/core@npm:19.0.0-rc.2"
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/455bb381cfb2c6e3b25805c2dd12873c55daeefd95082044be02b78c73e4e814e9ed23f9e28852441902539bc50e0b6c8e10c3fd5724ff5c6a465b82b4dcd9a9
languageName: node
linkType: hard
"@angular-devkit/schematics-cli@workspace:packages/angular_devkit/schematics_cli":
version: 0.0.0-use.local
resolution: "@angular-devkit/schematics-cli@workspace:packages/angular_devkit/schematics_cli"
dependencies:
"@angular-devkit/core": "npm:0.0.0-PLACEHOLDER"
"@angular-devkit/schematics": "npm:0.0.0-PLACEHOLDER"
"@inquirer/prompts": "npm:7.1.0"
ansi-colors: "npm:4.1.3"
symbol-observable: "npm:4.0.0"
yargs-parser: "npm:21.1.1"
bin:
schematics: ./bin/schematics.js
languageName: unknown
linkType: soft
"@angular-devkit/schematics@npm:0.0.0-PLACEHOLDER, @angular-devkit/schematics@workspace:packages/angular_devkit/schematics":
version: 0.0.0-use.local
resolution: "@angular-devkit/schematics@workspace:packages/angular_devkit/schematics"
dependencies:
"@angular-devkit/core": "npm:0.0.0-PLACEHOLDER"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.12"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
languageName: unknown
linkType: soft
"@angular/animations@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/animations@npm:19.0.0-rc.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.0.0-rc.3
checksum: 10c0/1a2b82289ffcfff0cc1e2516a035fba7081ab52607749bc0957bcb0da8b5966260b05676c7c010bde0e2bf09cb503e6ea2b8558c9ff10ab317bac01057428d8d
languageName: node
linkType: hard
"@angular/bazel@https://github.com/angular/bazel-builds.git#commit=07617f0f8540d27f8895b1820a6f994e1e5b7277":
version: 19.0.0-next.7+sha-00a79d0
resolution: "@angular/bazel@https://github.com/angular/bazel-builds.git#commit=07617f0f8540d27f8895b1820a6f994e1e5b7277"
dependencies:
"@microsoft/api-extractor": "npm:^7.24.2"
magic-string: "npm:^0.30.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/compiler-cli": 19.0.0-next.7+sha-00a79d0
"@bazel/concatjs": ^5.3.0
"@bazel/worker": ^5.3.0
"@rollup/plugin-commonjs": ^28.0.0
"@rollup/plugin-node-resolve": ^13.0.4
rollup: ^2.56.3
rollup-plugin-sourcemaps: ^0.6.3
terser: ^5.9.0
typescript: ">=5.5 <5.7"
peerDependenciesMeta:
terser:
optional: true
bin:
ngc-wrapped: ./src/ngc-wrapped/index.mjs
packager: ./src/ng_package/packager.mjs
types_bundler: ./src/types_bundle/index.mjs
xi18n: ./src/ngc-wrapped/extract_i18n.mjs
checksum: 10c0/18e8c7c6e70261f04756559cfbf6a1e099bbadef5f6206b04c28c5b4bd6e8178713e1361ae0edf21e888efdd90ea45d008374ef57b22ea31d0722566babae8e7
languageName: node
linkType: hard
"@angular/bazel@patch:@angular/bazel@https%3A//github.com/angular/bazel-builds.git%23commit=07617f0f8540d27f8895b1820a6f994e1e5b7277#~/.yarn/patches/@angular-bazel-https-9848736cf4.patch":
version: 19.0.0-next.7+sha-00a79d0
resolution: "@angular/bazel@patch:@angular/bazel@https%3A//github.com/angular/bazel-builds.git%23commit=07617f0f8540d27f8895b1820a6f994e1e5b7277#~/.yarn/patches/@angular-bazel-https-9848736cf4.patch::version=19.0.0-next.7%2Bsha-00a79d0&hash=f67b3e"
dependencies:
"@microsoft/api-extractor": "npm:^7.24.2"
magic-string: "npm:^0.30.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/compiler-cli": 19.0.0-next.7+sha-00a79d0
"@bazel/concatjs": ^5.3.0
"@bazel/worker": ^5.3.0
"@rollup/plugin-commonjs": ^28.0.0
"@rollup/plugin-node-resolve": ^13.0.4
rollup: ^2.56.3
rollup-plugin-sourcemaps: ^0.6.3
terser: ^5.9.0
typescript: ">=5.5 <5.7"
peerDependenciesMeta:
terser:
optional: true
bin:
ngc-wrapped: ./src/ngc-wrapped/index.mjs
packager: ./src/ng_package/packager.mjs
types_bundler: ./src/types_bundle/index.mjs
xi18n: ./src/ngc-wrapped/extract_i18n.mjs
checksum: 10c0/a6708251649781290bec4d4b6839b55988f59f4f36b22de07765571290cfe4a1c608b4a33775fabe58e0b06ac9da8dd67bb13ad7e183f06750cd8ee1c0b053d4
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@https://github.com/angular/dev-infra-private-build-tooling-builds.git#3ba5a1f997a072caffcf19f9c767e7e570043898":
version: 0.0.0-910c72bbcc1bf1ae2b22c48d41b2f0e8eeda520d
resolution: "@angular/build-tooling@https://github.com/angular/dev-infra-private-build-tooling-builds.git#commit=3ba5a1f997a072caffcf19f9c767e7e570043898"
dependencies:
"@angular/benchpress": "npm:0.3.0"
"@angular/build": "npm:19.0.0-rc.2"
"@babel/core": "npm:^7.16.0"
"@babel/plugin-proposal-async-generator-functions": "npm:^7.20.1"
"@bazel/buildifier": "npm:6.3.3"
"@bazel/concatjs": "npm:5.8.1"
"@bazel/esbuild": "npm:5.8.1"
"@bazel/protractor": "npm:5.8.1"
"@bazel/runfiles": "npm:5.8.1"
"@bazel/terser": "npm:5.8.1"
"@bazel/typescript": "npm:5.8.1"
"@microsoft/api-extractor": "npm:7.47.11"
"@types/browser-sync": "npm:^2.26.3"
"@types/minimatch": "npm:^5.1.2"
"@types/node": "npm:^18.19.21"
"@types/selenium-webdriver": "npm:^4.1.21"
"@types/send": "npm:^0.17.1"
"@types/tmp": "npm:^0.2.1"
"@types/ws": "npm:8.5.13"
"@types/yargs": "npm:^17.0.0"
browser-sync: "npm:^3.0.0"
prettier: "npm:3.3.3"
protractor: "npm:^7.0.0"
selenium-webdriver: "npm:^4.18.1"
send: "npm:^1.0.0"
source-map: "npm:^0.7.4"
tmp: "npm:^0.2.1"
true-case-path: "npm:^2.2.1"
tslib: "npm:^2.5.2"
typescript: "npm:5.6.3"
uuid: "npm:^11.0.0"
yargs: "npm:^17.0.0"
dependenciesMeta:
re2:
built: false
checksum: 10c0/8ef4fb83a5e368ba84e9b05f2d25133af1567ae07d68581bf746cc05820edb3c0d581b11bb322ff1d057fdff2ad59ee921bf6db4c61191eae46d9fd7e896e721
languageName: node
linkType: hard
"@angular/build@npm:0.0.0-PLACEHOLDER, @angular/build@workspace:packages/angular/build":
version: 0.0.0-use.local
resolution: "@angular/build@workspace:packages/angular/build"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.0.0-EXPERIMENTAL-PLACEHOLDER"
"@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.2"
"@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.5"
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.26.0"
sass: "npm:1.80.7"
semver: "npm:7.6.3"
vite: "npm:5.4.11"
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": ^0.0.0-PLACEHOLDER
less: ^4.2.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0
typescript: ">=5.5 <5.7"
dependenciesMeta:
lmdb:
optional: 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
languageName: unknown
linkType: soft
"@angular/build@npm:19.0.0-rc.2":
version: 19.0.0-rc.2
resolution: "@angular/build@npm:19.0.0-rc.2"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.1900.0-rc.2"
"@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.2"
"@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.5"
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.26.0"
sass: "npm:1.80.7"
semver: "npm:7.6.3"
vite: "npm:5.4.11"
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.2
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/813790eeeb5d72eb00b10e0f2ab70f0e96c4db106a3734e828e7d1eabb4825591f3df61a9f7e5a382b1a56fecab48fe3bb3cde0f39dae25867e433db43ee87f2
languageName: node
linkType: hard
"@angular/cdk@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/cdk@npm:19.0.0-rc.3"
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/3206d0b42d6369f7e68651000cdff0569bcec6ff460d7765fd326fe4b3162c3ccfcecd0671342c6f1f5524226fa170d97238485f89bb896ce936dc22dee16edc
languageName: node
linkType: hard
"@angular/cli@npm:0.0.0-PLACEHOLDER, @angular/cli@workspace:packages/angular/cli":
version: 0.0.0-use.local
resolution: "@angular/cli@workspace:packages/angular/cli"
dependencies:
"@angular-devkit/architect": "npm:0.0.0-EXPERIMENTAL-PLACEHOLDER"
"@angular-devkit/core": "npm:0.0.0-PLACEHOLDER"
"@angular-devkit/schematics": "npm:0.0.0-PLACEHOLDER"
"@inquirer/prompts": "npm:7.1.0"
"@listr2/prompt-adapter-inquirer": "npm:2.0.18"
"@schematics/angular": "npm:0.0.0-PLACEHOLDER"
"@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"
bin:
ng: ./bin/ng.js
languageName: unknown
linkType: soft
"@angular/common@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/common@npm:19.0.0-rc.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.0.0-rc.3
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/00758594ff4b7263d065d25f216854decfd31da04460d07bc36f0eb65a85a817dc8480ffe9bac86544edcdf6e652e1b728d673e27af31ac16bf2a46ce128b8d1
languageName: node
linkType: hard
"@angular/compiler-cli@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/compiler-cli@npm:19.0.0-rc.3"
dependencies:
"@babel/core": "npm:7.26.0"
"@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.3
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/d3282019a1a26f3a130d6532caaac08f5e08d78e13dc38c8168cae97d1dbf4509a66600ee364aeb1b6300f8d83cbfa30d71ff0c88a23d05f22daabcf6b22f1a5
languageName: node
linkType: hard
"@angular/compiler@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/compiler@npm:19.0.0-rc.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.0.0-rc.3
peerDependenciesMeta:
"@angular/core":
optional: true
checksum: 10c0/a7ff89a84ef117371a769e0da362a3b14cb32cd047471e2ff2c068fb4150ff1c1f5c7b4c77ad5d7c41461e6e8bb6bc8511adefaeaa6ad54b85dd0295a462c8ed
languageName: node
linkType: hard
"@angular/core@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/core@npm:19.0.0-rc.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
checksum: 10c0/2bbb96fc80d911447f9b07a1e438b92b338da089173dc4858226a4c45d7af97ca456a38f064826d10c5f863c6418cb9fab47a07ecce89940082cc0aba2042fab
languageName: node
linkType: hard
"@angular/core@npm:^13.0.0 || ^14.0.0-0":
version: 14.3.0
resolution: "@angular/core@npm:14.3.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.11.4 || ~0.12.0
checksum: 10c0/b5297fd5a9792ee9f7c417d7a5544418d40400d094aaac9096ee81694feeb0ec5be3e7582bc730f803f16324f60538edf662d6f8d20a87303ee762fc0ec6bf63
languageName: node
linkType: hard
"@angular/create@workspace:packages/angular/create":
version: 0.0.0-use.local
resolution: "@angular/create@workspace:packages/angular/create"
dependencies:
"@angular/cli": "npm:0.0.0-PLACEHOLDER"
bin:
create: ./src/index.js
languageName: unknown
linkType: soft
"@angular/devkit-repo@workspace:.":
version: 0.0.0-use.local
resolution: "@angular/devkit-repo@workspace:."
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular/animations": "npm:19.0.0-rc.3"
"@angular/bazel": "patch:@angular/bazel@https%3A//github.com/angular/bazel-builds.git%23commit=07617f0f8540d27f8895b1820a6f994e1e5b7277#~/.yarn/patches/@angular-bazel-https-9848736cf4.patch"
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#3ba5a1f997a072caffcf19f9c767e7e570043898"
"@angular/cdk": "npm:19.0.0-rc.3"
"@angular/common": "npm:19.0.0-rc.3"
"@angular/compiler": "npm:19.0.0-rc.3"
"@angular/compiler-cli": "npm:19.0.0-rc.3"
"@angular/core": "npm:19.0.0-rc.3"
"@angular/forms": "npm:19.0.0-rc.3"
"@angular/localize": "npm:19.0.0-rc.3"
"@angular/material": "npm:19.0.0-rc.3"
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#5f5021669687fdd811f916dc9699eca753ab4a13"
"@angular/platform-browser": "npm:19.0.0-rc.3"
"@angular/platform-browser-dynamic": "npm:19.0.0-rc.3"
"@angular/platform-server": "npm:19.0.0-rc.3"
"@angular/router": "npm:19.0.0-rc.3"
"@angular/service-worker": "npm:19.0.0-rc.3"
"@babel/core": "npm:7.26.0"
"@babel/generator": "npm:7.26.2"
"@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"
"@babel/plugin-transform-async-generator-functions": "npm:7.25.9"
"@babel/plugin-transform-async-to-generator": "npm:7.25.9"
"@babel/plugin-transform-runtime": "npm:7.25.9"
"@babel/preset-env": "npm:7.26.0"
"@babel/runtime": "npm:7.26.0"
"@bazel/bazelisk": "npm:1.23.0"
"@bazel/buildifier": "npm:7.3.1"
"@bazel/concatjs": "patch:@bazel/concatjs@npm%3A5.8.1#~/.yarn/patches/@bazel-concatjs-npm-5.8.1-1bf81df846.patch"
"@bazel/jasmine": "patch:@bazel/jasmine@npm%3A5.8.1#~/.yarn/patches/@bazel-jasmine-npm-5.8.1-3370fee155.patch"
"@bazel/rollup": "npm:^5.8.1"
"@bazel/runfiles": "npm:^5.8.1"
"@discoveryjs/json-ext": "npm:0.6.3"
"@inquirer/confirm": "npm:5.0.2"
"@inquirer/prompts": "npm:7.1.0"
"@listr2/prompt-adapter-inquirer": "npm:2.0.18"
"@rollup/plugin-alias": "npm:^5.1.1"
"@rollup/plugin-commonjs": "npm:^28.0.0"
"@rollup/plugin-node-resolve": "npm:^13.0.5"
"@stylistic/eslint-plugin": "npm:^2.8.0"
"@types/babel__core": "npm:7.20.5"
"@types/browser-sync": "npm:^2.27.0"
"@types/express": "npm:^4.16.0"
"@types/http-proxy": "npm:^1.17.4"
"@types/ini": "npm:^4.0.0"
"@types/jasmine": "npm:~5.1.0"
"@types/karma": "npm:^6.3.0"
"@types/less": "npm:^3.0.3"
"@types/loader-utils": "npm:^2.0.0"
"@types/lodash": "npm:^4.17.0"
"@types/node": "npm:^18.13.0"
"@types/npm-package-arg": "npm:^6.1.0"
"@types/pacote": "npm:^11.1.3"
"@types/picomatch": "npm:^3.0.0"
"@types/progress": "npm:^2.0.3"
"@types/resolve": "npm:^1.17.1"
"@types/semver": "npm:^7.3.12"
"@types/shelljs": "npm:^0.8.11"
"@types/tar": "npm:^6.1.2"
"@types/watchpack": "npm:^2.4.4"
"@types/yargs": "npm:^17.0.20"
"@types/yargs-parser": "npm:^21.0.0"
"@types/yarnpkg__lockfile": "npm:^1.1.5"
"@typescript-eslint/eslint-plugin": "npm:8.14.0"
"@typescript-eslint/parser": "npm:8.14.0"
"@vitejs/plugin-basic-ssl": "npm:1.1.0"
"@web/test-runner": "npm:^0.19.0"
"@yarnpkg/lockfile": "npm:1.1.0"
ajv: "npm:8.17.1"
ajv-formats: "npm:3.0.1"
ansi-colors: "npm:4.1.3"
autoprefixer: "npm:10.4.20"
babel-loader: "npm:9.2.1"
beasties: "npm:0.1.0"
browser-sync: "npm:3.0.3"
browserslist: "npm:^4.21.5"
buffer: "npm:6.0.3"
chokidar: "npm:4.0.1"
copy-webpack-plugin: "npm:12.0.2"
css-loader: "npm:7.1.2"
debug: "npm:^4.1.1"
esbuild: "npm:0.24.0"
esbuild-wasm: "npm:0.24.0"
eslint: "npm:8.57.0"
eslint-config-prettier: "npm:9.1.0"
eslint-plugin-header: "npm:3.1.1"
eslint-plugin-import: "npm:2.31.0"
express: "npm:4.21.1"
fast-glob: "npm:3.3.2"
http-proxy: "npm:^1.18.1"
http-proxy-middleware: "npm:3.0.3"
https-proxy-agent: "npm:7.0.5"
husky: "npm:9.1.6"
ini: "npm:5.0.0"
istanbul-lib-instrument: "npm:6.0.3"
jasmine: "npm:^5.0.0"
jasmine-core: "npm:~5.4.0"
jasmine-spec-reporter: "npm:~7.0.0"
jsonc-parser: "npm:3.3.1"
karma: "npm:~6.4.0"
karma-chrome-launcher: "npm:~3.2.0"
karma-coverage: "npm:~2.2.0"
karma-jasmine: "npm:~5.1.0"
karma-jasmine-html-reporter: "npm:~2.1.0"
karma-source-map-support: "npm:1.4.0"
less: "npm:4.2.0"
less-loader: "npm:12.2.0"
license-webpack-plugin: "npm:4.0.2"
listr2: "npm:8.2.5"
lmdb: "npm:3.1.5"
loader-utils: "npm:3.3.1"
lodash: "npm:^4.17.21"
magic-string: "npm:0.30.12"
mini-css-extract-plugin: "npm:2.9.2"
mrmime: "npm:2.0.0"
ng-packagr: "npm:19.0.0-rc.0"
npm: "npm:^10.8.1"
npm-package-arg: "npm:12.0.0"
npm-pick-manifest: "npm:10.0.0"
open: "npm:10.1.0"
ora: "npm:5.4.1"
pacote: "npm:20.0.0"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:4.0.2"
piscina: "npm:4.7.0"
postcss: "npm:8.4.49"
postcss-loader: "npm:8.1.1"
prettier: "npm:^3.0.0"
protractor: "npm:~7.0.0"
puppeteer: "npm:18.2.1"
quicktype-core: "npm:23.0.170"
resolve-url-loader: "npm:5.0.0"
rollup: "npm:4.26.0"
rollup-license-plugin: "npm:~3.0.1"
rollup-plugin-sourcemaps: "npm:^0.6.0"
rxjs: "npm:7.8.1"
sass: "npm:1.80.7"
sass-loader: "npm:16.0.3"
semver: "npm:7.6.3"
shelljs: "npm:^0.8.5"
source-map: "npm:0.7.4"
source-map-loader: "npm:5.0.0"
source-map-support: "npm:0.5.21"
symbol-observable: "npm:4.0.0"
tar: "npm:^6.1.6"
terser: "npm:5.36.0"
tree-kill: "npm:1.2.2"
ts-node: "npm:^10.9.1"
tslib: "npm:2.8.1"
typescript: "npm:5.6.3"
undici: "npm:6.21.0"
unenv: "npm:^1.10.0"
verdaccio: "npm:6.0.1"
verdaccio-auth-memory: "npm:^10.0.0"
vite: "npm:5.4.11"
watchpack: "npm:2.4.2"
webpack: "npm:5.96.1"
webpack-dev-middleware: "npm:7.4.2"
webpack-dev-server: "npm:5.1.0"
webpack-merge: "npm:6.0.1"
webpack-subresource-integrity: "npm:5.1.0"
yargs: "npm:17.7.2"
yargs-parser: "npm:21.1.1"
zone.js: "npm:^0.15.0"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
languageName: unknown
linkType: soft
"@angular/forms@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/forms@npm:19.0.0-rc.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.0.0-rc.3
"@angular/core": 19.0.0-rc.3
"@angular/platform-browser": 19.0.0-rc.3
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/a514d133b60ba33dbf30280fa07e5b59d1ce0c1e61ae52678e5c0feb4401753ab87a160f83e0fc9ce6bf2ce92eb168bddc1ab3761ccad8e08d872a5802cf5e53
languageName: node
linkType: hard
"@angular/localize@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/localize@npm:19.0.0-rc.3"
dependencies:
"@babel/core": "npm:7.26.0"
"@types/babel__core": "npm:7.20.5"
fast-glob: "npm:3.3.2"
yargs: "npm:^17.2.1"
peerDependencies:
"@angular/compiler": 19.0.0-rc.3
"@angular/compiler-cli": 19.0.0-rc.3
bin:
localize-extract: tools/bundles/src/extract/cli.js
localize-migrate: tools/bundles/src/migrate/cli.js
localize-translate: tools/bundles/src/translate/cli.js
checksum: 10c0/5c7e1c59a8be4bf774118b9da77a5babebd9e9b1cd429991500c29abfdfe01de504c4f0684ce2485a30506de9fa57f1ed8aa6ab2003785c9074eb0f6c2d360eb
languageName: node
linkType: hard
"@angular/material@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/material@npm:19.0.0-rc.3"
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.3
"@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/56854f744a590db0e4ace6be4b0d2643b5cf26e25a9f96e2d9401b150a3fade9fd6ed7969d3bcd2f44066e5433508f624e9ae690f1dd2a61d3bb814668b0a840
languageName: node
linkType: hard
"@angular/ng-dev@https://github.com/angular/dev-infra-private-ng-dev-builds.git#5f5021669687fdd811f916dc9699eca753ab4a13":
version: 0.0.0-910c72bbcc1bf1ae2b22c48d41b2f0e8eeda520d
resolution: "@angular/ng-dev@https://github.com/angular/dev-infra-private-ng-dev-builds.git#commit=5f5021669687fdd811f916dc9699eca753ab4a13"
dependencies:
"@octokit/rest": "npm:21.0.2"
"@types/semver": "npm:^7.3.6"
"@types/supports-color": "npm:^8.1.1"
"@yarnpkg/lockfile": "npm:^1.1.0"
chalk: "npm:^5.0.1"
semver: "npm:^7.5.4"
supports-color: "npm:9.4.0"
typed-graphqlify: "npm:^3.1.1"
typescript: "npm:~4.9.0"
yaml: "npm:2.6.0"
bin:
ng-dev: ./bundles/cli.mjs
checksum: 10c0/d1d1c28b019fd01b5d457f4586a66596d151d9f703fde0d9b26632b975677f3eac0a6ffdd71f2638133ec9dd7f4e25fd54a619009292ddd37149a4a60ad548ba
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/platform-browser-dynamic@npm:19.0.0-rc.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.0.0-rc.3
"@angular/compiler": 19.0.0-rc.3
"@angular/core": 19.0.0-rc.3
"@angular/platform-browser": 19.0.0-rc.3
checksum: 10c0/5d7c8308953cab6e5ccb2555469245fd792f2067e6752f4abaae083a92504dc789f61dd196f3ddc40f318803375cc4f9824b846ca64f8c6f3020f30ee8533e72
languageName: node
linkType: hard
"@angular/platform-browser@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/platform-browser@npm:19.0.0-rc.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 19.0.0-rc.3
"@angular/common": 19.0.0-rc.3
"@angular/core": 19.0.0-rc.3
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 10c0/d3fc23b6cfc1cdea6f320e9c49f4e5bc58780fb0d07feba04c9eb1b01496277adc075ed289a7f2dfe5a9a65b894087fdb19c575ab88f2889af16343734b752b8
languageName: node
linkType: hard
"@angular/platform-server@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/platform-server@npm:19.0.0-rc.3"
dependencies:
tslib: "npm:^2.3.0"
xhr2: "npm:^0.2.0"
peerDependencies:
"@angular/animations": 19.0.0-rc.3
"@angular/common": 19.0.0-rc.3
"@angular/compiler": 19.0.0-rc.3
"@angular/core": 19.0.0-rc.3
"@angular/platform-browser": 19.0.0-rc.3
checksum: 10c0/dfe66ad11e49d82b073776aa4ced74c83e651b45d97aa82a06d4421356de0f5db342325b5a329c73680aafd2be945aad2ede846eb86019a6355584fae61e4a29
languageName: node
linkType: hard
"@angular/pwa@workspace:packages/angular/pwa":
version: 0.0.0-use.local
resolution: "@angular/pwa@workspace:packages/angular/pwa"
dependencies:
"@angular-devkit/schematics": "npm:0.0.0-PLACEHOLDER"
"@schematics/angular": "npm:0.0.0-PLACEHOLDER"
parse5-html-rewriting-stream: "npm:7.0.0"
peerDependencies:
"@angular/cli": ^19.0.0-next.0
peerDependenciesMeta:
"@angular/cli":
optional: true
languageName: unknown
linkType: soft
"@angular/router@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/router@npm:19.0.0-rc.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.0.0-rc.3
"@angular/core": 19.0.0-rc.3
"@angular/platform-browser": 19.0.0-rc.3
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/4476692673c6f3527583b4f6b71057bafc63e67be1ef3ccfd3fe50d57e7bd593f5dcfbf1e07d6c60fa936d7ef83d6b1bd88010630d042cfc1629a0632d124120
languageName: node
linkType: hard
"@angular/service-worker@npm:19.0.0-rc.3":
version: 19.0.0-rc.3
resolution: "@angular/service-worker@npm:19.0.0-rc.3"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.0.0-rc.3
"@angular/core": 19.0.0-rc.3
bin:
ngsw-config: ngsw-config.js
checksum: 10c0/d03cbaaf8a19c4d6e5f8fae70e9d1243a4509600a153116d998ee4b89b98c839afe78de4358f76b8dd1d2cf85e321800cd1701a356452d8d399bb5752af0a76c
languageName: node
linkType: hard
"@angular/ssr@workspace:packages/angular/ssr":
version: 0.0.0-use.local
resolution: "@angular/ssr@workspace:packages/angular/ssr"
dependencies:
"@angular/common": "npm:19.0.0-rc.3"
"@angular/compiler": "npm:19.0.0-rc.3"
"@angular/core": "npm:19.0.0-rc.3"
"@angular/platform-browser": "npm:19.0.0-rc.3"
"@angular/platform-server": "npm:19.0.0-rc.3"
"@angular/router": "npm:19.0.0-rc.3"
"@bazel/runfiles": "npm:^5.8.1"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^19.0.0-next.0
"@angular/core": ^19.0.0-next.0
"@angular/platform-server": ^19.0.0-next.0
"@angular/router": ^19.0.0-next.0
languageName: unknown
linkType: soft
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.11, @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.22.6, @babel/compat-data@npm:^7.25.9, @babel/compat-data@npm:^7.26.0":
version: 7.26.2
resolution: "@babel/compat-data@npm:7.26.2"
checksum: 10c0/c9b5f3724828d17f728a778f9d66c19b55c018d0d76de6d731178cca64f182c22b71400a73bf2b65dcc4fcfe52b630088a94d5902911b54206aa90e3ffe07d12
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":