-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathyarn.lock
More file actions
6361 lines (5745 loc) · 216 KB
/
Copy pathyarn.lock
File metadata and controls
6361 lines (5745 loc) · 216 KB
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
"@algolia/abtesting@npm:1.18.0":
version: 1.18.0
resolution: "@algolia/abtesting@npm:1.18.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
"@algolia/requester-browser-xhr": "npm:5.52.0"
"@algolia/requester-fetch": "npm:5.52.0"
"@algolia/requester-node-http": "npm:5.52.0"
checksum: 10c0/a0d8cf0b103499d82f67714c0e2174b825a6e77ab0db5bc7017515e7245d3a69431d07495b84d84bb5f1592a10dc0c30bc2cbaf4a6166d387fc6d5cfc54cfc51
languageName: node
linkType: hard
"@algolia/client-abtesting@npm:5.52.0":
version: 5.52.0
resolution: "@algolia/client-abtesting@npm:5.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
"@algolia/requester-browser-xhr": "npm:5.52.0"
"@algolia/requester-fetch": "npm:5.52.0"
"@algolia/requester-node-http": "npm:5.52.0"
checksum: 10c0/9d80c57b860c981d896cc15bb092ba8f8fcca18c1456e1feb81ed8fc74f806ef16d4247ada06bdfa63dbf3a2fbf7f07aeef740af07ce414d408a276979212cd5
languageName: node
linkType: hard
"@algolia/client-analytics@npm:5.52.0":
version: 5.52.0
resolution: "@algolia/client-analytics@npm:5.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
"@algolia/requester-browser-xhr": "npm:5.52.0"
"@algolia/requester-fetch": "npm:5.52.0"
"@algolia/requester-node-http": "npm:5.52.0"
checksum: 10c0/d15948a0a9687ac9de7ec712c005ca9a6e1da40bb0b20264ddd35e0a5eab4c6b118938c037278224025b7791f855ff55466c344b5cf2ce721540893000b2cc0a
languageName: node
linkType: hard
"@algolia/client-common@npm:5.52.0":
version: 5.52.0
resolution: "@algolia/client-common@npm:5.52.0"
checksum: 10c0/5f13e2fe97fd78a62b77af3b84b34c4059bd6205e56813151311a11a8f74d55e1723990098231a9e530aa1f618140602902723dc903e7ee0268d3d1d6eb775e0
languageName: node
linkType: hard
"@algolia/client-insights@npm:5.52.0":
version: 5.52.0
resolution: "@algolia/client-insights@npm:5.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
"@algolia/requester-browser-xhr": "npm:5.52.0"
"@algolia/requester-fetch": "npm:5.52.0"
"@algolia/requester-node-http": "npm:5.52.0"
checksum: 10c0/a5893529cf08fad6160aa54b5224d1741c392d8a2d38a231161306031ce555e82146d1a21569f9207f8760b068d09b408f0aba10eddd9022d364f4178a7b682f
languageName: node
linkType: hard
"@algolia/client-personalization@npm:5.52.0":
version: 5.52.0
resolution: "@algolia/client-personalization@npm:5.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
"@algolia/requester-browser-xhr": "npm:5.52.0"
"@algolia/requester-fetch": "npm:5.52.0"
"@algolia/requester-node-http": "npm:5.52.0"
checksum: 10c0/03d736e812c61ea6838f6fe5e6a54e5648a4836afd9bbabe24a996bdd5a9fda85938a507ac2e331e4ecffe88a5ccae8c221211ee3aaa22663d8ee0210216b9c5
languageName: node
linkType: hard
"@algolia/client-query-suggestions@npm:5.52.0":
version: 5.52.0
resolution: "@algolia/client-query-suggestions@npm:5.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
"@algolia/requester-browser-xhr": "npm:5.52.0"
"@algolia/requester-fetch": "npm:5.52.0"
"@algolia/requester-node-http": "npm:5.52.0"
checksum: 10c0/5a98017fb601ad665b1119b82f992aecfadf10e4e60040f9d9d6567d1b54cbb382130b114ac6b5b4b15e28e5ef4e0464e10216623ef26a93e3db119f07eaa110
languageName: node
linkType: hard
"@algolia/client-search@npm:5.52.0":
version: 5.52.0
resolution: "@algolia/client-search@npm:5.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
"@algolia/requester-browser-xhr": "npm:5.52.0"
"@algolia/requester-fetch": "npm:5.52.0"
"@algolia/requester-node-http": "npm:5.52.0"
checksum: 10c0/7b80e359bf4f5d616c359bb40d0fc0d3be6a2991da64ab88c4ea636e706b944258f88d5cdf92f69354f74dd1b0ab53b6ab76d187af2fb2db4b1ddfdff8896d76
languageName: node
linkType: hard
"@algolia/ingestion@npm:1.52.0":
version: 1.52.0
resolution: "@algolia/ingestion@npm:1.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
"@algolia/requester-browser-xhr": "npm:5.52.0"
"@algolia/requester-fetch": "npm:5.52.0"
"@algolia/requester-node-http": "npm:5.52.0"
checksum: 10c0/f012a083ae8464015c468843eb938b42b63b18e53219e0477fd52d54b86927c0b92a5af7d49b22eb4d2d04a62f04797d30a0212cd948e0ee82fca6fe19b19e8f
languageName: node
linkType: hard
"@algolia/monitoring@npm:1.52.0":
version: 1.52.0
resolution: "@algolia/monitoring@npm:1.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
"@algolia/requester-browser-xhr": "npm:5.52.0"
"@algolia/requester-fetch": "npm:5.52.0"
"@algolia/requester-node-http": "npm:5.52.0"
checksum: 10c0/3d1b6f7a4eb7e06e2e1d1d09d6883cb19c98d5776c08465c435a2243fc36333619fa6335c7959d954d9c0b03b3b3521d4d0accfe637f4a651c7debf7813c8ddf
languageName: node
linkType: hard
"@algolia/recommend@npm:5.52.0":
version: 5.52.0
resolution: "@algolia/recommend@npm:5.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
"@algolia/requester-browser-xhr": "npm:5.52.0"
"@algolia/requester-fetch": "npm:5.52.0"
"@algolia/requester-node-http": "npm:5.52.0"
checksum: 10c0/ca989bb537435c3352af87fee7400f05264f32cb03244acf2a62074e97fa1e3cfa51ea78804888b69e11aa8bfc24b8c7d3776f1b80ca3c4086423e36c1c35877
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:5.52.0":
version: 5.52.0
resolution: "@algolia/requester-browser-xhr@npm:5.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
checksum: 10c0/f6a62bb3d3c527a7701147c53c3ce2c4d5a292eb37dd873fcad55acb03a8fc1b8fcc7588fdd5a0ac91e727bb9b45fe202518f586ffe2f366c8f91feff51fccf4
languageName: node
linkType: hard
"@algolia/requester-fetch@npm:5.52.0":
version: 5.52.0
resolution: "@algolia/requester-fetch@npm:5.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
checksum: 10c0/c1d6225f35ce00f933c97cff4c7a527029fd17a23eb1043c3fa49100e85bd1b7f136681e524f5a60dce844e1bdc5f65af2812f5c39b54b75b214d297b032accc
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:5.52.0":
version: 5.52.0
resolution: "@algolia/requester-node-http@npm:5.52.0"
dependencies:
"@algolia/client-common": "npm:5.52.0"
checksum: 10c0/862b42e517d1a46f472283c9487f96881c5e641afc99d3b17a90ae937916308cdd577633e1d20ce0181cf143585551c649d1b66cd582cada58f27a2aad9ef310
languageName: node
linkType: hard
"@ampproject/remapping@npm:2.3.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@angular-devkit/architect@npm:0.2200.0":
version: 0.2200.0
resolution: "@angular-devkit/architect@npm:0.2200.0"
dependencies:
"@angular-devkit/core": "npm:22.0.0"
rxjs: "npm:7.8.2"
bin:
architect: bin/cli.js
checksum: 10c0/b0b5fb1ca4ec9e8fc4eed8a75810a9c9ab654ec7d5f111e08348cac41ab51c2e5ae5090f83d89b7ecb7aa74da5b00c244cfe601ad8e41bc883a43e91ac212e37
languageName: node
linkType: hard
"@angular-devkit/architect@npm:>= 0.2200.0 < 0.2300.0":
version: 0.2200.1
resolution: "@angular-devkit/architect@npm:0.2200.1"
dependencies:
"@angular-devkit/core": "npm:22.0.1"
rxjs: "npm:7.8.2"
bin:
architect: bin/cli.js
checksum: 10c0/8da0d3d37905c563aaa3eb9f797367a58fe8e811d9b8655bd6ff996e20ffd63f48b9ab993f21c91a136206847665ca594b015a105823d803c5e97d204a6e72ec
languageName: node
linkType: hard
"@angular-devkit/core@npm:22.0.0":
version: 22.0.0
resolution: "@angular-devkit/core@npm:22.0.0"
dependencies:
ajv: "npm:8.20.0"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.3.1"
picomatch: "npm:4.0.4"
rxjs: "npm:7.8.2"
source-map: "npm:0.7.6"
peerDependencies:
chokidar: ^5.0.0
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10c0/f7115f661a29bb0fa52ed06325c1dcd5058512770c36cfc5c42e53f6f3cf9a33581da0eeb0c8f9119ae3c8fa056607b1d2434c4c9952b7ad022f8416cf1be48e
languageName: node
linkType: hard
"@angular-devkit/core@npm:22.0.1, @angular-devkit/core@npm:>= 22.0.0 < 23.0.0":
version: 22.0.1
resolution: "@angular-devkit/core@npm:22.0.1"
dependencies:
ajv: "npm:8.20.0"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.3.1"
picomatch: "npm:4.0.4"
rxjs: "npm:7.8.2"
source-map: "npm:0.7.6"
peerDependencies:
chokidar: ^5.0.0
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10c0/4fa15c0888d10857445aae2aded69ee54cc6bcb39d130f6d5904bdacedeb29c2c0c2f8be7d92dec9d46564c946e02380c6934ed43fceba2b5aab34500bdb8640
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:22.0.0":
version: 22.0.0
resolution: "@angular-devkit/schematics@npm:22.0.0"
dependencies:
"@angular-devkit/core": "npm:22.0.0"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.21"
ora: "npm:9.4.0"
rxjs: "npm:7.8.2"
checksum: 10c0/f806f209de2aedbcfae237fa636a2106483e6a95772249b94a7c4d7b4cfb37437e1a53b40872fd14862a3273c004070bc276d2b65cee2551410b36fe649bc9d5
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:>= 22.0.0 < 23.0.0":
version: 22.0.1
resolution: "@angular-devkit/schematics@npm:22.0.1"
dependencies:
"@angular-devkit/core": "npm:22.0.1"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.21"
ora: "npm:9.4.0"
rxjs: "npm:7.8.2"
checksum: 10c0/5e972915068286086e1930836cda94ca6cf6d90fbd02c229f458a8c2d272028ba3937fa56a804f7dd0a7c52d53eedba7e4ae5b01d856b1cc518119ba63894c6b
languageName: node
linkType: hard
"@angular-eslint/builder@npm:22.0.0":
version: 22.0.0
resolution: "@angular-eslint/builder@npm:22.0.0"
dependencies:
"@angular-devkit/architect": "npm:>= 0.2200.0 < 0.2300.0"
"@angular-devkit/core": "npm:>= 22.0.0 < 23.0.0"
peerDependencies:
"@angular/cli": ">= 22.0.0 < 23.0.0"
eslint: ^9.0.0 || ^10.0.0
typescript: "*"
checksum: 10c0/da5303ceaa5b224c5bf28683cb97acadacaeca41d697c73fa57850b1988bff0eef74bbe99ac0bb890101bd0b83213fc27d962cd055e543ff64e6eaf47bdeeab2
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:22.0.0":
version: 22.0.0
resolution: "@angular-eslint/bundled-angular-compiler@npm:22.0.0"
checksum: 10c0/879bfa7269ada0d498135cfd9e5eca66c1bc031a5c5cf3e68eaf3f11312660a769c2fe41a56a6e2d304ccb7c761b99af7e4c43dfd05cefdf08b8da590e51a78b
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:22.0.0":
version: 22.0.0
resolution: "@angular-eslint/eslint-plugin-template@npm:22.0.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:22.0.0"
"@angular-eslint/utils": "npm:22.0.0"
aria-query: "npm:5.3.2"
axobject-query: "npm:4.1.0"
peerDependencies:
"@angular-eslint/template-parser": 22.0.0
"@typescript-eslint/types": ^8.0.0
"@typescript-eslint/utils": ^8.0.0
eslint: ^9.0.0 || ^10.0.0
typescript: "*"
checksum: 10c0/2da98e5a30bf125fdeba968b9f583ea8694ef41272267e5ec3d42d27cd3c7a45f164918fff8e6810dbbb704e80b25fb46792ac63cca60a176f8a3e5161aff83d
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:22.0.0":
version: 22.0.0
resolution: "@angular-eslint/eslint-plugin@npm:22.0.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:22.0.0"
"@angular-eslint/utils": "npm:22.0.0"
ts-api-utils: "npm:^2.1.0"
peerDependencies:
"@typescript-eslint/utils": ^8.0.0
eslint: ^9.0.0 || ^10.0.0
typescript: "*"
checksum: 10c0/4ed793ef29a2c5acc96c9170324526e8f62aec13474ecb6a6e9c347166fe90b24457ba5d7995109ec7976ddb194bd08e4408df3256c0075f2ebf1cceb1e80ef7
languageName: node
linkType: hard
"@angular-eslint/schematics@npm:22.0.0":
version: 22.0.0
resolution: "@angular-eslint/schematics@npm:22.0.0"
dependencies:
"@angular-devkit/core": "npm:>= 22.0.0 < 23.0.0"
"@angular-devkit/schematics": "npm:>= 22.0.0 < 23.0.0"
"@angular-eslint/eslint-plugin": "npm:22.0.0"
"@angular-eslint/eslint-plugin-template": "npm:22.0.0"
ignore: "npm:7.0.5"
semver: "npm:7.8.0"
strip-json-comments: "npm:3.1.1"
peerDependencies:
"@angular/cli": ">= 22.0.0 < 23.0.0"
checksum: 10c0/e164514b1d5fdbcdf440e287e6ed1147b2c9538ec07f94382d0519b9614bc847c9ae61dc36586ca2ada58ef7e53f2e24ee2b5c28a325d8b1b17b44d98f575b9a
languageName: node
linkType: hard
"@angular-eslint/template-parser@npm:22.0.0":
version: 22.0.0
resolution: "@angular-eslint/template-parser@npm:22.0.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:22.0.0"
eslint-scope: "npm:9.1.2"
peerDependencies:
eslint: ^9.0.0 || ^10.0.0
typescript: "*"
checksum: 10c0/8b587d4d45a3ab9a9b0c7ed37e4e2d09d8c597de045ba4ded48aeac4622eafb26aed7d3ae455c6c591d9e5987de76bab0e90d8bd6bd04b1f05404eb048b94db3
languageName: node
linkType: hard
"@angular-eslint/utils@npm:22.0.0":
version: 22.0.0
resolution: "@angular-eslint/utils@npm:22.0.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:22.0.0"
peerDependencies:
"@typescript-eslint/utils": ^8.0.0
eslint: ^9.0.0 || ^10.0.0
typescript: "*"
checksum: 10c0/bcd93599dd4cc053de748675609f3cf01b117e3ccafa22442df80b0902e08881e115201448de4309a0637c6d18e05eae1576b09f82c157dc8102035ac1ebac3d
languageName: node
linkType: hard
"@angular/build@npm:22.0.0":
version: 22.0.0
resolution: "@angular/build@npm:22.0.0"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.2200.0"
"@babel/core": "npm:7.29.0"
"@babel/helper-annotate-as-pure": "npm:7.27.3"
"@babel/helper-split-export-declaration": "npm:7.24.7"
"@inquirer/confirm": "npm:6.0.12"
"@vitejs/plugin-basic-ssl": "npm:2.3.0"
beasties: "npm:0.4.2"
browserslist: "npm:^4.26.0"
esbuild: "npm:0.28.0"
https-proxy-agent: "npm:9.0.0"
jsonc-parser: "npm:3.3.1"
listr2: "npm:10.2.1"
lmdb: "npm:3.5.4"
magic-string: "npm:0.30.21"
mrmime: "npm:2.0.1"
parse5-html-rewriting-stream: "npm:8.0.1"
picomatch: "npm:4.0.4"
piscina: "npm:5.1.4"
rollup: "npm:4.60.2"
sass: "npm:1.99.0"
semver: "npm:7.7.4"
source-map-support: "npm:0.5.21"
tinyglobby: "npm:0.2.16"
vite: "npm:7.3.2"
watchpack: "npm:2.5.1"
peerDependencies:
"@angular/compiler": ^22.0.0
"@angular/compiler-cli": ^22.0.0
"@angular/core": ^22.0.0
"@angular/localize": ^22.0.0
"@angular/platform-browser": ^22.0.0
"@angular/platform-server": ^22.0.0
"@angular/service-worker": ^22.0.0
"@angular/ssr": ^22.0.0
istanbul-lib-instrument: ^6.0.0
karma: ^6.4.0
less: ^4.2.0
ng-packagr: ^22.0.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
tslib: ^2.3.0
typescript: ">=6.0 <6.1"
vitest: ^4.0.8
dependenciesMeta:
lmdb:
optional: true
peerDependenciesMeta:
"@angular/core":
optional: true
"@angular/localize":
optional: true
"@angular/platform-browser":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
"@angular/ssr":
optional: true
istanbul-lib-instrument:
optional: true
karma:
optional: true
less:
optional: true
ng-packagr:
optional: true
postcss:
optional: true
tailwindcss:
optional: true
vitest:
optional: true
checksum: 10c0/8ccfa1d838ff2c2dd269a343b8136e5cdb850685b6a2115fb39fd1834c087fec86d7b24773b59e4fe500564fb101e63edad0782cee29723d21a5b14c29a88482
languageName: node
linkType: hard
"@angular/cdk@npm:22.0.0":
version: 22.0.0
resolution: "@angular/cdk@npm:22.0.0"
dependencies:
parse5: "npm:^8.0.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^22.0.0 || ^23.0.0
"@angular/core": ^22.0.0 || ^23.0.0
"@angular/platform-browser": ^22.0.0 || ^23.0.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/67f9ee6add9be9aa8de2a8b59fb292d7ca1e97773c3b6e76f8ce7d7d38b2d038a62378755607da0b152172f8dd0aed16b149ba27f09e254c3345a10755410976
languageName: node
linkType: hard
"@angular/cli@npm:22.0.0":
version: 22.0.0
resolution: "@angular/cli@npm:22.0.0"
dependencies:
"@angular-devkit/architect": "npm:0.2200.0"
"@angular-devkit/core": "npm:22.0.0"
"@angular-devkit/schematics": "npm:22.0.0"
"@inquirer/prompts": "npm:8.4.2"
"@listr2/prompt-adapter-inquirer": "npm:4.2.3"
"@modelcontextprotocol/sdk": "npm:1.29.0"
"@schematics/angular": "npm:22.0.0"
"@yarnpkg/lockfile": "npm:1.1.0"
algoliasearch: "npm:5.52.0"
ini: "npm:6.0.0"
jsonc-parser: "npm:3.3.1"
listr2: "npm:10.2.1"
npm-package-arg: "npm:13.0.2"
pacote: "npm:21.5.0"
parse5-html-rewriting-stream: "npm:8.0.1"
semver: "npm:7.7.4"
yargs: "npm:18.0.0"
zod: "npm:4.4.2"
bin:
ng: bin/ng.js
checksum: 10c0/83d0b629414e4de1df623bf455b684e0b30250ff276e3d34837d806607c0674101d182010b74062028d7557b582b4b4b1f9d0015f81b4c801ed3209a88db2ecb
languageName: node
linkType: hard
"@angular/common@npm:22.0.0":
version: 22.0.0
resolution: "@angular/common@npm:22.0.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 22.0.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/dd615a4f197ab415fed028ba906e8f898f9937206ce943b55eac80971ab3a3ceaeda8221386cc567093301cd53cb3ad552912993f0a474782a0636dc5ec83646
languageName: node
linkType: hard
"@angular/compiler-cli@npm:22.0.0":
version: 22.0.0
resolution: "@angular/compiler-cli@npm:22.0.0"
dependencies:
"@babel/core": "npm:7.29.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
chokidar: "npm:^5.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:^18.0.0"
peerDependencies:
"@angular/compiler": 22.0.0
typescript: ">=6.0 <6.1"
peerDependenciesMeta:
typescript:
optional: true
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
checksum: 10c0/8489db146aadacc93456c9f0233680a6ce5e587a5bac12e8dc5fd3d45c848d62e141810063139aa4bfd1cba46d467e8ce6f1daccd9fa753dd9a77603174da826
languageName: node
linkType: hard
"@angular/compiler@npm:22.0.0":
version: 22.0.0
resolution: "@angular/compiler@npm:22.0.0"
dependencies:
tslib: "npm:^2.3.0"
checksum: 10c0/1bbb5e8691ccaba66abff0e7ef0aa226f44fc1e03b0d967ba4541fd6deb94924a4794e0c3c0358bb6324a494a54fd1692645827b223f76438678068a9690b228
languageName: node
linkType: hard
"@angular/core@npm:22.0.0":
version: 22.0.0
resolution: "@angular/core@npm:22.0.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/compiler": 22.0.0
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0 || ~0.16.0
peerDependenciesMeta:
"@angular/compiler":
optional: true
zone.js:
optional: true
checksum: 10c0/0e8bf7ff2491f19e75dfb7166a541ca2a3891182ac2fa35f3e99b52fa041c9751dca15249255ed04115e1d39a472857f9bd68b08ba3031db0156c643c795e748
languageName: node
linkType: hard
"@angular/forms@npm:22.0.0":
version: 22.0.0
resolution: "@angular/forms@npm:22.0.0"
dependencies:
"@standard-schema/spec": "npm:^1.0.0"
tslib: "npm:^2.3.0"
zod: "npm:^4.0.10"
peerDependencies:
"@angular/common": 22.0.0
"@angular/core": 22.0.0
"@angular/platform-browser": 22.0.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/33127bffde94c9f74c9dc5516e217908dc9d55c0d4aa55f6c941ab7546ea6e26a2565259bb5356849183c071233a466e790c803071f95b5d010ba06551c5d14b
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:22.0.0":
version: 22.0.0
resolution: "@angular/platform-browser-dynamic@npm:22.0.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 22.0.0
"@angular/compiler": 22.0.0
"@angular/core": 22.0.0
"@angular/platform-browser": 22.0.0
checksum: 10c0/2b9061ab0a75652967a97467d87fc0e06ca5cfefca5d17c68a65affe084f68cfce80456bf73a3952693e3a93cc34974d7ba37a9825e16e4c3e39fcbb0cf48d53
languageName: node
linkType: hard
"@angular/platform-browser@npm:22.0.0":
version: 22.0.0
resolution: "@angular/platform-browser@npm:22.0.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 22.0.0
"@angular/common": 22.0.0
"@angular/core": 22.0.0
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 10c0/ece1edec45c8d188e999603d07ae8d36b29718be4cec3071f13711b2fa4ed75762a8d48a093da05e04f9fec66ead09817e156e5fe9a4388d80be362555963d5b
languageName: node
linkType: hard
"@angular/router@npm:22.0.0":
version: 22.0.0
resolution: "@angular/router@npm:22.0.0"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 22.0.0
"@angular/core": 22.0.0
"@angular/platform-browser": 22.0.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/571b19b1034615d98180072c3b6b39addcdf1107cfc7da0c35cc3d82cd0a3bf88329c96a572ffc566b6160c304ce4b874f82c61a087156d534cbc0da5ef14788
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.29.0, @babel/code-frame@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/code-frame@npm:7.29.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.29.7"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/169fc2080169a40c1760155eaaaf739bcb882df0bec76a83adbda5493645bc17270a3434b8848c494b1933e96fe1d147370001e3cda09a39f43ae30f08ef2069
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/compat-data@npm:7.29.7"
checksum: 10c0/47913f05e08a45a1c9df38c02b4b49e391005085b489432647a1abe112e5d9c75e3be8ea5972b7f6da4ec5d1339922ceb9ea02b8a25d4ed1cb8636e5261f344e
languageName: node
linkType: hard
"@babel/core@npm:7.29.0":
version: 7.29.0
resolution: "@babel/core@npm:7.29.0"
dependencies:
"@babel/code-frame": "npm:^7.29.0"
"@babel/generator": "npm:^7.29.0"
"@babel/helper-compilation-targets": "npm:^7.28.6"
"@babel/helper-module-transforms": "npm:^7.28.6"
"@babel/helpers": "npm:^7.28.6"
"@babel/parser": "npm:^7.29.0"
"@babel/template": "npm:^7.28.6"
"@babel/traverse": "npm:^7.29.0"
"@babel/types": "npm:^7.29.0"
"@jridgewell/remapping": "npm:^2.3.5"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10c0/5127d2e8e842ae409e11bcbb5c2dff9874abf5415e8026925af7308e903f4f43397341467a130490d1a39884f461bc2b67f3063bce0be44340db89687fd852aa
languageName: node
linkType: hard
"@babel/generator@npm:^7.29.0, @babel/generator@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/generator@npm:7.29.7"
dependencies:
"@babel/parser": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
checksum: 10c0/9bf72b01b5bd0ea5b1288a0e37dbd360bff2f2b1ce73342c0d40fb3db2ec3dc004ada5ffa925c5e12939a416eed59e600d562b8ecd938ce0d27dfd0eb6c6c2b7
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:7.27.3":
version: 7.27.3
resolution: "@babel/helper-annotate-as-pure@npm:7.27.3"
dependencies:
"@babel/types": "npm:^7.27.3"
checksum: 10c0/94996ce0a05b7229f956033e6dcd69393db2b0886d0db6aff41e704390402b8cdcca11f61449cb4f86cfd9e61b5ad3a73e4fa661eeed7846b125bd1c33dbc633
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.28.6":
version: 7.29.7
resolution: "@babel/helper-compilation-targets@npm:7.29.7"
dependencies:
"@babel/compat-data": "npm:^7.29.7"
"@babel/helper-validator-option": "npm:^7.29.7"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10c0/4c15fd4c69a0a7047799a28a88460c19cede0a0ee8af994ea169114986f4af48b92c7393a4a3fee0456c11a656eece3448a6ed06354453d6c27cccf17195453b
languageName: node
linkType: hard
"@babel/helper-globals@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-globals@npm:7.29.7"
checksum: 10c0/f38417c40b1129a1b2b519ca961b9040c8827d1444fd74068702286b91b77089431dc76b6b9d5c1496e5da2a4f3ad329c6946e688ba3fa0d1d0b3d2b4f34f36a
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-module-imports@npm:7.29.7"
dependencies:
"@babel/traverse": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10c0/6adf60d97356027413342a092f818d9678c4f5caff716a33e3284b5ae14e47a9e88059d421dde4ee4894691260039a12602c0e7becadc175602194b40dfa345d
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.28.6":
version: 7.29.7
resolution: "@babel/helper-module-transforms@npm:7.29.7"
dependencies:
"@babel/helper-module-imports": "npm:^7.29.7"
"@babel/helper-validator-identifier": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/ee5a2172c24a42be696836f4b0d947489c9729d8adf5821885cf77d1ad5333e3c447368e9a71f67df1099570490553dccf9f888ef0a92a48aa63cb086bd8c7e1
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:7.24.7":
version: 7.24.7
resolution: "@babel/helper-split-export-declaration@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
checksum: 10c0/0254577d7086bf09b01bbde98f731d4fcf4b7c3fa9634fdb87929801307c1f6202a1352e3faa5492450fa8da4420542d44de604daf540704ff349594a78184f6
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-string-parser@npm:7.29.7"
checksum: 10c0/194bc0f1716e396d5ffde56ad6119745fb9557662c98611590e5e454906783a4ccb21ce93056b8eb69a4909044834e45d96e50ac695bbe9e3221648fe033c06c
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-validator-identifier@npm:7.29.7"
checksum: 10c0/4795354e7ae0dcafa72de1cd04ec51252dc1498517170beaf019e03effc5b7bf13c6b21a3949a77e07b8125be7f106ed1131350d8ebd4566ae874094a726d62b
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-validator-option@npm:7.29.7"
checksum: 10c0/d2a06c6d0ac40ba4a2f219fc2cab249c7a94bacdb2686273b7f9598571c908809b48468ff588915a346e6cc7296f60b581023d1d498b747fed06f779d335c2cc
languageName: node
linkType: hard
"@babel/helpers@npm:^7.28.6":
version: 7.29.7
resolution: "@babel/helpers@npm:7.29.7"
dependencies:
"@babel/template": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10c0/218e8d10953647c9f44775f5a022b227a182674853b5ea8631889deb7e1a3e4bc870388aaecf59bb8bd92a87f9a96220ed3f70a35bffec6bcf9169ecb67891ac
languageName: node
linkType: hard
"@babel/parser@npm:^7.29.0, @babel/parser@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/parser@npm:7.29.7"
dependencies:
"@babel/types": "npm:^7.29.7"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/65133038f80b54a714d6027cb77cee3f9a6b5c4c6842ce674301e13947cbcbfa8055e63acaf1b84c085d34226a14425b2c2b97b829e0e226d2e8f1299942a51d
languageName: node
linkType: hard
"@babel/template@npm:^7.28.6, @babel/template@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/template@npm:7.29.7"
dependencies:
"@babel/code-frame": "npm:^7.29.7"
"@babel/parser": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10c0/8bb7f900dcab0e9e1c5ffbc33ca10e0d26b7b2e2ca804becb73ee771b9c4ed6e2908a4ae4a14c08560febb45d2b6b9a173955e42ad404d05f8b04840a14d9c58
languageName: node
linkType: hard
"@babel/traverse@npm:^7.29.0, @babel/traverse@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/traverse@npm:7.29.7"
dependencies:
"@babel/code-frame": "npm:^7.29.7"
"@babel/generator": "npm:^7.29.7"
"@babel/helper-globals": "npm:^7.29.7"
"@babel/parser": "npm:^7.29.7"
"@babel/template": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
debug: "npm:^4.3.1"
checksum: 10c0/e256a1fbdb956555b76f3c285b1e453f6bedec8b3afb61751d99d933efd11c7d79caf5ddf2493570058a9f7deaa1b48324380d7c1aa1443fd9508becbf56331a
languageName: node
linkType: hard
"@babel/types@npm:^7.24.7, @babel/types@npm:^7.27.3, @babel/types@npm:^7.29.0, @babel/types@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/types@npm:7.29.7"
dependencies:
"@babel/helper-string-parser": "npm:^7.29.7"
"@babel/helper-validator-identifier": "npm:^7.29.7"
checksum: 10c0/b6623994c69717fa27294f5fa46d59140338e2d86c6c1c13085c84ef7d53086ee357fbf4fe9abe3dd3da75734dc77c4c0df2f90fb29e667558bb3b3fb705e88f
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/aix-ppc64@npm:0.27.7"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/aix-ppc64@npm:0.28.0"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/android-arm64@npm:0.27.7"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/android-arm64@npm:0.28.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/android-arm@npm:0.27.7"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/android-arm@npm:0.28.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/android-x64@npm:0.27.7"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/android-x64@npm:0.28.0"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/darwin-arm64@npm:0.27.7"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/darwin-arm64@npm:0.28.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/darwin-x64@npm:0.27.7"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/darwin-x64@npm:0.28.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/freebsd-arm64@npm:0.27.7"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/freebsd-arm64@npm:0.28.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/freebsd-x64@npm:0.27.7"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/freebsd-x64@npm:0.28.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-arm64@npm:0.27.7"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-arm64@npm:0.28.0"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-arm@npm:0.27.7"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-arm@npm:0.28.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-ia32@npm:0.27.7"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-ia32@npm:0.28.0"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-loong64@npm:0.27.7"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-loong64@npm:0.28.0"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-mips64el@npm:0.27.7"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-mips64el@npm:0.28.0"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-ppc64@npm:0.27.7"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-ppc64@npm:0.28.0"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.27.7":
version: 0.27.7
resolution: "@esbuild/linux-riscv64@npm:0.27.7"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard