-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
7842 lines (7072 loc) · 266 KB
/
yarn.lock
File metadata and controls
7842 lines (7072 loc) · 266 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
"@acemir/cssom@npm:^0.9.31":
version: 0.9.31
resolution: "@acemir/cssom@npm:0.9.31"
checksum: 10c0/cbfff98812642104ec3b37de1ad3a53f216ddc437e7b9276a23f46f2453844ea3c3f46c200bc4656a2f747fb26567560b3cc5183d549d119a758926551b5f566
languageName: node
linkType: hard
"@adobe/css-tools@npm:^4.4.0":
version: 4.4.4
resolution: "@adobe/css-tools@npm:4.4.4"
checksum: 10c0/8f3e6cfaa5e6286e6f05de01d91d060425be2ebaef490881f5fe6da8bbdb336835c5d373ea337b0c3b0a1af4be048ba18780f0f6021d30809b4545922a7e13d9
languageName: node
linkType: hard
"@algolia/abtesting@npm:1.14.1":
version: 1.14.1
resolution: "@algolia/abtesting@npm:1.14.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
"@algolia/requester-browser-xhr": "npm:5.48.1"
"@algolia/requester-fetch": "npm:5.48.1"
"@algolia/requester-node-http": "npm:5.48.1"
checksum: 10c0/81c1f48fee026e62043924496eff0d60f499787699aa48d0013fb4b24c06091c863b5e5ecde00f26a6eb2e5cd587d386d9e1d384ee1f21eecec86788d552ac0d
languageName: node
linkType: hard
"@algolia/client-abtesting@npm:5.48.1":
version: 5.48.1
resolution: "@algolia/client-abtesting@npm:5.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
"@algolia/requester-browser-xhr": "npm:5.48.1"
"@algolia/requester-fetch": "npm:5.48.1"
"@algolia/requester-node-http": "npm:5.48.1"
checksum: 10c0/380d527f4ec686fab95221673bea8b6667b6a3927aaec8d7f4623f464238409d795839a3cdf5e72a7784532f8039099a727c87ef858443c445107423d01308f8
languageName: node
linkType: hard
"@algolia/client-analytics@npm:5.48.1":
version: 5.48.1
resolution: "@algolia/client-analytics@npm:5.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
"@algolia/requester-browser-xhr": "npm:5.48.1"
"@algolia/requester-fetch": "npm:5.48.1"
"@algolia/requester-node-http": "npm:5.48.1"
checksum: 10c0/7249bb679bb891e62d8e2add29c9a1fbdf233af1ae3ac6c350d264096cd32e65c65d0eac2e76101413be6fb6b0c94bae34d04918cf785c645b637b1dd95334d1
languageName: node
linkType: hard
"@algolia/client-common@npm:5.48.1":
version: 5.48.1
resolution: "@algolia/client-common@npm:5.48.1"
checksum: 10c0/001a9614a423d45cbc8792affa9e1008e6eee98fa6abf701495d09ffc98d103cbd4f0591144292e87f129f9d4f0250bd23b9a514c8a0e0f754631ac2f1ed8079
languageName: node
linkType: hard
"@algolia/client-insights@npm:5.48.1":
version: 5.48.1
resolution: "@algolia/client-insights@npm:5.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
"@algolia/requester-browser-xhr": "npm:5.48.1"
"@algolia/requester-fetch": "npm:5.48.1"
"@algolia/requester-node-http": "npm:5.48.1"
checksum: 10c0/52a91a8f75314f849032bfd8107e34ad0a2998f9e15093443f21f78f9f0adeaa667f4c38311424aa4d042aa97ee71179ca87304ac83a4f865980d26d977a9ac1
languageName: node
linkType: hard
"@algolia/client-personalization@npm:5.48.1":
version: 5.48.1
resolution: "@algolia/client-personalization@npm:5.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
"@algolia/requester-browser-xhr": "npm:5.48.1"
"@algolia/requester-fetch": "npm:5.48.1"
"@algolia/requester-node-http": "npm:5.48.1"
checksum: 10c0/09205ad8fbf0d1c473d567f6861b615934b12453ad0aecaf28efdf64d60a3468dc584136a19d84bd345cc58d66aac1104c9f78a9005a17227400beb860fd2976
languageName: node
linkType: hard
"@algolia/client-query-suggestions@npm:5.48.1":
version: 5.48.1
resolution: "@algolia/client-query-suggestions@npm:5.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
"@algolia/requester-browser-xhr": "npm:5.48.1"
"@algolia/requester-fetch": "npm:5.48.1"
"@algolia/requester-node-http": "npm:5.48.1"
checksum: 10c0/072a18a39a6eab30b0974a4fffe7e5265d91e274d99ea919219dd6bcf6490a989e6649993bb569d37646368bfe46c309060de52b56ea0fd9f582f2bfba7090e9
languageName: node
linkType: hard
"@algolia/client-search@npm:5.48.1":
version: 5.48.1
resolution: "@algolia/client-search@npm:5.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
"@algolia/requester-browser-xhr": "npm:5.48.1"
"@algolia/requester-fetch": "npm:5.48.1"
"@algolia/requester-node-http": "npm:5.48.1"
checksum: 10c0/7a9e5054ee490e7d9224b5f87044a72a95ca2eda2982342b4ed2ca2e36a4bcc4f4c3b02c56a96679483545217c3b0e67a75a510a2fcf12e48ff86e51c7b1863b
languageName: node
linkType: hard
"@algolia/ingestion@npm:1.48.1":
version: 1.48.1
resolution: "@algolia/ingestion@npm:1.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
"@algolia/requester-browser-xhr": "npm:5.48.1"
"@algolia/requester-fetch": "npm:5.48.1"
"@algolia/requester-node-http": "npm:5.48.1"
checksum: 10c0/1397ed4a5b6ebf1306defbd1d18a78aa8d9ed23cb566c5da9c14e955859df0497e2bb0b16b7ea177e654a20fe08d148c58bdb3405891739e63a84362d0764218
languageName: node
linkType: hard
"@algolia/monitoring@npm:1.48.1":
version: 1.48.1
resolution: "@algolia/monitoring@npm:1.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
"@algolia/requester-browser-xhr": "npm:5.48.1"
"@algolia/requester-fetch": "npm:5.48.1"
"@algolia/requester-node-http": "npm:5.48.1"
checksum: 10c0/8ba1306003408c6913349bf019b9e7736610195d00ee6d55b67034416b8cb329c4791d508a24a805ed2ae8bd099528ae1abb3d0f9ea28bcb39039eb3d6df80a2
languageName: node
linkType: hard
"@algolia/recommend@npm:5.48.1":
version: 5.48.1
resolution: "@algolia/recommend@npm:5.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
"@algolia/requester-browser-xhr": "npm:5.48.1"
"@algolia/requester-fetch": "npm:5.48.1"
"@algolia/requester-node-http": "npm:5.48.1"
checksum: 10c0/d00e362dcd7b39bad81666e0e35fb40c1032c922d3ca0a73a91fdd05549810ed11baa523fcd2508b5f7447e59724f981775e795f8a88abca6194b929617056f8
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:5.48.1":
version: 5.48.1
resolution: "@algolia/requester-browser-xhr@npm:5.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
checksum: 10c0/9428aa0bcf52ea008e2b88ad63b2dc8e049f8656b50a7300af3515d06e50c9b00d54e443e86223c80967041b3cc6acb7016b666f19c73888f5c9d582c2764a70
languageName: node
linkType: hard
"@algolia/requester-fetch@npm:5.48.1":
version: 5.48.1
resolution: "@algolia/requester-fetch@npm:5.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
checksum: 10c0/82694d0f0f6193fcc694381e27117845b85c77ac5dd86c2f41320e96f59d41adc66fe85a10fb751470d6eb2a5d3b0fc150e330e295451670a3c081cae796470e
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:5.48.1":
version: 5.48.1
resolution: "@algolia/requester-node-http@npm:5.48.1"
dependencies:
"@algolia/client-common": "npm:5.48.1"
checksum: 10c0/22daffd2e8452f9d5d16f5210f28e0f989c28d35d107e95f4644b6960ebd6bd98b542c5d86f44ba61eba298e35d38f87e1747ffd43823ee6d81edc7fcdd85c51
languageName: node
linkType: hard
"@aminekun90/ngx-toast@workspace:projects/ngx-toast":
version: 0.0.0-use.local
resolution: "@aminekun90/ngx-toast@workspace:projects/ngx-toast"
dependencies:
"@angular/common": "npm:^21.2.2"
"@angular/core": "npm:^21.2.2"
"@fortawesome/angular-fontawesome": "npm:^4.0.0"
"@fortawesome/fontawesome-svg-core": "npm:^7.2.0"
"@fortawesome/free-solid-svg-icons": "npm:^7.2.0"
rxjs: "npm:^7.8.0"
peerDependencies:
"@angular/common": ^21.2.0
"@angular/core": ^21.2.0
rxjs: ^7.8.0
languageName: unknown
linkType: soft
"@aminekun90/react-toast@workspace:*, @aminekun90/react-toast@workspace:projects/react-toast":
version: 0.0.0-use.local
resolution: "@aminekun90/react-toast@workspace:projects/react-toast"
dependencies:
"@fortawesome/fontawesome-svg-core": "npm:^7.2.0"
"@fortawesome/free-solid-svg-icons": "npm:^7.2.0"
"@fortawesome/react-fontawesome": "npm:^3.2.0"
"@testing-library/dom": "npm:^10.4.1"
"@testing-library/jest-dom": "npm:^6.9.1"
"@testing-library/react": "npm:^16.3.2"
"@testing-library/user-event": "npm:^14.6.1"
"@types/jsdom": "npm:^28.0.0"
"@types/react": "npm:^19.2.14"
"@types/react-dom": "npm:^19.2.3"
"@vitejs/plugin-react": "npm:^5.1.4"
jsdom: "npm:^28.1.0"
react: "npm:^19.2.4"
react-dom: "npm:^19.2.4"
typescript: "npm:5.9.3"
vite: "npm:^7.3.1"
vite-plugin-dts: "npm:^4.5.4"
vite-plugin-static-copy: "npm:^3.2.0"
vitest: "npm:^4.0.18"
peerDependencies:
react: ^18.0.0 || ^19.0.0
react-dom: ^18.0.0 || ^19.0.0
languageName: unknown
linkType: soft
"@ampproject/remapping@npm:2.3.0, @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.2102.1":
version: 0.2102.1
resolution: "@angular-devkit/architect@npm:0.2102.1"
dependencies:
"@angular-devkit/core": "npm:21.2.1"
rxjs: "npm:7.8.2"
bin:
architect: bin/cli.js
checksum: 10c0/71cd23c3a5b3d0688f2f8f0c64d3278506a5629a6923bbb64c95fe5dd5378367b7b77b11c587d627f93948477e43420d28eadc33cd4065b6928fc07695f549d5
languageName: node
linkType: hard
"@angular-devkit/core@npm:21.2.1":
version: 21.2.1
resolution: "@angular-devkit/core@npm:21.2.1"
dependencies:
ajv: "npm:8.18.0"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.3.1"
picomatch: "npm:4.0.3"
rxjs: "npm:7.8.2"
source-map: "npm:0.7.6"
peerDependencies:
chokidar: ^5.0.0
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10c0/efa2b4fc86aeccc1b05e2e65c44a1ccab1e3fb277c93b4ac141b928f2b6fdf0205f2f2e97477bd2423c53b43e22518cf8f609232266845df4957b74ec7bed7db
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:21.2.1":
version: 21.2.1
resolution: "@angular-devkit/schematics@npm:21.2.1"
dependencies:
"@angular-devkit/core": "npm:21.2.1"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.21"
ora: "npm:9.3.0"
rxjs: "npm:7.8.2"
checksum: 10c0/8f9c3e830e12f8e84d3b813b8dcb1182d3fac807d2132ef91b2ae6771caf4899fcca46170a28647f5ed56e238d7faf4817c2f7d43e737a5bc159df93569c56aa
languageName: node
linkType: hard
"@angular/build@npm:^21.2.1":
version: 21.2.1
resolution: "@angular/build@npm:21.2.1"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.2102.1"
"@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:5.1.21"
"@vitejs/plugin-basic-ssl": "npm:2.1.4"
beasties: "npm:0.4.1"
browserslist: "npm:^4.26.0"
esbuild: "npm:0.27.3"
https-proxy-agent: "npm:7.0.6"
istanbul-lib-instrument: "npm:6.0.3"
jsonc-parser: "npm:3.3.1"
listr2: "npm:9.0.5"
lmdb: "npm:3.5.1"
magic-string: "npm:0.30.21"
mrmime: "npm:2.0.1"
parse5-html-rewriting-stream: "npm:8.0.0"
picomatch: "npm:4.0.3"
piscina: "npm:5.1.4"
rolldown: "npm:1.0.0-rc.4"
sass: "npm:1.97.3"
semver: "npm:7.7.4"
source-map-support: "npm:0.5.21"
tinyglobby: "npm:0.2.15"
undici: "npm:7.22.0"
vite: "npm:7.3.1"
watchpack: "npm:2.5.1"
peerDependencies:
"@angular/compiler": ^21.0.0
"@angular/compiler-cli": ^21.0.0
"@angular/core": ^21.0.0
"@angular/localize": ^21.0.0
"@angular/platform-browser": ^21.0.0
"@angular/platform-server": ^21.0.0
"@angular/service-worker": ^21.0.0
"@angular/ssr": ^21.2.1
karma: ^6.4.0
less: ^4.2.0
ng-packagr: ^21.0.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
tslib: ^2.3.0
typescript: ">=5.9 <6.0"
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
karma:
optional: true
less:
optional: true
ng-packagr:
optional: true
postcss:
optional: true
tailwindcss:
optional: true
vitest:
optional: true
checksum: 10c0/31caac24f9fa670110f6393c75421e717058461d88c5bcb1bd6304f3523fc4c96db09a53262181cc1726846f71a922b126865ddd988f531e43c0640176581bed
languageName: node
linkType: hard
"@angular/cli@npm:^21.2.1":
version: 21.2.1
resolution: "@angular/cli@npm:21.2.1"
dependencies:
"@angular-devkit/architect": "npm:0.2102.1"
"@angular-devkit/core": "npm:21.2.1"
"@angular-devkit/schematics": "npm:21.2.1"
"@inquirer/prompts": "npm:7.10.1"
"@listr2/prompt-adapter-inquirer": "npm:3.0.5"
"@modelcontextprotocol/sdk": "npm:1.26.0"
"@schematics/angular": "npm:21.2.1"
"@yarnpkg/lockfile": "npm:1.1.0"
algoliasearch: "npm:5.48.1"
ini: "npm:6.0.0"
jsonc-parser: "npm:3.3.1"
listr2: "npm:9.0.5"
npm-package-arg: "npm:13.0.2"
pacote: "npm:21.3.1"
parse5-html-rewriting-stream: "npm:8.0.0"
semver: "npm:7.7.4"
yargs: "npm:18.0.0"
zod: "npm:4.3.6"
bin:
ng: bin/ng.js
checksum: 10c0/ee01acd41f883c74ae73032b12b87b095e921edbb48fe741150f60bbc06576ba8d8db1fc9c761b5c499973d9f87937fcbc9943655115d7fc9ff003dd67c235fc
languageName: node
linkType: hard
"@angular/common@npm:^21.2.2":
version: 21.2.2
resolution: "@angular/common@npm:21.2.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 21.2.2
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/a3a0ca600421baf7526431f203e9e57ab6a88666ce55ca630838e85561d569e4a1a5d1cdade0693692ccf462dce69085e590d9662e32d9fdc513694c6abeab87
languageName: node
linkType: hard
"@angular/compiler-cli@npm:^21.2.2":
version: 21.2.2
resolution: "@angular/compiler-cli@npm:21.2.2"
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": 21.2.2
typescript: ">=5.9 <6.1"
peerDependenciesMeta:
typescript:
optional: true
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
checksum: 10c0/8d1294087c9e0651ecdcab3ac7955a650e7ab7d197d15b74461a3f9b7304e9f3e359190b2a3124a58cd21a1597fc01fc7b379bd44e194cd5c73d933d813415a5
languageName: node
linkType: hard
"@angular/compiler@npm:^21.2.2":
version: 21.2.2
resolution: "@angular/compiler@npm:21.2.2"
dependencies:
tslib: "npm:^2.3.0"
checksum: 10c0/aa411e0a5ddb18fc54b91d2c49f794f9ec6a4c2438044289c8c30c9d5b0eb875ebba93171ce2f25159f443907e636c511a8eff351ed2b689b8097ab78b15fb49
languageName: node
linkType: hard
"@angular/core@npm:^21.2.2":
version: 21.2.2
resolution: "@angular/core@npm:21.2.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/compiler": 21.2.2
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/179a90489c76dc76316887e3cbd029c015cd5ae6df7a0f08cd17a598d88fd95794e573d57ecd3cea66430d2eea4d2aa15edf8b75d92568e64ecac5c41743bc6e
languageName: node
linkType: hard
"@angular/forms@npm:^21.2.2":
version: 21.2.2
resolution: "@angular/forms@npm:21.2.2"
dependencies:
"@standard-schema/spec": "npm:^1.0.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 21.2.2
"@angular/core": 21.2.2
"@angular/platform-browser": 21.2.2
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/ed7ebaf102f7c2dd326c1b5098b8dc411996055da11f735f3dcde756481139051dcf3e8d74cd57d59343516d5e1827617688eb3d76848660ffe02f9035e0fbff
languageName: node
linkType: hard
"@angular/platform-browser@npm:^21.2.2":
version: 21.2.2
resolution: "@angular/platform-browser@npm:21.2.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 21.2.2
"@angular/common": 21.2.2
"@angular/core": 21.2.2
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 10c0/87fbb04b3c0d46bed281ec46b5d01496b40cf1ec3367944f0c967dac81b4b9723dd243574ae36253ff84b20b9a7fd1093494237261f09f2b45fa7a7fba79a985
languageName: node
linkType: hard
"@angular/router@npm:^21.2.2":
version: 21.2.2
resolution: "@angular/router@npm:21.2.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 21.2.2
"@angular/core": 21.2.2
"@angular/platform-browser": 21.2.2
rxjs: ^6.5.3 || ^7.4.0
checksum: 10c0/ab0142a9e8e66798dcaca4c2cf841e51e57fc200e10b6df4d62e29ce934ace09ac0765afefce47e13b25db30d299f379cf5916e64af9076348385b6d6e0e5e10
languageName: node
linkType: hard
"@asamuzakjp/css-color@npm:^5.0.1":
version: 5.0.1
resolution: "@asamuzakjp/css-color@npm:5.0.1"
dependencies:
"@csstools/css-calc": "npm:^3.1.1"
"@csstools/css-color-parser": "npm:^4.0.2"
"@csstools/css-parser-algorithms": "npm:^4.0.0"
"@csstools/css-tokenizer": "npm:^4.0.0"
lru-cache: "npm:^11.2.6"
checksum: 10c0/3e8d74a3b7f3005a325cb8e7f3da1aa32aeac4cd9ce387826dc25b16eaab4dc0e4a6faded8ccc1895959141f4a4a70e8bc38723347b89667b7b224990d16683c
languageName: node
linkType: hard
"@asamuzakjp/dom-selector@npm:^6.8.1":
version: 6.8.1
resolution: "@asamuzakjp/dom-selector@npm:6.8.1"
dependencies:
"@asamuzakjp/nwsapi": "npm:^2.3.9"
bidi-js: "npm:^1.0.3"
css-tree: "npm:^3.1.0"
is-potential-custom-element-name: "npm:^1.0.1"
lru-cache: "npm:^11.2.6"
checksum: 10c0/635de2c3b11971c07e2d491fd2833d2499bafbab05b616f5d38041031718879c404456644f60c45e9ba4ca2423e5bb48bf3c46179b0c58a0ea68eaae8c61e85f
languageName: node
linkType: hard
"@asamuzakjp/nwsapi@npm:^2.3.9":
version: 2.3.9
resolution: "@asamuzakjp/nwsapi@npm:2.3.9"
checksum: 10c0/869b81382e775499c96c45c6dbe0d0766a6da04bcf0abb79f5333535c4e19946851acaa43398f896e2ecc5a1de9cf3db7cf8c4b1afac1ee3d15e21584546d74d
languageName: node
linkType: hard
"@ast-grep/napi-darwin-arm64@npm:0.36.3":
version: 0.36.3
resolution: "@ast-grep/napi-darwin-arm64@npm:0.36.3"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@ast-grep/napi-darwin-x64@npm:0.36.3":
version: 0.36.3
resolution: "@ast-grep/napi-darwin-x64@npm:0.36.3"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@ast-grep/napi-linux-arm64-gnu@npm:0.36.3":
version: 0.36.3
resolution: "@ast-grep/napi-linux-arm64-gnu@npm:0.36.3"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@ast-grep/napi-linux-arm64-musl@npm:0.36.3":
version: 0.36.3
resolution: "@ast-grep/napi-linux-arm64-musl@npm:0.36.3"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@ast-grep/napi-linux-x64-gnu@npm:0.36.3":
version: 0.36.3
resolution: "@ast-grep/napi-linux-x64-gnu@npm:0.36.3"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@ast-grep/napi-linux-x64-musl@npm:0.36.3":
version: 0.36.3
resolution: "@ast-grep/napi-linux-x64-musl@npm:0.36.3"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@ast-grep/napi-win32-arm64-msvc@npm:0.36.3":
version: 0.36.3
resolution: "@ast-grep/napi-win32-arm64-msvc@npm:0.36.3"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@ast-grep/napi-win32-ia32-msvc@npm:0.36.3":
version: 0.36.3
resolution: "@ast-grep/napi-win32-ia32-msvc@npm:0.36.3"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@ast-grep/napi-win32-x64-msvc@npm:0.36.3":
version: 0.36.3
resolution: "@ast-grep/napi-win32-x64-msvc@npm:0.36.3"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@ast-grep/napi@npm:^0.36.2":
version: 0.36.3
resolution: "@ast-grep/napi@npm:0.36.3"
dependencies:
"@ast-grep/napi-darwin-arm64": "npm:0.36.3"
"@ast-grep/napi-darwin-x64": "npm:0.36.3"
"@ast-grep/napi-linux-arm64-gnu": "npm:0.36.3"
"@ast-grep/napi-linux-arm64-musl": "npm:0.36.3"
"@ast-grep/napi-linux-x64-gnu": "npm:0.36.3"
"@ast-grep/napi-linux-x64-musl": "npm:0.36.3"
"@ast-grep/napi-win32-arm64-msvc": "npm:0.36.3"
"@ast-grep/napi-win32-ia32-msvc": "npm:0.36.3"
"@ast-grep/napi-win32-x64-msvc": "npm:0.36.3"
dependenciesMeta:
"@ast-grep/napi-darwin-arm64":
optional: true
"@ast-grep/napi-darwin-x64":
optional: true
"@ast-grep/napi-linux-arm64-gnu":
optional: true
"@ast-grep/napi-linux-arm64-musl":
optional: true
"@ast-grep/napi-linux-x64-gnu":
optional: true
"@ast-grep/napi-linux-x64-musl":
optional: true
"@ast-grep/napi-win32-arm64-msvc":
optional: true
"@ast-grep/napi-win32-ia32-msvc":
optional: true
"@ast-grep/napi-win32-x64-msvc":
optional: true
checksum: 10c0/83bcb45b685630df1d172f0ff8e23745e8ea970100defd4583efab14bad56f08eed640528f660af48e1f9d44733ae946c374a0439c1800069c7401836a32d308
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.27.1, @babel/code-frame@npm:^7.28.6, @babel/code-frame@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/code-frame@npm:7.29.0"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.28.5"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/d34cc504e7765dfb576a663d97067afb614525806b5cad1a5cc1a7183b916fec8ff57fa233585e3926fd5a9e6b31aae6df91aa81ae9775fb7a28f658d3346f0d
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.28.6":
version: 7.29.0
resolution: "@babel/compat-data@npm:7.29.0"
checksum: 10c0/08f348554989d23aa801bf1405aa34b15e841c0d52d79da7e524285c77a5f9d298e70e11d91cc578d8e2c9542efc586d50c5f5cf8e1915b254a9dcf786913a94
languageName: node
linkType: hard
"@babel/core@npm:7.29.0, @babel/core@npm:^7.23.9, @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":
version: 7.29.1
resolution: "@babel/generator@npm:7.29.1"
dependencies:
"@babel/parser": "npm:^7.29.0"
"@babel/types": "npm:^7.29.0"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
checksum: 10c0/349086e6876258ef3fb2823030fee0f6c0eb9c3ebe35fc572e16997f8c030d765f636ddc6299edae63e760ea6658f8ee9a2edfa6d6b24c9a80c917916b973551
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.28.6
resolution: "@babel/helper-compilation-targets@npm:7.28.6"
dependencies:
"@babel/compat-data": "npm:^7.28.6"
"@babel/helper-validator-option": "npm:^7.27.1"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10c0/3fcdf3b1b857a1578e99d20508859dbd3f22f3c87b8a0f3dc540627b4be539bae7f6e61e49d931542fe5b557545347272bbdacd7f58a5c77025a18b745593a50
languageName: node
linkType: hard
"@babel/helper-globals@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/helper-globals@npm:7.28.0"
checksum: 10c0/5a0cd0c0e8c764b5f27f2095e4243e8af6fa145daea2b41b53c0c1414fe6ff139e3640f4e2207ae2b3d2153a1abd346f901c26c290ee7cb3881dd922d4ee9232
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-module-imports@npm:7.28.6"
dependencies:
"@babel/traverse": "npm:^7.28.6"
"@babel/types": "npm:^7.28.6"
checksum: 10c0/b49d8d8f204d9dbfd5ac70c54e533e5269afb3cea966a9d976722b13e9922cc773a653405f53c89acb247d5aebdae4681d631a3ae3df77ec046b58da76eda2ac
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-module-transforms@npm:7.28.6"
dependencies:
"@babel/helper-module-imports": "npm:^7.28.6"
"@babel/helper-validator-identifier": "npm:^7.28.5"
"@babel/traverse": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/6f03e14fc30b287ce0b839474b5f271e72837d0cafe6b172d759184d998fbee3903a035e81e07c2c596449e504f453463d58baa65b6f40a37ded5bec74620b2b
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.27.1":
version: 7.28.6
resolution: "@babel/helper-plugin-utils@npm:7.28.6"
checksum: 10c0/3f5f8acc152fdbb69a84b8624145ff4f9b9f6e776cb989f9f968f8606eb7185c5c3cfcf3ba08534e37e1e0e1c118ac67080610333f56baa4f7376c99b5f1143d
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.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-option@npm:7.27.1"
checksum: 10c0/6fec5f006eba40001a20f26b1ef5dbbda377b7b68c8ad518c05baa9af3f396e780bdfded24c4eef95d14bb7b8fd56192a6ed38d5d439b97d10efc5f1a191d148
languageName: node
linkType: hard
"@babel/helpers@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helpers@npm:7.28.6"
dependencies:
"@babel/template": "npm:^7.28.6"
"@babel/types": "npm:^7.28.6"
checksum: 10c0/c4a779c66396bb0cf619402d92f1610601ff3832db2d3b86b9c9dd10983bf79502270e97ac6d5280cea1b1a37de2f06ecbac561bd2271545270407fbe64027cb
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/parser@npm:7.29.0"
dependencies:
"@babel/types": "npm:^7.29.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/333b2aa761264b91577a74bee86141ef733f9f9f6d4fc52548e4847dc35dfbf821f58c46832c637bfa761a6d9909d6a68f7d1ed59e17e4ffbb958dc510c17b62
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-self@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-react-jsx-self@npm:7.27.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/00a4f917b70a608f9aca2fb39aabe04a60aa33165a7e0105fd44b3a8531630eb85bf5572e9f242f51e6ad2fa38c2e7e780902176c863556c58b5ba6f6e164031
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-source@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-react-jsx-source@npm:7.27.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/5e67b56c39c4d03e59e03ba80692b24c5a921472079b63af711b1d250fc37c1733a17069b63537f750f3e937ec44a42b1ee6a46cd23b1a0df5163b17f741f7f2
languageName: node
linkType: hard
"@babel/runtime@npm:^7.12.5":
version: 7.28.6
resolution: "@babel/runtime@npm:7.28.6"
checksum: 10c0/358cf2429992ac1c466df1a21c1601d595c46930a13c1d4662fde908d44ee78ec3c183aaff513ecb01ef8c55c3624afe0309eeeb34715672dbfadb7feedb2c0d
languageName: node
linkType: hard
"@babel/template@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/template@npm:7.28.6"
dependencies:
"@babel/code-frame": "npm:^7.28.6"
"@babel/parser": "npm:^7.28.6"
"@babel/types": "npm:^7.28.6"
checksum: 10c0/66d87225ed0bc77f888181ae2d97845021838c619944877f7c4398c6748bcf611f216dfd6be74d39016af502bca876e6ce6873db3c49e4ac354c56d34d57e9f5
languageName: node
linkType: hard
"@babel/traverse@npm:^7.28.6, @babel/traverse@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/traverse@npm:7.29.0"
dependencies:
"@babel/code-frame": "npm:^7.29.0"
"@babel/generator": "npm:^7.29.0"
"@babel/helper-globals": "npm:^7.28.0"
"@babel/parser": "npm:^7.29.0"
"@babel/template": "npm:^7.28.6"
"@babel/types": "npm:^7.29.0"
debug: "npm:^4.3.1"
checksum: 10c0/f63ef6e58d02a9fbf3c0e2e5f1c877da3e0bc57f91a19d2223d53e356a76859cbaf51171c9211c71816d94a0e69efa2732fd27ffc0e1bbc84b636e60932333eb
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.2, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/types@npm:7.29.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.28.5"
checksum: 10c0/23cc3466e83bcbfab8b9bd0edaafdb5d4efdb88b82b3be6728bbade5ba2f0996f84f63b1c5f7a8c0d67efded28300898a5f930b171bb40b311bca2029c4e9b4f
languageName: node
linkType: hard
"@bramus/specificity@npm:^2.4.2":
version: 2.4.2
resolution: "@bramus/specificity@npm:2.4.2"
dependencies:
css-tree: "npm:^3.0.0"
bin:
specificity: bin/cli.js
checksum: 10c0/c5f4e04e0bca0d2202598207a5eb0733c8109d12a68a329caa26373bec598d99db5bb785b8865fefa00fc01b08c6068138807ceb11a948fe15e904ed6cf4ba72
languageName: node
linkType: hard
"@bufbuild/protobuf@npm:^2.5.0":
version: 2.11.0
resolution: "@bufbuild/protobuf@npm:2.11.0"
checksum: 10c0/d54fffd414660b823999cc321d26bd6c5f18a6e75343fc7d2588bda5be540ec542b557ac1f03d6d4b6e9d3e5596b2016e58cda173cd1858c043f0e846ece453f
languageName: node
linkType: hard
"@csstools/color-helpers@npm:^6.0.2":
version: 6.0.2
resolution: "@csstools/color-helpers@npm:6.0.2"
checksum: 10c0/4c66574563d7c960010c11e41c2673675baff07c427cca6e8dddffa5777de45770d13ff3efce1c0642798089ad55de52870d9d8141f78db3fa5bba012f2d3789
languageName: node
linkType: hard
"@csstools/css-calc@npm:^3.1.1":
version: 3.1.1
resolution: "@csstools/css-calc@npm:3.1.1"
peerDependencies:
"@csstools/css-parser-algorithms": ^4.0.0
"@csstools/css-tokenizer": ^4.0.0
checksum: 10c0/6efcc016d988edf66e54c7bad03e352d61752cbd1b56c7557fd013868aab23505052ded8f912cd4034e216943ea1e04c957d81012489e3eddc14a57b386510ef
languageName: node
linkType: hard
"@csstools/css-color-parser@npm:^4.0.2":
version: 4.0.2
resolution: "@csstools/css-color-parser@npm:4.0.2"
dependencies:
"@csstools/color-helpers": "npm:^6.0.2"
"@csstools/css-calc": "npm:^3.1.1"
peerDependencies:
"@csstools/css-parser-algorithms": ^4.0.0
"@csstools/css-tokenizer": ^4.0.0
checksum: 10c0/487cf507ef4630f74bd67d84298294ed269900b206ade015a968d20047e07ff46f235b72e26fe0c6b949a03f8f9f00a22c363da49c1b06ca60b32d0188e546be
languageName: node
linkType: hard
"@csstools/css-parser-algorithms@npm:^4.0.0":
version: 4.0.0
resolution: "@csstools/css-parser-algorithms@npm:4.0.0"
peerDependencies:
"@csstools/css-tokenizer": ^4.0.0
checksum: 10c0/94558c2428d6ef0ddef542e86e0a8376aa1263a12a59770abb13ba50d7b83086822c75433f32aa2e7fef00555e1cc88292f9ca5bce79aed232bb3fed73b1528d
languageName: node
linkType: hard
"@csstools/css-syntax-patches-for-csstree@npm:^1.0.28":
version: 1.0.29
resolution: "@csstools/css-syntax-patches-for-csstree@npm:1.0.29"
checksum: 10c0/cedba88cd96a824ffa6fe411446fae51301fe5f6644c528e4bd56faa5fd22c3aeb618be8aebfd3759727654bbe8860d866eb0d2187c40e9f62e4e9994c02e889
languageName: node
linkType: hard
"@csstools/css-tokenizer@npm:^4.0.0":
version: 4.0.0
resolution: "@csstools/css-tokenizer@npm:4.0.0"
checksum: 10c0/669cf3d0f9c8e1ffdf8c9955ad8beba0c8cfe03197fe29a4fcbd9ee6f7a18856cfa42c62670021a75183d9ab37f5d14a866e6a9df753a6c07f59e36797a9ea9f
languageName: node
linkType: hard
"@emnapi/core@npm:^1.7.1":
version: 1.8.1
resolution: "@emnapi/core@npm:1.8.1"
dependencies:
"@emnapi/wasi-threads": "npm:1.1.0"
tslib: "npm:^2.4.0"
checksum: 10c0/2c242f4b49779bac403e1cbcc98edacdb1c8ad36562408ba9a20663824669e930bc8493be46a2522d9dc946b8d96cd7073970bae914928c7671b5221c85b432e
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.7.1":
version: 1.8.1
resolution: "@emnapi/runtime@npm:1.8.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/f4929d75e37aafb24da77d2f58816761fe3f826aad2e37fa6d4421dac9060cbd5098eea1ac3c9ecc4526b89deb58153852fa432f87021dc57863f2ff726d713f
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.1.0":
version: 1.1.0
resolution: "@emnapi/wasi-threads@npm:1.1.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/e6d54bf2b1e64cdd83d2916411e44e579b6ae35d5def0dea61a3c452d9921373044dff32a8b8473ae60c80692bdc39323e98b96a3f3d87ba6886b24dd0ef7ca1
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/aix-ppc64@npm:0.27.3"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/android-arm64@npm:0.27.3"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/android-arm@npm:0.27.3"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/android-x64@npm:0.27.3"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/darwin-arm64@npm:0.27.3"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/darwin-x64@npm:0.27.3"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.27.3":
version: 0.27.3
resolution: "@esbuild/freebsd-arm64@npm:0.27.3"
conditions: os=freebsd & cpu=arm64
languageName: node