forked from less/less-plugin-autoprefix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
1038 lines (857 loc) · 40.1 KB
/
pnpm-lock.yaml
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
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
postcss:
specifier: ^8.0.0
version: 8.4.47
postcss-preset-env:
specifier: ^10.0.0
version: 10.0.6(postcss@8.4.47)
devDependencies:
prettier:
specifier: ^3.3.3
version: 3.3.3
packages:
'@csstools/cascade-layer-name-parser@2.0.1':
resolution: {integrity: sha512-G9ZYN5+yr/E6xYSiy1BwOEFP5p88ZtWo8sL4NztKBkRRAwRkzVGa70M+D+fYHugMID5jkLeNt5X9jYd5EaVuyg==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.1
'@csstools/css-tokenizer': ^3.0.1
'@csstools/color-helpers@5.0.1':
resolution: {integrity: sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==}
engines: {node: '>=18'}
'@csstools/css-calc@2.0.1':
resolution: {integrity: sha512-e59V+sNp6e5m+9WnTUydA1DQO70WuKUdseflRpWmXxocF/h5wWGIxUjxfvLtajcmwstH0vm6l0reKMzcyI757Q==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.1
'@csstools/css-tokenizer': ^3.0.1
'@csstools/css-color-parser@3.0.2':
resolution: {integrity: sha512-mNg7A6HnNjlm0we/pDS9dUafOuBxcanN0TBhEGeIk6zZincuk0+mAbnBqfVs29NlvWHZ8diwTG6g5FeU8246sA==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.1
'@csstools/css-tokenizer': ^3.0.1
'@csstools/css-parser-algorithms@3.0.1':
resolution: {integrity: sha512-lSquqZCHxDfuTg/Sk2hiS0mcSFCEBuj49JfzPHJogDBT0mGCyY5A1AQzBWngitrp7i1/HAZpIgzF/VjhOEIJIg==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-tokenizer': ^3.0.1
'@csstools/css-tokenizer@3.0.1':
resolution: {integrity: sha512-UBqaiu7kU0lfvaP982/o3khfXccVlHPWp0/vwwiIgDF0GmqqqxoiXC/6FCjlS9u92f7CoEz6nXKQnrn1kIAkOw==}
engines: {node: '>=18'}
'@csstools/media-query-list-parser@3.0.1':
resolution: {integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.1
'@csstools/css-tokenizer': ^3.0.1
'@csstools/postcss-cascade-layers@5.0.0':
resolution: {integrity: sha512-h+VunB3KXaoWTWEPBcdVk8Kz1eZ/CtDD+HXgKw5JLdbsViLEQdKUtFYH73VIQigdodng8s5DCrrwNQY7pnuWBA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-color-function@4.0.2':
resolution: {integrity: sha512-q/W3RXh66SM7WqxW3/KU6koL8nOgqyB/wrcU3+ThXnNtXY2+k8UgdE301ISJpMt6PDyYgC7eMaIBo535RvFIgw==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-color-mix-function@3.0.2':
resolution: {integrity: sha512-zG9PHNzZVCRk6eprm+T/ybrnuiwLdO+RR7+GCtNut+NZJGtPJj6bfPOEX23aOlMslLcRAlN6QOpxH3tovn+WpA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-content-alt-text@2.0.1':
resolution: {integrity: sha512-TWjjewVZqdkjavsi8a2THuXgkhUum1k/m4QJpZpzOv72q6WnaoQZGSj5t5uCs7ymJr0H3qj6JcXMwMApSWUOGQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-exponential-functions@2.0.1':
resolution: {integrity: sha512-A/MG8es3ylFzZ30oYIQUyJcMOfTfCs0dqqBMzeuzaPRlx4q/72WG+BbKe/pL9BUNIWsM0Q8jn3e3la8enjHJJA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-font-format-keywords@4.0.0':
resolution: {integrity: sha512-usBzw9aCRDvchpok6C+4TXC57btc4bJtmKQWOHQxOVKen1ZfVqBUuCZ/wuqdX5GHsD0NRSr9XTP+5ID1ZZQBXw==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-gamut-mapping@2.0.2':
resolution: {integrity: sha512-/1ur3ca9RWg/KnbLlxaDswyjLSGoaHNDruAzrVhkn5axgd7LOH6JHCBRhrKDafdMw9bf4MQrYFoaLfHAPekLFg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-gradients-interpolation-method@5.0.2':
resolution: {integrity: sha512-qRpvA4sduAfiV9yZG4OM7q/h2Qhr3lg+GrHe9NZwuzWnfSDLGh+Dh4Ea6fQ+1++jdKXW/Cb4/vHRp0ssQYra4w==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-hwb-function@4.0.2':
resolution: {integrity: sha512-RUBVCyJE1hTsf9vGp3zrALeMollkAlHRFKm+T36y67nLfOOf+6GNQsdTGFAyLrY65skcm8ddC26Jp1n9ZIauEA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-ic-unit@4.0.0':
resolution: {integrity: sha512-9QT5TDGgx7wD3EEMN3BSUG6ckb6Eh5gSPT5kZoVtUuAonfPmLDJyPhqR4ntPpMYhUKAMVKAg3I/AgzqHMSeLhA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-initial@2.0.0':
resolution: {integrity: sha512-dv2lNUKR+JV+OOhZm9paWzYBXOCi+rJPqJ2cJuhh9xd8USVrd0cBEPczla81HNOyThMQWeCcdln3gZkQV2kYxA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-is-pseudo-class@5.0.0':
resolution: {integrity: sha512-E/CjrT03BL06WmrjupnrT0VUBTvxJdoW1hRVeXFa9qatWtvcLLw0j8hP372G4A9PpSGEMXi3/AoHzPf7DNryCQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-light-dark-function@2.0.4':
resolution: {integrity: sha512-yHUt5DZ61Irvp72notmAl3Zt4Me50EWToWNocazyIFTVYFwwo/EucmV3hWi9zJehu3rOSvMclL7DzvRDfbak/A==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-logical-float-and-clear@3.0.0':
resolution: {integrity: sha512-SEmaHMszwakI2rqKRJgE+8rpotFfne1ZS6bZqBoQIicFyV+xT1UF42eORPxJkVJVrH9C0ctUgwMSn3BLOIZldQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-logical-overflow@2.0.0':
resolution: {integrity: sha512-spzR1MInxPuXKEX2csMamshR4LRaSZ3UXVaRGjeQxl70ySxOhMpP2252RAFsg8QyyBXBzuVOOdx1+bVO5bPIzA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-logical-overscroll-behavior@2.0.0':
resolution: {integrity: sha512-e/webMjoGOSYfqLunyzByZj5KKe5oyVg/YSbie99VEaSDE2kimFm0q1f6t/6Jo+VVCQ/jbe2Xy+uX+C4xzWs4w==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-logical-resize@3.0.0':
resolution: {integrity: sha512-DFbHQOFW/+I+MY4Ycd/QN6Dg4Hcbb50elIJCfnwkRTCX05G11SwViI5BbBlg9iHRl4ytB7pmY5ieAFk3ws7yyg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-logical-viewport-units@3.0.1':
resolution: {integrity: sha512-JsfaoTiBqIuRE+CYL4ZpYKOqJ965GyiMH4b8UrY0Z7i5GfMiHZrK7xtTB29piuyKQzrW+Z8w3PAExhwND9cuAQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-media-minmax@2.0.1':
resolution: {integrity: sha512-EMa3IgUip+F/MwH4r2KfIA9ym9hQkT2PpR9MOukdomfGGCFuw9V3n/iIOBKziN1qfeddsYoOvtYOKQcHU2yIjg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.1':
resolution: {integrity: sha512-JTzMQz//INahTALkvXnC5lC2fJKzwb5PY443T2zaM9hAzM7nzHMLIlEfFgdtBahVIBtBSalMefdxNr99LGW1lQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-nested-calc@4.0.0':
resolution: {integrity: sha512-jMYDdqrQQxE7k9+KjstC3NbsmC063n1FTPLCgCRS2/qHUbHM0mNy9pIn4QIiQGs9I/Bg98vMqw7mJXBxa0N88A==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-normalize-display-values@4.0.0':
resolution: {integrity: sha512-HlEoG0IDRoHXzXnkV4in47dzsxdsjdz6+j7MLjaACABX2NfvjFS6XVAnpaDyGesz9gK2SC7MbNwdCHusObKJ9Q==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-oklab-function@4.0.2':
resolution: {integrity: sha512-2iSK/T77PHMeorakBAk/WLxSodfIJ/lmi6nxEkuruXfhGH7fByZim4Fw6ZJf4B73SVieRSH2ep8zvYkA2ZfRtA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-progressive-custom-properties@4.0.0':
resolution: {integrity: sha512-XQPtROaQjomnvLUSy/bALTR5VCtTVUFwYs1SblvYgLSeTo2a/bMNwUwo2piXw5rTv/FEYiy5yPSXBqg9OKUx7Q==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-relative-color-syntax@3.0.2':
resolution: {integrity: sha512-aBpuUdpJBswNGfw6lOkhown2cZ0YXrMjASye56nkoRpgRe9yDF4BM1fvEuakrCDiaeoUzVaI4SF6+344BflXfQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-scope-pseudo-class@4.0.0':
resolution: {integrity: sha512-+ZUOBtVMDcmHZcZqsP/jcNRriEILfWQflTI3tCTA+/RheXAg57VkFGyPDAilpQSqlCpxWLWG8VUFKFtZJPwuOg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-stepped-value-functions@4.0.1':
resolution: {integrity: sha512-dk3KqVcIEYzy9Mvx8amoBbk123BWgd5DfjXDiPrEqxGma37PG7m/MoMmHQhuVHIjvPDHoJwyIZi2yy7j0RA5fw==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-text-decoration-shorthand@4.0.1':
resolution: {integrity: sha512-xPZIikbx6jyzWvhms27uugIc0I4ykH4keRvoa3rxX5K7lEhkbd54rjj/dv60qOCTisoS+3bmwJTeyV1VNBrXaw==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-trigonometric-functions@4.0.1':
resolution: {integrity: sha512-QHOYuN3bzS/rcpAygFhJxJUtD8GuJEWF6f9Zm518Tq/cSMlcTgU+v0geyi5EqbmYxKMig2oKCKUSGqOj9gehkg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/postcss-unset-value@4.0.0':
resolution: {integrity: sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
'@csstools/selector-resolve-nested@2.0.0':
resolution: {integrity: sha512-oklSrRvOxNeeOW1yARd4WNCs/D09cQjunGZUgSq6vM8GpzFswN+8rBZyJA29YFZhOTQ6GFzxgLDNtVbt9wPZMA==}
engines: {node: '>=18'}
peerDependencies:
postcss-selector-parser: ^6.1.0
'@csstools/selector-specificity@4.0.0':
resolution: {integrity: sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==}
engines: {node: '>=18'}
peerDependencies:
postcss-selector-parser: ^6.1.0
'@csstools/utilities@2.0.0':
resolution: {integrity: sha512-5VdOr0Z71u+Yp3ozOx8T11N703wIFGVRgOWbOZMKgglPJsWA54MRIoMNVMa7shUToIhx5J8vX4sOZgD2XiihiQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
autoprefixer@10.4.20:
resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
browserslist@4.24.0:
resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
caniuse-lite@1.0.30001667:
resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==}
css-blank-pseudo@7.0.0:
resolution: {integrity: sha512-v9xXYGdm6LIn4iHEfu3egk/PM1g/yJr8uwTIj6E44kurv5dE/4y3QW7WdVmZ0PVnqfTuK+C0ClZcEEiaKWBL9Q==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
css-has-pseudo@7.0.0:
resolution: {integrity: sha512-vO6k9bBt4/eEZ2PeHmS2VXjJga5SBy6O1ESyaOkse5/lvp6piFqg8Sh5KTU7X33M7Uh/oqo+M3EeMktQrZoTCQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
css-prefers-color-scheme@10.0.0:
resolution: {integrity: sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
cssdb@8.1.1:
resolution: {integrity: sha512-kRbSRgZoxtZNl5snb3nOzBkFOt5AwnephcUTIEFc2DebKG9PN50/cHarlwOooTxYQ/gxsnKs3BxykhNLmfvyLg==}
cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
electron-to-chromium@1.5.32:
resolution: {integrity: sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==}
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
nanoid@3.3.7:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
node-releases@2.0.18:
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
normalize-range@0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
picocolors@1.1.0:
resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
postcss-attribute-case-insensitive@7.0.0:
resolution: {integrity: sha512-ETMUHIw67Kyv9Q81nden/NuJbRh+4/S963giXpfSLd5eaKK8kd1UdAHMVRV/NG/w/N6Cq8B0qZIZbZZWU/67+A==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-clamp@4.1.0:
resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==}
engines: {node: '>=7.6.0'}
peerDependencies:
postcss: ^8.4.6
postcss-color-functional-notation@7.0.2:
resolution: {integrity: sha512-c2WkR0MS73s+P5SgY1KBaSEE61Rj+miW095rkWDnMQxbTCQkp6y/jft8U0QMxEsI4k1Pd4PdV+TP9/1zIDR6XQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-color-hex-alpha@10.0.0:
resolution: {integrity: sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-color-rebeccapurple@10.0.0:
resolution: {integrity: sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-custom-media@11.0.2:
resolution: {integrity: sha512-IDtxB1VgPayRLjNBMjuf827sn1j2m9EGnhIxpx2coVerbWJF+twt590+PKvdDc4K8QNFqFJh+W/SOiHpasVXsg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-custom-properties@14.0.1:
resolution: {integrity: sha512-SB4GjuZjIq5GQFNbxFrirQPbkdbJooyNy8bh+fcJ8ZG0oasJTflTTtR4geb56h+FBVDIb9Hx4v/NiG2caOj8nQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-custom-selectors@8.0.1:
resolution: {integrity: sha512-2McIpyhAeKhUzVqrP4ZyMBpK5FuD+Y9tpQwhcof49652s7gez8057cSaOg/epYcKlztSYxb0GHfi7W5h3JoGUg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-dir-pseudo-class@9.0.0:
resolution: {integrity: sha512-T59BG9lURiXmhcJMyKbyjNAK3KCyEQYEhaz9GAETHXfIy9XbGQeyz+H0zIwRJlrP4KKRPJolNYe3QjQPemMjBA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-double-position-gradients@6.0.0:
resolution: {integrity: sha512-JkIGah3RVbdSEIrcobqj4Gzq0h53GG4uqDPsho88SgY84WnpkTpI0k50MFK/sX7XqVisZ6OqUfFnoUO6m1WWdg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-focus-visible@10.0.0:
resolution: {integrity: sha512-GJjzvTj7JY+zN7wVBQ4osdKX53QLUdr6r2rSEkBUqrEMDKu3fHMHKOY9rirdirbHCx3IETnK25EtpPARR2KWNw==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-focus-within@9.0.0:
resolution: {integrity: sha512-QwflAWUToNZvQLGbc4qJhrQO8yZ5617L6hSNzNWDoqRX4FoIh9fbJbEjy0nvFPciaaOoCaeqcxBwYPbFU0HvBw==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-font-variant@5.0.0:
resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
peerDependencies:
postcss: ^8.1.0
postcss-gap-properties@6.0.0:
resolution: {integrity: sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-image-set-function@7.0.0:
resolution: {integrity: sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-lab-function@7.0.2:
resolution: {integrity: sha512-h4ARGLIBtC1PmCHsLgTWWj8j1i1CXoaht4A5RlITDX2z9AeFBak0YlY6sdF4oJGljrep+Dg2SSccIj4QnFbRDg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-logical@8.0.0:
resolution: {integrity: sha512-HpIdsdieClTjXLOyYdUPAX/XQASNIwdKt5hoZW08ZOAiI+tbV0ta1oclkpVkW5ANU+xJvk3KkA0FejkjGLXUkg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-nesting@13.0.0:
resolution: {integrity: sha512-TCGQOizyqvEkdeTPM+t6NYwJ3EJszYE/8t8ILxw/YoeUvz2rz7aM8XTAmBWh9/DJjfaaabL88fWrsVHSPF2zgA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-opacity-percentage@3.0.0:
resolution: {integrity: sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-overflow-shorthand@6.0.0:
resolution: {integrity: sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-page-break@3.0.4:
resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
peerDependencies:
postcss: ^8
postcss-place@10.0.0:
resolution: {integrity: sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-preset-env@10.0.6:
resolution: {integrity: sha512-qixfM2wbvKJhUjJELLB8lV2UCsyrMdSXqiXHiNKMgAbNturstc80j/8MsthJeOpxYEekrCrFzcaoOJm8JRSdBg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-pseudo-class-any-link@10.0.0:
resolution: {integrity: sha512-bde8VE08Gq3ekKDq2BQ0ESOjNX54lrFDK3U9zABPINaqHblbZL/4Wfo5Y2vk6U64yVd/sjDwTzuiisFBpGNNIQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-replace-overflow-wrap@4.0.0:
resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
peerDependencies:
postcss: ^8.0.3
postcss-selector-not@8.0.0:
resolution: {integrity: sha512-g/juh7A83GWc3+kWL8BiS3YUIJb3XNqIVKz1kGvgN3OhoGCsPncy1qo/+q61tjy5r87OxBhSY1+hcH3yOhEW+g==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
postcss-selector-parser@6.1.2:
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
postcss@8.4.47:
resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
engines: {node: ^10 || ^12 || >=14}
prettier@3.3.3:
resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
engines: {node: '>=14'}
hasBin: true
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
update-browserslist-db@1.1.1:
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
snapshots:
'@csstools/cascade-layer-name-parser@2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/color-helpers@5.0.1': {}
'@csstools/css-calc@2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/css-color-parser@3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)':
dependencies:
'@csstools/color-helpers': 5.0.1
'@csstools/css-calc': 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1)':
dependencies:
'@csstools/css-tokenizer': 3.0.1
'@csstools/css-tokenizer@3.0.1': {}
'@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/postcss-cascade-layers@5.0.0(postcss@8.4.47)':
dependencies:
'@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.2)
postcss: 8.4.47
postcss-selector-parser: 6.1.2
'@csstools/postcss-color-function@4.0.2(postcss@8.4.47)':
dependencies:
'@csstools/css-color-parser': 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
'@csstools/postcss-color-mix-function@3.0.2(postcss@8.4.47)':
dependencies:
'@csstools/css-color-parser': 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
'@csstools/postcss-content-alt-text@2.0.1(postcss@8.4.47)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
'@csstools/postcss-exponential-functions@2.0.1(postcss@8.4.47)':
dependencies:
'@csstools/css-calc': 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
postcss: 8.4.47
'@csstools/postcss-font-format-keywords@4.0.0(postcss@8.4.47)':
dependencies:
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
'@csstools/postcss-gamut-mapping@2.0.2(postcss@8.4.47)':
dependencies:
'@csstools/css-color-parser': 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
postcss: 8.4.47
'@csstools/postcss-gradients-interpolation-method@5.0.2(postcss@8.4.47)':
dependencies:
'@csstools/css-color-parser': 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
'@csstools/postcss-hwb-function@4.0.2(postcss@8.4.47)':
dependencies:
'@csstools/css-color-parser': 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
'@csstools/postcss-ic-unit@4.0.0(postcss@8.4.47)':
dependencies:
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
'@csstools/postcss-initial@2.0.0(postcss@8.4.47)':
dependencies:
postcss: 8.4.47
'@csstools/postcss-is-pseudo-class@5.0.0(postcss@8.4.47)':
dependencies:
'@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.2)
postcss: 8.4.47
postcss-selector-parser: 6.1.2
'@csstools/postcss-light-dark-function@2.0.4(postcss@8.4.47)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
'@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.4.47)':
dependencies:
postcss: 8.4.47
'@csstools/postcss-logical-overflow@2.0.0(postcss@8.4.47)':
dependencies:
postcss: 8.4.47
'@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.4.47)':
dependencies:
postcss: 8.4.47
'@csstools/postcss-logical-resize@3.0.0(postcss@8.4.47)':
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
'@csstools/postcss-logical-viewport-units@3.0.1(postcss@8.4.47)':
dependencies:
'@csstools/css-tokenizer': 3.0.1
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
'@csstools/postcss-media-minmax@2.0.1(postcss@8.4.47)':
dependencies:
'@csstools/css-calc': 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/media-query-list-parser': 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
postcss: 8.4.47
'@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.1(postcss@8.4.47)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/media-query-list-parser': 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
postcss: 8.4.47
'@csstools/postcss-nested-calc@4.0.0(postcss@8.4.47)':
dependencies:
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
'@csstools/postcss-normalize-display-values@4.0.0(postcss@8.4.47)':
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
'@csstools/postcss-oklab-function@4.0.2(postcss@8.4.47)':
dependencies:
'@csstools/css-color-parser': 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
'@csstools/postcss-progressive-custom-properties@4.0.0(postcss@8.4.47)':
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
'@csstools/postcss-relative-color-syntax@3.0.2(postcss@8.4.47)':
dependencies:
'@csstools/css-color-parser': 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
'@csstools/postcss-scope-pseudo-class@4.0.0(postcss@8.4.47)':
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.2
'@csstools/postcss-stepped-value-functions@4.0.1(postcss@8.4.47)':
dependencies:
'@csstools/css-calc': 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
postcss: 8.4.47
'@csstools/postcss-text-decoration-shorthand@4.0.1(postcss@8.4.47)':
dependencies:
'@csstools/color-helpers': 5.0.1
postcss: 8.4.47
postcss-value-parser: 4.2.0
'@csstools/postcss-trigonometric-functions@4.0.1(postcss@8.4.47)':
dependencies:
'@csstools/css-calc': 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
postcss: 8.4.47
'@csstools/postcss-unset-value@4.0.0(postcss@8.4.47)':
dependencies:
postcss: 8.4.47
'@csstools/selector-resolve-nested@2.0.0(postcss-selector-parser@6.1.2)':
dependencies:
postcss-selector-parser: 6.1.2
'@csstools/selector-specificity@4.0.0(postcss-selector-parser@6.1.2)':
dependencies:
postcss-selector-parser: 6.1.2
'@csstools/utilities@2.0.0(postcss@8.4.47)':
dependencies:
postcss: 8.4.47
autoprefixer@10.4.20(postcss@8.4.47):
dependencies:
browserslist: 4.24.0
caniuse-lite: 1.0.30001667
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.0
postcss: 8.4.47
postcss-value-parser: 4.2.0
browserslist@4.24.0:
dependencies:
caniuse-lite: 1.0.30001667
electron-to-chromium: 1.5.32
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.0)
caniuse-lite@1.0.30001667: {}
css-blank-pseudo@7.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.2
css-has-pseudo@7.0.0(postcss@8.4.47):
dependencies:
'@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.2)
postcss: 8.4.47
postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
css-prefers-color-scheme@10.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
cssdb@8.1.1: {}
cssesc@3.0.0: {}
electron-to-chromium@1.5.32: {}
escalade@3.2.0: {}
fraction.js@4.3.7: {}
nanoid@3.3.7: {}
node-releases@2.0.18: {}
normalize-range@0.1.2: {}
picocolors@1.1.0: {}
postcss-attribute-case-insensitive@7.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.2
postcss-clamp@4.1.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
postcss-color-functional-notation@7.0.2(postcss@8.4.47):
dependencies:
'@csstools/css-color-parser': 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
postcss-color-hex-alpha@10.0.0(postcss@8.4.47):
dependencies:
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
postcss-color-rebeccapurple@10.0.0(postcss@8.4.47):
dependencies:
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
postcss-custom-media@11.0.2(postcss@8.4.47):
dependencies:
'@csstools/cascade-layer-name-parser': 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/media-query-list-parser': 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
postcss: 8.4.47
postcss-custom-properties@14.0.1(postcss@8.4.47):
dependencies:
'@csstools/cascade-layer-name-parser': 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
postcss-custom-selectors@8.0.1(postcss@8.4.47):
dependencies:
'@csstools/cascade-layer-name-parser': 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
postcss: 8.4.47
postcss-selector-parser: 6.1.2
postcss-dir-pseudo-class@9.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.2
postcss-double-position-gradients@6.0.0(postcss@8.4.47):
dependencies:
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
postcss-focus-visible@10.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.2
postcss-focus-within@9.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-selector-parser: 6.1.2
postcss-font-variant@5.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-gap-properties@6.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-image-set-function@7.0.0(postcss@8.4.47):
dependencies:
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
postcss-value-parser: 4.2.0
postcss-lab-function@7.0.2(postcss@8.4.47):
dependencies:
'@csstools/css-color-parser': 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/utilities': 2.0.0(postcss@8.4.47)
postcss: 8.4.47
postcss-logical@8.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
postcss-nesting@13.0.0(postcss@8.4.47):
dependencies:
'@csstools/selector-resolve-nested': 2.0.0(postcss-selector-parser@6.1.2)
'@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.2)
postcss: 8.4.47
postcss-selector-parser: 6.1.2
postcss-opacity-percentage@3.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-overflow-shorthand@6.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
postcss-page-break@3.0.4(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-place@10.0.0(postcss@8.4.47):
dependencies:
postcss: 8.4.47
postcss-value-parser: 4.2.0
postcss-preset-env@10.0.6(postcss@8.4.47):
dependencies:
'@csstools/postcss-cascade-layers': 5.0.0(postcss@8.4.47)
'@csstools/postcss-color-function': 4.0.2(postcss@8.4.47)
'@csstools/postcss-color-mix-function': 3.0.2(postcss@8.4.47)
'@csstools/postcss-content-alt-text': 2.0.1(postcss@8.4.47)
'@csstools/postcss-exponential-functions': 2.0.1(postcss@8.4.47)
'@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.4.47)
'@csstools/postcss-gamut-mapping': 2.0.2(postcss@8.4.47)
'@csstools/postcss-gradients-interpolation-method': 5.0.2(postcss@8.4.47)
'@csstools/postcss-hwb-function': 4.0.2(postcss@8.4.47)
'@csstools/postcss-ic-unit': 4.0.0(postcss@8.4.47)
'@csstools/postcss-initial': 2.0.0(postcss@8.4.47)
'@csstools/postcss-is-pseudo-class': 5.0.0(postcss@8.4.47)
'@csstools/postcss-light-dark-function': 2.0.4(postcss@8.4.47)
'@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.4.47)
'@csstools/postcss-logical-overflow': 2.0.0(postcss@8.4.47)
'@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.4.47)
'@csstools/postcss-logical-resize': 3.0.0(postcss@8.4.47)
'@csstools/postcss-logical-viewport-units': 3.0.1(postcss@8.4.47)
'@csstools/postcss-media-minmax': 2.0.1(postcss@8.4.47)
'@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.1(postcss@8.4.47)
'@csstools/postcss-nested-calc': 4.0.0(postcss@8.4.47)
'@csstools/postcss-normalize-display-values': 4.0.0(postcss@8.4.47)
'@csstools/postcss-oklab-function': 4.0.2(postcss@8.4.47)
'@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.47)
'@csstools/postcss-relative-color-syntax': 3.0.2(postcss@8.4.47)
'@csstools/postcss-scope-pseudo-class': 4.0.0(postcss@8.4.47)
'@csstools/postcss-stepped-value-functions': 4.0.1(postcss@8.4.47)
'@csstools/postcss-text-decoration-shorthand': 4.0.1(postcss@8.4.47)
'@csstools/postcss-trigonometric-functions': 4.0.1(postcss@8.4.47)
'@csstools/postcss-unset-value': 4.0.0(postcss@8.4.47)
autoprefixer: 10.4.20(postcss@8.4.47)
browserslist: 4.24.0
css-blank-pseudo: 7.0.0(postcss@8.4.47)
css-has-pseudo: 7.0.0(postcss@8.4.47)
css-prefers-color-scheme: 10.0.0(postcss@8.4.47)
cssdb: 8.1.1
postcss: 8.4.47
postcss-attribute-case-insensitive: 7.0.0(postcss@8.4.47)
postcss-clamp: 4.1.0(postcss@8.4.47)
postcss-color-functional-notation: 7.0.2(postcss@8.4.47)
postcss-color-hex-alpha: 10.0.0(postcss@8.4.47)
postcss-color-rebeccapurple: 10.0.0(postcss@8.4.47)
postcss-custom-media: 11.0.2(postcss@8.4.47)
postcss-custom-properties: 14.0.1(postcss@8.4.47)
postcss-custom-selectors: 8.0.1(postcss@8.4.47)
postcss-dir-pseudo-class: 9.0.0(postcss@8.4.47)
postcss-double-position-gradients: 6.0.0(postcss@8.4.47)
postcss-focus-visible: 10.0.0(postcss@8.4.47)
postcss-focus-within: 9.0.0(postcss@8.4.47)
postcss-font-variant: 5.0.0(postcss@8.4.47)
postcss-gap-properties: 6.0.0(postcss@8.4.47)
postcss-image-set-function: 7.0.0(postcss@8.4.47)
postcss-lab-function: 7.0.2(postcss@8.4.47)
postcss-logical: 8.0.0(postcss@8.4.47)
postcss-nesting: 13.0.0(postcss@8.4.47)
postcss-opacity-percentage: 3.0.0(postcss@8.4.47)
postcss-overflow-shorthand: 6.0.0(postcss@8.4.47)
postcss-page-break: 3.0.4(postcss@8.4.47)
postcss-place: 10.0.0(postcss@8.4.47)
postcss-pseudo-class-any-link: 10.0.0(postcss@8.4.47)
postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.47)
postcss-selector-not: 8.0.0(postcss@8.4.47)