forked from kunkunsh/kunkun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.lock
16007 lines (16007 loc) · 613 KB
/
deno.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "4",
"specifiers": {
"npm:@aws-sdk/client-s3@^3.583.0": "3.740.0",
"npm:@changesets/cli@^2.28.1": "2.28.1",
"npm:@eslint/js@^9.18.0": "9.19.0",
"npm:@eslint/js@^9.19.0": "9.19.0",
"npm:@eslint/js@^9.21.0": "9.21.0",
"npm:@faker-js/faker@^9.5.1": "9.5.1",
"npm:@formkit/auto-animate@~0.8.2": "0.8.2",
"npm:@grpc/grpc-js@^1.12.2": "1.12.5",
"npm:@grpc/proto-loader@~0.7.13": "0.7.13",
"npm:@huakunshen/jsr-client@~0.1.5": "0.1.5_typescript@5.6.3_zod@3.24.1_react@18.3.1",
"npm:@ianvs/prettier-plugin-sort-imports@^4.4.0": "4.4.1_prettier@3.4.2",
"npm:@ianvs/prettier-plugin-sort-imports@^4.4.1": "4.4.1_prettier@3.4.2",
"npm:@iconify/svelte@^4.2.0": "4.2.0_svelte@5.19.6__acorn@8.14.0",
"npm:@inlang/paraglide-js@1.11.8": "1.11.8",
"npm:@inlang/paraglide-sveltekit@0.16.0": "0.16.0_@sveltejs+kit@2.17.3__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__vite@5.4.14___@types+node@20.17.16__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_@sveltejs+vite-plugin-svelte@5.0.3__svelte@5.19.6___acorn@8.14.0__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_svelte@5.20.5__acorn@8.14.0_vite@5.4.14__@types+node@20.17.16_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16",
"npm:@inlang/paraglide-sveltekit@~0.15.5": "0.15.5_@sveltejs+kit@2.17.3__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__vite@5.4.14___@types+node@20.17.16__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_@sveltejs+vite-plugin-svelte@5.0.3__svelte@5.19.6___acorn@8.14.0__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_svelte@5.20.5__acorn@8.14.0_vite@5.4.14__@types+node@20.17.16_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16",
"npm:@inquirer/prompts@^5.5.0": "5.5.0",
"npm:@inquirer/prompts@^7.2.1": "7.2.4_@types+node@20.17.16",
"npm:@internationalized/date@^3.7.0": "3.7.0",
"npm:@jsr/kunkun__api@^0.0.13": "0.0.13_typescript@5.6.3_tslib@2.8.1",
"npm:@jsr/std__semver@^1.0.3": "1.0.3",
"npm:@jsr/std__semver@^1.0.4": "1.0.4",
"npm:@kksh/react@0.1.1": "0.1.1_react@18.3.1_react-dom@18.3.1__react@18.3.1_react-hook-form@7.54.2__react@18.3.1_@types+react@18.3.18_@types+react-dom@18.3.5__@types+react@18.3.18_date-fns@3.6.0_tailwindcss@3.4.17__postcss@8.5.1",
"npm:@kksh/svelte5@0.1.15": "0.1.15_lucide-svelte@0.469.0__svelte@5.19.6___acorn@8.14.0_svelte@5.19.6__acorn@8.14.0_svelte-sonner@0.3.28__svelte@5.19.6___acorn@8.14.0_typescript@5.6.3_sveltekit-superforms@2.23.1__@sveltejs+kit@2.17.3___@sveltejs+vite-plugin-svelte@5.0.3____svelte@5.19.6_____acorn@8.14.0____vite@6.0.11_____@types+node@20.17.16_____jiti@2.4.2____@types+node@20.17.16___svelte@5.19.6____acorn@8.14.0___vite@5.4.14____@types+node@20.17.16___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__valibot@1.0.0-beta.12___typescript@5.6.3__zod@3.24.1__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__vite@5.4.14___@types+node@20.17.16__typescript@5.6.3__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_@sveltejs+kit@2.17.3__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__vite@5.4.14___@types+node@20.17.16__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_valibot@1.0.0-beta.12__typescript@5.6.3_zod@3.24.1_@sveltejs+vite-plugin-svelte@5.0.3__svelte@5.19.6___acorn@8.14.0__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_vite@5.4.14__@types+node@20.17.16_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16",
"npm:@kksh/svelte5@~0.1.15": "0.1.16_lucide-svelte@0.469.0__svelte@5.19.6___acorn@8.14.0_svelte@5.19.6__acorn@8.14.0_svelte-sonner@0.3.28__svelte@5.19.6___acorn@8.14.0_typescript@5.6.3",
"npm:@kksh/vue@0.1.3": "0.1.3_vue@3.5.13__typescript@5.6.3_nanostores@0.10.3_@unovis+ts@1.5.0_zod@3.24.1_tailwindcss@3.4.17__postcss@8.5.1_radix-vue@1.9.13__vue@3.5.13___typescript@5.6.3__typescript@5.6.3_typescript@5.6.3",
"npm:@nuxtjs/tailwindcss@6.12.1": "6.12.1_postcss@8.5.1_tailwindcss@3.4.17__postcss@8.5.1_rollup@4.34.0",
"npm:@octokit/rest@^21.1.0": "21.1.0_@octokit+core@6.1.3",
"npm:@radix-icons/vue@1": "1.0.0_vue@3.5.13__typescript@5.6.3_typescript@5.6.3",
"npm:@radix-ui/react-icons@^1.3.0": "1.3.2_react@18.3.1",
"npm:@radix-ui/react-icons@^1.3.2": "1.3.2_react@18.3.1",
"npm:@rollup/plugin-commonjs@^26.0.1": "26.0.3_rollup@4.34.0",
"npm:@rollup/plugin-node-resolve@^15.2.3": "15.3.1_rollup@4.34.0",
"npm:@rollup/plugin-typescript@^11.1.6": "11.1.6_rollup@4.34.0_tslib@2.8.1_typescript@5.6.3",
"npm:@rollup/plugin-typescript@^12.1.2": "12.1.2_rollup@4.34.0_tslib@2.8.1_typescript@5.6.3",
"npm:@shikijs/langs@^2.3.2": "2.3.2",
"npm:@shikijs/themes@^2.3.2": "2.3.2",
"npm:@supabase/ssr@~0.5.2": "0.5.2_@supabase+supabase-js@2.48.1",
"npm:@supabase/supabase-js@^2.48.0": "2.48.1",
"npm:@supabase/supabase-js@^2.49.1": "2.49.1",
"npm:@sveltejs/adapter-auto@^3.3.1": "3.3.1_@sveltejs+kit@2.17.3__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__vite@5.4.14___@types+node@20.17.16__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_@sveltejs+vite-plugin-svelte@5.0.3__svelte@5.19.6___acorn@8.14.0__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_svelte@5.19.6__acorn@8.14.0_vite@5.4.14__@types+node@20.17.16_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16",
"npm:@sveltejs/adapter-static@^3.0.8": "3.0.8_@sveltejs+kit@2.17.3__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__vite@5.4.14___@types+node@20.17.16__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_@sveltejs+vite-plugin-svelte@5.0.3__svelte@5.19.6___acorn@8.14.0__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_svelte@5.19.6__acorn@8.14.0_vite@5.4.14__@types+node@20.17.16_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16",
"npm:@sveltejs/kit@^2.15.2": "2.17.3_@sveltejs+vite-plugin-svelte@5.0.3__svelte@5.19.6___acorn@8.14.0__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_svelte@5.19.6__acorn@8.14.0_vite@5.4.14__@types+node@20.17.16_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16",
"npm:@sveltejs/kit@^2.17.3": "2.17.3_@sveltejs+vite-plugin-svelte@5.0.3__svelte@5.19.6___acorn@8.14.0__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_svelte@5.19.6__acorn@8.14.0_vite@5.4.14__@types+node@20.17.16_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16",
"npm:@sveltejs/vite-plugin-svelte@^5.0.3": "5.0.3_svelte@5.19.6__acorn@8.14.0_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16",
"npm:@tailwindcss/aspect-ratio@~0.4.2": "0.4.2_tailwindcss@3.4.17__postcss@8.5.1",
"npm:@tailwindcss/container-queries@~0.1.1": "0.1.1_tailwindcss@3.4.17__postcss@8.5.1",
"npm:@tailwindcss/forms@~0.5.10": "0.5.10_tailwindcss@3.4.17__postcss@8.5.1",
"npm:@tailwindcss/typography@~0.5.16": "0.5.16_tailwindcss@3.4.17__postcss@8.5.1",
"npm:@tanstack/svelte-virtual@^3.13.2": "3.13.2_svelte@5.19.6__acorn@8.14.0",
"npm:@tanstack/table-core@^8.21.2": "8.21.2",
"npm:@tauri-apps/api@^2.1.1": "2.2.0",
"npm:@tauri-apps/api@^2.2.0": "2.2.0",
"npm:@tauri-apps/api@^2.3.0": "2.3.0",
"npm:@tauri-apps/cli@^2.2.2": "2.3.1",
"npm:@tauri-apps/cli@^2.3.1": "2.3.1",
"npm:@tauri-apps/plugin-autostart@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-deep-link@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-dialog@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-fs@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-global-shortcut@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-http@^2.2.0": "2.3.0",
"npm:@tauri-apps/plugin-http@^2.3.0": "2.3.0",
"npm:@tauri-apps/plugin-log@^2.2.0": "2.2.1",
"npm:@tauri-apps/plugin-log@^2.2.3": "2.2.3",
"npm:@tauri-apps/plugin-notification@^2.2.0": "2.2.1",
"npm:@tauri-apps/plugin-notification@^2.2.1": "2.2.1",
"npm:@tauri-apps/plugin-os@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-process@2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-shell@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-store@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-stronghold@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-updater@^2.3.0": "2.5.1",
"npm:@tauri-apps/plugin-updater@^2.5.1": "2.5.1",
"npm:@tauri-apps/plugin-upload@^2.2.1": "2.2.1",
"npm:@tsconfig/svelte@^5.0.4": "5.0.4",
"npm:@types/bun@latest": "1.2.2",
"npm:@types/debug@^4.1.12": "4.1.12",
"npm:@types/eslint@^9.6.1": "9.6.1",
"npm:@types/fs-extra@^11.0.4": "11.0.4",
"npm:@types/google-protobuf@^3.15.12": "3.15.12",
"npm:@types/lodash@^4.17.14": "4.17.15",
"npm:@types/madge@^5.0.3": "5.0.3",
"npm:@types/node@20": "20.17.16",
"npm:@types/node@^22.10.5": "22.13.0",
"npm:@types/node@^22.7.5": "22.13.0",
"npm:@types/react-dom@18": "18.3.5_@types+react@18.3.18",
"npm:@types/react-dom@^18.3.0": "18.3.5_@types+react@18.3.18",
"npm:@types/react@18": "18.3.18",
"npm:@types/react@^18.3.3": "18.3.18",
"npm:@types/semver@^7.5.8": "7.5.8",
"npm:@typescript-eslint/eslint-plugin@^7.15.0": "7.18.0_@typescript-eslint+parser@7.18.0__eslint@8.57.1__typescript@5.6.3_eslint@8.57.1_typescript@5.6.3",
"npm:@typescript-eslint/eslint-plugin@^8.20.0": "8.22.0_@typescript-eslint+parser@8.22.0__eslint@8.57.1__typescript@5.6.3_eslint@8.57.1_typescript@5.6.3",
"npm:@typescript-eslint/eslint-plugin@^8.25.0": "8.25.0_@typescript-eslint+parser@8.22.0__eslint@8.57.1__typescript@5.6.3_eslint@8.57.1_typescript@5.6.3",
"npm:@typescript-eslint/parser@^7.15.0": "7.18.0_eslint@8.57.1_typescript@5.6.3",
"npm:@typescript-eslint/parser@^8.20.0": "8.22.0_eslint@8.57.1_typescript@5.6.3",
"npm:@typescript-eslint/parser@^8.25.0": "8.25.0_eslint@8.57.1_typescript@5.6.3",
"npm:@valibot/to-json-schema@1.0.0-beta.4": "1.0.0-beta.4_valibot@1.0.0-beta.12__typescript@5.6.3_typescript@5.6.3",
"npm:@vitejs/plugin-react@^4.3.1": "4.3.4_vite@5.4.14__@types+node@20.17.16_@babel+core@7.26.7_@types+node@20.17.16",
"npm:@vitejs/plugin-vue@^5.1.4": "5.2.1_vite@5.4.14__@types+node@20.17.16_vue@3.5.13__typescript@5.6.3_@types+node@20.17.16_typescript@5.6.3",
"npm:autoprefixer@^10.4.19": "10.4.20_postcss@8.5.1",
"npm:autoprefixer@^10.4.20": "10.4.20_postcss@8.5.1",
"npm:bits-ui@1.0.0-next.77": "1.0.0-next.77_svelte@5.19.6__acorn@8.14.0",
"npm:bits-ui@1.0.0-next.86": "1.0.0-next.86_svelte@5.19.6__acorn@8.14.0",
"npm:chalk@^5.3.0": "5.4.1",
"npm:chalk@^5.4.1": "5.4.1",
"npm:class-variance-authority@0.7": "0.7.1",
"npm:clsx@^2.1.1": "2.1.1",
"npm:commander@13": "13.1.0",
"npm:commander@^12.1.0": "12.1.0",
"npm:console-table-printer@^2.12.1": "2.12.1",
"npm:cross-env@^7.0.3": "7.0.3",
"npm:debug@^4.4.0": "4.4.0",
"npm:dompurify@^3.2.3": "3.2.4",
"npm:dompurify@^3.2.4": "3.2.4",
"npm:eslint-config-next@15.0.3": "15.0.3_eslint@8.57.1_typescript@5.6.3_@typescript-eslint+parser@8.22.0__eslint@8.57.1__typescript@5.6.3_eslint-plugin-import@2.31.0__eslint@8.57.1",
"npm:eslint-config-prettier@^10.0.1": "10.0.1_eslint@8.57.1",
"npm:eslint-config-prettier@^9.1.0": "9.1.0_eslint@8.57.1",
"npm:eslint-config-turbo@^2.3.3": "2.4.4_eslint@8.57.1_turbo@2.4.4",
"npm:eslint-plugin-import@^2.31.0": "2.31.0_eslint@8.57.1",
"npm:eslint-plugin-react-hooks@^4.6.2": "4.6.2_eslint@8.57.1",
"npm:eslint-plugin-react-refresh@~0.4.7": "0.4.18_eslint@8.57.1",
"npm:eslint-plugin-svelte@^2.46.1": "2.46.1_eslint@8.57.1_svelte@5.19.6__acorn@8.14.0_postcss@8.5.1",
"npm:eslint@8": "8.57.1",
"npm:eslint@^8.57.0": "8.57.1",
"npm:eslint@^9.17.0": "9.19.0",
"npm:eslint@^9.21.0": "9.21.0",
"npm:formsnap@2.0.0-next.1": "2.0.0-next.1_svelte@5.19.6__acorn@8.14.0_sveltekit-superforms@2.23.1__@sveltejs+kit@2.17.3___@sveltejs+vite-plugin-svelte@5.0.3____svelte@5.19.6_____acorn@8.14.0____vite@6.0.11_____@types+node@20.17.16_____jiti@2.4.2____@types+node@20.17.16___svelte@5.19.6____acorn@8.14.0___vite@5.4.14____@types+node@20.17.16___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__valibot@1.0.0-beta.12___typescript@5.6.3__zod@3.24.1__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__vite@5.4.14___@types+node@20.17.16__typescript@5.6.3__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_@sveltejs+kit@2.17.3__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__vite@5.4.14___@types+node@20.17.16__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_valibot@1.0.0-beta.12__typescript@5.6.3_zod@3.24.1_@sveltejs+vite-plugin-svelte@5.0.3__svelte@5.19.6___acorn@8.14.0__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_vite@5.4.14__@types+node@20.17.16_typescript@5.6.3_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16",
"npm:fs-extra@^11.2.0": "11.3.0",
"npm:fuse.js@^7.1.0": "7.1.0",
"npm:get-folder-size@5": "5.0.0",
"npm:globals@^15.14.0": "15.14.0",
"npm:google-protobuf@^3.21.4": "3.21.4",
"npm:gsap@^3.12.7": "3.12.7",
"npm:handlebars@^4.7.8": "4.7.8",
"npm:i18next@^23.15.1": "23.16.8",
"npm:inquirer@^10.1.2": "10.2.2",
"npm:kkrpc@~0.1.1": "0.1.1_typescript@5.6.3",
"npm:kkrpc@~0.1.2": "0.1.2_typescript@5.6.3",
"npm:lodash@^4.17.21": "4.17.21",
"npm:lucide-svelte@0.469": "0.469.0_svelte@5.19.6__acorn@8.14.0",
"npm:lucide-svelte@0.471": "0.471.0_svelte@5.19.6__acorn@8.14.0",
"npm:lucide-svelte@0.474": "0.474.0_svelte@5.19.6__acorn@8.14.0",
"npm:lz-string@^1.5.0": "1.5.0",
"npm:madge@8": "8.0.0_typescript@5.6.3",
"npm:minimatch@^10.0.1": "10.0.1",
"npm:mode-watcher@0.5": "0.5.1_svelte@5.19.6__acorn@8.14.0",
"npm:moment@^2.30.1": "2.30.1",
"npm:next@14.2.18": "14.2.18_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:node-fetch@^3.3.2": "3.3.2",
"npm:nuxt@^3.12.4": "3.15.4_@types+node@20.17.16_vite@5.4.14__@types+node@20.17.16_vue@3.5.13__typescript@5.6.3_vue-router@4.5.0__vue@3.5.13___typescript@5.6.3__typescript@5.6.3_typescript@5.6.3_rollup@4.34.0_eslint@8.57.1",
"npm:paneforge@1.0.0-next.2": "1.0.0-next.2_svelte@5.19.6__acorn@8.14.0",
"npm:postcss@8": "8.5.1",
"npm:postcss@^8.4.38": "8.5.1",
"npm:postcss@^8.4.49": "8.5.1",
"npm:prettier-plugin-svelte@^3.3.2": "3.3.3_prettier@3.4.2_svelte@5.19.6__acorn@8.14.0",
"npm:prettier-plugin-svelte@^3.3.3": "3.3.3_prettier@3.4.2_svelte@5.19.6__acorn@8.14.0",
"npm:prettier-plugin-tailwindcss@~0.6.11": "0.6.11_@ianvs+prettier-plugin-sort-imports@4.4.1__prettier@3.4.2_prettier@3.4.2_prettier-plugin-svelte@3.3.3__prettier@3.4.2__svelte@5.19.6___acorn@8.14.0_svelte@5.19.6__acorn@8.14.0",
"npm:prettier-plugin-tailwindcss@~0.6.9": "0.6.11_@ianvs+prettier-plugin-sort-imports@4.4.1__prettier@3.4.2_prettier@3.4.2_prettier-plugin-svelte@3.3.3__prettier@3.4.2__svelte@5.19.6___acorn@8.14.0_svelte@5.19.6__acorn@8.14.0",
"npm:prettier@^3.4.2": "3.4.2",
"npm:prettier@^3.5.2": "3.5.3",
"npm:pretty-bytes@^6.1.1": "6.1.1",
"npm:protoc-gen-ts@~0.8.7": "0.8.7",
"npm:radix-vue@^1.9.5": "1.9.13_vue@3.5.13__typescript@5.6.3_typescript@5.6.3",
"npm:react-dom@18.3.1": "18.3.1_react@18.3.1",
"npm:react-dom@^18.3.1": "18.3.1_react@18.3.1",
"npm:react@18.3.1": "18.3.1",
"npm:react@^18.3.1": "18.3.1",
"npm:rollup-plugin-visualizer@^5.12.0": "5.14.0_rollup@4.34.0",
"npm:rollup@^4.28.1": "4.34.0",
"npm:rollup@^4.30.1": "4.34.0",
"npm:semver@^7.6.3": "7.7.0",
"npm:semver@^7.7.1": "7.7.1",
"npm:shiki-magic-move@~0.5.2": "0.5.2_react@18.3.1_shiki@1.29.2_svelte@5.19.6__acorn@8.14.0_vue@3.5.13__typescript@5.6.3_typescript@5.6.3",
"npm:shiki@^1.27.2": "1.29.2",
"npm:supabase@^2.15.8": "2.15.8",
"npm:svelte-check@^4.1.1": "4.1.4_svelte@5.19.6__acorn@8.14.0_typescript@5.6.3",
"npm:svelte-check@^4.1.4": "4.1.4_svelte@5.19.6__acorn@8.14.0_typescript@5.6.3",
"npm:svelte-inspect-value@0.3": "0.3.0_svelte@5.19.6__acorn@8.14.0",
"npm:svelte-markdown@~0.4.1": "0.4.1_svelte@4.2.19",
"npm:svelte-radix@^2.0.1": "2.0.1_svelte@5.19.6__acorn@8.14.0",
"npm:svelte-sonner@~0.3.28": "0.3.28_svelte@5.19.6__acorn@8.14.0",
"npm:svelte@^5.16.6": "5.19.6_acorn@8.14.0",
"npm:svelte@^5.20.5": "5.20.5_acorn@8.14.0",
"npm:sveltekit-superforms@^2.22.1": "2.23.1_@sveltejs+kit@2.17.3__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__vite@5.4.14___@types+node@20.17.16__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_svelte@5.19.6__acorn@8.14.0_valibot@1.0.0-beta.12__typescript@5.6.3_zod@3.24.1_@sveltejs+vite-plugin-svelte@5.0.3__svelte@5.19.6___acorn@8.14.0__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_vite@5.4.14__@types+node@20.17.16_typescript@5.6.3_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16",
"npm:sveltekit-superforms@^2.23.1": "2.23.1_@sveltejs+kit@2.17.3__@sveltejs+vite-plugin-svelte@5.0.3___svelte@5.19.6____acorn@8.14.0___vite@6.0.11____@types+node@20.17.16____jiti@2.4.2___@types+node@20.17.16__svelte@5.19.6___acorn@8.14.0__vite@5.4.14___@types+node@20.17.16__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_svelte@5.19.6__acorn@8.14.0_valibot@1.0.0-beta.12__typescript@5.6.3_zod@3.24.1_@sveltejs+vite-plugin-svelte@5.0.3__svelte@5.19.6___acorn@8.14.0__vite@6.0.11___@types+node@20.17.16___jiti@2.4.2__@types+node@20.17.16_vite@5.4.14__@types+node@20.17.16_typescript@5.6.3_vite@6.0.11__@types+node@20.17.16__jiti@2.4.2_@types+node@20.17.16",
"npm:tailwind-merge@^2.4.0": "2.6.0",
"npm:tailwind-merge@^2.5.5": "2.6.0",
"npm:tailwind-merge@^2.6.0": "2.6.0",
"npm:tailwind-variants@0.3": "0.3.1_tailwindcss@3.4.17__postcss@8.5.1",
"npm:tailwind-variants@~0.3.1": "0.3.1_tailwindcss@3.4.17__postcss@8.5.1",
"npm:tailwindcss-animate@^1.0.7": "1.0.7_tailwindcss@3.4.17__postcss@8.5.1",
"npm:tailwindcss@^3.4.1": "3.4.17_postcss@8.5.1",
"npm:tailwindcss@^3.4.15": "3.4.17_postcss@8.5.1",
"npm:tailwindcss@^3.4.17": "3.4.17_postcss@8.5.1",
"npm:tailwindcss@^3.4.6": "3.4.17_postcss@8.5.1",
"npm:tailwindcss@^3.4.7": "3.4.17_postcss@8.5.1",
"npm:tar@^7.4.3": "7.4.3",
"npm:tauri-api-adapter@~0.3.23": "0.3.23_typescript@5.6.3",
"npm:tauri-plugin-clipboard-api@^2.1.11": "2.1.11_typescript@5.6.3",
"npm:tauri-plugin-shellx-api@2.0.15": "2.0.15",
"npm:tauri-plugin-shellx-api@^2.0.14": "2.0.14",
"npm:tauri-plugin-shellx-api@^2.0.15": "2.0.15",
"npm:tauri-plugin-shellx-api@^2.0.16": "2.0.16",
"npm:tauri-plugin-system-info-api@2.0.8": "2.0.8_typescript@5.6.3",
"npm:ts-proto@^2.3.0": "2.6.1",
"npm:tslib@^2.8.1": "2.8.1",
"npm:turbo@^2.4.4": "2.4.4",
"npm:typedoc@~0.27.5": "0.27.6_typescript@5.6.3",
"npm:typedoc@~0.27.6": "0.27.6_typescript@5.6.3",
"npm:typescript-eslint@^8.19.1": "8.22.0_eslint@8.57.1_typescript@5.6.3_@typescript-eslint+parser@8.22.0__eslint@8.57.1__typescript@5.6.3",
"npm:typescript-eslint@^8.20.0": "8.22.0_eslint@8.57.1_typescript@5.6.3_@typescript-eslint+parser@8.22.0__eslint@8.57.1__typescript@5.6.3",
"npm:typescript-eslint@^8.25.0": "8.25.0_eslint@8.57.1_typescript@5.6.3_@typescript-eslint+parser@8.25.0__eslint@8.57.1__typescript@5.6.3",
"npm:typescript@5": "5.7.3",
"npm:typescript@^5.2.2": "5.7.3",
"npm:typescript@^5.5.4": "5.7.3",
"npm:typescript@^5.6.3": "5.7.3",
"npm:typescript@^5.7.2": "5.7.3",
"npm:typescript@~5.6.2": "5.6.3",
"npm:typescript@~5.7.2": "5.7.3",
"npm:uuid@^11.0.3": "11.0.5",
"npm:uuid@^11.1.0": "11.1.0",
"npm:valibot@1.0.0-beta.12": "1.0.0-beta.12_typescript@5.6.3",
"npm:valibot@^1.0.0-beta.10": "1.0.0-beta.14_typescript@5.6.3",
"npm:valibot@^1.0.0-beta.11": "1.0.0-beta.14_typescript@5.6.3",
"npm:verify-package-export@^0.0.3": "0.0.3_typescript@5.6.3",
"npm:vite@^5.4.10": "5.4.14_@types+node@20.17.16",
"npm:vite@^5.4.9": "5.4.14_@types+node@20.17.16",
"npm:vite@^6.0.3": "6.0.11_@types+node@20.17.16_jiti@2.4.2",
"npm:vite@^6.0.7": "6.0.11_@types+node@20.17.16_jiti@2.4.2",
"npm:vite@^6.2.0": "6.2.0_@types+node@20.17.16",
"npm:vitest@^2.1.9": "2.1.9_@types+node@20.17.16_vite@5.4.14__@types+node@20.17.16",
"npm:vue-tsc@^2.1.8": "2.2.0_typescript@5.6.3",
"npm:vue@^3.4.35": "3.5.13_typescript@5.6.3",
"npm:vue@^3.5.12": "3.5.13_typescript@5.6.3",
"npm:vue@latest": "3.5.13_typescript@5.6.3",
"npm:zod@^3.24.1": "3.24.1",
"npm:zod@^3.24.2": "3.24.2"
},
"npm": {
"@alloc/quick-lru@5.2.0": {
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="
},
"@ampproject/remapping@2.3.0": {
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dependencies": [
"@jridgewell/gen-mapping",
"@jridgewell/trace-mapping"
]
},
"@antfu/utils@0.7.10": {
"integrity": "sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww=="
},
"@apidevtools/json-schema-ref-parser@11.7.2": {
"integrity": "sha512-4gY54eEGEstClvEkGnwVkTkrx0sqwemEFG5OSRRn3tD91XH0+Q8XIkYIfo7IwEWPpJZwILb9GUXeShtplRc/eA==",
"dependencies": [
"@jsdevtools/ono",
"@types/json-schema",
"js-yaml@4.1.0"
]
},
"@apidevtools/openapi-schemas@2.1.0": {
"integrity": "sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ=="
},
"@apidevtools/swagger-methods@3.0.2": {
"integrity": "sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg=="
},
"@apidevtools/swagger-parser@10.1.1_openapi-types@12.1.3_ajv@8.17.1": {
"integrity": "sha512-u/kozRnsPO/x8QtKYJOqoGtC4kH6yg1lfYkB9Au0WhYB0FNLpyFusttQtvhlwjtG3rOwiRz4D8DnnXa8iEpIKA==",
"dependencies": [
"@apidevtools/json-schema-ref-parser",
"@apidevtools/openapi-schemas",
"@apidevtools/swagger-methods",
"@jsdevtools/ono",
"ajv@8.17.1",
"ajv-draft-04",
"call-me-maybe",
"openapi-types"
]
},
"@aws-crypto/crc32@5.2.0": {
"integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
"dependencies": [
"@aws-crypto/util",
"@aws-sdk/types",
"tslib@2.8.1"
]
},
"@aws-crypto/crc32c@5.2.0": {
"integrity": "sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==",
"dependencies": [
"@aws-crypto/util",
"@aws-sdk/types",
"tslib@2.8.1"
]
},
"@aws-crypto/sha1-browser@5.2.0": {
"integrity": "sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==",
"dependencies": [
"@aws-crypto/supports-web-crypto",
"@aws-crypto/util",
"@aws-sdk/types",
"@aws-sdk/util-locate-window",
"@smithy/util-utf8@2.3.0",
"tslib@2.8.1"
]
},
"@aws-crypto/sha256-browser@5.2.0": {
"integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
"dependencies": [
"@aws-crypto/sha256-js",
"@aws-crypto/supports-web-crypto",
"@aws-crypto/util",
"@aws-sdk/types",
"@aws-sdk/util-locate-window",
"@smithy/util-utf8@2.3.0",
"tslib@2.8.1"
]
},
"@aws-crypto/sha256-js@5.2.0": {
"integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
"dependencies": [
"@aws-crypto/util",
"@aws-sdk/types",
"tslib@2.8.1"
]
},
"@aws-crypto/supports-web-crypto@5.2.0": {
"integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
"dependencies": [
"tslib@2.8.1"
]
},
"@aws-crypto/util@5.2.0": {
"integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
"dependencies": [
"@aws-sdk/types",
"@smithy/util-utf8@2.3.0",
"tslib@2.8.1"
]
},
"@aws-sdk/client-s3@3.740.0": {
"integrity": "sha512-X9aQOFJC3TsYwQP3AGcNhfYcFehVEHRKCHtHYOIKv5t1ydSJxpN/v34OrMMKvG1jFWMNkSYiSCVB9ZVo9KUwVA==",
"dependencies": [
"@aws-crypto/sha1-browser",
"@aws-crypto/sha256-browser",
"@aws-crypto/sha256-js",
"@aws-sdk/core",
"@aws-sdk/credential-provider-node",
"@aws-sdk/middleware-bucket-endpoint",
"@aws-sdk/middleware-expect-continue",
"@aws-sdk/middleware-flexible-checksums",
"@aws-sdk/middleware-host-header",
"@aws-sdk/middleware-location-constraint",
"@aws-sdk/middleware-logger",
"@aws-sdk/middleware-recursion-detection",
"@aws-sdk/middleware-sdk-s3",
"@aws-sdk/middleware-ssec",
"@aws-sdk/middleware-user-agent",
"@aws-sdk/region-config-resolver",
"@aws-sdk/signature-v4-multi-region",
"@aws-sdk/types",
"@aws-sdk/util-endpoints",
"@aws-sdk/util-user-agent-browser",
"@aws-sdk/util-user-agent-node",
"@aws-sdk/xml-builder",
"@smithy/config-resolver",
"@smithy/core",
"@smithy/eventstream-serde-browser",
"@smithy/eventstream-serde-config-resolver",
"@smithy/eventstream-serde-node",
"@smithy/fetch-http-handler",
"@smithy/hash-blob-browser",
"@smithy/hash-node",
"@smithy/hash-stream-node",
"@smithy/invalid-dependency",
"@smithy/md5-js",
"@smithy/middleware-content-length",
"@smithy/middleware-endpoint",
"@smithy/middleware-retry",
"@smithy/middleware-serde",
"@smithy/middleware-stack",
"@smithy/node-config-provider",
"@smithy/node-http-handler",
"@smithy/protocol-http",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/url-parser",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
"@smithy/util-defaults-mode-browser",
"@smithy/util-defaults-mode-node",
"@smithy/util-endpoints",
"@smithy/util-middleware",
"@smithy/util-retry",
"@smithy/util-stream",
"@smithy/util-utf8@4.0.0",
"@smithy/util-waiter",
"tslib@2.8.1"
]
},
"@aws-sdk/client-sso@3.734.0": {
"integrity": "sha512-oerepp0mut9VlgTwnG5Ds/lb0C0b2/rQ+hL/rF6q+HGKPfGsCuPvFx1GtwGKCXd49ase88/jVgrhcA9OQbz3kg==",
"dependencies": [
"@aws-crypto/sha256-browser",
"@aws-crypto/sha256-js",
"@aws-sdk/core",
"@aws-sdk/middleware-host-header",
"@aws-sdk/middleware-logger",
"@aws-sdk/middleware-recursion-detection",
"@aws-sdk/middleware-user-agent",
"@aws-sdk/region-config-resolver",
"@aws-sdk/types",
"@aws-sdk/util-endpoints",
"@aws-sdk/util-user-agent-browser",
"@aws-sdk/util-user-agent-node",
"@smithy/config-resolver",
"@smithy/core",
"@smithy/fetch-http-handler",
"@smithy/hash-node",
"@smithy/invalid-dependency",
"@smithy/middleware-content-length",
"@smithy/middleware-endpoint",
"@smithy/middleware-retry",
"@smithy/middleware-serde",
"@smithy/middleware-stack",
"@smithy/node-config-provider",
"@smithy/node-http-handler",
"@smithy/protocol-http",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/url-parser",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
"@smithy/util-defaults-mode-browser",
"@smithy/util-defaults-mode-node",
"@smithy/util-endpoints",
"@smithy/util-middleware",
"@smithy/util-retry",
"@smithy/util-utf8@4.0.0",
"tslib@2.8.1"
]
},
"@aws-sdk/core@3.734.0": {
"integrity": "sha512-SxnDqf3vobdm50OLyAKfqZetv6zzwnSqwIwd3jrbopxxHKqNIM/I0xcYjD6Tn+mPig+u7iRKb9q3QnEooFTlmg==",
"dependencies": [
"@aws-sdk/types",
"@smithy/core",
"@smithy/node-config-provider",
"@smithy/property-provider",
"@smithy/protocol-http",
"@smithy/signature-v4",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/util-middleware",
"fast-xml-parser",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-env@3.734.0": {
"integrity": "sha512-gtRkzYTGafnm1FPpiNO8VBmJrYMoxhDlGPYDVcijzx3DlF8dhWnowuSBCxLSi+MJMx5hvwrX2A+e/q0QAeHqmw==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-http@3.734.0": {
"integrity": "sha512-JFSL6xhONsq+hKM8xroIPhM5/FOhiQ1cov0lZxhzZWj6Ai3UAjucy3zyIFDr9MgP1KfCYNdvyaUq9/o+HWvEDg==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/fetch-http-handler",
"@smithy/node-http-handler",
"@smithy/property-provider",
"@smithy/protocol-http",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/util-stream",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-ini@3.734.0": {
"integrity": "sha512-HEyaM/hWI7dNmb4NhdlcDLcgJvrilk8G4DQX6qz0i4pBZGC2l4iffuqP8K6ZQjUfz5/6894PzeFuhTORAMd+cg==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/credential-provider-env",
"@aws-sdk/credential-provider-http",
"@aws-sdk/credential-provider-process",
"@aws-sdk/credential-provider-sso",
"@aws-sdk/credential-provider-web-identity",
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/credential-provider-imds",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-node@3.738.0": {
"integrity": "sha512-3MuREsazwBxghKb2sQQHvie+uuK4dX4/ckFYiSoffzJQd0YHxaGxf8cr4NOSCQCUesWu8D3Y0SzlnHGboVSkpA==",
"dependencies": [
"@aws-sdk/credential-provider-env",
"@aws-sdk/credential-provider-http",
"@aws-sdk/credential-provider-ini",
"@aws-sdk/credential-provider-process",
"@aws-sdk/credential-provider-sso",
"@aws-sdk/credential-provider-web-identity",
"@aws-sdk/types",
"@smithy/credential-provider-imds",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-process@3.734.0": {
"integrity": "sha512-zvjsUo+bkYn2vjT+EtLWu3eD6me+uun+Hws1IyWej/fKFAqiBPwyeyCgU7qjkiPQSXqk1U9+/HG9IQ6Iiz+eBw==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-sso@3.734.0": {
"integrity": "sha512-cCwwcgUBJOsV/ddyh1OGb4gKYWEaTeTsqaAK19hiNINfYV/DO9r4RMlnWAo84sSBfJuj9shUNsxzyoe6K7R92Q==",
"dependencies": [
"@aws-sdk/client-sso",
"@aws-sdk/core",
"@aws-sdk/token-providers",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/credential-provider-web-identity@3.734.0": {
"integrity": "sha512-t4OSOerc+ppK541/Iyn1AS40+2vT/qE+MFMotFkhCgCJbApeRF2ozEdnDN6tGmnl4ybcUuxnp9JWLjwDVlR/4g==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-bucket-endpoint@3.734.0": {
"integrity": "sha512-etC7G18aF7KdZguW27GE/wpbrNmYLVT755EsFc8kXpZj8D6AFKxc7OuveinJmiy0bYXAMspJUWsF6CrGpOw6CQ==",
"dependencies": [
"@aws-sdk/types",
"@aws-sdk/util-arn-parser",
"@smithy/node-config-provider",
"@smithy/protocol-http",
"@smithy/types",
"@smithy/util-config-provider",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-expect-continue@3.734.0": {
"integrity": "sha512-P38/v1l6HjuB2aFUewt7ueAW5IvKkFcv5dalPtbMGRhLeyivBOHwbCyuRKgVs7z7ClTpu9EaViEGki2jEQqEsQ==",
"dependencies": [
"@aws-sdk/types",
"@smithy/protocol-http",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-flexible-checksums@3.735.0": {
"integrity": "sha512-Tx7lYTPwQFRe/wQEHMR6Drh/S+X0ToAEq1Ava9QyxV1riwtepzRLojpNDELFb3YQVVYbX7FEiBMCJLMkmIIY+A==",
"dependencies": [
"@aws-crypto/crc32",
"@aws-crypto/crc32c",
"@aws-crypto/util",
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/is-array-buffer@4.0.0",
"@smithy/node-config-provider",
"@smithy/protocol-http",
"@smithy/types",
"@smithy/util-middleware",
"@smithy/util-stream",
"@smithy/util-utf8@4.0.0",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-host-header@3.734.0": {
"integrity": "sha512-LW7RRgSOHHBzWZnigNsDIzu3AiwtjeI2X66v+Wn1P1u+eXssy1+up4ZY/h+t2sU4LU36UvEf+jrZti9c6vRnFw==",
"dependencies": [
"@aws-sdk/types",
"@smithy/protocol-http",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-location-constraint@3.734.0": {
"integrity": "sha512-EJEIXwCQhto/cBfHdm3ZOeLxd2NlJD+X2F+ZTOxzokuhBtY0IONfC/91hOo5tWQweerojwshSMHRCKzRv1tlwg==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-logger@3.734.0": {
"integrity": "sha512-mUMFITpJUW3LcKvFok176eI5zXAUomVtahb9IQBwLzkqFYOrMJvWAvoV4yuxrJ8TlQBG8gyEnkb9SnhZvjg67w==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-recursion-detection@3.734.0": {
"integrity": "sha512-CUat2d9ITsFc2XsmeiRQO96iWpxSKYFjxvj27Hc7vo87YUHRnfMfnc8jw1EpxEwMcvBD7LsRa6vDNky6AjcrFA==",
"dependencies": [
"@aws-sdk/types",
"@smithy/protocol-http",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-sdk-s3@3.740.0": {
"integrity": "sha512-VML9TzNoQdAs5lSPQSEgZiPgMUSz2H7SltaLb9g4tHwKK5xQoTq5WcDd6V1d2aPxSN5Q2Q63aiVUBby6MdUN/Q==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@aws-sdk/util-arn-parser",
"@smithy/core",
"@smithy/node-config-provider",
"@smithy/protocol-http",
"@smithy/signature-v4",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/util-config-provider",
"@smithy/util-middleware",
"@smithy/util-stream",
"@smithy/util-utf8@4.0.0",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-ssec@3.734.0": {
"integrity": "sha512-d4yd1RrPW/sspEXizq2NSOUivnheac6LPeLSLnaeTbBG9g1KqIqvCzP1TfXEqv2CrWfHEsWtJpX7oyjySSPvDQ==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/middleware-user-agent@3.734.0": {
"integrity": "sha512-MFVzLWRkfFz02GqGPjqSOteLe5kPfElUrXZft1eElnqulqs6RJfVSpOV7mO90gu293tNAeggMWAVSGRPKIYVMg==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@aws-sdk/util-endpoints",
"@smithy/core",
"@smithy/protocol-http",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/nested-clients@3.734.0": {
"integrity": "sha512-iph2XUy8UzIfdJFWo1r0Zng9uWj3253yvW9gljhtu+y/LNmNvSnJxQk1f3D2BC5WmcoPZqTS3UsycT3mLPSzWA==",
"dependencies": [
"@aws-crypto/sha256-browser",
"@aws-crypto/sha256-js",
"@aws-sdk/core",
"@aws-sdk/middleware-host-header",
"@aws-sdk/middleware-logger",
"@aws-sdk/middleware-recursion-detection",
"@aws-sdk/middleware-user-agent",
"@aws-sdk/region-config-resolver",
"@aws-sdk/types",
"@aws-sdk/util-endpoints",
"@aws-sdk/util-user-agent-browser",
"@aws-sdk/util-user-agent-node",
"@smithy/config-resolver",
"@smithy/core",
"@smithy/fetch-http-handler",
"@smithy/hash-node",
"@smithy/invalid-dependency",
"@smithy/middleware-content-length",
"@smithy/middleware-endpoint",
"@smithy/middleware-retry",
"@smithy/middleware-serde",
"@smithy/middleware-stack",
"@smithy/node-config-provider",
"@smithy/node-http-handler",
"@smithy/protocol-http",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/url-parser",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
"@smithy/util-defaults-mode-browser",
"@smithy/util-defaults-mode-node",
"@smithy/util-endpoints",
"@smithy/util-middleware",
"@smithy/util-retry",
"@smithy/util-utf8@4.0.0",
"tslib@2.8.1"
]
},
"@aws-sdk/region-config-resolver@3.734.0": {
"integrity": "sha512-Lvj1kPRC5IuJBr9DyJ9T9/plkh+EfKLy+12s/mykOy1JaKHDpvj+XGy2YO6YgYVOb8JFtaqloid+5COtje4JTQ==",
"dependencies": [
"@aws-sdk/types",
"@smithy/node-config-provider",
"@smithy/types",
"@smithy/util-config-provider",
"@smithy/util-middleware",
"tslib@2.8.1"
]
},
"@aws-sdk/signature-v4-multi-region@3.740.0": {
"integrity": "sha512-w+psidN3i+kl51nQEV3V+fKjKUqcEbqUA1GtubruDBvBqrl5El/fU2NF3Lo53y8CfI9wCdf3V7KOEpHIqxHNng==",
"dependencies": [
"@aws-sdk/middleware-sdk-s3",
"@aws-sdk/types",
"@smithy/protocol-http",
"@smithy/signature-v4",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/token-providers@3.734.0": {
"integrity": "sha512-2U6yWKrjWjZO8Y5SHQxkFvMVWHQWbS0ufqfAIBROqmIZNubOL7jXCiVdEFekz6MZ9LF2tvYGnOW4jX8OKDGfIw==",
"dependencies": [
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/types@3.734.0": {
"integrity": "sha512-o11tSPTT70nAkGV1fN9wm/hAIiLPyWX6SuGf+9JyTp7S/rC2cFWhR26MvA69nplcjNaXVzB0f+QFrLXXjOqCrg==",
"dependencies": [
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/util-arn-parser@3.723.0": {
"integrity": "sha512-ZhEfvUwNliOQROcAk34WJWVYTlTa4694kSVhDSjW6lE1bMataPnIN8A0ycukEzBXmd8ZSoBcQLn6lKGl7XIJ5w==",
"dependencies": [
"tslib@2.8.1"
]
},
"@aws-sdk/util-endpoints@3.734.0": {
"integrity": "sha512-w2+/E88NUbqql6uCVAsmMxDQKu7vsKV0KqhlQb0lL+RCq4zy07yXYptVNs13qrnuTfyX7uPXkXrlugvK9R1Ucg==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"@smithy/util-endpoints",
"tslib@2.8.1"
]
},
"@aws-sdk/util-locate-window@3.723.0": {
"integrity": "sha512-Yf2CS10BqK688DRsrKI/EO6B8ff5J86NXe4C+VCysK7UOgN0l1zOTeTukZ3H8Q9tYYX3oaF1961o8vRkFm7Nmw==",
"dependencies": [
"tslib@2.8.1"
]
},
"@aws-sdk/util-user-agent-browser@3.734.0": {
"integrity": "sha512-xQTCus6Q9LwUuALW+S76OL0jcWtMOVu14q+GoLnWPUM7QeUw963oQcLhF7oq0CtaLLKyl4GOUfcwc773Zmwwng==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"bowser",
"tslib@2.8.1"
]
},
"@aws-sdk/util-user-agent-node@3.734.0": {
"integrity": "sha512-c6Iinh+RVQKs6jYUFQ64htOU2HUXFQ3TVx+8Tu3EDF19+9vzWi9UukhIMH9rqyyEXIAkk9XL7avt8y2Uyw2dGA==",
"dependencies": [
"@aws-sdk/middleware-user-agent",
"@aws-sdk/types",
"@smithy/node-config-provider",
"@smithy/types",
"tslib@2.8.1"
]
},
"@aws-sdk/xml-builder@3.734.0": {
"integrity": "sha512-Zrjxi5qwGEcUsJ0ru7fRtW74WcTS0rbLcehoFB+rN1GRi2hbLcFaYs4PwVA5diLeAJH0gszv3x4Hr/S87MfbKQ==",
"dependencies": [
"@smithy/types",
"tslib@2.8.1"
]
},
"@babel/code-frame@7.26.2": {
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
"dependencies": [
"@babel/helper-validator-identifier",
"js-tokens@4.0.0",
"picocolors"
]
},
"@babel/compat-data@7.26.5": {
"integrity": "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg=="
},
"@babel/core@7.26.7": {
"integrity": "sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==",
"dependencies": [
"@ampproject/remapping",
"@babel/code-frame",
"@babel/generator",
"@babel/helper-compilation-targets",
"@babel/helper-module-transforms",
"@babel/helpers",
"@babel/parser",
"@babel/template",
"@babel/traverse",
"@babel/types",
"convert-source-map@2.0.0",
"debug@4.4.0",
"gensync",
"json5@2.2.3",
"semver@6.3.1"
]
},
"@babel/generator@7.26.5": {
"integrity": "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==",
"dependencies": [
"@babel/parser",
"@babel/types",
"@jridgewell/gen-mapping",
"@jridgewell/trace-mapping",
"jsesc"
]
},
"@babel/helper-annotate-as-pure@7.25.9": {
"integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==",
"dependencies": [
"@babel/types"
]
},
"@babel/helper-compilation-targets@7.26.5": {
"integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==",
"dependencies": [
"@babel/compat-data",
"@babel/helper-validator-option",
"browserslist",
"lru-cache@5.1.1",
"semver@6.3.1"
]
},
"@babel/helper-create-class-features-plugin@7.25.9_@babel+core@7.26.7": {
"integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"@babel/helper-member-expression-to-functions",
"@babel/helper-optimise-call-expression",
"@babel/helper-replace-supers",
"@babel/helper-skip-transparent-expression-wrappers",
"@babel/traverse",
"semver@6.3.1"
]
},
"@babel/helper-member-expression-to-functions@7.25.9": {
"integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-module-imports@7.25.9": {
"integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-module-transforms@7.26.0_@babel+core@7.26.7": {
"integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
"dependencies": [
"@babel/core",
"@babel/helper-module-imports",
"@babel/helper-validator-identifier",
"@babel/traverse"
]
},
"@babel/helper-optimise-call-expression@7.25.9": {
"integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==",
"dependencies": [
"@babel/types"
]
},
"@babel/helper-plugin-utils@7.26.5": {
"integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="
},
"@babel/helper-replace-supers@7.26.5_@babel+core@7.26.7": {
"integrity": "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==",
"dependencies": [
"@babel/core",
"@babel/helper-member-expression-to-functions",
"@babel/helper-optimise-call-expression",
"@babel/traverse"
]
},
"@babel/helper-skip-transparent-expression-wrappers@7.25.9": {
"integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-string-parser@7.25.9": {
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="
},
"@babel/helper-validator-identifier@7.25.9": {
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="
},
"@babel/helper-validator-option@7.25.9": {
"integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw=="
},
"@babel/helpers@7.26.7": {
"integrity": "sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==",
"dependencies": [
"@babel/template",
"@babel/types"
]
},
"@babel/parser@7.26.7": {
"integrity": "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==",
"dependencies": [
"@babel/types"
]
},
"@babel/plugin-proposal-decorators@7.25.9_@babel+core@7.26.7": {
"integrity": "sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==",
"dependencies": [
"@babel/core",
"@babel/helper-create-class-features-plugin",
"@babel/helper-plugin-utils",
"@babel/plugin-syntax-decorators"
]
},
"@babel/plugin-syntax-decorators@7.25.9_@babel+core@7.26.7": {
"integrity": "sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-import-attributes@7.26.0_@babel+core@7.26.7": {
"integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-import-meta@7.10.4_@babel+core@7.26.7": {
"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-jsx@7.25.9_@babel+core@7.26.7": {
"integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-typescript@7.25.9_@babel+core@7.26.7": {
"integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-react-jsx-self@7.25.9_@babel+core@7.26.7": {
"integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-react-jsx-source@7.25.9_@babel+core@7.26.7": {
"integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-typescript@7.26.7_@babel+core@7.26.7": {