-
Notifications
You must be signed in to change notification settings - Fork 38
/
pnpm-lock.yaml
5240 lines (4108 loc) · 198 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:
'@kong-ui-public/app-layout':
specifier: ^4.2.63
version: 4.2.63(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-certificates':
specifier: ^3.6.67
version: 3.6.67(@kong-ui-public/entities-shared@3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-consumer-credentials':
specifier: ^3.4.39
version: 3.4.39(@kong-ui-public/entities-shared@3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-consumers':
specifier: ^3.5.66
version: 3.5.66(@kong-ui-public/entities-shared@3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-data-plane-nodes':
specifier: ^0.3.64
version: 0.3.64(@kong-ui-public/entities-shared@3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-gateway-services':
specifier: ^3.8.53
version: 3.8.53(@kong-ui-public/entities-shared@3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-key-sets':
specifier: ^3.5.66
version: 3.5.66(@kong-ui-public/entities-shared@3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-keys':
specifier: ^3.5.67
version: 3.5.67(@kong-ui-public/entities-shared@3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-plugins':
specifier: 9.8.10
version: 9.8.10(@kong-ui-public/entities-shared@3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(typescript@5.4.5)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-routes':
specifier: 3.8.70
version: 3.8.70(t4k2bluex7el6n5gst4smqtrsq)
'@kong-ui-public/entities-shared':
specifier: ^3.14.2
version: 3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-snis':
specifier: ^3.5.66
version: 3.5.66(@kong-ui-public/entities-shared@3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-upstreams-targets':
specifier: ^3.5.67
version: 3.5.67(@kong-ui-public/entities-shared@3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/entities-vaults':
specifier: ^3.13.60
version: 3.13.60(@kong-ui-public/entities-shared@3.14.2(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(swrv@1.0.4(vue@3.5.12(typescript@5.4.5)))(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/icons@1.20.1(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/forms':
specifier: 4.9.0
version: 4.9.0(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/i18n':
specifier: ^2.2.10
version: 2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5))
'@kong-ui-public/misc-widgets':
specifier: ^2.1.52
version: 2.1.52(@kong-ui-public/i18n@2.2.10(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5)))(@kong/kongponents@9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@kong/icons':
specifier: ^1.20.1
version: 1.20.1(vue@3.5.12(typescript@5.4.5))
'@kong/kongponents':
specifier: ^9.14.29
version: 9.14.29(axios@1.7.7)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@material-design-icons/font':
specifier: ^0.14.13
version: 0.14.13
axios:
specifier: ^1.7.7
version: 1.7.7
dayjs:
specifier: ^1.11.13
version: 1.11.13
monaco-editor:
specifier: 0.52.0
version: 0.52.0
pinia:
specifier: ^2.2.2
version: 2.2.2(typescript@5.4.5)(vue@3.5.12(typescript@5.4.5))
vue:
specifier: ^3.5.12
version: 3.5.12(typescript@5.4.5)
vue-router:
specifier: ^4.4.5
version: 4.4.5(vue@3.5.12(typescript@5.4.5))
devDependencies:
'@kong/design-tokens':
specifier: ^1.17.2
version: 1.17.2
'@kong/eslint-config-kong-ui':
specifier: ^1.1.6
version: 1.1.6(eslint@9.9.1)(typescript@5.4.5)
'@playwright/test':
specifier: ^1.49.1
version: 1.49.1
'@types/lodash-es':
specifier: ^4.17.12
version: 4.17.12
'@types/node':
specifier: ^20.3.1
version: 20.4.2
'@vitejs/plugin-vue':
specifier: ^5.1.3
version: 5.1.3(vite@5.4.6(@types/node@20.4.2)(sass@1.80.3)(terser@5.18.2))(vue@3.5.12(typescript@5.4.5))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
autoprefixer:
specifier: ^10.4.20
version: 10.4.20(postcss@8.4.44)
bmp-js:
specifier: ^0.1.0
version: 0.1.0
dotenv:
specifier: ^16.4.5
version: 16.4.5
eslint:
specifier: ^9.9.1
version: 9.9.1
eslint-plugin-playwright:
specifier: ^1.6.2
version: 1.6.2(eslint@9.9.1)
eslint-plugin-vuejs-accessibility:
specifier: ^2.3.0
version: 2.3.0(eslint@9.9.1)
husky:
specifier: ^9.1.5
version: 9.1.5
lint-staged:
specifier: ^15.2.10
version: 15.2.10
lodash-es:
specifier: ^4.17.21
version: 4.17.21
rollup-plugin-visualizer:
specifier: ^5.12.0
version: 5.12.0(rollup@4.24.0)
sass:
specifier: ^1.80.3
version: 1.80.3
stylelint:
specifier: ^16.9.0
version: 16.9.0(typescript@5.4.5)
stylelint-config-html:
specifier: ^1.1.0
version: 1.1.0(postcss-html@1.7.0)(stylelint@16.9.0(typescript@5.4.5))
stylelint-config-recommended-scss:
specifier: ^14.1.0
version: 14.1.0(postcss@8.4.44)(stylelint@16.9.0(typescript@5.4.5))
stylelint-config-recommended-vue:
specifier: ^1.5.0
version: 1.5.0(postcss-html@1.7.0)(stylelint@16.9.0(typescript@5.4.5))
typescript:
specifier: ^5.4.5
version: 5.4.5
vite:
specifier: ^5.4.6
version: 5.4.6(@types/node@20.4.2)(sass@1.80.3)(terser@5.18.2)
vite-plugin-html:
specifier: ^3.2.2
version: 3.2.2(vite@5.4.6(@types/node@20.4.2)(sass@1.80.3)(terser@5.18.2))
vite-plugin-monaco-editor:
specifier: ^1.1.0
version: 1.1.0(monaco-editor@0.52.0)
vue-tsc:
specifier: ^2.1.4
version: 2.1.4(typescript@5.4.5)
packages:
'@aashutoshrathi/word-wrap@1.2.6':
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
'@babel/code-frame@7.22.10':
resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.25.7':
resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.24.7':
resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.25.7':
resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.22.10':
resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.25.8':
resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@babel/types@7.25.8':
resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==}
engines: {node: '>=6.9.0'}
'@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/selector-specificity@4.0.0':
resolution: {integrity: sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==}
engines: {node: '>=18'}
peerDependencies:
postcss-selector-parser: ^6.1.0
'@dual-bundle/import-meta-resolve@4.1.0':
resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.21.5':
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.21.5':
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.21.5':
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.21.5':
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.21.5':
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.21.5':
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.21.5':
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.21.5':
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.21.5':
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.21.5':
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.21.5':
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-x64@0.21.5':
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.21.5':
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.21.5':
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
'@eslint-community/eslint-utils@4.4.1':
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
'@eslint-community/regexpp@4.11.0':
resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint-community/regexpp@4.12.1':
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/compat@1.2.4':
resolution: {integrity: sha512-S8ZdQj/N69YAtuqFt7653jwcvuUj131+6qGLUyDqfDg1OIoBQ66OCuXC473YQfO2AaxITTutiRQiDwoo7ZLYyg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^9.10.0
peerDependenciesMeta:
eslint:
optional: true
'@eslint/config-array@0.18.0':
resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.1.0':
resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.2.0':
resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/js@9.17.0':
resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/js@9.9.1':
resolution: {integrity: sha512-xIDQRsfg5hNBqHz04H1R3scSVwmI+KUbqjsQKHKQ1DAUSaUjYPReZZmS/5PNiKu1fUvzDd6H7DEDKACSEhu+TQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.4':
resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@floating-ui/core@1.6.8':
resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
'@floating-ui/dom@1.6.12':
resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
'@floating-ui/utils@0.2.8':
resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
'@floating-ui/vue@1.1.5':
resolution: {integrity: sha512-ynL1p5Z+woPVSwgMGqeDrx6HrJfGIDzFyESFkyqJKilGW1+h/8yVY29Khn0LaU6wHBRwZ13ntG6reiHWK6jyzw==}
'@formatjs/ecma402-abstract@2.2.4':
resolution: {integrity: sha512-lFyiQDVvSbQOpU+WFd//ILolGj4UgA/qXrKeZxdV14uKiAUiPAtX6XAn7WBCRi7Mx6I7EybM9E5yYn4BIpZWYg==}
'@formatjs/fast-memoize@2.2.3':
resolution: {integrity: sha512-3jeJ+HyOfu8osl3GNSL4vVHUuWFXR03Iz9jjgI7RwjG6ysu/Ymdr0JRCPHfF5yGbTE6JCrd63EpvX1/WybYRbA==}
'@formatjs/icu-messageformat-parser@2.9.4':
resolution: {integrity: sha512-Tbvp5a9IWuxUcpWNIW6GlMQYEc4rwNHR259uUFoKWNN1jM9obf9Ul0e+7r7MvFOBNcN+13K7NuKCKqQiAn1QEg==}
'@formatjs/icu-skeleton-parser@1.8.8':
resolution: {integrity: sha512-vHwK3piXwamFcx5YQdCdJxUQ1WdTl6ANclt5xba5zLGDv5Bsur7qz8AD7BevaKxITwpgDeU0u8My3AIibW9ywA==}
'@formatjs/intl-displaynames@6.8.5':
resolution: {integrity: sha512-85b+GdAKCsleS6cqVxf/Aw/uBd+20EM0wDpgaxzHo3RIR3bxF4xCJqH/Grbzx8CXurTgDDZHPdPdwJC+May41w==}
'@formatjs/intl-listformat@7.7.5':
resolution: {integrity: sha512-Wzes10SMNeYgnxYiKsda4rnHP3Q3II4XT2tZyOgnH5fWuHDtIkceuWlRQNsvrI3uiwP4hLqp2XdQTCsfkhXulg==}
'@formatjs/intl-localematcher@0.5.8':
resolution: {integrity: sha512-I+WDNWWJFZie+jkfkiK5Mp4hEDyRSEvmyfYadflOno/mmKJKcB17fEpEH0oJu/OWhhCJ8kJBDz2YMd/6cDl7Mg==}
'@formatjs/intl@2.10.15':
resolution: {integrity: sha512-i6+xVqT+6KCz7nBfk4ybMXmbKO36tKvbMKtgFz9KV+8idYFyFbfwKooYk8kGjyA5+T5f1kEPQM5IDLXucTAQ9g==}
peerDependencies:
typescript: ^4.7 || 5
peerDependenciesMeta:
typescript:
optional: true
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
'@humanwhocodes/retry@0.3.0':
resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
engines: {node: '>=18.18'}
'@jridgewell/gen-mapping@0.3.3':
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
engines: {node: '>=6.0.0'}
'@jridgewell/resolve-uri@3.1.0':
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
'@jridgewell/set-array@1.1.2':
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
'@jridgewell/source-map@0.3.5':
resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
'@jridgewell/sourcemap-codec@1.4.14':
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
'@jridgewell/sourcemap-codec@1.4.15':
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@jridgewell/trace-mapping@0.3.18':
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
'@kong-ui-public/app-layout@4.2.63':
resolution: {integrity: sha512-vhoP3qp8ttJ3k4KyROk3BW5jRXFE+Dr+KsgruOC0QkNkYN7v50UuxjVwsZwrZj16rqt4kzlJHnlZrYzDGAxzoA==}
peerDependencies:
'@kong/kongponents': ^9.14.16
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/core@1.10.5':
resolution: {integrity: sha512-JHcG8bDcViEvKzxlgKPQeltB9fXDu/cHoCSUwjU+REtBNuKtrlrgYQR2J1AH5pph5hvi5+hXPEJx9kdXSHCWsQ==}
peerDependencies:
axios: ^1.7.7
swrv: ^1.0.4
vue: ^3.5.12
'@kong-ui-public/entities-certificates@3.6.67':
resolution: {integrity: sha512-cVu0l7VjXyAKnWuKLyaAWV0iUp70U72wug3deVRE/mT9u23oj7V4L4Oey9UKyuYnt4sAMSV7g3Ww91gmZb1GmQ==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-consumer-credentials@3.4.39':
resolution: {integrity: sha512-KmDog9FksQiwEzbcLGnhSs3GMSOk7rxGlPjjKtM2dFShBekpan9Tyd4CHnncIDs7BXIy94WwkLklxJJqj2AcmA==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-consumer-groups@3.5.66':
resolution: {integrity: sha512-gw1RKXmAM0GA1jH3mdrbCK3w6YAqYdQofbIg+jtjeec/aAvQQXHkkYc7WbKqgFStL7JkSYbKfP19CZT1Mo27Ew==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-consumers@3.5.66':
resolution: {integrity: sha512-9TnbLQPoCrLF4IpnQSleb50kvR4kjg/dtCnQA7hY/F4aebbcr3lRDy9UPjdBgafigQCVxIu6Smz4IPH+z4pZsA==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-data-plane-nodes@0.3.64':
resolution: {integrity: sha512-yh+gFLcHAoFLRw0HXvZOyzz7cHzOSRVYk2Jv9t4kVEVojbUTTh0B4tDu8RaQsJe39wH/HoZQoo1sABKsC7rKhg==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': 9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-gateway-services@3.8.53':
resolution: {integrity: sha512-QyYV/ROepKBxrj/ISHi4TQS5PqsYGyEAqpHfD0W7ObYjGWXOfS+VZtmCdyTIMvE0bI5jNuFMAkMpj70nHXXzKA==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-key-sets@3.5.66':
resolution: {integrity: sha512-4qVoEVPQtpB31f07hsTaPiAm1F0ALr0OgjPH4AikV6+P0A5eOGtZQz/6VHrf89Q+pqnkoJDufENVER0U5MYi2Q==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-keys@3.5.67':
resolution: {integrity: sha512-//xOdlaxDVuFQOTwJ0HuHJGlU9jASS/SI8QnqzaOsXDiGJS8b8CuJiy9fUZhuXp1ioIFNu48OQUYac3Hvfy2pA==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-plugins@9.8.10':
resolution: {integrity: sha512-SWHFp1h7YpuU2izHf0PLS4TMS9z5cs5mHcrtnObhp5OcyUjfQcU4UK54K3EULshjk0w60N7YNUXeTxYeMFxlww==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-routes@3.8.70':
resolution: {integrity: sha512-FNldY+0JyrC4NWzPeOACPcPDJTud77/1JgzVIvT1e44Dgayv7TVnTMTZRd1R35J4TGBkTXdfjz4pmj/ZLXm0sA==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-shared@3.14.2':
resolution: {integrity: sha512-Eh8T7a2CRUI1qu8sL8JiVTbA7puLvEj4/Y3mQ329SWeH4xfx5V+Vr+hW5pE7YGqXBdrXFyMG51KODHyxaKwi2g==}
peerDependencies:
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-snis@3.5.66':
resolution: {integrity: sha512-epjx19sxu6mspkvDWGJ0pU7MjBxiy+s3Ds3YtYOsIC1IwhLb014bReCf9eFUO2nu19zd0AmzaN0dZKnkTQD8JQ==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-upstreams-targets@3.5.67':
resolution: {integrity: sha512-U2+Dr4EBEN1uBx2gDa1JVF/fIr3A6v9SLo6Bkk9vVp8IaBeoNH3vqBa6aC0m/BdnUEY6xTCAMXKqEuftrZcoCA==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/entities-vaults@3.13.60':
resolution: {integrity: sha512-/z9D4t3vrfCzYFVZJ51Cm9wfMgZ6+95cJ9H4pvR2ciXcpJUJd/72AX3ut8iTj7e+z2Ty11LZupk8S6kcKBKikw==}
peerDependencies:
'@kong-ui-public/entities-shared': ^3.14.2
'@kong-ui-public/i18n': ^2.2.10
'@kong/icons': ^1.20.0
'@kong/kongponents': ^9.14.16
axios: ^1.7.7
vue: '>= 3.3.13 < 4'
vue-router: ^4.4.5
'@kong-ui-public/expressions@0.6.0':
resolution: {integrity: sha512-vMONgLQskpr8e1GsSSUvQw4zBENMotWipwV2qiEL7QfbBC/9XhjD1tYgExjqRPXR2aeOVefmjfpmnJxICy7gKg==}
peerDependencies:
'@kong-ui-public/forms': ^4.9.0
'@kong/kongponents': ^9.14.16
vue: ^3.5.12
'@kong-ui-public/forms@4.9.0':
resolution: {integrity: sha512-8UKq2EHhanBIchCGQXoJ34YIGjV71tsuZtQaiS87N+F68m6XAaqMl7Sy+SXKNaezcGQc/l1CGNe8Q8rRUg4l6g==}
peerDependencies:
'@kong-ui-public/i18n': ^2.2.10
'@kong/kongponents': ^9.14.16
vue: ^3.5.12
'@kong-ui-public/i18n@2.2.10':
resolution: {integrity: sha512-EyRktL5QKD0n3Hp1NATvMUGHnhhsXHQG9kGNfcMVMFTBxzBaJe44Gz/mweTQzi9h0NHSmuypxty5AsfhTslBxQ==}
peerDependencies:
vue: '>= 3.3.13 < 4'
'@kong-ui-public/misc-widgets@2.1.52':
resolution: {integrity: sha512-b5vsFYHxrYM70uCa++/brhEGtijqoCMCfcmgD/DMavjT06lJ4p5g9HdVoJu8hRxuu5BYYCjphqaERS4fROfElw==}
peerDependencies:
'@kong-ui-public/i18n': ^2.2.10
'@kong/kongponents': ^9.14.16
vue: '>= 3.3.13 < 4'
'@kong/design-tokens@1.17.2':
resolution: {integrity: sha512-979FHvvqPkjdUmbUL7Q2+z04GiVLXqu+OgucD3krAczuTWGfbFG6mOzbO6QIZ7/YlFMbe/N7TH85yJ+YfA/uUg==}
engines: {node: '>=18.19.1', pnpm: '>=9.7.0'}
'@kong/eslint-config-kong-ui@1.1.6':
resolution: {integrity: sha512-FcP+LzLxZ0BUu6KXGBEXoG3ACbIV8uHJ7dOSSJn10JUBHyywAEpmvzhSYeSY5lqfpGJ1z/KBfSzTIM57ZdX1Gg==}
engines: {node: '>=18.0.0 || >=20.13.1'}
peerDependencies:
eslint: '>= 9.16.0'
'@kong/icons@1.20.1':
resolution: {integrity: sha512-mcOsnEReXwMwRIWrMHxJECjMCY1I2URF+8jf/7svDHQvGjg2KHH3wq84k+vpUPVAePUUXsZJsBOGIqM4avRtKQ==}
engines: {node: '>=18.17.0', pnpm: '>=9.14.2'}
peerDependencies:
vue: '>= 3.3.4 < 4'
'@kong/kongponents@9.14.29':
resolution: {integrity: sha512-uMKtzwt/f6mQrXDj1RMWdC8+uzZoP/45dftfHNaIY75uRMRfVtoduhRfFMHXB1O2WPfEvX70N/sBvNPO26dTdw==}
engines: {node: '>=v16.20.2 || >=18.12.1 || >=20.14.0'}
peerDependencies:
axios: ^1.7.7
vue: '>= 3.5.0 < 4'
vue-router: ^4.4.5
'@material-design-icons/font@0.14.13':
resolution: {integrity: sha512-qU5Zms9VUdxxq4oC7lY+Eibz+O6YjmctGZKToUfqQOC4qVkbUNksu+0UizFBdbtx8euERZ3GGcFoN6F9LeXSMw==}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
'@nodelib/fs.stat@2.0.5':
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
'@nodelib/fs.walk@1.2.8':
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
'@parcel/watcher-android-arm64@2.4.1':
resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
'@parcel/watcher-darwin-arm64@2.4.1':
resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
'@parcel/watcher-darwin-x64@2.4.1':
resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
'@parcel/watcher-freebsd-x64@2.4.1':
resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
'@parcel/watcher-linux-arm-glibc@2.4.1':
resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
'@parcel/watcher-linux-arm64-glibc@2.4.1':
resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
'@parcel/watcher-linux-arm64-musl@2.4.1':
resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
'@parcel/watcher-linux-x64-glibc@2.4.1':
resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
'@parcel/watcher-linux-x64-musl@2.4.1':
resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
'@parcel/watcher-win32-arm64@2.4.1':
resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
'@parcel/watcher-win32-ia32@2.4.1':
resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
'@parcel/watcher-win32-x64@2.4.1':
resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
'@parcel/watcher@2.4.1':
resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
engines: {node: '>= 10.0.0'}
'@peculiar/asn1-cms@2.3.13':
resolution: {integrity: sha512-joqu8A7KR2G85oLPq+vB+NFr2ro7Ls4ol13Zcse/giPSzUNN0n2k3v8kMpf6QdGUhI13e5SzQYN8AKP8sJ8v4w==}
'@peculiar/asn1-csr@2.3.13':
resolution: {integrity: sha512-+JtFsOUWCw4zDpxp1LbeTYBnZLlGVOWmHHEhoFdjM5yn4wCn+JiYQ8mghOi36M2f6TPQ17PmhNL6/JfNh7/jCA==}
'@peculiar/asn1-ecc@2.3.14':
resolution: {integrity: sha512-zWPyI7QZto6rnLv6zPniTqbGaLh6zBpJyI46r1yS/bVHJXT2amdMHCRRnbV5yst2H8+ppXG6uXu/M6lKakiQ8w==}
'@peculiar/asn1-pfx@2.3.13':
resolution: {integrity: sha512-fypYxjn16BW+5XbFoY11Rm8LhZf6euqX/C7BTYpqVvLem1GvRl7A+Ro1bO/UPwJL0z+1mbvXEnkG0YOwbwz2LA==}
'@peculiar/asn1-pkcs8@2.3.13':
resolution: {integrity: sha512-VP3PQzbeSSjPjKET5K37pxyf2qCdM0dz3DJ56ZCsol3FqAXGekb4sDcpoL9uTLGxAh975WcdvUms9UcdZTuGyQ==}
'@peculiar/asn1-pkcs9@2.3.13':
resolution: {integrity: sha512-rIwQXmHpTo/dgPiWqUgby8Fnq6p1xTJbRMxCiMCk833kQCeZrC5lbSKg6NDnJTnX2kC6IbXBB9yCS2C73U2gJg==}
'@peculiar/asn1-rsa@2.3.13':
resolution: {integrity: sha512-wBNQqCyRtmqvXkGkL4DR3WxZhHy8fDiYtOjTeCd7SFE5F6GBeafw3EJ94PX/V0OJJrjQ40SkRY2IZu3ZSyBqcg==}
'@peculiar/asn1-schema@2.3.13':
resolution: {integrity: sha512-3Xq3a01WkHRZL8X04Zsfg//mGaA21xlL4tlVn4v2xGT0JStiztATRkMwa5b+f/HXmY2smsiLXYK46Gwgzvfg3g==}
'@peculiar/asn1-x509-attr@2.3.13':
resolution: {integrity: sha512-WpEos6CcnUzJ6o2Qb68Z7Dz5rSjRGv/DtXITCNBtjZIRWRV12yFVci76SVfOX8sisL61QWMhpLKQibrG8pi2Pw==}
'@peculiar/asn1-x509@2.3.13':
resolution: {integrity: sha512-PfeLQl2skXmxX2/AFFCVaWU8U6FKW1Db43mgBhShCOFS1bVxqtvusq1hVjfuEcuSQGedrLdCSvTgabluwN/M9A==}
'@peculiar/x509@1.12.3':
resolution: {integrity: sha512-+Mzq+W7cNEKfkNZzyLl6A6ffqc3r21HGZUezgfKxpZrkORfOqgRXnS80Zu0IV6a9Ue9QBJeKD7kN0iWfc3bhRQ==}
'@playwright/test@1.49.1':
resolution: {integrity: sha512-Ky+BVzPz8pL6PQxHqNRW1k3mIyv933LML7HktS8uik0bUXNCdPhoS/kLihiO1tMf/egaJb4IutXd7UywvXEW+g==}
engines: {node: '>=18'}
hasBin: true
'@popperjs/core@2.11.8':
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
'@rollup/pluginutils@4.2.1':
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
'@rollup/rollup-android-arm-eabi@4.24.0':
resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==}
cpu: [arm]
os: [android]
'@rollup/rollup-android-arm64@4.24.0':
resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==}
cpu: [arm64]
os: [android]
'@rollup/rollup-darwin-arm64@4.24.0':
resolution: {integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==}
cpu: [arm64]
os: [darwin]
'@rollup/rollup-darwin-x64@4.24.0':
resolution: {integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==}
cpu: [x64]
os: [darwin]
'@rollup/rollup-linux-arm-gnueabihf@4.24.0':
resolution: {integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==}
cpu: [arm]
os: [linux]
'@rollup/rollup-linux-arm-musleabihf@4.24.0':
resolution: {integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==}
cpu: [arm]
os: [linux]
'@rollup/rollup-linux-arm64-gnu@4.24.0':
resolution: {integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==}
cpu: [arm64]
os: [linux]
'@rollup/rollup-linux-arm64-musl@4.24.0':
resolution: {integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==}
cpu: [arm64]
os: [linux]
'@rollup/rollup-linux-powerpc64le-gnu@4.24.0':
resolution: {integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==}
cpu: [ppc64]
os: [linux]
'@rollup/rollup-linux-riscv64-gnu@4.24.0':
resolution: {integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==}
cpu: [riscv64]
os: [linux]
'@rollup/rollup-linux-s390x-gnu@4.24.0':
resolution: {integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==}
cpu: [s390x]
os: [linux]
'@rollup/rollup-linux-x64-gnu@4.24.0':
resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==}
cpu: [x64]
os: [linux]
'@rollup/rollup-linux-x64-musl@4.24.0':
resolution: {integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==}
cpu: [x64]
os: [linux]
'@rollup/rollup-win32-arm64-msvc@4.24.0':
resolution: {integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==}
cpu: [arm64]
os: [win32]
'@rollup/rollup-win32-ia32-msvc@4.24.0':
resolution: {integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==}
cpu: [ia32]
os: [win32]
'@rollup/rollup-win32-x64-msvc@4.24.0':
resolution: {integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==}
cpu: [x64]
os: [win32]
'@stylistic/eslint-plugin@2.12.1':
resolution: {integrity: sha512-fubZKIHSPuo07FgRTn6S4Nl0uXPRPYVNpyZzIDGfp7Fny6JjNus6kReLD7NI380JXi4HtUTSOZ34LBuNPO1XLQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.40.0'
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
'@types/lodash-es@4.17.12':
resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
'@types/lodash@4.17.13':
resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==}
'@types/lodash@4.17.7':
resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==}
'@types/node@20.4.2':
resolution: {integrity: sha512-Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw==}
'@types/resize-observer-browser@0.1.11':
resolution: {integrity: sha512-cNw5iH8JkMkb3QkCoe7DaZiawbDQEUX8t7iuQaRTyLOyQCR2h+ibBD4GJt7p5yhUHrlOeL7ZtbxNHeipqNsBzQ==}
'@typescript-eslint/eslint-plugin@8.18.2':
resolution: {integrity: sha512-adig4SzPLjeQ0Tm+jvsozSGiCliI2ajeURDGHjZ2llnA+A67HihCQ+a3amtPhUakd1GlwHxSRvzOZktbEvhPPg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/parser@8.18.2':
resolution: {integrity: sha512-y7tcq4StgxQD4mDr9+Jb26dZ+HTZ/SkfqpXSiqeUXZHxOUyjWDKsmwKhJ0/tApR08DgOhrFAoAhyB80/p3ViuA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/scope-manager@8.18.2':
resolution: {integrity: sha512-YJFSfbd0CJjy14r/EvWapYgV4R5CHzptssoag2M7y3Ra7XNta6GPAJPPP5KGB9j14viYXyrzRO5GkX7CRfo8/g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/type-utils@8.18.2':
resolution: {integrity: sha512-AB/Wr1Lz31bzHfGm/jgbFR0VB0SML/hd2P1yxzKDM48YmP7vbyJNHRExUE/wZsQj2wUCvbWH8poNHFuxLqCTnA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/types@8.18.2':
resolution: {integrity: sha512-Z/zblEPp8cIvmEn6+tPDIHUbRu/0z5lqZ+NvolL5SvXWT5rQy7+Nch83M0++XzO0XrWRFWECgOAyE8bsJTl1GQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/typescript-estree@8.18.2':
resolution: {integrity: sha512-WXAVt595HjpmlfH4crSdM/1bcsqh+1weFRWIa9XMTx/XHZ9TCKMcr725tLYqWOgzKdeDrqVHxFotrvWcEsk2Tg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/utils@8.18.2':
resolution: {integrity: sha512-Cr4A0H7DtVIPkauj4sTSXVl+VBWewE9/o40KcF3TV9aqDEOWoXF3/+oRXNby3DYzZeCATvbdksYsGZzplwnK/Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies: