forked from Cap-go/capgo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.lock
More file actions
9740 lines (9740 loc) · 373 KB
/
deno.lock
File metadata and controls
9740 lines (9740 loc) · 373 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "5",
"specifiers": {
"npm:@antfu/eslint-config@7": "7.7.3_eslint@10.2.1_eslint-plugin-format@2.0.1__eslint@10.2.1_@types+node@25.5.2_@typescript-eslint+rule-tester@8.59.2__eslint@10.2.1__typescript@6.0.3_@typescript-eslint+typescript-estree@8.59.2__typescript@6.0.3_@typescript-eslint+utils@8.59.2__eslint@10.2.1__typescript@6.0.3_@vitest+coverage-v8@4.1.5__vitest@4.1.5__@types+node@25.5.2__@vitest+ui@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0_@vitest+ui@4.1.5__vitest@4.1.5__@types+node@25.5.2__@vitest+coverage-v8@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0_@vue+compiler-sfc@3.5.33_sass@1.99.0_typescript@6.0.3_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_vitest@4.1.5__@types+node@25.5.2__@vitest+coverage-v8@4.1.5__@vitest+ui@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0__sass@1.99.0",
"npm:@antfu/eslint-config@8.2.0": "8.2.0_eslint@10.2.1_eslint-plugin-format@2.0.1__eslint@10.2.1_@types+node@25.5.2_@typescript-eslint+rule-tester@8.59.2__eslint@10.2.1__typescript@6.0.3_@typescript-eslint+typescript-estree@8.59.2__typescript@6.0.3_@typescript-eslint+utils@8.59.2__eslint@10.2.1__typescript@6.0.3_@vitest+coverage-v8@4.1.5__vitest@4.1.5__@types+node@25.5.2__@vitest+ui@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0_@vitest+ui@4.1.5__vitest@4.1.5__@types+node@25.5.2__@vitest+coverage-v8@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0_@vue+compiler-sfc@3.5.33_sass@1.99.0_typescript@6.0.3_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_vitest@4.1.5__@types+node@25.5.2__@vitest+coverage-v8@4.1.5__@vitest+ui@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0__sass@1.99.0",
"npm:@aws-sdk/client-s3@^3.1038.0": "3.1041.0",
"npm:@capacitor/action-sheet@^8.1.1": "8.1.1_@capacitor+core@8.3.1",
"npm:@capacitor/android@^8.3.1": "8.3.1_@capacitor+core@8.3.1",
"npm:@capacitor/app-launcher@^8.0.1": "8.0.1_@capacitor+core@8.3.1",
"npm:@capacitor/app@^8.1.0": "8.1.0_@capacitor+core@8.3.1",
"npm:@capacitor/barcode-scanner@^3.0.2": "3.0.2_@capacitor+core@8.3.1",
"npm:@capacitor/browser@^8.0.3": "8.0.3_@capacitor+core@8.3.1",
"npm:@capacitor/camera@^8.2.0": "8.2.0_@capacitor+core@8.3.1",
"npm:@capacitor/cli@8": "8.3.1",
"npm:@capacitor/cli@^8.3.1": "8.3.1",
"npm:@capacitor/clipboard@^8.0.1": "8.0.1_@capacitor+core@8.3.1",
"npm:@capacitor/core@^8.3.1": "8.3.1",
"npm:@capacitor/device@^8.0.2": "8.0.2_@capacitor+core@8.3.1",
"npm:@capacitor/dialog@^8.0.1": "8.0.1_@capacitor+core@8.3.1",
"npm:@capacitor/filesystem@^8.1.2": "8.1.2_@capacitor+core@8.3.1",
"npm:@capacitor/geolocation@^8.2.0": "8.2.0_@capacitor+core@8.3.1",
"npm:@capacitor/haptics@^8.0.2": "8.0.2_@capacitor+core@8.3.1",
"npm:@capacitor/ios@^8.3.1": "8.3.1_@capacitor+core@8.3.1",
"npm:@capacitor/keyboard@^8.0.3": "8.0.3_@capacitor+core@8.3.1",
"npm:@capacitor/local-notifications@^8.0.2": "8.0.2_@capacitor+core@8.3.1",
"npm:@capacitor/motion@8": "8.0.0_@capacitor+core@8.3.1",
"npm:@capacitor/network@^8.0.1": "8.0.1_@capacitor+core@8.3.1",
"npm:@capacitor/preferences@^8.0.1": "8.0.1_@capacitor+core@8.3.1",
"npm:@capacitor/push-notifications@^8.0.3": "8.0.3_@capacitor+core@8.3.1",
"npm:@capacitor/screen-reader@^8.0.1": "8.0.1_@capacitor+core@8.3.1",
"npm:@capacitor/share@^8.0.1": "8.0.1_@capacitor+core@8.3.1",
"npm:@capacitor/splash-screen@^8.0.1": "8.0.1_@capacitor+core@8.3.1",
"npm:@capacitor/status-bar@^8.0.2": "8.0.2_@capacitor+core@8.3.1",
"npm:@capacitor/text-zoom@^8.0.1": "8.0.1_@capacitor+core@8.3.1",
"npm:@capacitor/toast@^8.0.1": "8.0.1_@capacitor+core@8.3.1",
"npm:@capgo/capacitor-crisp@^8.0.30": "8.0.30_@capacitor+core@8.3.1",
"npm:@capgo/capacitor-flash@^8.0.27": "8.0.27_@capacitor+core@8.3.1",
"npm:@capgo/capacitor-in-app-review@^8.1.3": "8.1.3_@capacitor+core@8.3.1",
"npm:@capgo/capacitor-mute@^8.0.28": "8.0.28_@capacitor+core@8.3.1",
"npm:@capgo/capacitor-native-biometric@^8.4.2": "8.4.2_@capacitor+core@8.3.1",
"npm:@capgo/capacitor-persistent-account@^8.0.28": "8.0.28_@capacitor+core@8.3.1",
"npm:@capgo/capacitor-screen-orientation@^8.1.12": "8.1.12_@capacitor+core@8.3.1",
"npm:@capgo/capacitor-screen-recorder@^8.2.29": "8.2.29_@capacitor+core@8.3.1",
"npm:@capgo/capacitor-updater@^8.45.10": "8.45.10_@capacitor+core@8.3.1",
"npm:@capgo/find-package-manager@^0.0.18": "0.0.18",
"npm:@capgo/inappbrowser@^8.6.2": "8.6.2_@capacitor+core@8.3.1",
"npm:@capgo/keep-awake@^8.1.1": "8.1.1_@capacitor+core@8.3.1",
"npm:@capgo/native-audio@^8.4.2": "8.4.2_@capacitor+core@8.3.1",
"npm:@capgo/native-market@^8.0.27": "8.0.27_@capacitor+core@8.3.1",
"npm:@clack/prompts@1": "1.3.0",
"npm:@cloudflare/workers-types@4.20260429.1": "4.20260429.1",
"npm:@codspeed/vitest-plugin@^5.4.0": "5.4.0_tinybench@2.9.0_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_vitest@4.1.5__@types+node@25.5.2__@vitest+coverage-v8@4.1.5__@vitest+ui@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0__sass@1.99.0_@types+node@25.5.2_@vitest+coverage-v8@4.1.5__vitest@4.1.5__@types+node@25.5.2__@vitest+ui@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0_@vitest+ui@4.1.5__vitest@4.1.5__@types+node@25.5.2__@vitest+coverage-v8@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0_sass@1.99.0",
"npm:@formkit/core@2.0.0": "2.0.0",
"npm:@formkit/i18n@2": "2.0.0",
"npm:@formkit/icons@2": "2.0.0",
"npm:@formkit/themes@2.0.0": "2.0.0",
"npm:@formkit/vue@2.0.0": "2.0.0_vue@3.5.33__typescript@6.0.3_typescript@6.0.3",
"npm:@hono/standard-validator@~0.2.2": "0.2.2_@standard-schema+spec@1.1.0_hono@4.12.15",
"npm:@iconify-json/simple-icons@^1.2.80": "1.2.80",
"npm:@iconify/json@^2.2.467": "2.2.469",
"npm:@inkjs/ui@2": "2.0.0_ink@5.2.1__@types+react@18.3.28__react@18.3.1_@types+react@18.3.28_react@18.3.1",
"npm:@intlify/unplugin-vue-i18n@^11.1.2": "11.1.2_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_vue@3.5.33__typescript@6.0.3_vue-i18n@11.4.0__vue@3.5.33___typescript@6.0.3__typescript@6.0.3_@types+node@25.5.2_eslint@10.2.1_sass@1.99.0_typescript@6.0.3",
"npm:@jsr/bradenmacdonald__s3-lite-client@0.9.5": "0.9.5",
"npm:@jsr/bradenmacdonald__s3-lite-client@0.9.6": "0.9.6",
"npm:@jsr/sauber__table@*": "0.1.0",
"npm:@jsr/std__semver@1.0.8": "1.0.8",
"npm:@logsnag/node@1.0.1": "1.0.1",
"npm:@modelcontextprotocol/sdk@^1.25.3": "1.29.0_zod@4.3.6",
"npm:@playwright/test@1.59.1": "1.59.1",
"npm:@revenuecat/purchases-capacitor@13.0.1": "13.0.1_@capacitor+core@8.3.1",
"npm:@standard-schema/spec@^1.1.0": "1.1.0",
"npm:@supabase/supabase-js@2.105.1": "2.105.1",
"npm:@supabase/supabase-js@^2.79.0": "2.105.1",
"npm:@tailwindcss/aspect-ratio@~0.4.2": "0.4.2_tailwindcss@4.2.4",
"npm:@tailwindcss/vite@^4.2.4": "4.2.4_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_@types+node@25.5.2_sass@1.99.0",
"npm:@tanstack/intent@^0.0.23": "0.0.23",
"npm:@types/adm-zip@~0.5.7": "0.5.8",
"npm:@types/adm-zip@~0.5.8": "0.5.8",
"npm:@types/bun@^1.3.13": "1.3.13",
"npm:@types/dompurify@3.2.0": "3.2.0",
"npm:@types/jsonwebtoken@^9.0.10": "9.0.10",
"npm:@types/node-forge@^1.3.14": "1.3.14",
"npm:@types/node@25": "25.5.2",
"npm:@types/pg@^8.20.0": "8.20.0",
"npm:@types/prettyjson@^0.0.33": "0.0.33",
"npm:@types/qrcode@^1.5.6": "1.5.6",
"npm:@types/react@^18.3.28": "18.3.28",
"npm:@types/semver@^7.7.1": "7.7.1",
"npm:@types/tmp@~0.2.6": "0.2.6",
"npm:@types/ws@^8.18.1": "8.18.1",
"npm:@vercel/ncc@~0.38.4": "0.38.4",
"npm:@vitejs/plugin-vue@6.0.6": "6.0.6_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_vue@3.5.33__typescript@6.0.3_@types+node@25.5.2_sass@1.99.0_typescript@6.0.3",
"npm:@vitest/coverage-v8@^4.1.5": "4.1.5_vitest@4.1.5_@types+node@25.5.2_@vitest+ui@4.1.5_vite@8.0.10__@types+node@25.5.2__sass@1.99.0",
"npm:@vitest/ui@^4.1.5": "4.1.5_vitest@4.1.5_@types+node@25.5.2_@vitest+coverage-v8@4.1.5_vite@8.0.10__@types+node@25.5.2__sass@1.99.0",
"npm:@vue/compiler-sfc@3.5.33": "3.5.33",
"npm:@vue/server-renderer@3.5.33": "3.5.33_vue@3.5.33__typescript@6.0.3_typescript@6.0.3",
"npm:@vuepic/vue-datepicker@^12.1.0": "12.1.0_vue@3.5.33__typescript@6.0.3_typescript@6.0.3",
"npm:@vueuse/core@^14.2.1": "14.2.1_vue@3.5.33__typescript@6.0.3_typescript@6.0.3",
"npm:adm-zip@~0.5.16": "0.5.17",
"npm:adm-zip@~0.5.17": "0.5.17",
"npm:arktype@^2.2.0": "2.2.0",
"npm:better-qr@~0.1.1": "0.1.1",
"npm:bun-types@^1.3.13": "1.3.13",
"npm:chart.js@^4.5.1": "4.5.1",
"npm:chartjs-chart-funnel@^4.2.5": "4.2.5_chart.js@4.5.1",
"npm:ci-info@^4.3.1": "4.4.0",
"npm:commander@^14.0.2": "14.0.3",
"npm:country-code-to-flag-emoji@^2.1.0": "2.1.0",
"npm:cron-schedule@6": "6.0.0",
"npm:daisyui@^5.5.19": "5.5.19",
"npm:dayjs@1.11.20": "1.11.20",
"npm:discord-api-types@~0.38.47": "0.38.47",
"npm:dompurify@^3.4.1": "3.4.2",
"npm:dotenv@^17.4.2": "17.4.2",
"npm:drizzle-orm@1.0.0-rc.1": "1.0.0-rc.1_@cloudflare+workers-types@4.20260429.1_@types+pg@8.20.0_arktype@2.2.0_bun-types@1.3.13_pg@8.20.0_zod@4.3.6",
"npm:emulate@0.5.0": "0.5.0_hono@4.12.15",
"npm:eslint-plugin-format@^2.0.1": "2.0.1_eslint@10.2.1",
"npm:eslint@10.2.1": "10.2.1",
"npm:eslint@^9.38.0": "9.39.4",
"npm:git-format-staged@4.0.1": "4.0.1",
"npm:hono@4.12.15": "4.12.15",
"npm:husky@^9.1.7": "9.1.7",
"npm:ink-spinner@5": "5.0.0_ink@5.2.1__@types+react@18.3.28__react@18.3.1_react@18.3.1_@types+react@18.3.28",
"npm:ink@^5.2.1": "5.2.1_@types+react@18.3.28_react@18.3.1",
"npm:is-wsl@^3.1.0": "3.1.1",
"npm:jose@^6.2.3": "6.2.3",
"npm:jsonwebtoken@^9.0.3": "9.0.3",
"npm:micromatch@^4.0.8": "4.0.8",
"npm:mime@^4.1.0": "4.1.0",
"npm:node-forge@^1.3.3": "1.4.0",
"npm:open@11": "11.0.0",
"npm:partysocket@^1.1.11": "1.1.18_react@18.3.1",
"npm:pg@^8.20.0": "8.20.0",
"npm:pinia@3.0.4": "3.0.4_typescript@6.0.3_vue@3.5.33__typescript@6.0.3",
"npm:plausible-tracker@~0.3.9": "0.3.9",
"npm:prettyjson@^1.2.5": "1.2.5",
"npm:qrcode@^1.5.4": "1.5.4",
"npm:react@^18.3.1": "18.3.1",
"npm:sass@1.99.0": "1.99.0",
"npm:semver@^7.7.4": "7.7.4",
"npm:simple-git-hooks@^2.13.1": "2.13.1",
"npm:stripe@^22.1.0": "22.1.0_@types+node@25.5.2",
"npm:supabase@^2.95.6": "2.98.1",
"npm:tailwindcss@^4.2.4": "4.2.4",
"npm:tmp@~0.2.5": "0.2.5",
"npm:tus-js-client@^4.3.1": "4.3.1",
"npm:typescript@6.0.3": "6.0.3",
"npm:typescript@^5.9.3": "5.9.3",
"npm:unplugin-auto-import@21": "21.0.0_@vueuse+core@14.2.1__vue@3.5.33___typescript@6.0.3__typescript@6.0.3_typescript@6.0.3_vue@3.5.33__typescript@6.0.3",
"npm:unplugin-formkit@0.3": "0.3.0",
"npm:unplugin-icons@23.0.1": "23.0.1_@vue+compiler-sfc@3.5.33",
"npm:unplugin-vue-components@32": "32.0.0_vue@3.5.33__typescript@6.0.3_typescript@6.0.3",
"npm:unplugin-vue-macros@^2.14.5": "2.14.5_vue@3.5.33__typescript@6.0.3_@types+node@25.5.2_typescript@6.0.3",
"npm:vite-plugin-devtools-json@1": "1.0.0_vite@8.0.8__@types+node@25.5.2__sass@1.99.0_@types+node@25.5.2",
"npm:vite-plugin-environment@1.1.3": "1.1.3_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_@types+node@25.5.2_sass@1.99.0",
"npm:vite-plugin-vue-devtools@^8.1.1": "8.1.1_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_@types+node@25.5.2_sass@1.99.0_typescript@6.0.3_vue@3.5.33__typescript@6.0.3",
"npm:vite-plugin-vue-layouts@0.11.0": "0.11.0_vite@8.0.8__@types+node@25.5.2__sass@1.99.0_vue@3.5.33__typescript@6.0.3_vue-router@5.0.4__@vue+compiler-sfc@3.5.33__pinia@3.0.4___typescript@6.0.3___vue@3.5.33____typescript@6.0.3__vue@3.5.33___typescript@6.0.3__typescript@6.0.3_@types+node@25.5.2_@vue+compiler-sfc@3.5.33_typescript@6.0.3",
"npm:vite-plugin-webfont-dl@^3.12.0": "3.12.0_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_@types+node@25.5.2_sass@1.99.0",
"npm:vite@8.0.10": "8.0.10_@types+node@25.5.2_sass@1.99.0",
"npm:vitest@^4.1.5": "4.1.5_@types+node@25.5.2_@vitest+coverage-v8@4.1.5_@vitest+ui@4.1.5_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_sass@1.99.0",
"npm:vue-chartjs@^5.3.3": "5.3.3_chart.js@4.5.1_vue@3.5.33__typescript@6.0.3_typescript@6.0.3",
"npm:vue-demi@0.14.10": "0.14.10_vue@3.5.33__typescript@6.0.3_typescript@6.0.3",
"npm:vue-i18n@^11.4.0": "11.4.0_vue@3.5.33__typescript@6.0.3_typescript@6.0.3",
"npm:vue-router@^5.0.6": "5.0.6_@vue+compiler-sfc@3.5.33_pinia@3.0.4__typescript@6.0.3__vue@3.5.33___typescript@6.0.3_vue@3.5.33__typescript@6.0.3_typescript@6.0.3",
"npm:vue-sonner@^2.0.9": "2.0.9",
"npm:vue-tsc@3.2.7": "3.2.7_typescript@6.0.3",
"npm:vue-turnstile@^1.0.11": "1.0.11_vue@3.5.33__typescript@6.0.3_typescript@6.0.3",
"npm:vue@3.5.33": "3.5.33_typescript@6.0.3",
"npm:wrangler@^4.86.0": "4.87.0_@cloudflare+workers-types@4.20260429.1",
"npm:ws@^8.18.3": "8.20.0",
"npm:zod@^4.3.6": "4.3.6"
},
"npm": {
"@alcalzone/ansi-tokenize@0.1.3": {
"integrity": "sha512-3yWxPTq3UQ/FY9p1ErPxIyfT64elWaMvM9lIHnaqpyft63tkxodF5aUElYHrdisWve5cETkh1+KBw1yJuW0aRw==",
"dependencies": [
"ansi-styles@6.2.3",
"is-fullwidth-code-point@4.0.0"
]
},
"@antfu/eslint-config@7.7.3_eslint@10.2.1_eslint-plugin-format@2.0.1__eslint@10.2.1_@types+node@25.5.2_@typescript-eslint+rule-tester@8.59.2__eslint@10.2.1__typescript@6.0.3_@typescript-eslint+typescript-estree@8.59.2__typescript@6.0.3_@typescript-eslint+utils@8.59.2__eslint@10.2.1__typescript@6.0.3_@vitest+coverage-v8@4.1.5__vitest@4.1.5__@types+node@25.5.2__@vitest+ui@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0_@vitest+ui@4.1.5__vitest@4.1.5__@types+node@25.5.2__@vitest+coverage-v8@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0_@vue+compiler-sfc@3.5.33_sass@1.99.0_typescript@6.0.3_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_vitest@4.1.5__@types+node@25.5.2__@vitest+coverage-v8@4.1.5__@vitest+ui@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0__sass@1.99.0": {
"integrity": "sha512-BtroDxTvmWtvr3yJkdWVCvwsKlnEdkreoeOyrdNezc/W5qaiQNf2xjcsQ3N5Yy0x27h+0WFfW8rG8YlVioG6dw==",
"dependencies": [
"@antfu/install-pkg",
"@clack/prompts",
"@e18e/eslint-plugin@0.2.0_eslint@10.2.1",
"@eslint-community/eslint-plugin-eslint-comments",
"@eslint/markdown@7.5.1",
"@stylistic/eslint-plugin",
"@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser",
"@vitest/eslint-plugin",
"ansis",
"cac@7.0.0",
"eslint@10.2.1",
"eslint-config-flat-gitignore",
"eslint-flat-config-utils",
"eslint-merge-processors",
"eslint-plugin-antfu",
"eslint-plugin-command",
"eslint-plugin-format",
"eslint-plugin-import-lite@0.5.2_eslint@10.2.1",
"eslint-plugin-jsdoc",
"eslint-plugin-jsonc",
"eslint-plugin-n",
"eslint-plugin-no-only-tests",
"eslint-plugin-perfectionist",
"eslint-plugin-pnpm",
"eslint-plugin-regexp",
"eslint-plugin-toml",
"eslint-plugin-unicorn@63.0.0_eslint@10.2.1",
"eslint-plugin-unused-imports",
"eslint-plugin-vue",
"eslint-plugin-yml",
"eslint-processor-vue-blocks",
"globals@17.6.0",
"local-pkg",
"parse-gitignore",
"toml-eslint-parser",
"vue-eslint-parser",
"yaml-eslint-parser@2.0.0"
],
"optionalPeers": [
"eslint-plugin-format"
],
"bin": true
},
"@antfu/eslint-config@8.2.0_eslint@10.2.1_eslint-plugin-format@2.0.1__eslint@10.2.1_@types+node@25.5.2_@typescript-eslint+rule-tester@8.59.2__eslint@10.2.1__typescript@6.0.3_@typescript-eslint+typescript-estree@8.59.2__typescript@6.0.3_@typescript-eslint+utils@8.59.2__eslint@10.2.1__typescript@6.0.3_@vitest+coverage-v8@4.1.5__vitest@4.1.5__@types+node@25.5.2__@vitest+ui@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0_@vitest+ui@4.1.5__vitest@4.1.5__@types+node@25.5.2__@vitest+coverage-v8@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0_@vue+compiler-sfc@3.5.33_sass@1.99.0_typescript@6.0.3_vite@8.0.10__@types+node@25.5.2__sass@1.99.0_vitest@4.1.5__@types+node@25.5.2__@vitest+coverage-v8@4.1.5__@vitest+ui@4.1.5__vite@8.0.10___@types+node@25.5.2___sass@1.99.0__sass@1.99.0": {
"integrity": "sha512-spfwYXMNrlkl69riTSBnbC0C2K8EVfVMOK3ceP2EpAAioyfprIW1gTwyLRtd9jZSFeNdX4mFNAIG+o0sOneOfA==",
"dependencies": [
"@antfu/install-pkg",
"@clack/prompts",
"@e18e/eslint-plugin@0.3.0_eslint@10.2.1",
"@eslint-community/eslint-plugin-eslint-comments",
"@eslint/markdown@8.0.1",
"@stylistic/eslint-plugin",
"@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser",
"@vitest/eslint-plugin",
"ansis",
"cac@7.0.0",
"eslint@10.2.1",
"eslint-config-flat-gitignore",
"eslint-flat-config-utils",
"eslint-merge-processors",
"eslint-plugin-antfu",
"eslint-plugin-command",
"eslint-plugin-format",
"eslint-plugin-import-lite@0.6.0_eslint@10.2.1",
"eslint-plugin-jsdoc",
"eslint-plugin-jsonc",
"eslint-plugin-n",
"eslint-plugin-no-only-tests",
"eslint-plugin-perfectionist",
"eslint-plugin-pnpm",
"eslint-plugin-regexp",
"eslint-plugin-toml",
"eslint-plugin-unicorn@64.0.0_eslint@10.2.1",
"eslint-plugin-unused-imports",
"eslint-plugin-vue",
"eslint-plugin-yml",
"eslint-processor-vue-blocks",
"globals@17.6.0",
"local-pkg",
"parse-gitignore",
"toml-eslint-parser",
"vue-eslint-parser",
"yaml-eslint-parser@2.0.0"
],
"optionalPeers": [
"eslint-plugin-format"
],
"bin": true
},
"@antfu/install-pkg@1.1.0": {
"integrity": "sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==",
"dependencies": [
"package-manager-detector",
"tinyexec"
]
},
"@ark/schema@0.56.0": {
"integrity": "sha512-ECg3hox/6Z/nLajxXqNhgPtNdHWC9zNsDyskwO28WinoFEnWow4IsERNz9AnXRhTZJnYIlAJ4uGn3nlLk65vZA==",
"dependencies": [
"@ark/util"
]
},
"@ark/util@0.56.0": {
"integrity": "sha512-BghfRC8b9pNs3vBoDJhcta0/c1J1rsoS1+HgVUreMFPdhz/CRAKReAu57YEllNaSy98rWAdY1gE+gFup7OXpgA=="
},
"@aws-crypto/crc32@5.2.0": {
"integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
"dependencies": [
"@aws-crypto/util",
"@aws-sdk/types",
"tslib"
]
},
"@aws-crypto/crc32c@5.2.0": {
"integrity": "sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==",
"dependencies": [
"@aws-crypto/util",
"@aws-sdk/types",
"tslib"
]
},
"@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"
]
},
"@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"
]
},
"@aws-crypto/sha256-js@5.2.0": {
"integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
"dependencies": [
"@aws-crypto/util",
"@aws-sdk/types",
"tslib"
]
},
"@aws-crypto/supports-web-crypto@5.2.0": {
"integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
"dependencies": [
"tslib"
]
},
"@aws-crypto/util@5.2.0": {
"integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
"dependencies": [
"@aws-sdk/types",
"@smithy/util-utf8@2.3.0",
"tslib"
]
},
"@aws-sdk/client-s3@3.1041.0": {
"integrity": "sha512-sQV14bIqslnBHuSlLMD+fc3pH+ajop6vnrFlJ4wM4JDqcYwVik4O+9srnZUrkesFw5y+CN0GfOQ06CAgtC4mjQ==",
"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",
"@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.2.2",
"@smithy/util-waiter",
"tslib"
]
},
"@aws-sdk/core@3.974.8": {
"integrity": "sha512-njR2qoG6ZuB0kvAS2FyICsFZJ6gmCcf2X/7JcD14sUvGDm26wiZ5BrA6LOiUxKFEF+IVe7kdroxyE00YlkiYsw==",
"dependencies": [
"@aws-sdk/types",
"@aws-sdk/xml-builder",
"@smithy/core",
"@smithy/node-config-provider",
"@smithy/property-provider",
"@smithy/protocol-http",
"@smithy/signature-v4",
"@smithy/smithy-client",
"@smithy/types",
"@smithy/util-base64",
"@smithy/util-middleware",
"@smithy/util-retry",
"@smithy/util-utf8@4.2.2",
"tslib"
]
},
"@aws-sdk/crc64-nvme@3.972.7": {
"integrity": "sha512-QUagVVBbC8gODCF6e1aV0mE2TXWB9Opz4k8EJFdNrujUVQm5R4AjJa1mpOqzwOuROBzqJU9zawzig7M96L8Ejg==",
"dependencies": [
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-env@3.972.34": {
"integrity": "sha512-XT0jtf8Fw9JE6ppsQeoNnZRiG+jqRixMT1v1ZR17G60UvVdsQmTG8nbEyHuEPfMxDXEhfdARaM/XiEhca4lGHQ==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-http@3.972.36": {
"integrity": "sha512-DPoGWfy7J7RKxvbf5kOKIGQkD2ek3dbKgzKIGrnLuvZBz5myU+Im/H6pmc14QcnFbqHMqxvtWSgRDSJW3qXLQg==",
"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"
]
},
"@aws-sdk/credential-provider-ini@3.972.38": {
"integrity": "sha512-oDzUBu2MGJFgoar05sPMCwSrhw44ASyccrHzj66vO69OZqi7I6hZZxXfuPLC8OCzW7C+sU+bI73XHij41yekgQ==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/credential-provider-env",
"@aws-sdk/credential-provider-http",
"@aws-sdk/credential-provider-login",
"@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"
]
},
"@aws-sdk/credential-provider-login@3.972.38": {
"integrity": "sha512-g1NosS8qe4OF++G2UFCM5ovSkgipC7YYor5KCWatG0UoMSO5YFj9C8muePlyVmOBV/WTI16Jo3/s1NUo/o1Bww==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/protocol-http",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-node@3.972.39": {
"integrity": "sha512-HEswDQyxUtadoZ/bJsPPENHg7R0Lzym5LuMksJeHvqhCOpP+rtkDLKI4/ZChH4w3cf5kG8n6bZuI8PzajoiqMg==",
"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"
]
},
"@aws-sdk/credential-provider-process@3.972.34": {
"integrity": "sha512-T3IFs4EVmVi1dVN5RciFnklCANSzvrQd/VuHY9ThHSQmYkTogjcGkoJEr+oNUPQZnso52183088NqysMPji1/Q==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-sso@3.972.38": {
"integrity": "sha512-5ZxG+t0+3Q3QPh8KEjX6syskhgNf7I0MN7oGioTf6Lm1NTjfP7sIcYGNsthXC2qR8vcD3edNZwCr2ovfSSWuRA==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/nested-clients",
"@aws-sdk/token-providers",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-web-identity@3.972.38": {
"integrity": "sha512-lYHFF30DGI20jZcYX8cm6Ns0V7f1dDN6g/MBDLTyD/5iw+bXs3yBr2iAiHDkx4RFU5JgsnZvCHYKiRVPRdmOgw==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/middleware-bucket-endpoint@3.972.10": {
"integrity": "sha512-Vbc2frZH7wXlMNd+ZZSXUEs/l1Sv8Jj4zUnIfwrYF5lwaLdXHZ9xx4U3rjUcaye3HRhFVc+E5DbBxpRAbB16BA==",
"dependencies": [
"@aws-sdk/types",
"@aws-sdk/util-arn-parser",
"@smithy/node-config-provider",
"@smithy/protocol-http",
"@smithy/types",
"@smithy/util-config-provider",
"tslib"
]
},
"@aws-sdk/middleware-expect-continue@3.972.10": {
"integrity": "sha512-2Yn0f1Qiq/DjxYR3wfI3LokXnjOhFM7Ssn4LTdFDIxRMCE6I32MAsVnhPX1cUZsuVA9tiZtwwhlSLAtFGxAZlQ==",
"dependencies": [
"@aws-sdk/types",
"@smithy/protocol-http",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/middleware-flexible-checksums@3.974.16": {
"integrity": "sha512-6ru8doI0/XzszqLIPXf0E/V7HhAw1Pu94010XCKYtBUfD0LxF0BuOzrUf8OQGR6j2o6wgKTHUniOmndQycHwCA==",
"dependencies": [
"@aws-crypto/crc32",
"@aws-crypto/crc32c",
"@aws-crypto/util",
"@aws-sdk/core",
"@aws-sdk/crc64-nvme",
"@aws-sdk/types",
"@smithy/is-array-buffer@4.2.2",
"@smithy/node-config-provider",
"@smithy/protocol-http",
"@smithy/types",
"@smithy/util-middleware",
"@smithy/util-stream",
"@smithy/util-utf8@4.2.2",
"tslib"
]
},
"@aws-sdk/middleware-host-header@3.972.10": {
"integrity": "sha512-IJSsIMeVQ8MMCPbuh1AbltkFhLBLXn7aejzfX5YKT/VLDHn++Dcz8886tXckE+wQssyPUhaXrJhdakO2VilRhg==",
"dependencies": [
"@aws-sdk/types",
"@smithy/protocol-http",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/middleware-location-constraint@3.972.10": {
"integrity": "sha512-rI3NZvJcEvjoD0+0PI0iUAwlPw2IlSlhyvgBK/3WkKJQE/YiKFedd9dMN2lVacdNxPNhxL/jzQaKQdrGtQagjQ==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/middleware-logger@3.972.10": {
"integrity": "sha512-OOuGvvz1Dm20SjZo5oEBePFqxt5nf8AwkNDSyUHvD9/bfNASmstcYxFAHUowy4n6Io7mWUZ04JURZwSBvyQanQ==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/middleware-recursion-detection@3.972.11": {
"integrity": "sha512-+zz6f79Kj9V5qFK2P+D8Ehjnw4AhphAlCAsPjUqEcInA9umtSSKMrHbSagEeOIsDNuvVrH98bjRHcyQukTrhaQ==",
"dependencies": [
"@aws-sdk/types",
"@aws/lambda-invoke-store",
"@smithy/protocol-http",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/middleware-sdk-s3@3.972.37": {
"integrity": "sha512-Km7M+i8DrLArVzrid1gfxeGhYHBd3uxvE77g0s5a52zPSVosxzQBnJ0gwWb6NIp/DOk8gsBMhi7V+cpJG0ndTA==",
"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.2.2",
"tslib"
]
},
"@aws-sdk/middleware-ssec@3.972.10": {
"integrity": "sha512-Gli9A0u8EVVb+5bFDGS/QbSVg28w/wpEidg1ggVcSj65BDTdGR6punsOcVjqdiu1i42WHWo51MCvARPIIz9juw==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/middleware-user-agent@3.972.38": {
"integrity": "sha512-iz+B29TXcAZsJpwB+AwG/TTGA5l/VnmMZ2UxtiySOZjI6gCdmviXPwdgzcmuazMy16rXoPY4mYCGe7zdNKfx5A==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@aws-sdk/util-endpoints",
"@smithy/core",
"@smithy/protocol-http",
"@smithy/types",
"@smithy/util-retry",
"tslib"
]
},
"@aws-sdk/nested-clients@3.997.6": {
"integrity": "sha512-WBDnqatJl+kGObpfmfSxqnXeYTu3Me8wx8WCtvoxX3pfWrrTv8I4WTMSSs7PZqcRcVh8WeUKMgGFjMG+52SR1w==",
"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/signature-v4-multi-region",
"@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.2.2",
"tslib"
]
},
"@aws-sdk/region-config-resolver@3.972.13": {
"integrity": "sha512-CvJ2ZIjK/jVD/lbOpowBVElJyC1YxLTIJ13yM0AEo0t2v7swOzGjSA6lJGH+DwZXQhcjUjoYwc8bVYCX5MDr1A==",
"dependencies": [
"@aws-sdk/types",
"@smithy/config-resolver",
"@smithy/node-config-provider",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/signature-v4-multi-region@3.996.25": {
"integrity": "sha512-+CMIt3e1VzlklAECmG+DtP1sV8iKq25FuA0OKpnJ4KA0kxUtd7CgClY7/RU6VzJBQwbN4EJ9Ue6plvqx1qGadw==",
"dependencies": [
"@aws-sdk/middleware-sdk-s3",
"@aws-sdk/types",
"@smithy/protocol-http",
"@smithy/signature-v4",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/token-providers@3.1041.0": {
"integrity": "sha512-Th7kPI6YPtvJUcdznooXJMy+9rQWjmEF81LxaJssngBzuysK4a/x+l8kjm1zb7nYsUPbndnBdUnwng/3PLvtGw==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/property-provider",
"@smithy/shared-ini-file-loader",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/types@3.973.8": {
"integrity": "sha512-gjlAdtHMbtR9X5iIhVUvbVcy55KnznpC6bkDUWW9z915bi0ckdUr5cjf16Kp6xq0bP5HBD2xzgbL9F9Quv5vUw==",
"dependencies": [
"@smithy/types",
"tslib"
]
},
"@aws-sdk/util-arn-parser@3.972.3": {
"integrity": "sha512-HzSD8PMFrvgi2Kserxuff5VitNq2sgf3w9qxmskKDiDTThWfVteJxuCS9JXiPIPtmCrp+7N9asfIaVhBFORllA==",
"dependencies": [
"tslib"
]
},
"@aws-sdk/util-endpoints@3.996.8": {
"integrity": "sha512-oOZHcRDihk5iEe5V25NVWg45b3qEA8OpHWVdU/XQh8Zj4heVPAJqWvMphQnU7LkufmUo10EpvFPZuQMiFLJK3g==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"@smithy/url-parser",
"@smithy/util-endpoints",
"tslib"
]
},
"@aws-sdk/util-locate-window@3.965.5": {
"integrity": "sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ==",
"dependencies": [
"tslib"
]
},
"@aws-sdk/util-user-agent-browser@3.972.10": {
"integrity": "sha512-FAzqXvfEssGdSIz8ejatan0bOdx1qefBWKF/gWmVBXIP1HkS7v/wjjaqrAGGKvyihrXTXW00/2/1nTJtxpXz7g==",
"dependencies": [
"@aws-sdk/types",
"@smithy/types",
"bowser",
"tslib"
]
},
"@aws-sdk/util-user-agent-node@3.973.24": {
"integrity": "sha512-ZWwlkjcIp7cEL8ZfTpTAPNkwx25p7xol0xlKoWVVf22+nsjwmLcHYtTPjIV1cSpmB/b6DaK4cb1fSkvCXHgRdw==",
"dependencies": [
"@aws-sdk/middleware-user-agent",
"@aws-sdk/types",
"@smithy/node-config-provider",
"@smithy/types",
"@smithy/util-config-provider",
"tslib"
]
},
"@aws-sdk/xml-builder@3.972.22": {
"integrity": "sha512-PMYKKtJd70IsSG0yHrdAbxBr+ZWBKLvzFZfD3/urxgf6hXVMzuU5M+3MJ5G67RpOmLBu1fAUN65SbWuKUCOlAA==",
"dependencies": [
"@nodable/entities",
"@smithy/types",
"fast-xml-parser",
"tslib"
]
},
"@aws/lambda-invoke-store@0.2.4": {
"integrity": "sha512-iY8yvjE0y651BixKNPgmv1WrQc+GZ142sb0z4gYnChDDY2YqI4P/jsSopBWrKfAt7LOJAkOXt7rC/hms+WclQQ=="
},
"@babel/code-frame@7.29.0": {
"integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
"dependencies": [
"@babel/helper-validator-identifier",
"js-tokens@4.0.0",
"picocolors"
]
},
"@babel/compat-data@7.29.0": {
"integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg=="
},
"@babel/core@7.29.0": {
"integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
"dependencies": [
"@babel/code-frame",
"@babel/generator",
"@babel/helper-compilation-targets",
"@babel/helper-module-transforms",
"@babel/helpers",
"@babel/parser",
"@babel/template",
"@babel/traverse",
"@babel/types",
"@jridgewell/remapping",
"convert-source-map",
"debug",
"gensync",
"json5",
"semver@6.3.1"
]
},
"@babel/generator@7.29.1": {
"integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
"dependencies": [
"@babel/parser",
"@babel/types",
"@jridgewell/gen-mapping",
"@jridgewell/trace-mapping@0.3.31",
"jsesc"
]
},
"@babel/helper-annotate-as-pure@7.27.3": {
"integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==",
"dependencies": [
"@babel/types"
]
},
"@babel/helper-compilation-targets@7.28.6": {
"integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
"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.28.6_@babel+core@7.29.0": {
"integrity": "sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==",
"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-globals@7.28.0": {
"integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw=="
},
"@babel/helper-member-expression-to-functions@7.28.5": {
"integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-module-imports@7.28.6": {
"integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-module-transforms@7.28.6_@babel+core@7.29.0": {
"integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
"dependencies": [
"@babel/core",
"@babel/helper-module-imports",
"@babel/helper-validator-identifier",
"@babel/traverse"
]
},
"@babel/helper-optimise-call-expression@7.27.1": {
"integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==",
"dependencies": [
"@babel/types"
]
},
"@babel/helper-plugin-utils@7.28.6": {
"integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug=="
},
"@babel/helper-replace-supers@7.28.6_@babel+core@7.29.0": {
"integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==",
"dependencies": [
"@babel/core",
"@babel/helper-member-expression-to-functions",
"@babel/helper-optimise-call-expression",
"@babel/traverse"
]
},
"@babel/helper-skip-transparent-expression-wrappers@7.27.1": {
"integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-string-parser@7.27.1": {
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="
},
"@babel/helper-validator-identifier@7.28.5": {
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q=="
},
"@babel/helper-validator-option@7.27.1": {
"integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg=="
},
"@babel/helpers@7.29.2": {
"integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==",
"dependencies": [
"@babel/template",
"@babel/types"
]
},
"@babel/parser@7.29.2": {
"integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
"dependencies": [
"@babel/types"
],
"bin": true
},
"@babel/plugin-proposal-decorators@7.29.0_@babel+core@7.29.0": {
"integrity": "sha512-CVBVv3VY/XRMxRYq5dwr2DS7/MvqPm23cOCjbwNnVrfOqcWlnefua1uUs0sjdKOGjvPUG633o07uWzJq4oI6dA==",
"dependencies": [
"@babel/core",
"@babel/helper-create-class-features-plugin",
"@babel/helper-plugin-utils",
"@babel/plugin-syntax-decorators"
]
},
"@babel/plugin-syntax-decorators@7.28.6_@babel+core@7.29.0": {
"integrity": "sha512-71EYI0ONURHJBL4rSFXnITXqXrrY8q4P0q006DPfN+Rk+ASM+++IBXem/ruokgBZR8YNEWZ8R6B+rCb8VcUTqA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-import-attributes@7.28.6_@babel+core@7.29.0": {
"integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-import-meta@7.10.4_@babel+core@7.29.0": {
"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-jsx@7.28.6_@babel+core@7.29.0": {
"integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-typescript@7.28.6_@babel+core@7.29.0": {
"integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-typescript@7.28.6_@babel+core@7.29.0": {
"integrity": "sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"@babel/helper-create-class-features-plugin",
"@babel/helper-plugin-utils",
"@babel/helper-skip-transparent-expression-wrappers",
"@babel/plugin-syntax-typescript"
]
},
"@babel/template@7.28.6": {