-
Notifications
You must be signed in to change notification settings - Fork 12k
/
yarn.lock
18585 lines (16795 loc) · 653 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.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/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.47"
postcss-loader: "npm:8.1.1"
resolve-url-loader: "npm:5.0.0"
rxjs: "npm:7.8.1"
sass: "npm:1.80.6"
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.20.1"
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.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-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.0.1"
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.1":
version: 19.0.0-rc.1
resolution: "@angular/animations@npm:19.0.0-rc.1"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.0.0-rc.1
checksum: 10c0/571b62383a10f40ea52fd45c0013c123c66cf1eb9dea3464922ebe8df9480b02f9284b59dbcae90e58b1b99d32ceff842cb6342ffb61c5450346739036d0cf77
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#9f63e93d2e3035ce984c157216bac41d59827bf8":
version: 0.0.0-933dcd42f8837d6d6ce3a28419a760edb94f10e6
resolution: "@angular/build-tooling@https://github.com/angular/dev-infra-private-build-tooling-builds.git#commit=9f63e93d2e3035ce984c157216bac41d59827bf8"
dependencies:
"@angular/benchpress": "npm:0.3.0"
"@angular/build": "npm:19.0.0-rc.1"
"@babel/core": "npm:^7.16.0"
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
"@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"
html-entities: "npm:^2.4.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/bc5e055a6ddc678a7d9e93f9816e1e70c4071617a842c90caf8c50a84e67f72c13d23dd7c92673be0fecc4941944cef9e546365f5b7a83e8f40030e12b564eb3
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.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": ^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.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.1":
version: 19.0.0-rc.1
resolution: "@angular/cdk@npm:19.0.0-rc.1"
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/d89988b4619b63be8220c3fa393e305653f1c22b76c1cadac596a69173ffa9effc486c8e02df2db20855f8e470da8a76bc6ae6f7730e9f4c1bafd253fd9bdee5
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.0.1"
"@listr2/prompt-adapter-inquirer": "npm:2.0.17"
"@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.1":
version: 19.0.0-rc.1
resolution: "@angular/common@npm:19.0.0-rc.1"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.0.0-rc.1
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/87d57686069a0c48bda439954878dece5ac9a57da7b93bb5b8622a76494e67fc1421eba29abe8d61387f8ba2d02ed368e1900269a6d7d27fca44182729866ac4
languageName: node
linkType: hard
"@angular/compiler-cli@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular/compiler-cli@npm:19.0.0-rc.1"
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.1
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/cb02fc43c3300c224d5994e7f9f90d7f6c5b723659a572c05e4944a9a5e68273b203df31095725cc2566e438956f8f17ef36e41699bf4c6736575d67a6ab73a0
languageName: node
linkType: hard
"@angular/compiler@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular/compiler@npm:19.0.0-rc.1"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 19.0.0-rc.1
peerDependenciesMeta:
"@angular/core":
optional: true
checksum: 10c0/1d5114ad649fc488bf2fba74361ed1b9351a3cf358f735978c7e49251c48828c811f78e466d15c9be471aa2c8c64ec094dd6a72da1952b04c3c3c9a75e7c26ef
languageName: node
linkType: hard
"@angular/core@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular/core@npm:19.0.0-rc.1"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
checksum: 10c0/ca917494d236ef902a8be013b08615f26d1cff534b067fcdc5e500785e08611b4b0d7c019ca2cf62dca7e2a94cdd3ca2556f0e9e2b14e8c54d6227d72e2bec06
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.1"
"@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#9f63e93d2e3035ce984c157216bac41d59827bf8"
"@angular/cdk": "npm:19.0.0-rc.1"
"@angular/common": "npm:19.0.0-rc.1"
"@angular/compiler": "npm:19.0.0-rc.1"
"@angular/compiler-cli": "npm:19.0.0-rc.1"
"@angular/core": "npm:19.0.0-rc.1"
"@angular/forms": "npm:19.0.0-rc.1"
"@angular/localize": "npm:19.0.0-rc.1"
"@angular/material": "npm:19.0.0-rc.1"
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#f7a60f3dda6fb0030538446849c28ea90f823383"
"@angular/platform-browser": "npm:19.0.0-rc.1"
"@angular/platform-browser-dynamic": "npm:19.0.0-rc.1"
"@angular/platform-server": "npm:19.0.0-rc.1"
"@angular/router": "npm:19.0.0-rc.1"
"@angular/service-worker": "npm:19.0.0-rc.1"
"@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.1"
"@inquirer/prompts": "npm:7.0.1"
"@listr2/prompt-adapter-inquirer": "npm:2.0.17"
"@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.13.0"
"@typescript-eslint/parser": "npm:8.13.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.4"
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.47"
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.24.4"
rollup-license-plugin: "npm:~3.0.1"
rollup-plugin-sourcemaps: "npm:^0.6.0"
rxjs: "npm:7.8.1"
sass: "npm:1.80.6"
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.20.1"
unenv: "npm:^1.10.0"
verdaccio: "npm:6.0.1"
verdaccio-auth-memory: "npm:^10.0.0"
vite: "npm:5.4.10"
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.1":
version: 19.0.0-rc.1
resolution: "@angular/forms@npm:19.0.0-rc.1"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.0.0-rc.1
"@angular/core": 19.0.0-rc.1
"@angular/platform-browser": 19.0.0-rc.1
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/04e49eb27bee86b016c86e3a6b8438710f89e25f315f3d6e6b574e948ca4c7f4f502530ac0723e729425740b598f81821b93022fe31b6478a62f0be558f5e471
languageName: node
linkType: hard
"@angular/localize@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular/localize@npm:19.0.0-rc.1"
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.1
"@angular/compiler-cli": 19.0.0-rc.1
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/1d864de6be24968e7ff852c10089b7dec8887ef9b6f8359967f8d96110ec75d1f85efc8d024e51955b790d8561b5b368258bcc3cec7211b15560944331afdb00
languageName: node
linkType: hard
"@angular/material@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular/material@npm:19.0.0-rc.1"
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.1
"@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/f2737aca2dab2552c2a99ef58f6b2ecadc61be54f45d78846ffae5bf1daa8057829bb56509f72a493b70ce0d4a742efe0ec1519350ac1fefad2bfad369fd134f
languageName: node
linkType: hard
"@angular/ng-dev@https://github.com/angular/dev-infra-private-ng-dev-builds.git#f7a60f3dda6fb0030538446849c28ea90f823383":
version: 0.0.0-933dcd42f8837d6d6ce3a28419a760edb94f10e6
resolution: "@angular/ng-dev@https://github.com/angular/dev-infra-private-ng-dev-builds.git#commit=f7a60f3dda6fb0030538446849c28ea90f823383"
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/d54241b0c41fca8c108a2b24a0ce5bb2240ebb829f79b47a60d5196833361a4c556ea900c9b58044b2ccf70d2a517f6ee8495e88955009f994f0e63ce6afec78
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular/platform-browser-dynamic@npm:19.0.0-rc.1"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.0.0-rc.1
"@angular/compiler": 19.0.0-rc.1
"@angular/core": 19.0.0-rc.1
"@angular/platform-browser": 19.0.0-rc.1
checksum: 10c0/99d4dc21043e00b7609edcd80ea526f956b122a183c13913acbb1722a1ab9e4af58524fa134a6b696ed17c27ba78eea2c89583267cc8975d32e67b7be85c63c7
languageName: node
linkType: hard
"@angular/platform-browser@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular/platform-browser@npm:19.0.0-rc.1"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 19.0.0-rc.1
"@angular/common": 19.0.0-rc.1
"@angular/core": 19.0.0-rc.1
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 10c0/1e45d02ede4d34d0349942ab32bfed99586f433efad06ea907bfed0573bad50c92d7efa273e9dea056fbbf71ca5550a56162f36ac4ad360ad901710644119597
languageName: node
linkType: hard
"@angular/platform-server@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular/platform-server@npm:19.0.0-rc.1"
dependencies:
tslib: "npm:^2.3.0"
xhr2: "npm:^0.2.0"
peerDependencies:
"@angular/animations": 19.0.0-rc.1
"@angular/common": 19.0.0-rc.1
"@angular/compiler": 19.0.0-rc.1
"@angular/core": 19.0.0-rc.1
"@angular/platform-browser": 19.0.0-rc.1
checksum: 10c0/76957d0389512fd313a3226b9ea94b89777032c445b9bf0565308202485de2ca6174ebdd82d4dd7111b6299b20903644b40babf88aebf27cbce3294a298bf73e
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.1":
version: 19.0.0-rc.1
resolution: "@angular/router@npm:19.0.0-rc.1"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.0.0-rc.1
"@angular/core": 19.0.0-rc.1
"@angular/platform-browser": 19.0.0-rc.1
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/33b5dc4691af17a13ada40829e4da1a952cd78a5c42a08620f544cab5bd52b5d31448c340692762acb924e8df9feb8e661b8b47d50a302b335c42edbba90be1c
languageName: node
linkType: hard
"@angular/service-worker@npm:19.0.0-rc.1":
version: 19.0.0-rc.1
resolution: "@angular/service-worker@npm:19.0.0-rc.1"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 19.0.0-rc.1
"@angular/core": 19.0.0-rc.1
bin:
ngsw-config: ngsw-config.js
checksum: 10c0/be4db75be6aa059dd5f9328130e900db2f59b388353343febf2c5bd6d2257a51531381a070c93de0be7a0af915e8b71d032e523af9ac6c277dc314b23bfd6c3c
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.1"
"@angular/compiler": "npm:19.0.0-rc.1"
"@angular/core": "npm:19.0.0-rc.1"
"@angular/platform-browser": "npm:19.0.0-rc.1"
"@angular/platform-server": "npm:19.0.0-rc.1"
"@angular/router": "npm:19.0.0-rc.1"
"@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