-
Notifications
You must be signed in to change notification settings - Fork 680
/
Copy pathpnpm-lock.yaml
18550 lines (14948 loc) · 603 KB
/
pnpm-lock.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
devDependencies:
cli:
specifier: workspace:*
version: link:cli
prettier:
specifier: 3.3.3
version: 3.3.3
syncpack:
specifier: 13.0.0
version: 13.0.0(typescript@5.7.2)
tsx:
specifier: 4.19.2
version: 4.19.2
turbo:
specifier: 2.3.0
version: 2.3.0
astro-blog-starter-template:
dependencies:
'@astrojs/cloudflare':
specifier: 12.1.0
version: 12.1.0(@types/node@22.9.1)(astro@5.1.3(@types/node@22.9.1)(aws4fetch@1.0.20)(jiti@2.4.2)(lightningcss@1.29.1)(rollup@4.34.1)(terser@5.16.9)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.7.0))(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.16.9)(tsx@4.19.2)(yaml@2.7.0)
'@astrojs/mdx':
specifier: 4.0.3
version: 4.0.3(astro@5.1.3(@types/node@22.9.1)(aws4fetch@1.0.20)(jiti@2.4.2)(lightningcss@1.29.1)(rollup@4.34.1)(terser@5.16.9)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.7.0))
'@astrojs/rss':
specifier: 4.0.11
version: 4.0.11
'@astrojs/sitemap':
specifier: 3.2.1
version: 3.2.1
astro:
specifier: 5.1.3
version: 5.1.3(@types/node@22.9.1)(aws4fetch@1.0.20)(jiti@2.4.2)(lightningcss@1.29.1)(rollup@4.34.1)(terser@5.16.9)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.7.0)
typescript:
specifier: 5.7.2
version: 5.7.2
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
cli:
dependencies:
'@commander-js/extra-typings':
specifier: 12.1.0
version: 12.1.0(commander@12.1.0)
commander:
specifier: 12.1.0
version: 12.1.0
toml:
specifier: 3.0.0
version: 3.0.0
zod:
specifier: 3.24.1
version: 3.24.1
zx:
specifier: 8.3.2
version: 8.3.2
devDependencies:
'@types/node':
specifier: 22.9.1
version: 22.9.1
typescript:
specifier: 5.7.2
version: 5.7.2
d1-template:
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
typescript:
specifier: 5.7.2
version: 5.7.2
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
durable-chat-template:
dependencies:
nanoid:
specifier: 5.0.8
version: 5.0.8
partyserver:
specifier: 0.0.57
version: 0.0.57(@cloudflare/workers-types@4.20250204.0)
partysocket:
specifier: 1.0.2
version: 1.0.2
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
react-router:
specifier: 7.2.0
version: 7.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
'@types/react':
specifier: 18.3.12
version: 18.3.12
'@types/react-dom':
specifier: 18.3.1
version: 18.3.1
esbuild:
specifier: 0.24.0
version: 0.24.0
typescript:
specifier: 5.7.2
version: 5.7.2
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
multiplayer-globe-template:
dependencies:
cobe:
specifier: 0.6.3
version: 0.6.3
partyserver:
specifier: 0.0.57
version: 0.0.57(@cloudflare/workers-types@4.20250204.0)
partysocket:
specifier: 1.0.2
version: 1.0.2
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
'@types/react':
specifier: 18.3.12
version: 18.3.12
'@types/react-dom':
specifier: 18.3.1
version: 18.3.1
esbuild:
specifier: 0.24.0
version: 0.24.0
typescript:
specifier: 5.7.2
version: 5.7.2
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
next-starter-template:
dependencies:
next:
specifier: 14.2.23
version: 14.2.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
'@opennextjs/cloudflare':
specifier: 0.5.3
version: 0.5.3(wrangler@3.107.3(@cloudflare/workers-types@4.20250204.0))
'@types/node':
specifier: 22.9.1
version: 22.9.1
'@types/react':
specifier: 18.3.12
version: 18.3.12
'@types/react-dom':
specifier: 18.3.1
version: 18.3.1
eslint:
specifier: 8.56.0
version: 8.56.0
eslint-config-next:
specifier: 14.2.5
version: 14.2.5(eslint@8.56.0)(typescript@5.7.2)
postcss:
specifier: 8.4.49
version: 8.4.49
tailwindcss:
specifier: 3.4.17
version: 3.4.17
typescript:
specifier: 5.7.2
version: 5.7.2
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
openauth-template:
dependencies:
'@openauthjs/openauth':
specifier: 0.3.2
version: 0.3.2(arctic@2.3.4)(hono@4.7.1)
valibot:
specifier: ^1.0.0-beta.9
version: 1.0.0-beta.14(typescript@5.7.2)
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
typescript:
specifier: 5.7.2
version: 5.7.2
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
react-router-starter-template:
dependencies:
'@react-router/node':
specifier: 7.2.0
version: 7.2.0(react-router@7.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.2)
'@react-router/serve':
specifier: 7.2.0
version: 7.2.0(react-router@7.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.2)
isbot:
specifier: 5.1.17
version: 5.1.17
react:
specifier: 19.0.0
version: 19.0.0
react-dom:
specifier: 19.0.0
version: 19.0.0(react@19.0.0)
react-router:
specifier: 7.2.0
version: 7.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
'@react-router/dev':
specifier: 7.2.0
version: 7.2.0(@react-router/serve@7.2.0(react-router@7.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.2))(@types/node@22.9.1)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.16.9)(tsx@4.19.2)(typescript@5.7.2)(vite@6.1.0(@types/node@22.9.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.16.9)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.3(@cloudflare/workers-types@4.20250204.0))(yaml@2.7.0)
'@tailwindcss/vite':
specifier: 4.0.0
version: 4.0.0(vite@6.1.0(@types/node@22.9.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.16.9)(tsx@4.19.2)(yaml@2.7.0))
'@types/node':
specifier: 22.9.1
version: 22.9.1
'@types/react':
specifier: 19.0.1
version: 19.0.1
'@types/react-dom':
specifier: 19.0.1
version: 19.0.1
tailwindcss:
specifier: 4.0.0
version: 4.0.0
typescript:
specifier: 5.7.2
version: 5.7.2
vite:
specifier: 6.1.0
version: 6.1.0(@types/node@22.9.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.16.9)(tsx@4.19.2)(yaml@2.7.0)
vite-tsconfig-paths:
specifier: 5.1.4
version: 5.1.4(typescript@5.7.2)(vite@6.1.0(@types/node@22.9.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.16.9)(tsx@4.19.2)(yaml@2.7.0))
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
remix-starter-template:
dependencies:
'@remix-run/cloudflare':
specifier: 2.15.2
version: 2.15.2(@cloudflare/workers-types@4.20250204.0)(typescript@5.7.2)
'@remix-run/react':
specifier: 2.15.2
version: 2.15.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2)
'@remix-run/server-runtime':
specifier: 2.15.2
version: 2.15.2(typescript@5.7.2)
isbot:
specifier: 5.1.17
version: 5.1.17
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
'@remix-run/dev':
specifier: 2.15.2
version: 2.15.2(@remix-run/react@2.15.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2))(@types/node@22.9.1)(lightningcss@1.29.1)(terser@5.16.9)(typescript@5.7.2)(vite@5.4.14(@types/node@22.9.1)(lightningcss@1.29.1)(terser@5.16.9))(wrangler@3.107.3(@cloudflare/workers-types@4.20250204.0))
'@types/react':
specifier: 18.3.12
version: 18.3.12
'@types/react-dom':
specifier: 18.3.1
version: 18.3.1
'@typescript-eslint/eslint-plugin':
specifier: 8.18.1
version: 8.18.1(@typescript-eslint/parser@8.18.1(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.2)
'@typescript-eslint/parser':
specifier: 8.18.1
version: 8.18.1(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.2)
autoprefixer:
specifier: 10.4.20
version: 10.4.20(postcss@8.4.49)
eslint:
specifier: 9.19.0
version: 9.19.0(jiti@2.4.2)
eslint-import-resolver-typescript:
specifier: 3.7.0
version: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.19.0(jiti@2.4.2))
eslint-plugin-import:
specifier: 2.31.0
version: 2.31.0(@typescript-eslint/parser@8.18.1(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.19.0(jiti@2.4.2))
eslint-plugin-jsx-a11y:
specifier: 6.10.2
version: 6.10.2(eslint@9.19.0(jiti@2.4.2))
eslint-plugin-react:
specifier: 7.37.4
version: 7.37.4(eslint@9.19.0(jiti@2.4.2))
eslint-plugin-react-hooks:
specifier: 5.1.0
version: 5.1.0(eslint@9.19.0(jiti@2.4.2))
postcss:
specifier: 8.4.49
version: 8.4.49
tailwindcss:
specifier: 3.4.17
version: 3.4.17
typescript:
specifier: 5.7.2
version: 5.7.2
vite:
specifier: 5.4.14
version: 5.4.14(@types/node@22.9.1)(lightningcss@1.29.1)(terser@5.16.9)
vite-tsconfig-paths:
specifier: 5.1.4
version: 5.1.4(typescript@5.7.2)(vite@5.4.14(@types/node@22.9.1)(lightningcss@1.29.1)(terser@5.16.9))
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
saas-admin-template:
dependencies:
'@astrojs/cloudflare':
specifier: 12.1.0
version: 12.1.0(@types/node@22.9.1)(astro@5.1.3(@types/node@22.9.1)(aws4fetch@1.0.20)(jiti@2.4.2)(lightningcss@1.29.1)(rollup@4.34.1)(terser@5.16.9)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.7.0))(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.16.9)(tsx@4.19.2)(yaml@2.7.0)
'@astrojs/react':
specifier: 4.1.2
version: 4.1.2(@types/node@22.9.1)(@types/react-dom@19.0.3(@types/react@19.0.8))(@types/react@19.0.8)(jiti@2.4.2)(lightningcss@1.29.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(terser@5.16.9)(tsx@4.19.2)(yaml@2.7.0)
'@astrojs/tailwind':
specifier: 5.1.4
version: 5.1.4(astro@5.1.3(@types/node@22.9.1)(aws4fetch@1.0.20)(jiti@2.4.2)(lightningcss@1.29.1)(rollup@4.34.1)(terser@5.16.9)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.7.0))(tailwindcss@3.4.17)
'@hookform/resolvers':
specifier: 3.9.1
version: 3.9.1(react-hook-form@7.54.2(react@19.0.0))
'@radix-ui/react-accordion':
specifier: 1.2.2
version: 1.2.2(@types/react-dom@19.0.3(@types/react@19.0.8))(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-dialog':
specifier: 1.1.4
version: 1.1.4(@types/react-dom@19.0.3(@types/react@19.0.8))(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-label':
specifier: 2.1.1
version: 2.1.1(@types/react-dom@19.0.3(@types/react@19.0.8))(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-navigation-menu':
specifier: 1.2.3
version: 1.2.3(@types/react-dom@19.0.3(@types/react@19.0.8))(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-slot':
specifier: 1.1.1
version: 1.1.1(@types/react@19.0.8)(react@19.0.0)
'@tanstack/react-table':
specifier: 8.20.6
version: 8.20.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/react':
specifier: 19.0.8
version: 19.0.8
'@types/react-dom':
specifier: 19.0.3
version: 19.0.3(@types/react@19.0.8)
astro:
specifier: 5.1.3
version: 5.1.3(@types/node@22.9.1)(aws4fetch@1.0.20)(jiti@2.4.2)(lightningcss@1.29.1)(rollup@4.34.1)(terser@5.16.9)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.7.0)
class-variance-authority:
specifier: 0.7.1
version: 0.7.1
clsx:
specifier: 2.1.1
version: 2.1.1
lucide-react:
specifier: 0.469.0
version: 0.469.0(react@19.0.0)
react:
specifier: 19.0.0
version: 19.0.0
react-dom:
specifier: 19.0.0
version: 19.0.0(react@19.0.0)
react-hook-form:
specifier: 7.54.2
version: 7.54.2(react@19.0.0)
tailwind-merge:
specifier: 2.6.0
version: 2.6.0
tailwindcss:
specifier: 3.4.17
version: 3.4.17
tailwindcss-animate:
specifier: 1.0.7
version: 1.0.7(tailwindcss@3.4.17)
zod:
specifier: 3.24.1
version: 3.24.1
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
text-to-image-template:
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
typescript:
specifier: 5.7.2
version: 5.7.2
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
to-do-list-kv-template:
dependencies:
'@remix-run/cloudflare':
specifier: 2.15.2
version: 2.15.2(@cloudflare/workers-types@4.20250204.0)(typescript@5.7.2)
'@remix-run/react':
specifier: 2.15.2
version: 2.15.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2)
'@remix-run/server-runtime':
specifier: 2.15.2
version: 2.15.2(typescript@5.7.2)
isbot:
specifier: 5.1.17
version: 5.1.17
nanoid:
specifier: 5.0.8
version: 5.0.8
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
devDependencies:
'@cloudflare/vitest-pool-workers':
specifier: 0.5.38
version: 0.5.38(@cloudflare/workers-types@4.20250204.0)(@vitest/runner@2.1.8)(@vitest/snapshot@2.1.8)(vitest@2.1.8(@types/node@22.9.1)(lightningcss@1.29.1)(terser@5.16.9))
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
'@remix-run/dev':
specifier: 2.15.2
version: 2.15.2(@remix-run/react@2.15.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2))(@types/node@22.9.1)(lightningcss@1.29.1)(terser@5.16.9)(typescript@5.7.2)(vite@5.4.14(@types/node@22.9.1)(lightningcss@1.29.1)(terser@5.16.9))(wrangler@3.107.3(@cloudflare/workers-types@4.20250204.0))
'@types/react':
specifier: 18.3.12
version: 18.3.12
'@types/react-dom':
specifier: 18.3.1
version: 18.3.1
'@typescript-eslint/eslint-plugin':
specifier: 8.18.1
version: 8.18.1(@typescript-eslint/parser@8.18.1(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.2)
'@typescript-eslint/parser':
specifier: 8.18.1
version: 8.18.1(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.2)
autoprefixer:
specifier: 10.4.20
version: 10.4.20(postcss@8.4.49)
eslint:
specifier: 9.19.0
version: 9.19.0(jiti@2.4.2)
postcss:
specifier: 8.4.49
version: 8.4.49
tailwindcss:
specifier: 3.4.17
version: 3.4.17
typescript:
specifier: 5.7.2
version: 5.7.2
vite:
specifier: 5.4.14
version: 5.4.14(@types/node@22.9.1)(lightningcss@1.29.1)(terser@5.16.9)
vite-tsconfig-paths:
specifier: 5.1.4
version: 5.1.4(typescript@5.7.2)(vite@5.4.14(@types/node@22.9.1)(lightningcss@1.29.1)(terser@5.16.9))
vitest:
specifier: 2.1.8
version: 2.1.8(@types/node@22.9.1)(lightningcss@1.29.1)(terser@5.16.9)
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
vite-react-template:
dependencies:
hono:
specifier: 4.7.1
version: 4.7.1
react:
specifier: 19.0.0
version: 19.0.0
react-dom:
specifier: 19.0.0
version: 19.0.0(react@19.0.0)
devDependencies:
'@cloudflare/vite-plugin':
specifier: 0.1.1
version: 0.1.1(vite@6.1.0(@types/node@22.9.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.16.9)(tsx@4.19.2)(yaml@2.7.0))(workerd@1.20250204.0)(wrangler@3.107.3(@cloudflare/workers-types@4.20250204.0))
'@cloudflare/workers-types':
specifier: ^4.20250204.0
version: 4.20250204.0
'@eslint/js':
specifier: 9.19.0
version: 9.19.0
'@types/react':
specifier: 19.0.8
version: 19.0.8
'@types/react-dom':
specifier: 19.0.3
version: 19.0.3(@types/react@19.0.8)
'@vitejs/plugin-react':
specifier: 4.3.4
version: 4.3.4(vite@6.1.0(@types/node@22.9.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.16.9)(tsx@4.19.2)(yaml@2.7.0))
eslint:
specifier: 9.19.0
version: 9.19.0(jiti@2.4.2)
eslint-plugin-react-hooks:
specifier: 5.1.0
version: 5.1.0(eslint@9.19.0(jiti@2.4.2))
eslint-plugin-react-refresh:
specifier: 0.4.18
version: 0.4.18(eslint@9.19.0(jiti@2.4.2))
globals:
specifier: 15.14.0
version: 15.14.0
typescript:
specifier: 5.7.2
version: 5.7.2
typescript-eslint:
specifier: 8.22.0
version: 8.22.0(eslint@9.19.0(jiti@2.4.2))(typescript@5.7.2)
vite:
specifier: 6.1.0
version: 6.1.0(@types/node@22.9.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.16.9)(tsx@4.19.2)(yaml@2.7.0)
wrangler:
specifier: 3.107.3
version: 3.107.3(@cloudflare/workers-types@4.20250204.0)
packages:
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@ast-grep/napi-darwin-arm64@0.34.4':
resolution: {integrity: sha512-igpZwfWZeG/iwa2m7/3RKMg6UnVOt5tPCPKPMfjX2qiD1oHgcNKwTBmUmXhGCyNgwBlW8z06iXnwNIA0i+rJrw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@ast-grep/napi-darwin-x64@0.34.4':
resolution: {integrity: sha512-OqLjev/+IUW7lpLirDx7wb3iAhQkinMx9El8NWV0AipcJsbfJhQmUy2ppDqkglJVcdlh0NIaoTgWOXWya8yXzQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@ast-grep/napi-linux-arm64-gnu@0.34.4':
resolution: {integrity: sha512-PtdV6ll45O4iLKsChDLtAdyvG5R+Y/sCsatxT5T4JTptQ5rsbOeA4ZDTU8ZJJ6qBlVkhlpKM6aBBdP3HUU8HLQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@ast-grep/napi-linux-arm64-musl@0.34.4':
resolution: {integrity: sha512-Vm+xWUUWkGmv22ov9/D9i0JLds6+46Wj9G6tdByLhlB/R3jJEcWfg2qxnLihEFwJXuk+ic3PdtR0XmLRIx66Rw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@ast-grep/napi-linux-x64-gnu@0.34.4':
resolution: {integrity: sha512-O6NMaYIzVFq5uSmo/wPIAZkTqfOERr9biECjoMpMVWbPP1T9NfSoWeuYQu+W/zF/ucZDEDWGjsE/ZDNAG5SZgQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@ast-grep/napi-linux-x64-musl@0.34.4':
resolution: {integrity: sha512-QAwcB716F84fPXcVjYjKL8sQ0iQONOZ9CkdoEmmY5YW/yxR8uEA6s0bLwWPqHl6QeUuDIlA3+hgHwarWoUrPrA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@ast-grep/napi-win32-arm64-msvc@0.34.4':
resolution: {integrity: sha512-dYvmAPo+p/jH6hBIxKd+T2u0STHp02cz4O6cuFFwQG13cIysXYRb4BnF1/wtKM0gFxeSsVZCE/ANoin1O3TJTQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
'@ast-grep/napi-win32-ia32-msvc@0.34.4':
resolution: {integrity: sha512-iYk6L8Jxfk/AlUi2Ups2PHkKDwFP3Cl1DrScu9dL+nePNBIZVmyjN122PHdFtgmRFWjff6hGHWINHsESCGwsXg==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
'@ast-grep/napi-win32-x64-msvc@0.34.4':
resolution: {integrity: sha512-Filq6uuYVHJPPpoNeGgYtbpzt1ElmQvK3CP7OoEoICX3zN3mff6s9fLhMIsO8wm4+PZpT8FrOQTB9XWPLjU4zw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@ast-grep/napi@0.34.4':
resolution: {integrity: sha512-QesKWYy+DXiRQll5Wi2hDRPQ1fOWp2gdF1TFyvuZQZoPu2kVVTOOGX0ajpMm4D2mS9N5n0NB4fsG14ukGOnAlg==}
engines: {node: '>= 10'}
'@astrojs/cloudflare@12.1.0':
resolution: {integrity: sha512-tx2HrZclERHI9MV/Jx/+cUVbQ0UGWlVCxV7ozRgnwCNG3fgBtpk1Qf60eTMnCLDQTKXy6C5b3nE+c9+dMpW6Hg==}
peerDependencies:
astro: ^5.0.0
'@astrojs/compiler@2.10.3':
resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==}
'@astrojs/internal-helpers@0.4.1':
resolution: {integrity: sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==}
'@astrojs/internal-helpers@0.4.2':
resolution: {integrity: sha512-EdDWkC3JJVcpGpqJAU/5hSk2LKXyG3mNGkzGoAuyK+xoPHbaVdSuIWoN1QTnmK3N/gGfaaAfM8gO2KDCAW7S3w==}
'@astrojs/markdown-remark@6.0.1':
resolution: {integrity: sha512-CTSYijj25NfxgZi15TU3CwPwgyD1/7yA3FcdcNmB9p94nydupiUbrIiq3IqeTp2m5kCVzxbPZeC7fTwEOaNyGw==}
'@astrojs/mdx@4.0.3':
resolution: {integrity: sha512-8HcuyNG/KgYUAQWVzKFkboXcTOBCW6aQ0WK0Er/iSmVSF0y3yimg4/3QSt+Twv9dogpwIHL+E8iBJKqieFv4+g==}
engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0}
peerDependencies:
astro: ^5.0.0
'@astrojs/prism@3.2.0':
resolution: {integrity: sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==}
engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0}
'@astrojs/react@4.1.2':
resolution: {integrity: sha512-Slw8Bho50w1+rYnSnDl5PDAUikSOEItx5DEJU5OgmarTirBr1audIb2DgC8faAGcGkq5WhuUVsSiq/TmSORlwA==}
engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0}
peerDependencies:
'@types/react': ^17.0.50 || ^18.0.21 || ^19.0.0
'@types/react-dom': ^17.0.17 || ^18.0.6 || ^19.0.0
react: ^17.0.2 || ^18.0.0 || ^19.0.0
react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0
'@astrojs/rss@4.0.11':
resolution: {integrity: sha512-3e3H8i6kc97KGnn9iaZBJpIkdoQi8MmR5zH5R+dWsfCM44lLTszOqy1OBfGGxDt56mpQkYVtZJWoxMyWuUZBfw==}
'@astrojs/sitemap@3.2.1':
resolution: {integrity: sha512-uxMfO8f7pALq0ADL6Lk68UV6dNYjJ2xGUzyjjVj60JLBs5a6smtlkBYv3tQ0DzoqwS7c9n4FUx5lgv0yPo/fgA==}
'@astrojs/tailwind@5.1.4':
resolution: {integrity: sha512-EJ3uoTZZr0RYwTrVS2HgYN0+VbXvg7h87AtwpD5OzqS3GyMwRmzfOwHfORTxoWGQRrY9k/Fi+Awk60kwpvRL5Q==}
peerDependencies:
astro: ^3.0.0 || ^4.0.0 || ^5.0.0
tailwindcss: ^3.0.24
'@astrojs/telemetry@3.2.0':
resolution: {integrity: sha512-wxhSKRfKugLwLlr4OFfcqovk+LIFtKwLyGPqMsv+9/ibqqnW3Gv7tBhtKEb0gAyUAC4G9BTVQeQahqnQAhd6IQ==}
engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0}
'@astrojs/underscore-redirects@0.4.0':
resolution: {integrity: sha512-Urt32++4ql0IFTTNejnRIN7LPJ6YzU9QXLcc4RXm5or1RLPnQBKVrLvmDxKx3eT72l7ZAi6W4L5E7pcbWbYDRA==}
'@aws-crypto/crc32@5.2.0':
resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
engines: {node: '>=16.0.0'}
'@aws-crypto/crc32c@5.2.0':
resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}
'@aws-crypto/ie11-detection@3.0.0':
resolution: {integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==}
'@aws-crypto/sha1-browser@5.2.0':
resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}
'@aws-crypto/sha256-browser@3.0.0':
resolution: {integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==}
'@aws-crypto/sha256-browser@5.2.0':
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
'@aws-crypto/sha256-js@3.0.0':
resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==}
'@aws-crypto/sha256-js@5.2.0':
resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
engines: {node: '>=16.0.0'}
'@aws-crypto/supports-web-crypto@3.0.0':
resolution: {integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==}
'@aws-crypto/supports-web-crypto@5.2.0':
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
'@aws-crypto/util@3.0.0':
resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==}
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
'@aws-sdk/client-cloudfront@3.398.0':
resolution: {integrity: sha512-kISKhqN1k48TaMPbLgq9jj7mO2jvbJdhirvfu4JW3jhFhENnkY0oCwTPvR4Q6Ne2as6GFAMo2XZDZq4rxC7YDw==}
engines: {node: '>=14.0.0'}
'@aws-sdk/client-dynamodb@3.738.0':
resolution: {integrity: sha512-ui8mCwdK96dtPVrwaCt5k1pimohtJQR/yfvECyDhbuaIybMxa51rr1DefWd1MmC7UtGJkPnS2Txtng9UJKYsFA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/client-lambda@3.738.0':
resolution: {integrity: sha512-arkwnxoMl1m83cMPNJ8HXyQgBBgHRQBaRyg1K/BjLB5QTXzFTnRQo9P+CJvb8J80wL+SkWgpl+07o33/qXP+WA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/client-s3@3.740.0':
resolution: {integrity: sha512-X9aQOFJC3TsYwQP3AGcNhfYcFehVEHRKCHtHYOIKv5t1ydSJxpN/v34OrMMKvG1jFWMNkSYiSCVB9ZVo9KUwVA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/client-sqs@3.738.0':
resolution: {integrity: sha512-wGxZNV0m0NM+IXub61vkwoq3KD88joG45aYpS4+2ADnZLxnUe/Md1AH+ZMznIv5ZAppCXso7S0Tis3LLK85IGw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/client-sso@3.398.0':
resolution: {integrity: sha512-CygL0jhfibw4kmWXG/3sfZMFNjcXo66XUuPC4BqZBk8Rj5vFoxp1vZeMkDLzTIk97Nvo5J5Bh+QnXKhub6AckQ==}
engines: {node: '>=14.0.0'}
'@aws-sdk/client-sso@3.734.0':
resolution: {integrity: sha512-oerepp0mut9VlgTwnG5Ds/lb0C0b2/rQ+hL/rF6q+HGKPfGsCuPvFx1GtwGKCXd49ase88/jVgrhcA9OQbz3kg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/client-sts@3.398.0':
resolution: {integrity: sha512-/3Pa9wLMvBZipKraq3AtbmTfXW6q9kyvhwOno64f1Fz7kFb8ijQFMGoATS70B2pGEZTlxkUqJFWDiisT6Q6dFg==}
engines: {node: '>=14.0.0'}
'@aws-sdk/core@3.734.0':
resolution: {integrity: sha512-SxnDqf3vobdm50OLyAKfqZetv6zzwnSqwIwd3jrbopxxHKqNIM/I0xcYjD6Tn+mPig+u7iRKb9q3QnEooFTlmg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-env@3.398.0':
resolution: {integrity: sha512-Z8Yj5z7FroAsR6UVML+XUdlpoqEe9Dnle8c2h8/xWwIC2feTfIBhjLhRVxfbpbM1pLgBSNEcZ7U8fwq5l7ESVQ==}
engines: {node: '>=14.0.0'}
'@aws-sdk/credential-provider-env@3.734.0':
resolution: {integrity: sha512-gtRkzYTGafnm1FPpiNO8VBmJrYMoxhDlGPYDVcijzx3DlF8dhWnowuSBCxLSi+MJMx5hvwrX2A+e/q0QAeHqmw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-http@3.734.0':
resolution: {integrity: sha512-JFSL6xhONsq+hKM8xroIPhM5/FOhiQ1cov0lZxhzZWj6Ai3UAjucy3zyIFDr9MgP1KfCYNdvyaUq9/o+HWvEDg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-ini@3.398.0':
resolution: {integrity: sha512-AsK1lStK3nB9Cn6S6ODb1ktGh7SRejsNVQVKX3t5d3tgOaX+aX1Iwy8FzM/ZEN8uCloeRifUGIY9uQFygg5mSw==}
engines: {node: '>=14.0.0'}
'@aws-sdk/credential-provider-ini@3.734.0':
resolution: {integrity: sha512-HEyaM/hWI7dNmb4NhdlcDLcgJvrilk8G4DQX6qz0i4pBZGC2l4iffuqP8K6ZQjUfz5/6894PzeFuhTORAMd+cg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-node@3.398.0':
resolution: {integrity: sha512-odmI/DSKfuWUYeDnGTCEHBbC8/MwnF6yEq874zl6+owoVv0ZsYP8qBHfiJkYqrwg7wQ7Pi40sSAPC1rhesGwzg==}
engines: {node: '>=14.0.0'}
'@aws-sdk/credential-provider-node@3.738.0':
resolution: {integrity: sha512-3MuREsazwBxghKb2sQQHvie+uuK4dX4/ckFYiSoffzJQd0YHxaGxf8cr4NOSCQCUesWu8D3Y0SzlnHGboVSkpA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-process@3.398.0':
resolution: {integrity: sha512-WrkBL1W7TXN508PA9wRXPFtzmGpVSW98gDaHEaa8GolAPHMPa5t2QcC/z/cFpglzrcVv8SA277zu9Z8tELdZhg==}
engines: {node: '>=14.0.0'}
'@aws-sdk/credential-provider-process@3.734.0':
resolution: {integrity: sha512-zvjsUo+bkYn2vjT+EtLWu3eD6me+uun+Hws1IyWej/fKFAqiBPwyeyCgU7qjkiPQSXqk1U9+/HG9IQ6Iiz+eBw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-sso@3.398.0':
resolution: {integrity: sha512-2Dl35587xbnzR/GGZqA2MnFs8+kS4wbHQO9BioU0okA+8NRueohNMdrdQmQDdSNK4BfIpFspiZmFkXFNyEAfgw==}
engines: {node: '>=14.0.0'}
'@aws-sdk/credential-provider-sso@3.734.0':
resolution: {integrity: sha512-cCwwcgUBJOsV/ddyh1OGb4gKYWEaTeTsqaAK19hiNINfYV/DO9r4RMlnWAo84sSBfJuj9shUNsxzyoe6K7R92Q==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-web-identity@3.398.0':
resolution: {integrity: sha512-iG3905Alv9pINbQ8/MIsshgqYMbWx+NDQWpxbIW3W0MkSH3iAqdVpSCteYidYX9G/jv2Um1nW3y360ib20bvNg==}
engines: {node: '>=14.0.0'}
'@aws-sdk/credential-provider-web-identity@3.734.0':
resolution: {integrity: sha512-t4OSOerc+ppK541/Iyn1AS40+2vT/qE+MFMotFkhCgCJbApeRF2ozEdnDN6tGmnl4ybcUuxnp9JWLjwDVlR/4g==}
engines: {node: '>=18.0.0'}
'@aws-sdk/endpoint-cache@3.723.0':
resolution: {integrity: sha512-2+a4WXRc+07uiPR+zJiPGKSOWaNJQNqitkks+6Hhm/haTLJqNVTgY2OWDh2PXvwMNpKB+AlGdhE65Oy6NzUgXg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-bucket-endpoint@3.734.0':
resolution: {integrity: sha512-etC7G18aF7KdZguW27GE/wpbrNmYLVT755EsFc8kXpZj8D6AFKxc7OuveinJmiy0bYXAMspJUWsF6CrGpOw6CQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-endpoint-discovery@3.734.0':
resolution: {integrity: sha512-hE3x9Sbqy64g/lcFIq7BF9IS1tSOyfBCyHf1xBgevWeFIDTWh647URuCNWoEwtw4HMEhO2MDUQcKf1PFh1dNDA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-expect-continue@3.734.0':
resolution: {integrity: sha512-P38/v1l6HjuB2aFUewt7ueAW5IvKkFcv5dalPtbMGRhLeyivBOHwbCyuRKgVs7z7ClTpu9EaViEGki2jEQqEsQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-flexible-checksums@3.735.0':
resolution: {integrity: sha512-Tx7lYTPwQFRe/wQEHMR6Drh/S+X0ToAEq1Ava9QyxV1riwtepzRLojpNDELFb3YQVVYbX7FEiBMCJLMkmIIY+A==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-host-header@3.398.0':
resolution: {integrity: sha512-m+5laWdBaxIZK2ko0OwcCHJZJ5V1MgEIt8QVQ3k4/kOkN9ICjevOYmba751pHoTnbOYB7zQd6D2OT3EYEEsUcA==}
engines: {node: '>=14.0.0'}
'@aws-sdk/middleware-host-header@3.734.0':
resolution: {integrity: sha512-LW7RRgSOHHBzWZnigNsDIzu3AiwtjeI2X66v+Wn1P1u+eXssy1+up4ZY/h+t2sU4LU36UvEf+jrZti9c6vRnFw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-location-constraint@3.734.0':
resolution: {integrity: sha512-EJEIXwCQhto/cBfHdm3ZOeLxd2NlJD+X2F+ZTOxzokuhBtY0IONfC/91hOo5tWQweerojwshSMHRCKzRv1tlwg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-logger@3.398.0':
resolution: {integrity: sha512-CiJjW+FL12elS6Pn7/UVjVK8HWHhXMfvHZvOwx/Qkpy340sIhkuzOO6fZEruECDTZhl2Wqn81XdJ1ZQ4pRKpCg==}
engines: {node: '>=14.0.0'}
'@aws-sdk/middleware-logger@3.734.0':
resolution: {integrity: sha512-mUMFITpJUW3LcKvFok176eI5zXAUomVtahb9IQBwLzkqFYOrMJvWAvoV4yuxrJ8TlQBG8gyEnkb9SnhZvjg67w==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-recursion-detection@3.398.0':
resolution: {integrity: sha512-7QpOqPQAZNXDXv6vsRex4R8dLniL0E/80OPK4PPFsrCh9btEyhN9Begh4i1T+5lL28hmYkztLOkTQ2N5J3hgRQ==}
engines: {node: '>=14.0.0'}
'@aws-sdk/middleware-recursion-detection@3.734.0':
resolution: {integrity: sha512-CUat2d9ITsFc2XsmeiRQO96iWpxSKYFjxvj27Hc7vo87YUHRnfMfnc8jw1EpxEwMcvBD7LsRa6vDNky6AjcrFA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-sdk-s3@3.740.0':
resolution: {integrity: sha512-VML9TzNoQdAs5lSPQSEgZiPgMUSz2H7SltaLb9g4tHwKK5xQoTq5WcDd6V1d2aPxSN5Q2Q63aiVUBby6MdUN/Q==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-sdk-sqs@3.734.0':
resolution: {integrity: sha512-WetobEBbOFt4WutMYNnhkqNG8FDU9ZTLQ7gY0tGdhUKzHo0h/k9TPRZc8WUeKqacZ7gMWMNOjY251izockqWsQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-sdk-sts@3.398.0':
resolution: {integrity: sha512-+JH76XHEgfVihkY+GurohOQ5Z83zVN1nYcQzwCFnCDTh4dG4KwhnZKG+WPw6XJECocY0R+H0ivofeALHvVWJtQ==}
engines: {node: '>=14.0.0'}
'@aws-sdk/middleware-signing@3.398.0':
resolution: {integrity: sha512-O0KqXAix1TcvZBFt1qoFkHMUNJOSgjJTYS7lFTRKSwgsD27bdW2TM2r9R8DAccWFt5Amjkdt+eOwQMIXPGTm8w==}
engines: {node: '>=14.0.0'}
'@aws-sdk/middleware-ssec@3.734.0':
resolution: {integrity: sha512-d4yd1RrPW/sspEXizq2NSOUivnheac6LPeLSLnaeTbBG9g1KqIqvCzP1TfXEqv2CrWfHEsWtJpX7oyjySSPvDQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-user-agent@3.398.0':
resolution: {integrity: sha512-nF1jg0L+18b5HvTcYzwyFgfZQQMELJINFqI0mi4yRKaX7T5a3aGp5RVLGGju/6tAGTuFbfBoEhkhU3kkxexPYQ==}
engines: {node: '>=14.0.0'}
'@aws-sdk/middleware-user-agent@3.734.0':
resolution: {integrity: sha512-MFVzLWRkfFz02GqGPjqSOteLe5kPfElUrXZft1eElnqulqs6RJfVSpOV7mO90gu293tNAeggMWAVSGRPKIYVMg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/nested-clients@3.734.0':
resolution: {integrity: sha512-iph2XUy8UzIfdJFWo1r0Zng9uWj3253yvW9gljhtu+y/LNmNvSnJxQk1f3D2BC5WmcoPZqTS3UsycT3mLPSzWA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/region-config-resolver@3.734.0':
resolution: {integrity: sha512-Lvj1kPRC5IuJBr9DyJ9T9/plkh+EfKLy+12s/mykOy1JaKHDpvj+XGy2YO6YgYVOb8JFtaqloid+5COtje4JTQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/signature-v4-multi-region@3.740.0':
resolution: {integrity: sha512-w+psidN3i+kl51nQEV3V+fKjKUqcEbqUA1GtubruDBvBqrl5El/fU2NF3Lo53y8CfI9wCdf3V7KOEpHIqxHNng==}
engines: {node: '>=18.0.0'}
'@aws-sdk/token-providers@3.398.0':
resolution: {integrity: sha512-nrYgjzavGCKJL/48Vt0EL+OlIc5UZLfNGpgyUW9cv3XZwl+kXV0QB+HH0rHZZLfpbBgZ2RBIJR9uD5ieu/6hpQ==}
engines: {node: '>=14.0.0'}
'@aws-sdk/token-providers@3.734.0':
resolution: {integrity: sha512-2U6yWKrjWjZO8Y5SHQxkFvMVWHQWbS0ufqfAIBROqmIZNubOL7jXCiVdEFekz6MZ9LF2tvYGnOW4jX8OKDGfIw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/types@3.398.0':
resolution: {integrity: sha512-r44fkS+vsEgKCuEuTV+TIk0t0m5ZlXHNjSDYEUvzLStbbfUFiNus/YG4UCa0wOk9R7VuQI67badsvvPeVPCGDQ==}
engines: {node: '>=14.0.0'}
'@aws-sdk/types@3.734.0':
resolution: {integrity: sha512-o11tSPTT70nAkGV1fN9wm/hAIiLPyWX6SuGf+9JyTp7S/rC2cFWhR26MvA69nplcjNaXVzB0f+QFrLXXjOqCrg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-arn-parser@3.723.0':
resolution: {integrity: sha512-ZhEfvUwNliOQROcAk34WJWVYTlTa4694kSVhDSjW6lE1bMataPnIN8A0ycukEzBXmd8ZSoBcQLn6lKGl7XIJ5w==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-endpoints@3.398.0':
resolution: {integrity: sha512-Fy0gLYAei/Rd6BrXG4baspCnWTUSd0NdokU1pZh4KlfEAEN1i8SPPgfiO5hLk7+2inqtCmqxVJlfqbMVe9k4bw==}
engines: {node: '>=14.0.0'}
'@aws-sdk/util-endpoints@3.734.0':
resolution: {integrity: sha512-w2+/E88NUbqql6uCVAsmMxDQKu7vsKV0KqhlQb0lL+RCq4zy07yXYptVNs13qrnuTfyX7uPXkXrlugvK9R1Ucg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-locate-window@3.723.0':
resolution: {integrity: sha512-Yf2CS10BqK688DRsrKI/EO6B8ff5J86NXe4C+VCysK7UOgN0l1zOTeTukZ3H8Q9tYYX3oaF1961o8vRkFm7Nmw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-user-agent-browser@3.398.0':
resolution: {integrity: sha512-A3Tzx1tkDHlBT+IgxmsMCHbV8LM7SwwCozq2ZjJRx0nqw3MCrrcxQFXldHeX/gdUMO+0Oocb7HGSnVODTq+0EA==}
'@aws-sdk/util-user-agent-browser@3.734.0':
resolution: {integrity: sha512-xQTCus6Q9LwUuALW+S76OL0jcWtMOVu14q+GoLnWPUM7QeUw963oQcLhF7oq0CtaLLKyl4GOUfcwc773Zmwwng==}
'@aws-sdk/util-user-agent-node@3.398.0':
resolution: {integrity: sha512-RTVQofdj961ej4//fEkppFf4KXqKGMTCqJYghx3G0C/MYXbg7MGl7LjfNGtJcboRE8pfHHQ/TUWBDA7RIAPPlQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
'@aws-sdk/util-user-agent-node@3.734.0':
resolution: {integrity: sha512-c6Iinh+RVQKs6jYUFQ64htOU2HUXFQ3TVx+8Tu3EDF19+9vzWi9UukhIMH9rqyyEXIAkk9XL7avt8y2Uyw2dGA==}
engines: {node: '>=18.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
'@aws-sdk/util-utf8-browser@3.259.0':
resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==}
'@aws-sdk/xml-builder@3.310.0':
resolution: {integrity: sha512-TqELu4mOuSIKQCqj63fGVs86Yh+vBx5nHRpWKNUNhB2nPTpfbziTs5c1X358be3peVWA4wPxW7Nt53KIg1tnNw==}
engines: {node: '>=14.0.0'}
'@aws-sdk/xml-builder@3.734.0':
resolution: {integrity: sha512-Zrjxi5qwGEcUsJ0ru7fRtW74WcTS0rbLcehoFB+rN1GRi2hbLcFaYs4PwVA5diLeAJH0gszv3x4Hr/S87MfbKQ==}
engines: {node: '>=18.0.0'}
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.26.5':
resolution: {integrity: sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.26.7':
resolution: {integrity: sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==}