forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
19323 lines (17489 loc) · 692 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
"@75lb/deep-merge@npm:^1.1.1":
version: 1.1.1
resolution: "@75lb/deep-merge@npm:1.1.1"
dependencies:
lodash.assignwith: "npm:^4.2.0"
typical: "npm:^7.1.1"
checksum: 10c0/cbff3cc6410e91e268452f147fc40be660c3accb0a9cd066bff0729d52047fb7a74816a7bd02544bfa16ae0fef5ae8c92f66fa3f6db5f6785da2730617600614
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-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.1801.0-next.1":
version: 0.1801.0-next.1
resolution: "@angular-devkit/architect@npm:0.1801.0-next.1"
dependencies:
"@angular-devkit/core": "npm:18.1.0-next.1"
rxjs: "npm:7.8.1"
checksum: 10c0/5654d7c9ade5ef774df62a6ef16d64af0c1d257d88753281f9513df1bb224c8dd086d48fd40f0f493a7ce785680dd8c2b6633094f7d1f5d6cb03450d26920772
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.24.7"
"@babel/generator": "npm:7.24.7"
"@babel/helper-annotate-as-pure": "npm:7.24.7"
"@babel/helper-split-export-declaration": "npm:7.24.7"
"@babel/plugin-transform-async-generator-functions": "npm:7.24.7"
"@babel/plugin-transform-async-to-generator": "npm:7.24.7"
"@babel/plugin-transform-runtime": "npm:7.24.7"
"@babel/preset-env": "npm:7.24.7"
"@babel/runtime": "npm:7.24.7"
"@discoveryjs/json-ext": "npm:0.5.7"
"@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.19"
babel-loader: "npm:9.1.3"
browserslist: "npm:^4.21.5"
copy-webpack-plugin: "npm:12.0.2"
critters: "npm:0.0.22"
css-loader: "npm:7.1.2"
esbuild: "npm:0.21.5"
esbuild-wasm: "npm:0.21.5"
fast-glob: "npm:3.3.2"
http-proxy-middleware: "npm:3.0.0"
https-proxy-agent: "npm:7.0.4"
istanbul-lib-instrument: "npm:6.0.2"
jsonc-parser: "npm:3.2.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"
magic-string: "npm:0.30.10"
mini-css-extract-plugin: "npm:2.9.0"
mrmime: "npm:2.0.0"
open: "npm:10.1.0"
ora: "npm:5.4.1"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:4.0.2"
piscina: "npm:4.6.0"
postcss: "npm:8.4.38"
postcss-loader: "npm:8.1.1"
resolve-url-loader: "npm:5.0.0"
rxjs: "npm:7.8.1"
sass: "npm:1.77.6"
sass-loader: "npm:14.2.1"
semver: "npm:7.6.2"
source-map-loader: "npm:5.0.0"
source-map-support: "npm:0.5.21"
terser: "npm:5.31.1"
tree-kill: "npm:1.2.2"
tslib: "npm:2.6.3"
undici: "npm:6.19.2"
vite: "npm:5.3.1"
watchpack: "npm:2.4.1"
webpack: "npm:5.92.1"
webpack-dev-middleware: "npm:7.2.1"
webpack-dev-server: "npm:5.0.4"
webpack-merge: "npm:5.10.0"
webpack-subresource-integrity: "npm:5.1.0"
peerDependencies:
"@angular/compiler-cli": ^18.0.0 || ^18.1.0-next.0
"@angular/localize": ^18.0.0 || ^18.1.0-next.0
"@angular/platform-server": ^18.0.0 || ^18.1.0-next.0
"@angular/service-worker": ^18.0.0 || ^18.1.0-next.0
"@web/test-runner": ^0.18.0
browser-sync: ^3.0.2
jest: ^29.5.0
jest-environment-jsdom: ^29.5.0
karma: ^6.3.0
ng-packagr: ^18.0.0 || ^18.1.0-next.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0
typescript: ">=5.4 <5.6"
dependenciesMeta:
esbuild:
optional: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
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.92.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.16.0"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.2.1"
picomatch: "npm:4.0.2"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
languageName: unknown
linkType: soft
"@angular-devkit/core@npm:18.1.0-next.1":
version: 18.1.0-next.1
resolution: "@angular-devkit/core@npm:18.1.0-next.1"
dependencies:
ajv: "npm:8.16.0"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.2.1"
picomatch: "npm:4.0.2"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10c0/72a2981c8f4dc85dfae60df65af8b46aba7e0e8d1fd2dda6b618b685700f6cc50db1812100188351f190540a796dbea57a5c567596cf8f3ec1da0ae056dce0fd
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:5.0.6"
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.2.1"
magic-string: "npm:0.30.10"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
languageName: unknown
linkType: soft
"@angular/animations@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/animations@npm:18.1.0-next.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 18.1.0-next.2
checksum: 10c0/ed72770b18ae53a9bd8ab6fab506ab6b783bf49d23eedc0ad0c3698743f58c7c8beee663a6d4d7a83e6d162d48fc572fc2b007cc0c466b65c345ee1f210e3f1b
languageName: node
linkType: hard
"@angular/bazel@https://github.com/angular/bazel-builds.git#commit=71bd2e043e076365effdb6076f33b2d8d6bd6d02":
version: 18.1.0-next.0+sha-1360110
resolution: "@angular/bazel@https://github.com/angular/bazel-builds.git#commit=71bd2e043e076365effdb6076f33b2d8d6bd6d02"
dependencies:
"@microsoft/api-extractor": "npm:^7.24.2"
magic-string: "npm:^0.30.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/compiler-cli": 18.1.0-next.0+sha-1360110
"@bazel/concatjs": ^5.3.0
"@bazel/worker": ^5.3.0
"@rollup/plugin-commonjs": ^25.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.4 <5.5"
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/4bf890149557811d1954c4851d14090a74cb479dccdabf53ce2fc7892456a8f8e28fc969dbb2f19de6f706289d0ee47b4bf11a58941fee525004beb1f609e957
languageName: node
linkType: hard
"@angular/bazel@patch:@angular/bazel@https%3A//github.com/angular/bazel-builds.git%23commit=71bd2e043e076365effdb6076f33b2d8d6bd6d02#~/.yarn/patches/@angular-bazel-https-9848736cf4.patch":
version: 18.1.0-next.0+sha-1360110
resolution: "@angular/bazel@patch:@angular/bazel@https%3A//github.com/angular/bazel-builds.git%23commit=71bd2e043e076365effdb6076f33b2d8d6bd6d02#~/.yarn/patches/@angular-bazel-https-9848736cf4.patch::version=18.1.0-next.0%2Bsha-1360110&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": 18.1.0-next.0+sha-1360110
"@bazel/concatjs": ^5.3.0
"@bazel/worker": ^5.3.0
"@rollup/plugin-commonjs": ^25.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.4 <5.5"
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/b79b1b6692f06eeebfabb95779c88fb4f2070b6152477a4b0ef7e6e3c09255cedfa7fb3d786d6016cb6a2a23c563e77839d662e0e793198ec0b48f5e4ad9d11d
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#262dbe37d2da168deee0fa25901da397c92a6e88":
version: 0.0.0-f9a55a8d166809baa07af8b6bb51438a06ea025c
resolution: "@angular/build-tooling@https://github.com/angular/dev-infra-private-build-tooling-builds.git#commit=262dbe37d2da168deee0fa25901da397c92a6e88"
dependencies:
"@angular/benchpress": "npm:0.3.0"
"@angular/build": "npm:18.1.0-next.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.0"
"@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/uuid": "npm:^9.0.0"
"@types/ws": "npm:8.5.10"
"@types/yargs": "npm:^17.0.0"
browser-sync: "npm:^3.0.0"
highlight.js: "npm:^11.8.0"
html-entities: "npm:^2.4.0"
marked: "npm:^12.0.0"
marked-mangle: "npm:^1.1.4"
preact: "npm:^10.17.1"
preact-render-to-string: "npm:^6.2.1"
prettier: "npm:3.3.2"
protractor: "npm:^7.0.0"
selenium-webdriver: "npm:^4.18.1"
send: "npm:^0.18.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.4.5"
uuid: "npm:^10.0.0"
yargs: "npm:^17.0.0"
dependenciesMeta:
re2:
built: false
checksum: 10c0/d7baa4daf0ef0bb62908e563a94449c95123958fcd5fdd5561652d810956b5068427feb7fbd02ec01d46f1e84e303d16ad22494f83d3217875ad6a3621e31f78
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.24.7"
"@babel/helper-annotate-as-pure": "npm:7.24.7"
"@babel/helper-split-export-declaration": "npm:7.24.7"
"@inquirer/confirm": "npm:3.1.10"
"@vitejs/plugin-basic-ssl": "npm:1.1.0"
ansi-colors: "npm:4.1.3"
browserslist: "npm:^4.23.0"
critters: "npm:0.0.22"
esbuild: "npm:0.21.5"
fast-glob: "npm:3.3.2"
https-proxy-agent: "npm:7.0.4"
lmdb: "npm:3.0.12"
magic-string: "npm:0.30.10"
mrmime: "npm:2.0.0"
ora: "npm:5.4.1"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:4.0.2"
piscina: "npm:4.6.0"
sass: "npm:1.77.6"
semver: "npm:7.6.2"
undici: "npm:6.19.2"
vite: "npm:5.3.1"
watchpack: "npm:2.4.1"
peerDependencies:
"@angular/compiler-cli": ^18.0.0 || ^18.1.0-next.0
"@angular/localize": ^18.0.0 || ^18.1.0-next.0
"@angular/platform-server": ^18.0.0 || ^18.1.0-next.0
"@angular/service-worker": ^18.0.0 || ^18.1.0-next.0
less: ^4.2.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0
typescript: ">=5.4 <5.6"
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
less:
optional: true
postcss:
optional: true
tailwindcss:
optional: true
languageName: unknown
linkType: soft
"@angular/build@npm:18.1.0-next.1":
version: 18.1.0-next.1
resolution: "@angular/build@npm:18.1.0-next.1"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.1801.0-next.1"
"@babel/core": "npm:7.24.7"
"@babel/helper-annotate-as-pure": "npm:7.24.7"
"@babel/helper-split-export-declaration": "npm:7.24.7"
"@vitejs/plugin-basic-ssl": "npm:1.1.0"
ansi-colors: "npm:4.1.3"
browserslist: "npm:^4.23.0"
critters: "npm:0.0.22"
esbuild: "npm:0.21.4"
fast-glob: "npm:3.3.2"
https-proxy-agent: "npm:7.0.4"
inquirer: "npm:9.2.23"
lmdb: "npm:3.0.11"
magic-string: "npm:0.30.10"
mrmime: "npm:2.0.0"
ora: "npm:5.4.1"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:4.0.2"
piscina: "npm:4.5.1"
sass: "npm:1.77.4"
semver: "npm:7.6.2"
undici: "npm:6.18.2"
vite: "npm:5.2.12"
watchpack: "npm:2.4.1"
peerDependencies:
"@angular/compiler-cli": ^18.0.0 || ^18.1.0-next.0
"@angular/localize": ^18.0.0 || ^18.1.0-next.0
"@angular/platform-server": ^18.0.0 || ^18.1.0-next.0
"@angular/service-worker": ^18.0.0 || ^18.1.0-next.0
less: ^4.2.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0
typescript: ">=5.4 <5.6"
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
less:
optional: true
postcss:
optional: true
tailwindcss:
optional: true
checksum: 10c0/54f30068caa2484973d9f57b49fcc63f9437046843762f5746db62e7d9f356c825b3da556d5394eeff96500ec4fdfb6b0387ff004b9f56c5a410bfad99e20d96
languageName: node
linkType: hard
"@angular/cdk@npm:18.0.3":
version: 18.0.3
resolution: "@angular/cdk@npm:18.0.3"
dependencies:
parse5: "npm:^7.1.2"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^18.0.0 || ^19.0.0
"@angular/core": ^18.0.0 || ^19.0.0
rxjs: ^6.5.3 || ^7.4.0
dependenciesMeta:
parse5:
optional: true
checksum: 10c0/ce5e90c5151da5634973f5336bee4e4c567ef342251b12595096b85285be1353dbbdfcd82cdab4a015c9a2039ce73b380c5604d555de71147a74b4a9e3620a1e
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:5.0.6"
"@listr2/prompt-adapter-inquirer": "npm:2.0.12"
"@schematics/angular": "npm:0.0.0-PLACEHOLDER"
"@yarnpkg/lockfile": "npm:1.1.0"
ini: "npm:4.1.3"
jsonc-parser: "npm:3.2.1"
listr2: "npm:8.2.2"
npm-package-arg: "npm:11.0.2"
npm-pick-manifest: "npm:9.0.1"
pacote: "npm:18.0.6"
resolve: "npm:1.22.8"
semver: "npm:7.6.2"
symbol-observable: "npm:4.0.0"
yargs: "npm:17.7.2"
bin:
ng: ./bin/ng.js
languageName: unknown
linkType: soft
"@angular/common@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/common@npm:18.1.0-next.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 18.1.0-next.2
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/766fdf05ccc70cdd7e4491d841ad98a1f1e291348935376689bb4f1a9b70ed6c6803c4e23b5a507aa700ea72b2566bb183ed7c37b3893124f21539107d23743a
languageName: node
linkType: hard
"@angular/compiler-cli@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/compiler-cli@npm:18.1.0-next.2"
dependencies:
"@babel/core": "npm:7.24.7"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
chokidar: "npm:^3.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": 18.1.0-next.2
typescript: ">=5.4 <5.6"
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
ngcc: bundles/ngcc/index.js
checksum: 10c0/c6f221cc4511334209bb1f875c3e7c34a5aae96b003d0182b46a1df9826b3c2a5f98f2e3e42a91b287124445eed7b4921d7883d5a933428a76159b5746ecffb8
languageName: node
linkType: hard
"@angular/compiler@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/compiler@npm:18.1.0-next.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 18.1.0-next.2
peerDependenciesMeta:
"@angular/core":
optional: true
checksum: 10c0/6df7ea8ac9a188788403a28f957608f3cc3a80e4ff04b0268d5303a31bc7f38c27ac326e9e62d93cb37969e5482f01d436a12e2fe92b048c90a62fb6b27a5109
languageName: node
linkType: hard
"@angular/core@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/core@npm:18.1.0-next.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.14.0
checksum: 10c0/94237c1d249921da3375571c919615f00bcdd75abd065c390bfefd9cf9ce199f1d223bd32e6366fc7b0e20c18c0cd360627f6e50242900a0a781f395a9c0f87d
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:18.1.0-next.2"
"@angular/bazel": "patch:@angular/bazel@https%3A//github.com/angular/bazel-builds.git%23commit=71bd2e043e076365effdb6076f33b2d8d6bd6d02#~/.yarn/patches/@angular-bazel-https-9848736cf4.patch"
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#262dbe37d2da168deee0fa25901da397c92a6e88"
"@angular/cdk": "npm:18.0.3"
"@angular/common": "npm:18.1.0-next.2"
"@angular/compiler": "npm:18.1.0-next.2"
"@angular/compiler-cli": "npm:18.1.0-next.2"
"@angular/core": "npm:18.1.0-next.2"
"@angular/forms": "npm:18.1.0-next.2"
"@angular/localize": "npm:18.1.0-next.2"
"@angular/material": "npm:18.0.3"
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#c76591b8d2302378e51fc29619c87c1e947fb9b0"
"@angular/platform-browser": "npm:18.1.0-next.2"
"@angular/platform-browser-dynamic": "npm:18.1.0-next.2"
"@angular/platform-server": "npm:18.1.0-next.2"
"@angular/router": "npm:18.1.0-next.2"
"@angular/service-worker": "npm:18.1.0-next.2"
"@babel/core": "npm:7.24.7"
"@babel/generator": "npm:7.24.7"
"@babel/helper-annotate-as-pure": "npm:7.24.7"
"@babel/helper-split-export-declaration": "npm:7.24.7"
"@babel/plugin-transform-async-generator-functions": "npm:7.24.7"
"@babel/plugin-transform-async-to-generator": "npm:7.24.7"
"@babel/plugin-transform-runtime": "npm:7.24.7"
"@babel/preset-env": "npm:7.24.7"
"@babel/runtime": "npm:7.24.7"
"@bazel/bazelisk": "npm:1.19.0"
"@bazel/buildifier": "npm:7.1.2"
"@bazel/concatjs": "patch:@bazel/concatjs@npm%3A5.8.1#~/.yarn/patches/@bazel-concatjs-npm-5.8.1-1bf81df846.patch"
"@bazel/esbuild": "npm:5.8.1"
"@bazel/jasmine": "patch:@bazel/jasmine@npm%3A5.8.1#~/.yarn/patches/@bazel-jasmine-npm-5.8.1-3370fee155.patch"
"@discoveryjs/json-ext": "npm:0.5.7"
"@inquirer/confirm": "npm:3.1.10"
"@inquirer/prompts": "npm:5.0.6"
"@listr2/prompt-adapter-inquirer": "npm:2.0.12"
"@rollup/plugin-commonjs": "npm:^26.0.0"
"@rollup/plugin-node-resolve": "npm:^13.0.5"
"@types/babel__core": "npm:7.20.5"
"@types/browser-sync": "npm:^2.27.0"
"@types/browserslist": "npm:^4.15.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:^2.3.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:7.13.1"
"@typescript-eslint/parser": "npm:7.13.1"
"@vitejs/plugin-basic-ssl": "npm:1.1.0"
"@web/test-runner": "npm:^0.18.0"
"@yarnpkg/lockfile": "npm:1.1.0"
ajv: "npm:8.16.0"
ajv-formats: "npm:3.0.1"
ansi-colors: "npm:4.1.3"
autoprefixer: "npm:10.4.19"
babel-loader: "npm:9.1.3"
browser-sync: "npm:3.0.2"
browserslist: "npm:^4.21.5"
buffer: "npm:6.0.3"
chokidar: "npm:3.6.0"
copy-webpack-plugin: "npm:12.0.2"
critters: "npm:0.0.22"
css-loader: "npm:7.1.2"
debug: "npm:^4.1.1"
esbuild: "npm:0.21.5"
esbuild-wasm: "npm:0.21.5"
eslint: "npm:8.57.0"
eslint-config-prettier: "npm:9.1.0"
eslint-plugin-header: "npm:3.1.1"
eslint-plugin-import: "npm:2.29.1"
express: "npm:4.19.2"
fast-glob: "npm:3.3.2"
http-proxy: "npm:^1.18.1"
http-proxy-middleware: "npm:3.0.0"
https-proxy-agent: "npm:7.0.4"
husky: "npm:9.0.11"
ini: "npm:4.1.3"
istanbul-lib-instrument: "npm:6.0.2"
jasmine: "npm:^5.0.0"
jasmine-core: "npm:~5.1.0"
jasmine-spec-reporter: "npm:~7.0.0"
jsonc-parser: "npm:3.2.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.2"
lmdb: "npm:3.0.12"
loader-utils: "npm:3.3.1"
lodash: "npm:^4.17.21"
magic-string: "npm:0.30.10"
mini-css-extract-plugin: "npm:2.9.0"
mrmime: "npm:2.0.0"
ng-packagr: "npm:18.0.0"
npm: "npm:^10.8.1"
npm-package-arg: "npm:11.0.2"
open: "npm:10.1.0"
ora: "npm:5.4.1"
pacote: "npm:18.0.6"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:4.0.2"
piscina: "npm:4.6.0"
postcss: "npm:8.4.38"
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.18.0"
rollup-plugin-sourcemaps: "npm:^0.6.0"
rxjs: "npm:7.8.1"
sass: "npm:1.77.6"
sass-loader: "npm:14.2.1"
semver: "npm:7.6.2"
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.31.1"
tree-kill: "npm:1.2.2"
ts-node: "npm:^10.9.1"
tslib: "npm:2.6.3"
typescript: "npm:5.5.1-rc"
undici: "npm:6.19.2"
verdaccio: "npm:5.31.1"
verdaccio-auth-memory: "npm:^10.0.0"
vite: "npm:5.3.1"
watchpack: "npm:2.4.1"
webpack: "npm:5.92.1"
webpack-dev-middleware: "npm:7.2.1"
webpack-dev-server: "npm:5.0.4"
webpack-merge: "npm:5.10.0"
webpack-subresource-integrity: "npm:5.1.0"
yargs: "npm:17.7.2"
yargs-parser: "npm:21.1.1"
zone.js: "npm:^0.14.0"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
languageName: unknown
linkType: soft
"@angular/forms@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/forms@npm:18.1.0-next.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 18.1.0-next.2
"@angular/core": 18.1.0-next.2
"@angular/platform-browser": 18.1.0-next.2
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/7b0f1b582654fb1a9e226c2d74c6dfc2c0db908e4950a51659215bdb8a944349ceb552a4da7e8f717b5d494287f5f4729823f8e328e8ca9fcd3ade985e835521
languageName: node
linkType: hard
"@angular/localize@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/localize@npm:18.1.0-next.2"
dependencies:
"@babel/core": "npm:7.24.7"
"@types/babel__core": "npm:7.20.5"
fast-glob: "npm:3.3.2"
yargs: "npm:^17.2.1"
peerDependencies:
"@angular/compiler": 18.1.0-next.2
"@angular/compiler-cli": 18.1.0-next.2
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/18d6ad3968ee29c3492be90ae79ed8329ce176007bda7e631a4fe186963f84412d8f29ad8593f1e14d3afc6884425c7b5908134b722df70b247ee3b24aeb7415
languageName: node
linkType: hard
"@angular/material@npm:18.0.3":
version: 18.0.3
resolution: "@angular/material@npm:18.0.3"
dependencies:
"@material/animation": "npm:15.0.0-canary.7f224ddd4.0"
"@material/auto-init": "npm:15.0.0-canary.7f224ddd4.0"
"@material/banner": "npm:15.0.0-canary.7f224ddd4.0"
"@material/base": "npm:15.0.0-canary.7f224ddd4.0"
"@material/button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/card": "npm:15.0.0-canary.7f224ddd4.0"
"@material/checkbox": "npm:15.0.0-canary.7f224ddd4.0"
"@material/chips": "npm:15.0.0-canary.7f224ddd4.0"
"@material/circular-progress": "npm:15.0.0-canary.7f224ddd4.0"
"@material/data-table": "npm:15.0.0-canary.7f224ddd4.0"
"@material/density": "npm:15.0.0-canary.7f224ddd4.0"
"@material/dialog": "npm:15.0.0-canary.7f224ddd4.0"
"@material/dom": "npm:15.0.0-canary.7f224ddd4.0"
"@material/drawer": "npm:15.0.0-canary.7f224ddd4.0"
"@material/elevation": "npm:15.0.0-canary.7f224ddd4.0"
"@material/fab": "npm:15.0.0-canary.7f224ddd4.0"
"@material/feature-targeting": "npm:15.0.0-canary.7f224ddd4.0"
"@material/floating-label": "npm:15.0.0-canary.7f224ddd4.0"
"@material/form-field": "npm:15.0.0-canary.7f224ddd4.0"
"@material/icon-button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/image-list": "npm:15.0.0-canary.7f224ddd4.0"
"@material/layout-grid": "npm:15.0.0-canary.7f224ddd4.0"
"@material/line-ripple": "npm:15.0.0-canary.7f224ddd4.0"
"@material/linear-progress": "npm:15.0.0-canary.7f224ddd4.0"
"@material/list": "npm:15.0.0-canary.7f224ddd4.0"
"@material/menu": "npm:15.0.0-canary.7f224ddd4.0"
"@material/menu-surface": "npm:15.0.0-canary.7f224ddd4.0"
"@material/notched-outline": "npm:15.0.0-canary.7f224ddd4.0"
"@material/radio": "npm:15.0.0-canary.7f224ddd4.0"
"@material/ripple": "npm:15.0.0-canary.7f224ddd4.0"
"@material/rtl": "npm:15.0.0-canary.7f224ddd4.0"
"@material/segmented-button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/select": "npm:15.0.0-canary.7f224ddd4.0"
"@material/shape": "npm:15.0.0-canary.7f224ddd4.0"
"@material/slider": "npm:15.0.0-canary.7f224ddd4.0"
"@material/snackbar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/switch": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-bar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-indicator": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-scroller": "npm:15.0.0-canary.7f224ddd4.0"
"@material/textfield": "npm:15.0.0-canary.7f224ddd4.0"
"@material/theme": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tokens": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tooltip": "npm:15.0.0-canary.7f224ddd4.0"
"@material/top-app-bar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/touch-target": "npm:15.0.0-canary.7f224ddd4.0"
"@material/typography": "npm:15.0.0-canary.7f224ddd4.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": ^18.0.0 || ^19.0.0
"@angular/cdk": 18.0.3
"@angular/common": ^18.0.0 || ^19.0.0
"@angular/core": ^18.0.0 || ^19.0.0
"@angular/forms": ^18.0.0 || ^19.0.0
"@angular/platform-browser": ^18.0.0 || ^19.0.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/47048856f94b501ef59b404c641832ba4a943927e407eb9a9d332635a937ff78fe4fb3ecd29061b913672bf507bf493d8612130218effddaf034baad812dbd03
languageName: node
linkType: hard
"@angular/ng-dev@https://github.com/angular/dev-infra-private-ng-dev-builds.git#c76591b8d2302378e51fc29619c87c1e947fb9b0":
version: 0.0.0-f9a55a8d166809baa07af8b6bb51438a06ea025c
resolution: "@angular/ng-dev@https://github.com/angular/dev-infra-private-ng-dev-builds.git#commit=c76591b8d2302378e51fc29619c87c1e947fb9b0"
dependencies:
"@octokit/rest": "npm:20.1.1"
"@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"
bin:
ng-dev: ./bundles/cli.mjs
checksum: 10c0/423c45d275b51d74aa6a7dc2f6c20ad6322d4a6b5249202927aef6b2744641104688c4829bfd720ce7460ffd504b7cacd9889ee15954c2cff7a95b1f980de139
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/platform-browser-dynamic@npm:18.1.0-next.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 18.1.0-next.2
"@angular/compiler": 18.1.0-next.2
"@angular/core": 18.1.0-next.2
"@angular/platform-browser": 18.1.0-next.2
checksum: 10c0/3239eee8a9615e081632568ca8521325157011f80d99d25c5a500f2c23355daf3aacacf73b4546b619288f71598461c5daef18dea1e5f1645a52cc3c9792abf8
languageName: node
linkType: hard
"@angular/platform-browser@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/platform-browser@npm:18.1.0-next.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 18.1.0-next.2
"@angular/common": 18.1.0-next.2
"@angular/core": 18.1.0-next.2
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 10c0/09f63ff76f6daba9709021b3ae62a1644ae3ce5153ae473a84b4bd7aa9a4a350f43fcd63fa2383d8aec84e0a1860da99cbdfacb8b31a64d3238c3042b0995d26
languageName: node
linkType: hard
"@angular/platform-server@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/platform-server@npm:18.1.0-next.2"
dependencies:
tslib: "npm:^2.3.0"
xhr2: "npm:^0.2.0"
peerDependencies:
"@angular/animations": 18.1.0-next.2
"@angular/common": 18.1.0-next.2
"@angular/compiler": 18.1.0-next.2
"@angular/core": 18.1.0-next.2
"@angular/platform-browser": 18.1.0-next.2
checksum: 10c0/988dd85e90ab5731621cfad791576c01f2f64b26d7487d86bf4857109065ee7f647f439ae91e08e51c1c3eddd6d3fb4dd4fd9f4e434d44614c3216fe941f4a3b
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": ^18.0.0 || ^18.1.0-next.0
peerDependenciesMeta:
"@angular/cli":
optional: true
languageName: unknown
linkType: soft
"@angular/router@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/router@npm:18.1.0-next.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 18.1.0-next.2
"@angular/core": 18.1.0-next.2
"@angular/platform-browser": 18.1.0-next.2
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/d86d048e59283bcabce0992006bf6dbf83785404e26072f41e4b6d6d0af5565fe7dca069d988f89abdf2891de99ce75d4549c5c6760fa7115c7e6ac95ed826f1
languageName: node
linkType: hard
"@angular/service-worker@npm:18.1.0-next.2":
version: 18.1.0-next.2
resolution: "@angular/service-worker@npm:18.1.0-next.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 18.1.0-next.2
"@angular/core": 18.1.0-next.2
bin:
ngsw-config: ngsw-config.js
checksum: 10c0/d31a047224fc54179f078c0143156eb298f8c833b47a0286964578838d88e72a63e7157e3c428117dbdb4da2cf7d16ddb21d1ae2e57cbfcd549a533e282d51b0
languageName: node
linkType: hard
"@angular/ssr@workspace:packages/angular/ssr":
version: 0.0.0-use.local
resolution: "@angular/ssr@workspace:packages/angular/ssr"
dependencies:
critters: "npm:0.0.22"
tslib: "npm:^2.3.0"