-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathdeno.lock
More file actions
9782 lines (9782 loc) · 381 KB
/
Copy pathdeno.lock
File metadata and controls
9782 lines (9782 loc) · 381 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@9.2.0": "9.2.0_eslint@10.7.0_eslint-plugin-format@2.0.1_@types+node@26.2.0_@typescript-eslint+typescript-estree@8.67.0_@typescript-eslint+utils@8.67.0_@vitest+coverage-v8@4.1.11_@vitest+ui@4.1.11_@vue+compiler-sfc@3.5.40_happy-dom@20.11.6_oxlint@1.79.0_sass@1.101.3_typescript@6.0.3_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_vitest@4.1.11",
"npm:@antfu/eslint-config@^9.2.0": "9.2.0_eslint@10.7.0_eslint-plugin-format@2.0.1_@types+node@26.2.0_@typescript-eslint+typescript-estree@8.67.0_@typescript-eslint+utils@8.67.0_@vitest+coverage-v8@4.1.11_@vitest+ui@4.1.11_@vue+compiler-sfc@3.5.40_happy-dom@20.11.6_oxlint@1.79.0_sass@1.101.3_typescript@6.0.3_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_vitest@4.1.11",
"npm:@aws-sdk/client-s3@^3.1092.0": "3.1116.0",
"npm:@capacitor/action-sheet@^8.1.1": "8.1.1_@capacitor+core@8.5.0",
"npm:@capacitor/android@^8.4.2": "8.5.0_@capacitor+core@8.5.0",
"npm:@capacitor/app-launcher@^8.0.1": "8.0.1_@capacitor+core@8.5.0",
"npm:@capacitor/app@^8.1.1": "8.1.1_@capacitor+core@8.5.0",
"npm:@capacitor/browser@^8.0.4": "8.0.4_@capacitor+core@8.5.0",
"npm:@capacitor/camera@^8.2.1": "8.2.3_@capacitor+core@8.5.0",
"npm:@capacitor/cli@^8.4.2": "8.5.0",
"npm:@capacitor/clipboard@^8.0.1": "8.0.1_@capacitor+core@8.5.0",
"npm:@capacitor/core@^8.4.2": "8.5.0",
"npm:@capacitor/device@^8.0.3": "8.0.3_@capacitor+core@8.5.0",
"npm:@capacitor/dialog@^8.0.1": "8.0.1_@capacitor+core@8.5.0",
"npm:@capacitor/filesystem@^8.1.2": "8.1.2_@capacitor+core@8.5.0",
"npm:@capacitor/geolocation@^8.2.0": "8.2.0_@capacitor+core@8.5.0",
"npm:@capacitor/haptics@^8.0.2": "8.0.2_@capacitor+core@8.5.0",
"npm:@capacitor/ios@^8.4.2": "8.5.0_@capacitor+core@8.5.0",
"npm:@capacitor/keyboard@^8.0.5": "8.0.5_@capacitor+core@8.5.0",
"npm:@capacitor/local-notifications@^8.2.1": "8.3.1_@capacitor+core@8.5.0",
"npm:@capacitor/motion@^8.0.1": "8.0.1_@capacitor+core@8.5.0",
"npm:@capacitor/network@^8.0.1": "8.0.1_@capacitor+core@8.5.0",
"npm:@capacitor/preferences@^8.0.1": "8.0.1_@capacitor+core@8.5.0",
"npm:@capacitor/push-notifications@^8.1.2": "8.1.2_@capacitor+core@8.5.0",
"npm:@capacitor/screen-reader@^8.0.1": "8.0.1_@capacitor+core@8.5.0",
"npm:@capacitor/share@^8.0.1": "8.0.1_@capacitor+core@8.5.0",
"npm:@capacitor/splash-screen@^8.0.2": "8.0.2_@capacitor+core@8.5.0",
"npm:@capacitor/status-bar@^8.0.3": "8.0.3_@capacitor+core@8.5.0",
"npm:@capacitor/text-zoom@^8.0.1": "8.0.1_@capacitor+core@8.5.0",
"npm:@capacitor/toast@^8.0.1": "8.0.1_@capacitor+core@8.5.0",
"npm:@capgo/camera-preview@8.11.2": "8.11.2_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-accelerometer@^8.0.37": "8.0.39_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-age-range@^8.1.12": "8.1.13_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-android-age-signals@^8.1.17": "8.1.18_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-android-inline-install@^8.0.12": "8.0.13_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-android-kiosk@^8.2.7": "8.2.8_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-android-sms-retriever@^8.0.9": "8.0.10_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-app-attest@^8.2.1": "8.2.4_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-audio-recorder@^8.2.6": "8.2.7_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-audio-session@^8.0.45": "8.0.47_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-autofill-save-password@^8.0.35": "8.1.1_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-background-task@^8.1.7": "8.1.7_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-barometer@^8.0.17": "8.0.18_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-brightness@^8.0.18": "8.0.19_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-calendar@^8.0.8": "8.0.8_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-compass@^8.1.17": "8.1.19_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-crisp@^8.1.4": "8.2.1_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-data-storage-sqlite@^8.0.42": "8.0.45_@capacitor+core@8.5.0_localforage@1.10.0",
"npm:@capgo/capacitor-date-picker@^8.0.2": "8.0.2_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-document-scanner@^8.4.2": "8.4.3_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-downloader@^8.1.31": "8.1.32_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-file-compressor@^8.1.1": "8.1.3_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-file-sharer@^8.1.8": "8.1.9_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-flash@^8.0.35": "8.0.37_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-home-indicator@^8.0.41": "8.0.42_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-in-app-review@^8.2.2": "8.2.3_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-inappbrowser@^8.13.2": "8.15.3_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-install-referrer@^8.1.8": "8.1.9_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-intent-launcher@^8.3.25": "8.3.28_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-intercom@^8.1.11": "8.1.12_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-is-root@^8.1.16": "8.1.17_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-jw-player@^8.0.42": "8.0.45_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-keep-awake@^8.1.15": "8.1.15_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-launch-navigator@^8.0.33": "8.0.35_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-light-sensor@^8.1.16": "8.1.17_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-llm@^8.1.3": "8.1.4_@capacitor+core@8.5.0_@mediapipe+tasks-genai@0.10.29",
"npm:@capgo/capacitor-media-session@^8.0.29": "8.0.30_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-mqtt@^8.1.10": "8.1.11_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-mute@^8.1.1": "8.1.3_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-mux-player@^8.0.17": "8.0.18_@capacitor+core@8.5.0_react@19.2.8",
"npm:@capgo/capacitor-native-audio@^8.4.18": "8.4.21_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-native-biometric@^8.6.2": "8.6.7_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-native-market@^8.0.39": "8.0.41_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-native-navigation@^8.3.0": "8.3.1_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-nativegeocoder@^8.0.42": "8.0.44_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-navigation-bar@^8.2.6": "8.2.7_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-nfc@^8.2.2": "8.2.5_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-pdf-generator@^8.0.35": "8.0.36_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-pedometer@^8.0.38": "8.0.39_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-persistent-account@^8.0.36": "8.0.37_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-pretty-toast@^8.1.15": "8.1.16_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-printer@^8.1.1": "8.1.2_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-privacy-screen@^8.3.8": "8.3.9_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-proximity@^8.1.9": "8.1.10_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-recaptcha@^8.1.9": "8.1.11_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-ricoh360@^8.0.19": "8.0.20_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-rudderstack@^8.1.10": "8.1.11_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-screen-orientation@^8.1.18": "8.1.20_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-screen-recorder@^8.3.2": "8.3.4_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-shake@^8.0.37": "8.0.39_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-sheets@^8.0.17": "8.0.17_react@19.2.8_vue@3.5.40_typescript@6.0.3",
"npm:@capgo/capacitor-sim@^8.0.32": "8.0.34_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-speech-recognition@^8.1.10": "8.1.11_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-speech-synthesis@^8.0.20": "8.0.21_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-textinteraction@^8.0.32": "8.0.34_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-transitions@^8.1.9": "8.1.9_react@19.2.8_vue@3.5.40_typescript@6.0.3",
"npm:@capgo/capacitor-updater@8.51.7": "8.51.7_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-uploader@^8.3.5": "8.3.11_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-video-player@^8.2.3": "8.2.7_@capacitor+core@8.5.0_hls.js@1.6.19",
"npm:@capgo/capacitor-video-thumbnails@^8.1.18": "8.1.19_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-volume-buttons@^8.1.0": "8.1.1_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-webview-crash@^8.1.7": "8.1.7_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-webview-guardian@^8.0.22": "8.0.23_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-wifi@^8.4.1": "8.5.2_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-youtube-player@^8.2.15": "8.2.17_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-zebra-datawedge@^8.1.7": "8.1.8_@capacitor+core@8.5.0",
"npm:@capgo/capacitor-zip@^8.1.16": "8.1.17_@capacitor+core@8.5.0",
"npm:@capgo/find-package-manager@^0.0.18": "0.0.18",
"npm:@clack/prompts@^1.7.0": "1.7.0",
"npm:@cloudflare/workers-types@5.20260722.1": "5.20260722.1",
"npm:@codspeed/vitest-plugin@^5.7.1": "5.7.1_tinybench@2.9.0_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_vitest@4.1.11_@types+node@26.2.0_@vitest+coverage-v8@4.1.11_@vitest+ui@4.1.11_happy-dom@20.11.6_sass@1.101.3",
"npm:@formkit/core@2.1.2": "2.1.2",
"npm:@formkit/i18n@^2.1.0": "2.1.0",
"npm:@formkit/icons@^2.1.0": "2.1.0",
"npm:@formkit/themes@2.1.0": "2.1.0",
"npm:@formkit/vue@2.1.0": "2.1.0_vue@3.5.40_typescript@6.0.3",
"npm:@hono/standard-validator@0.3": "0.3.0_@standard-schema+spec@1.1.0_hono@4.12.34",
"npm:@iconify-json/simple-icons@^1.2.91": "1.2.93",
"npm:@iconify/json@^2.2.504": "2.2.519",
"npm:@inkjs/ui@2": "2.0.0_ink@7.1.1_@types+react@19.2.18_react@19.2.8",
"npm:@intlify/unplugin-vue-i18n@^11.2.4": "11.2.5_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_vue@3.5.40_vue-i18n@11.4.9_@types+node@26.2.0_eslint@10.7.0_sass@1.101.3_typescript@6.0.3",
"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:@manypkg/tools@^2.1.2": "2.1.2",
"npm:@modelcontextprotocol/client@^2.0.0-beta.5": "2.0.0",
"npm:@modelcontextprotocol/server@^2.0.0-beta.5": "2.0.0",
"npm:@playwright/test@1.61.1": "1.61.1",
"npm:@rrweb/types@^2.1.1": "2.1.1",
"npm:@standard-schema/spec@^1.1.0": "1.1.0",
"npm:@supabase/supabase-js@2.110.8": "2.110.8",
"npm:@supabase/supabase-js@^2.110.8": "2.110.8",
"npm:@tailwindcss/aspect-ratio@~0.4.2": "0.4.2_tailwindcss@4.3.3",
"npm:@tailwindcss/vite@^4.3.3": "4.3.3_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_@types+node@26.2.0_sass@1.101.3",
"npm:@tanstack/intent@~0.3.6": "0.3.6",
"npm:@types/adm-zip@~0.5.8": "0.5.8",
"npm:@types/bun@^1.3.14": "1.3.14",
"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@^26.1.1": "26.2.0",
"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@^19.2.17": "19.2.18",
"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:@typescript/native-preview@7.0.0-dev.20260707.2": "7.0.0-dev.20260707.2",
"npm:@vercel/ncc@~0.44.1": "0.44.1",
"npm:@vitejs/plugin-vue@6.0.8": "6.0.8_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_vue@3.5.40_@types+node@26.2.0_sass@1.101.3_typescript@6.0.3",
"npm:@vitest/coverage-v8@^4.1.10": "4.1.11_vitest@4.1.11_@types+node@26.2.0_@vitest+ui@4.1.11_happy-dom@20.11.6_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0",
"npm:@vitest/ui@^4.1.10": "4.1.11_vitest@4.1.11_@types+node@26.2.0_@vitest+coverage-v8@4.1.11_happy-dom@20.11.6_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0",
"npm:@vue/compiler-sfc@3.5.40": "3.5.40",
"npm:@vue/server-renderer@3.5.40": "3.5.40",
"npm:@vuepic/vue-datepicker@14": "14.0.0_vue@3.5.40_typescript@6.0.3",
"npm:@vueuse/core@^14.3.0": "14.3.0_vue@3.5.40_typescript@6.0.3",
"npm:@xmldom/xmldom@~0.9.10": "0.9.12",
"npm:@xterm/addon-serialize@0.14": "0.14.0",
"npm:@xterm/headless@6": "6.0.0",
"npm:adm-zip@0.6": "0.6.0",
"npm:agent-cli-detector@~0.1.6": "0.1.6",
"npm:better-qr@~0.1.2": "0.1.2",
"npm:bun-types@^1.3.14": "1.3.14",
"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.4.0": "4.4.0",
"npm:commander@15": "15.0.0",
"npm:country-code-to-flag-emoji@^2.1.0": "2.1.0",
"npm:cron-schedule@6": "6.0.0",
"npm:daisyui@^5.7.0": "5.7.20",
"npm:dayjs@1.11.21": "1.11.21",
"npm:discord-api-types@~0.38.50": "0.38.53",
"npm:dompurify@^3.4.12": "3.4.14",
"npm:dotenv@^17.4.2": "17.4.2",
"npm:drizzle-orm@1.0.0-rc.4": "1.0.0-rc.4_@cloudflare+workers-types@5.20260722.1_@types+pg@8.20.0_bun-types@1.3.14_pg@8.23.0_zod@4.4.3",
"npm:emulate@0.9.0": "0.9.0",
"npm:eslint-plugin-format@^2.0.1": "2.0.1_eslint@10.7.0",
"npm:eslint-plugin-oxlint@^1.75.0": "1.79.0_oxlint@1.79.0",
"npm:eslint@10.7.0": "10.7.0",
"npm:eslint@^10.7.0": "10.7.0",
"npm:git-format-staged@4.0.2": "4.0.2",
"npm:gsap@^3.15.0": "3.15.0",
"npm:happy-dom@^20.11.0": "20.11.6",
"npm:hono@4.12.34": "4.12.34",
"npm:husky@^9.1.7": "9.1.7",
"npm:ink-spinner@5": "5.0.0_ink@7.1.1_react@19.2.8_@types+react@19.2.18",
"npm:ink@^7.1.1": "7.1.1_@types+react@19.2.18_react@19.2.8",
"npm:is-wsl@^3.1.1": "3.1.1",
"npm:jose@^6.2.4": "6.2.10",
"npm:jsonwebtoken@^9.0.3": "9.0.3",
"npm:knip@^6.29.0": "6.32.2",
"npm:micromatch@^4.0.8": "4.0.8",
"npm:mime@^4.1.0": "4.1.0",
"npm:miniflare@^4.20260721.0": "4.20260730.0",
"npm:node-forge@^1.4.0": "1.4.0",
"npm:open@11": "11.0.0",
"npm:oxlint@^1.75.0": "1.79.0",
"npm:partysocket@^1.3.0": "1.3.0_react@19.2.8",
"npm:pg@^8.22.0": "8.23.0",
"npm:pinia@4.0.2": "4.0.2_@vue+devtools-api@8.2.1_typescript@6.0.3_vue@3.5.40",
"npm:pixelmatch@^7.2.0": "7.2.0",
"npm:plausible-tracker@~0.3.9": "0.3.9",
"npm:pngjs@7": "7.0.0",
"npm:prettyjson@^1.2.5": "1.2.5",
"npm:qrcode@^1.5.4": "1.5.4",
"npm:react@^19.2.8": "19.2.8",
"npm:rrweb-snapshot@^2.1.1": "2.1.1",
"npm:sass@1.101.3": "1.101.3",
"npm:semver@^7.8.5": "7.8.5",
"npm:simple-git-hooks@^2.13.1": "2.13.1",
"npm:string-width@^8.2.2": "8.2.2",
"npm:stripe@^22.3.2": "22.5.0_@types+node@26.2.0",
"npm:supabase@^2.109.1": "2.115.0",
"npm:tailwindcss@^4.3.3": "4.3.3",
"npm:tinbase@0.10": "0.10.2",
"npm:tmp@~0.2.7": "0.2.7",
"npm:tus-js-client@^4.3.1": "4.3.1",
"npm:typescript@6.0.3": "6.0.3",
"npm:unplugin-auto-import@21": "21.0.0_@vueuse+core@14.3.0_typescript@6.0.3_vue@3.5.40",
"npm:unplugin-formkit@0.3": "0.3.0",
"npm:unplugin-icons@23.0.1": "23.0.1_@vue+compiler-sfc@3.5.40",
"npm:unplugin-vue-components@^32.1.0": "32.1.0_vue@3.5.40_@types+node@26.2.0_sass@1.101.3_typescript@6.0.3_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0",
"npm:unplugin-vue-macros@^2.14.5": "2.14.5_vue@3.5.40_@types+node@26.2.0_sass@1.101.3_typescript@6.0.3",
"npm:vite-plugin-devtools-json@^1.1.0": "1.1.0_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_@types+node@26.2.0_sass@1.101.3",
"npm:vite-plugin-environment@1.1.3": "1.1.3_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_@types+node@26.2.0_sass@1.101.3",
"npm:vite-plugin-vue-devtools@^8.1.5": "8.2.1_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_@types+node@26.2.0_sass@1.101.3_typescript@6.0.3_vue@3.5.40",
"npm:vite-plugin-vue-layouts@0.11.0": "0.11.0_vite@8.0.14_vue@3.5.40_vue-router@5.0.7_@types+node@26.2.0_@vue+compiler-sfc@3.5.40_sass@1.101.3_typescript@6.0.3",
"npm:vite-plugin-webfont-dl@^3.12.0": "3.12.0_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_@types+node@26.2.0_sass@1.101.3",
"npm:vite@8.1.5": "8.1.5_@types+node@26.2.0_sass@1.101.3_yaml@2.9.0",
"npm:vitest@^4.1.10": "4.1.11_@types+node@26.2.0_@vitest+coverage-v8@4.1.11_@vitest+ui@4.1.11_happy-dom@20.11.6_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_sass@1.101.3",
"npm:vue-chartjs@^5.3.4": "5.3.4_chart.js@4.5.1_vue@3.5.40_typescript@6.0.3",
"npm:vue-demi@0.14.10": "0.14.10_vue@3.5.40_typescript@6.0.3",
"npm:vue-i18n@^11.4.7": "11.4.9_vue@3.5.40_typescript@6.0.3",
"npm:vue-router@^5.2.0": "5.2.0_@vue+compiler-sfc@3.5.40_pinia@4.0.2_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_vue@3.5.40_@types+node@26.2.0_sass@1.101.3_typescript@6.0.3",
"npm:vue-sonner@^2.0.9": "2.0.9",
"npm:vue-tsc@3.3.7": "3.3.7_typescript@6.0.3",
"npm:vue-turnstile@^1.0.11": "1.0.11_vue@3.5.40_typescript@6.0.3",
"npm:vue@3.5.40": "3.5.40_typescript@6.0.3",
"npm:wrangler@^4.113.0": "4.125.0_@cloudflare+workers-types@5.20260722.1",
"npm:ws@^8.21.1": "8.21.3",
"npm:zod-compiler@^1.15.0": "1.28.0_zod@4.4.3_@types+node@26.2.0_sass@1.101.3_vite@8.1.5__@types+node@26.2.0__jiti@2.7.0__sass@1.101.3",
"npm:zod@^4.4.3": "4.4.3"
},
"npm": {
"@alcalzone/ansi-tokenize@0.3.0": {
"integrity": "sha512-p+CMKJ93HFmLkjXKlXiVGlMQEuRb6H0MokBSwUsX+S6BRX8eV5naFZpQJFfJHjRZY0Hmnqy1/r6UWl3x+19zYA==",
"dependencies": [
"ansi-styles@6.2.3",
"is-fullwidth-code-point@5.1.0"
]
},
"@antfu/eslint-config@9.2.0_eslint@10.7.0_eslint-plugin-format@2.0.1_@types+node@26.2.0_@typescript-eslint+typescript-estree@8.67.0_@typescript-eslint+utils@8.67.0_@vitest+coverage-v8@4.1.11_@vitest+ui@4.1.11_@vue+compiler-sfc@3.5.40_happy-dom@20.11.6_oxlint@1.79.0_sass@1.101.3_typescript@6.0.3_vite@8.1.5__@types+node@26.2.0__sass@1.101.3__yaml@2.9.0_vitest@4.1.11": {
"integrity": "sha512-v/j0Pjn6Sj9CxHT8n4nIKI8lg4O/+P4G+Zdbg7u/3J6JaLayxRXsX2Twx0fjpUtoyxW5mdYd67QycVfr1ahirA==",
"dependencies": [
"@antfu/install-pkg",
"@clack/prompts",
"@e18e/eslint-plugin",
"@eslint-community/eslint-plugin-eslint-comments",
"@eslint/markdown",
"@stylistic/eslint-plugin",
"@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser",
"@vitest/eslint-plugin",
"ansis",
"cac@7.0.0",
"eslint",
"eslint-config-flat-gitignore",
"eslint-flat-config-utils",
"eslint-merge-processors",
"eslint-plugin-antfu",
"eslint-plugin-command",
"eslint-plugin-format",
"eslint-plugin-import-lite",
"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",
"eslint-plugin-unused-imports",
"eslint-plugin-vue",
"eslint-plugin-yml",
"eslint-processor-vue-blocks",
"globals@17.11.0",
"local-pkg",
"parse-gitignore",
"toml-eslint-parser",
"vue-eslint-parser",
"yaml-eslint-parser@2.1.0"
],
"optionalPeers": [
"eslint-plugin-format"
],
"bin": true
},
"@antfu/install-pkg@1.1.0": {
"integrity": "sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==",
"dependencies": [
"package-manager-detector",
"tinyexec"
]
},
"@aws-sdk/checksums@3.1000.29": {
"integrity": "sha512-Dtu0gr4dnATZAPwEYbpCsG+MpLM7OAliy2gTepEFQwl1vZ6DL3QMH2FveMa3HLvPsOdhJsPRB3KtxVhph9T75A==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/core",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/client-s3@3.1116.0": {
"integrity": "sha512-UKRl9qSVW0rZpvSOauQNpYAy8+ONBAVYnpfKVtCyOF+FZVT1tl6MunYuHvuarCrroD2/YJs+tHTALYNgAlec3Q==",
"dependencies": [
"@aws-sdk/checksums",
"@aws-sdk/core",
"@aws-sdk/credential-provider-node",
"@aws-sdk/middleware-sdk-s3",
"@aws-sdk/signature-v4-multi-region",
"@aws-sdk/types",
"@smithy/core",
"@smithy/fetch-http-handler",
"@smithy/node-http-handler",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/core@3.977.9": {
"integrity": "sha512-reqPFEQrZxDZpeGj4PFMepBeR5LGYHRqq/L0motTzgFkCRBA4rFdaVXDSLYyGHhxVz7sT2PDnPN9CluGSfgyJA==",
"dependencies": [
"@aws-sdk/types",
"@aws-sdk/xml-builder",
"@aws/lambda-invoke-store",
"@smithy/core",
"@smithy/signature-v4",
"@smithy/types",
"bowser",
"tslib"
]
},
"@aws-sdk/credential-provider-env@3.972.70": {
"integrity": "sha512-H404B7dJl2mCrBqahDEYsanB0xhdDp6tXnXcTUnXmmpy2Q3J0Ho0bUajZ2jr/RdwzCyS59Gi8xXIFwPLGBl6Uw==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/core",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-http@3.972.72": {
"integrity": "sha512-X98zYOrVOeuosCX+6ktf29FC2N2GHPLia7qv6mzPzTc+RPAuHWCDS++Z6JK7eGYqb/v6uaW7bAXaOvDBfol+0w==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/core",
"@smithy/fetch-http-handler",
"@smithy/node-http-handler",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-ini@3.973.15": {
"integrity": "sha512-Rykg6s5ceBuynMOGWgoowO4N+27JfnqXAnVaSunZl0hOO1XodSrxGNz6sCEbnmS0lAfQZDKyb3fbr46gSuv6Sg==",
"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/core",
"@smithy/credential-provider-imds",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-login@3.972.77": {
"integrity": "sha512-Jb59xfEISoN5mmbnA+HYqdtrSX3CgCtJoof+V5D8/TgUI56W63GEEd5Y58WijU3Ou6+WEgaLD1feVzaRXV5IDQ==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/core",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-node@3.972.81": {
"integrity": "sha512-Rml+WitoFvXmv6JZ18U/xGdGDGGvB/mOin0ya0lTnTrdC0Z1lrVxTYh7iNklZBcvcRMrs4DoEf6xy1KWyrLQQw==",
"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/core",
"@smithy/credential-provider-imds",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-process@3.972.70": {
"integrity": "sha512-2ry03fGRJr4sV3jI+ocjj5JqALnFD6ymM5KiNCDZMvq8bX2GSbE0vji4aM43TVCl2nXqqLRZaUxdq/KeWRAY4Q==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/types",
"@smithy/core",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-sso@3.973.14": {
"integrity": "sha512-jkhg/8ocAAoc0RFyLMhCw+/zZh7gystQgd4F4hznNa8P4Cc501PQmxd+jGLiMHodPJ+7Zv/3znM62gZojyasmA==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/nested-clients",
"@aws-sdk/token-providers",
"@aws-sdk/types",
"@smithy/core",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/credential-provider-web-identity@3.972.76": {
"integrity": "sha512-d3AGyVu759PGr35mEB2s22xxlNEA5rpdxtSPJthfPFJvoQ8dt357iVPECqWfUxXp1toJAvKmbtcIYVGigaGsCA==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/core",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/middleware-sdk-s3@3.972.75": {
"integrity": "sha512-wMIsNumRVKaNMKhvU/s9VrdEwE8S6gSzXp4RygFG5BEMnGkkXf8cjh8zf7cKJBpUDpqTWqwbz5isEgp9rH6Lng==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/signature-v4-multi-region",
"@aws-sdk/types",
"@smithy/core",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/nested-clients@3.997.44": {
"integrity": "sha512-NhEgryjlBF9w38ZXqGymQV28IhkYa1mKhlbYnqIis57AYwWGVYfUPgg/qC2rLRqOUfblxx++irvju10kVTa8Vw==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/signature-v4-multi-region",
"@aws-sdk/types",
"@smithy/core",
"@smithy/fetch-http-handler",
"@smithy/node-http-handler",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/signature-v4-multi-region@3.996.46": {
"integrity": "sha512-L+2xZTye/2T96f3lwCws0Zw6GG2JHZW9e8FpVgGBeeExSKyeoZ6CWRpBml/7DNiK/O26jrgPM9F+Ay8VkgzUWQ==",
"dependencies": [
"@aws-sdk/types",
"@smithy/signature-v4",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/token-providers@3.1116.0": {
"integrity": "sha512-ygIivKqh8aHzNkucOCXHyIBgBpLPfrSI0mCqXF+vLBsPTUKqj0VSqAY0GFPe7lQl4HntjOcQ+KSyS7oUV2C54Q==",
"dependencies": [
"@aws-sdk/core",
"@aws-sdk/nested-clients",
"@aws-sdk/types",
"@smithy/core",
"@smithy/types",
"tslib"
]
},
"@aws-sdk/types@3.974.5": {
"integrity": "sha512-LkwLL2BLbC6wNNm4JaH9mbEqBMdOZCct6VAYqhdN4U1xrWM+fUJQEfbHwQgDypapOWTRtlk25akb5afM0P8CIQ==",
"dependencies": [
"@smithy/types",
"tslib"
]
},
"@aws-sdk/xml-builder@3.972.40": {
"integrity": "sha512-wlFmCIGUlwF4zx/kncw+bmxTQh1HeSJq4mYV/V5cZUSJadDP3kXvGW8Rn21cimj/7y9ju+47oYWXi97vF7czaA==",
"dependencies": [
"@smithy/types",
"tslib"
]
},
"@aws/lambda-invoke-store@0.3.0": {
"integrity": "sha512-sl4Bm6yiMNYrZKkqqDFWN0UfnWhlS8ivKxrYl+6t0gCLrqr8y3B2IqZZbFRkfaVVp7C/baApyh71P+LeE1A2sQ=="
},
"@babel/code-frame@7.29.7": {
"integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
"dependencies": [
"@babel/helper-validator-identifier@7.29.7",
"js-tokens@4.0.0",
"picocolors"
]
},
"@babel/compat-data@7.29.7": {
"integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg=="
},
"@babel/core@7.29.7": {
"integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
"dependencies": [
"@babel/code-frame",
"@babel/generator@7.29.8",
"@babel/helper-compilation-targets",
"@babel/helper-module-transforms",
"@babel/helpers",
"@babel/parser@7.29.8",
"@babel/template",
"@babel/traverse",
"@babel/types@7.29.8",
"@jridgewell/remapping",
"convert-source-map",
"debug",
"gensync",
"json5",
"semver@6.3.1"
]
},
"@babel/generator@7.29.8": {
"integrity": "sha512-gZbepsdh3WDtgZKWL+vTPh71LSBrm/Y4/QDZBVCcYfmeTEEuoOYwlSy+G1StfJg+/Zy550u/3TATbm7qDbbMtg==",
"dependencies": [
"@babel/parser@7.29.8",
"@babel/types@7.29.8",
"@jridgewell/gen-mapping",
"@jridgewell/trace-mapping@0.3.31",
"jsesc"
]
},
"@babel/generator@8.0.0": {
"integrity": "sha512-NT9NrVwJsbSV6Y2FSstWa71EETOnzrjkL5/wX3D2mYHtKM+qvqB1DvR4D0Setb/gDBsHzRICifwEWMO8CnTF6g==",
"dependencies": [
"@babel/parser@8.0.4",
"@babel/types@8.0.4",
"@jridgewell/gen-mapping",
"@jridgewell/trace-mapping@0.3.31",
"@types/jsesc",
"jsesc"
]
},
"@babel/helper-annotate-as-pure@7.29.7": {
"integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==",
"dependencies": [
"@babel/types@7.29.8"
]
},
"@babel/helper-compilation-targets@7.29.7": {
"integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
"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.29.7_@babel+core@7.29.7": {
"integrity": "sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==",
"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.29.7": {
"integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA=="
},
"@babel/helper-member-expression-to-functions@7.29.7": {
"integrity": "sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==",
"dependencies": [
"@babel/traverse",
"@babel/types@7.29.8"
]
},
"@babel/helper-module-imports@7.29.7": {
"integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
"dependencies": [
"@babel/traverse",
"@babel/types@7.29.8"
]
},
"@babel/helper-module-transforms@7.29.7_@babel+core@7.29.7": {
"integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
"dependencies": [
"@babel/core",
"@babel/helper-module-imports",
"@babel/helper-validator-identifier@7.29.7",
"@babel/traverse"
]
},
"@babel/helper-optimise-call-expression@7.29.7": {
"integrity": "sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==",
"dependencies": [
"@babel/types@7.29.8"
]
},
"@babel/helper-plugin-utils@7.29.7": {
"integrity": "sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw=="
},
"@babel/helper-replace-supers@7.29.7_@babel+core@7.29.7": {
"integrity": "sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==",
"dependencies": [
"@babel/core",
"@babel/helper-member-expression-to-functions",
"@babel/helper-optimise-call-expression",
"@babel/traverse"
]
},
"@babel/helper-skip-transparent-expression-wrappers@7.29.7": {
"integrity": "sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==",
"dependencies": [
"@babel/traverse",
"@babel/types@7.29.8"
]
},
"@babel/helper-string-parser@7.29.7": {
"integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw=="
},
"@babel/helper-string-parser@8.0.0": {
"integrity": "sha512-6mJgmFFFIIO82vvoLt9XtRC7/TkzXfts1t/SpRX4IHSzMgqoPYCWesVu1udUPUWioAE/2fcG6WuI8zrkE1gwrg=="
},
"@babel/helper-validator-identifier@7.29.7": {
"integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg=="
},
"@babel/helper-validator-identifier@8.0.4": {
"integrity": "sha512-4wFaiLd0bVo4cIoTXI3zKI038NIWE/cr3jvBjejOVYVxV/m8Ltav1USiGzG1fmS5J2RhgEOgXNNK46cRPnRsrg=="
},
"@babel/helper-validator-option@7.29.7": {
"integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw=="
},
"@babel/helpers@7.29.7": {
"integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
"dependencies": [
"@babel/template",
"@babel/types@7.29.8"
]
},
"@babel/parser@7.29.8": {
"integrity": "sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==",
"dependencies": [
"@babel/types@7.29.8"
],
"bin": true
},
"@babel/parser@8.0.4": {
"integrity": "sha512-srpptsAkEbbNIC/q8nT7o+m6CQe8CJUTV/t7MYc9NnWlgYVtHOb7JH6SorxMhN0kuRJjVqXbKClG6xSbPtzz+g==",
"dependencies": [
"@babel/types@8.0.4"
],
"bin": true
},
"@babel/plugin-proposal-decorators@7.29.7_@babel+core@7.29.7": {
"integrity": "sha512-EtU0Hi3GvrTqD56xKmZvV/uCXK2ZbwVNPNLAquVItcAZpUhkXwWlo3Fmj0c2LxgSf2I8IDULeAepwNP1OefLXg==",
"dependencies": [
"@babel/core",
"@babel/helper-create-class-features-plugin",
"@babel/helper-plugin-utils",
"@babel/plugin-syntax-decorators"
]
},
"@babel/plugin-syntax-decorators@7.29.7_@babel+core@7.29.7": {
"integrity": "sha512-9MTTLbF39X6sqM92JPEsoI7++26hjZvzkxKZy64aMhWLH2mPkJ/Q3AV4QLmls3R14FpSpkOwQQfUh962JGQxxg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-import-attributes@7.29.7_@babel+core@7.29.7": {
"integrity": "sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-import-meta@7.10.4_@babel+core@7.29.7": {
"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-jsx@7.29.7_@babel+core@7.29.7": {
"integrity": "sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-typescript@7.29.7_@babel+core@7.29.7": {
"integrity": "sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-typescript@7.29.7_@babel+core@7.29.7": {
"integrity": "sha512-jK52h8LaLc7JarhQV2ofeFMts4H7vnOXnqZNA6fYglBTZewRBE51KWt3BUltW1P+KoPsYkHoJeXePuz4zo2LMw==",
"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.29.7": {
"integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
"dependencies": [
"@babel/code-frame",
"@babel/parser@7.29.8",
"@babel/types@7.29.8"
]
},
"@babel/traverse@7.29.8": {
"integrity": "sha512-I5z7H3bf/41ktsNVLtpN0wAa336HkqIHQ5BuPLEhTkt1jVSyZpeNKIzTgEWmlxjdg81R0IgUCcaE+Ok3NvrfZg==",
"dependencies": [
"@babel/code-frame",
"@babel/generator@7.29.8",
"@babel/helper-globals",
"@babel/parser@7.29.8",
"@babel/template",
"@babel/types@7.29.8",
"debug"
]
},
"@babel/types@7.29.8": {
"integrity": "sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==",
"dependencies": [
"@babel/helper-string-parser@7.29.7",
"@babel/helper-validator-identifier@7.29.7"
]
},
"@babel/types@8.0.4": {
"integrity": "sha512-eY+Yn3dCqTGmyiq2QRU66lA5FL8lqqqvecHt0fF3uHONIa7ToYsaCiWV8lOKqAs0Rb2SjixiKFROngnulPtt2g==",
"dependencies": [
"@babel/helper-string-parser@8.0.0",
"@babel/helper-validator-identifier@8.0.4"
]
},
"@bcoe/v8-coverage@1.0.2": {
"integrity": "sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA=="
},
"@cacheable/memory@2.0.9": {
"integrity": "sha512-HdMx6DoGywB30vacDbBsITbIX4pgFqj1zsrV58jZBUw3klzkNoXhj7qOqAgledhxG7YZI5rBSJg7Zp8/VG0DuA==",
"dependencies": [
"@cacheable/utils",
"@keyv/bigmap",
"hookified@1.15.1",
"keyv@5.6.0"
]
},
"@cacheable/utils@2.4.1": {
"integrity": "sha512-eiFgzCbIneyMlLOmNG4g9xzF7Hv3Mga4LjxjcSC/ues6VYq2+gUbQI8JqNuw/ZM8tJIeIaBGpswAsqV2V7ApgA==",
"dependencies": [
"hashery",
"keyv@5.6.0"
]
},
"@capacitor/action-sheet@8.1.1_@capacitor+core@8.5.0": {
"integrity": "sha512-yHuGSR/FS2dDr9oBmy+Ql+y7/i5XsUAlENx5oRND5NtzsNLLiFxpNPGLWV27aU9uf9ICjI92VzH93Zh0g2FL1A==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/android@8.5.0_@capacitor+core@8.5.0": {
"integrity": "sha512-Rb3prJeQiTp0pQhSSOReJuG9VgibOGMG4ECs+UhMwr6TCCHZ3NCZO811bDA0HxD0xrT/gCrJAsY5yfEATu84JQ==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/app-launcher@8.0.1_@capacitor+core@8.5.0": {
"integrity": "sha512-23D8zi74sn7kxvISix8qYwgqdxGJN+4NImcNGvHen98LB1zb4eZfkJvFvp7pwntxGw4OjIE7yuf4wbzZxQHpog==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/app@8.1.1_@capacitor+core@8.5.0": {
"integrity": "sha512-xM2ZTX5jK60tFtmjsmJv+Cdj1Qsb6NcavkqmdEnCPQBeya9oKhamZJxYOnQNj1ZvcJM7sWfG6BEtSLx42pisbA==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/browser@8.0.4_@capacitor+core@8.5.0": {
"integrity": "sha512-ORZ4u/y+7aMuu6yVuk6SP529fUZyqcbnuHB1q5McpA3o2SYfVoi28iB8rsQjI2ad1qlKJd29ZUuGtspXLBDlWg==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/camera@8.2.3_@capacitor+core@8.5.0": {
"integrity": "sha512-x9Pl5UgvrZyU5Hl53Fly9f6u019hhgN+gSdDgi+WygxK9DUVuYKjigplOXz3VJQ9m8ttUSjqN/rAC3JVnyEzcA==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/cli@8.5.0": {
"integrity": "sha512-rLdzMUM5QV4WITcqoWv04p32i14BXgUH2diqEH6MWQlWaJfiyNrvOyt/+d5vHAfOxOm1klBu637VDEobctlwBA==",
"dependencies": [
"@ionic/cli-framework-output",
"@ionic/utils-subprocess",
"@ionic/utils-terminal",
"commander@12.1.0",
"debug",
"env-paths",
"fs-extra@11.4.0",
"kleur@4.1.5",
"native-run",
"open@8.4.2",
"plist",
"prompts",
"rimraf",
"semver@7.8.5",
"tar",
"tslib",
"xcode",
"xml2js"
],
"bin": true
},
"@capacitor/clipboard@8.0.1_@capacitor+core@8.5.0": {
"integrity": "sha512-iOlbTi8MojKyLnYE+M27priXid7vHd0PlDwyHohPzkuQ8Rkp6q7ykwZmPEUD+OnU/Ink7Qw/pUOfKgraKmA6Eg==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/core@8.5.0": {
"integrity": "sha512-Ca4krtqH1hothjtBIwf2J2TW7IhYq1ujp8QeItTiJohNsqij8ja2DYYH3DU0l8RmxCWaBAFTGA2TgOgOMCSNsQ==",
"dependencies": [
"tslib"
]
},
"@capacitor/device@8.0.3_@capacitor+core@8.5.0": {
"integrity": "sha512-rliPCCZwxtjU6200jJNDAsQhioyozV3fGgiP+NgRqtDOI7i+Jdz+DYNwEup+3MGZZ4NEmkuFaBeWLM3T01vJRg==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/dialog@8.0.1_@capacitor+core@8.5.0": {
"integrity": "sha512-Dq0mZBsd++7CvPvpD2gfbUB44k/zCoe5K9IgYmMImQ4Yphu4/MxLVpFDFAqSya011UBBTGPrUQGVacIW3jDNkw==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/filesystem@8.1.2_@capacitor+core@8.5.0": {
"integrity": "sha512-doaaMfGoFR2hWU6aV6u83I+5ZsGyJVq+Gz4r9lMpJzUKMm1eMu0hLnFdV1aXZlU9FlK/RndFrVD8oRZfNOqWgQ==",
"dependencies": [
"@capacitor/core",
"@capacitor/synapse"
]
},
"@capacitor/geolocation@8.2.0_@capacitor+core@8.5.0": {
"integrity": "sha512-N29QcoIPmme0xSxRkm7+3hjoHp6mBAOarxecvtCCZKyOBeKiJsFUq981cezg2XWBa6fhCXJMCCjQPngKK/dIag==",
"dependencies": [
"@capacitor/core",
"@capacitor/synapse"
]
},
"@capacitor/haptics@8.0.2_@capacitor+core@8.5.0": {
"integrity": "sha512-c2hZzRR5Fk1tbTvhG1jhh2XBAf3EhnIerMIb2sl7Mt41Gxx1fhBJFDa0/BI1IbY4loVepyyuqNC9820/GZuoWQ==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/ios@8.5.0_@capacitor+core@8.5.0": {
"integrity": "sha512-7k1TfohJu5BzRXc1F3g04Q8QQ0fyQgms6h1AvhnHb04VaNr9EdHOx03hL8O+OigEKMQnyJd1ZOjTPPNHCqL5Yw==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/keyboard@8.0.5_@capacitor+core@8.5.0": {
"integrity": "sha512-oFXygC4eKYA5l2MdpTR06L2M/4x6e2SLD5yS1T9+UBDKTkzyvhWKEhbYLUaTIBPpLKqlfGudJw1X73S1H9eUzQ==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/local-notifications@8.3.1_@capacitor+core@8.5.0": {
"integrity": "sha512-F7zu/+p/mIR958YP4axOkeI5hBKRaXDyYjbNPrAil2wWfd7OxScPSTvP9t85NpQ0eULVRu0/sntoxOg6ck477A==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/motion@8.0.1_@capacitor+core@8.5.0": {
"integrity": "sha512-kON6AwzCzMmyw6A76G0zLF/Q7xVPMC66HSfTSCgpMNwoQkRMMMEDHQbfFxZYLmCcS/4apy3lzG/HTvE5coAZiw==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/network@8.0.1_@capacitor+core@8.5.0": {
"integrity": "sha512-9xK/FHFmzKGanB6BdoSZOzXk8vF0OFVQSQ4PAsIrzAzLuXHryO317qy8dcHVpgxYeuZq2noI0My9z1DvVDi/9w==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/preferences@8.0.1_@capacitor+core@8.5.0": {
"integrity": "sha512-T6no3ebi79XJCk91U3Jp/liJUwgBdvHR+s6vhvPkPxSuch7z3zx5Rv1bdWM6sWruNx+pViuEGqZvbfCdyBvcHQ==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/push-notifications@8.1.2_@capacitor+core@8.5.0": {
"integrity": "sha512-TQl4XxqJfNF+KbSYBFMXYYT5WXUaleVKXlByhh/8+KySMVNjp+l5OqAUoGe/sY1IAnGXEuUeCjA/WLZEVvGwrA==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/screen-reader@8.0.1_@capacitor+core@8.5.0": {
"integrity": "sha512-r7tS7pjWawaBPbda0rSJsi1/4/5voaeGw18Txt8UyRo5e0YBkscxfPb+29Io0/CDc+fmE73cVhKl/PVUxwFwtQ==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/share@8.0.1_@capacitor+core@8.5.0": {
"integrity": "sha512-3cSBKBCJVon54rKDROP2rqGyeGks4pBh9TbaEk9S375Kbek/ZHe72N50zIa0Vn9Eac/SuhwgehO/mmA4CsUOiw==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/splash-screen@8.0.2_@capacitor+core@8.5.0": {
"integrity": "sha512-0C6rYScr13WfAE9nPl4ScOQynmjFv9NT3Th+RZkD4ezYHmER6mcl1/lDYsv7jg3Rj3FOvLrlTlmNkUrr83kZzQ==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/status-bar@8.0.3_@capacitor+core@8.5.0": {
"integrity": "sha512-csSpfNeN49Hx9JaQBSJEIiEbOLtXg3kcc2IpScq2fu5L520h3AWEvsxoH8Srk1jxfRKepaJ4S4sqSC3foI4AgA==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/synapse@1.0.4": {
"integrity": "sha512-/C1FUo8/OkKuAT4nCIu/34ny9siNHr9qtFezu4kxm6GY1wNFxrCFWjfYx5C1tUhVGz3fxBABegupkpjXvjCHrw=="
},
"@capacitor/text-zoom@8.0.1_@capacitor+core@8.5.0": {
"integrity": "sha512-hib9Srjme4DRmbzGYfwAWB5OIl0C3ihjXQNTpMMSVqBUxlHfm3O35H/In6FtNrbJ78ro13Zb0NDDK8o3kLPEnQ==",
"dependencies": [
"@capacitor/core"
]
},
"@capacitor/toast@8.0.1_@capacitor+core@8.5.0": {
"integrity": "sha512-0uoyftoAeFjtOMiozBo7YXEo+zcpQCAxtBONSvrljJ05SKdlb1A8OFHaV/DZfIpGt+19kzUGaEaUemLdll4wUw==",
"dependencies": [
"@capacitor/core"
]
},
"@capgo/camera-preview@8.11.2_@capacitor+core@8.5.0": {
"integrity": "sha512-Irn93JdZ3gpsO38TNW71P9VJS2xOqMkbkCgVi2pUVpW8tFtqxrNrpPIi+38Rvo1Jf6B7tbywbV9dZoSfiT4GZg==",
"dependencies": [
"@capacitor/core"
]
},
"@capgo/capacitor-accelerometer@8.0.39_@capacitor+core@8.5.0": {
"integrity": "sha512-RQJI9oWCG/sGkGWEGXYFuhLJztMWiaXBI4LXckCn5idPDWwRdTFqzA6PDOmRsh/+N7Qxcle2ts7jLlBZLcIpug==",
"dependencies": [
"@capacitor/core"
]
},
"@capgo/capacitor-age-range@8.1.13_@capacitor+core@8.5.0": {
"integrity": "sha512-fd0oXEmjxbWjSzQRjLoX6u9UZFGAe2rNGwlBVg3pPzDaD81F37X9kxji7MIV1eepdWnfmhd+ULgnlAtAyMSUGQ==",
"dependencies": [
"@capacitor/core"
]
},
"@capgo/capacitor-android-age-signals@8.1.18_@capacitor+core@8.5.0": {
"integrity": "sha512-4O1b5pFYNWuSOMwdeIIZS5wRSIBUafiPiiVLrjlMTXkAYm81kfWhxOm9l4WmFzgRiI62sd2TVF4bw772ddvpIg==",
"dependencies": [
"@capacitor/core"
]
},
"@capgo/capacitor-android-inline-install@8.0.13_@capacitor+core@8.5.0": {
"integrity": "sha512-hCaKwPftSsvnZtAZMHsC9WUgi4Yv1PGhJVCgj9WrkFy8vBVxeByyVvXW9HigF9MndMjmu2aq6Kv6srMpULMgHw==",
"dependencies": [
"@capacitor/core"
]
},