-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpnpm-lock.yaml
15329 lines (11992 loc) · 500 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:
'@adonisjs/tsconfig':
specifier: ^1.4.0
version: 1.4.0
'@changesets/cli':
specifier: ^2.28.1
version: 2.28.1
'@japa/assert':
specifier: ^4.0.1
version: 4.0.1(@japa/runner@4.2.0)
'@japa/expect-type':
specifier: ^2.0.3
version: 2.0.3(@japa/runner@4.2.0)
'@japa/file-system':
specifier: ^2.3.2
version: 2.3.2(@japa/assert@4.0.1(@japa/runner@4.2.0))(@japa/runner@4.2.0)
'@japa/runner':
specifier: ^4.2.0
version: 4.2.0
'@julr/tooling-configs':
specifier: ^4.0.0
version: 4.0.0(eslint@9.21.0(jiti@2.4.2))(prettier@3.5.2)(typescript@5.7.3)
'@swc/core':
specifier: ^1.10.18
version: 1.10.18(@swc/helpers@0.5.15)
'@types/node':
specifier: ^22.13.5
version: 22.13.5
c8:
specifier: ^10.1.3
version: 10.1.3
copyfiles:
specifier: ^2.4.1
version: 2.4.1
cross-env:
specifier: ^7.0.3
version: 7.0.3
del-cli:
specifier: ^6.0.0
version: 6.0.0
dotenv:
specifier: ^16.4.7
version: 16.4.7
eslint:
specifier: ^9.21.0
version: 9.21.0(jiti@2.4.2)
pino-pretty:
specifier: ^13.0.0
version: 13.0.0
prettier:
specifier: ^3.5.2
version: 3.5.2
release-it:
specifier: ^18.1.2
version: 18.1.2(@types/node@22.13.5)(typescript@5.7.3)
testcontainers:
specifier: ^10.18.0
version: 10.18.0
ts-node:
specifier: ^10.9.2
version: 10.9.2(@swc/core@1.10.18(@swc/helpers@0.5.15))(@types/node@22.13.5)(typescript@5.7.3)
tsup:
specifier: ^8.3.6
version: 8.3.6(@swc/core@1.10.18(@swc/helpers@0.5.15))(jiti@2.4.2)(postcss@8.5.2)(tsx@4.19.3)(typescript@5.7.3)(yaml@2.7.0)
tsx:
specifier: ^4.19.3
version: 4.19.3
typescript:
specifier: ~5.7.3
version: 5.7.3
benchmarks:
devDependencies:
'@keyv/redis':
specifier: ^4.2.0
version: 4.2.0
bentocache:
specifier: workspace:*
version: link:../packages/bentocache
cache-manager:
specifier: ^6.4.0
version: 6.4.0
cacheable:
specifier: ^1.8.8
version: 1.8.8
ioredis:
specifier: ^5.5.0
version: 5.5.0
keyv:
specifier: ^5.2.3
version: 5.2.3
tinybench:
specifier: ^3.1.1
version: 3.1.1
docs:
dependencies:
'@adonisjs/core':
specifier: ^6.17.2
version: 6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.0)
'@adonisjs/static':
specifier: ^1.1.1
version: 1.1.1(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.0))
'@radix-ui/colors':
specifier: ^3.0.0
version: 3.0.0
'@ryangjchandler/alpine-tooltip':
specifier: ^2.0.1
version: 2.0.1
edge.js:
specifier: 6.2.0
version: 6.2.0
tippy.js:
specifier: ^6.3.7
version: 6.3.7
devDependencies:
'@adonisjs/assembler':
specifier: ^7.8.2
version: 7.8.2(typescript@5.7.3)
'@adonisjs/vite':
specifier: ^4.0.0
version: 4.0.0(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.0))(@adonisjs/shield@8.1.2(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.0))(@adonisjs/session@7.5.1(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.0))(@aws-sdk/client-dynamodb@3.751.0)(edge.js@6.2.0))(edge.js@6.2.0))(edge.js@6.2.0)(vite@6.1.1(@types/node@22.13.5)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))
'@alpinejs/persist':
specifier: ^3.14.8
version: 3.14.8
'@dimerapp/content':
specifier: ^5.2.1
version: 5.2.1(@dimerapp/edge@5.0.0(@dimerapp/markdown@8.0.1)(edge.js@6.2.0))(edge.js@6.2.0)
'@dimerapp/docs-theme':
specifier: ^6.1.3
version: 6.1.3(@dimerapp/edge@5.0.0(@dimerapp/markdown@8.0.1)(edge.js@6.2.0))(@radix-ui/colors@3.0.0)(edge.js@6.2.0)
'@dimerapp/edge':
specifier: ^5.0.0
version: 5.0.0(@dimerapp/markdown@8.0.1)(edge.js@6.2.0)
'@dimerapp/shiki':
specifier: ^5.0.0
version: 5.0.0(@dimerapp/markdown@8.0.1)
'@docsearch/css':
specifier: ^3.9.0
version: 3.9.0
'@docsearch/js':
specifier: ^3.9.0
version: 3.9.0(@algolia/client-search@5.18.0)(search-insights@2.13.0)
alpinejs:
specifier: ^3.14.8
version: 3.14.8
collect.js:
specifier: ^4.36.1
version: 4.36.1
concurrently:
specifier: ^9.1.2
version: 9.1.2
edge-uikit:
specifier: ^1.0.0-1
version: 1.0.0-1(edge.js@6.2.0)
medium-zoom:
specifier: ^1.1.0
version: 1.1.0
reflect-metadata:
specifier: ^0.2.2
version: 0.2.2
undici:
specifier: ^7.3.0
version: 7.3.0
unpoly:
specifier: ^3.10.2
version: 3.10.2
vite:
specifier: ^6.1.1
version: 6.1.1(@types/node@22.13.5)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
packages/bentocache:
dependencies:
'@boringnode/bus':
specifier: ^0.7.1
version: 0.7.1(ioredis@5.5.0)
'@julr/utils':
specifier: ^1.8.0
version: 1.8.0
'@poppinss/exception':
specifier: ^1.2.0
version: 1.2.0
async-mutex:
specifier: ^0.5.0
version: 0.5.0
lru-cache:
specifier: ^11.0.2
version: 11.0.2
p-timeout:
specifier: ^6.1.4
version: 6.1.4
devDependencies:
'@aws-sdk/client-dynamodb':
specifier: ^3.751.0
version: 3.751.0
'@types/better-sqlite3':
specifier: ^7.6.12
version: 7.6.12
'@types/pg':
specifier: ^8.11.11
version: 8.11.11
better-sqlite3:
specifier: ^11.8.1
version: 11.8.1
dayjs:
specifier: ^1.11.13
version: 1.11.13
emittery:
specifier: ^1.1.0
version: 1.1.0
ioredis:
specifier: ^5.5.0
version: 5.5.0
knex:
specifier: ^3.1.0
version: 3.1.0(better-sqlite3@11.8.1)(mysql2@3.12.0)(pg@8.13.3)(sqlite3@5.1.7)
kysely:
specifier: ^0.27.5
version: 0.27.5
mysql2:
specifier: ^3.12.0
version: 3.12.0
orchid-orm:
specifier: 1.40.2
version: 1.40.2(typescript@5.7.3)
p-event:
specifier: ^6.0.1
version: 6.0.1
pg:
specifier: ^8.13.3
version: 8.13.3
pino:
specifier: ^9.6.0
version: 9.6.0
pino-loki:
specifier: ^2.5.0
version: 2.5.0
sqlite3:
specifier: ^5.1.7
version: 5.1.7
superjson:
specifier: ^2.2.2
version: 2.2.2
packages/prometheus:
devDependencies:
'@julr/utils':
specifier: ^1.8.0
version: 1.8.0
bentocache:
specifier: workspace:*
version: link:../bentocache
prom-client:
specifier: ^15.1.3
version: 15.1.3
playground:
dependencies:
'@hono/node-server':
specifier: ^1.13.8
version: 1.13.8(hono@4.7.2)
bentocache:
specifier: workspace:*
version: link:../packages/bentocache
hono:
specifier: ^4.7.2
version: 4.7.2
pino:
specifier: ^9.6.0
version: 9.6.0
simulator:
dependencies:
'@adonisjs/auth':
specifier: ^9.3.1
version: 9.3.1(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@adonisjs/lucid@21.6.0(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@vinejs/vine@3.0.0))(@adonisjs/session@7.5.1(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@aws-sdk/client-dynamodb@3.751.0)(edge.js@6.2.1))(@japa/plugin-adonisjs@4.0.0(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@japa/runner@4.2.0))
'@adonisjs/core':
specifier: ^6.17.2
version: 6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1)
'@adonisjs/cors':
specifier: ^2.2.1
version: 2.2.1(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))
'@adonisjs/inertia':
specifier: ^3.1.0
version: 3.1.0(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@adonisjs/session@7.5.1(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@aws-sdk/client-dynamodb@3.751.0)(edge.js@6.2.1))(@adonisjs/vite@4.0.0(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@adonisjs/shield@8.1.2(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@adonisjs/session@7.5.1(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@aws-sdk/client-dynamodb@3.751.0)(edge.js@6.2.1))(edge.js@6.2.1))(edge.js@6.2.1)(vite@6.1.1(@types/node@22.13.5)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)))(edge.js@6.2.1)
'@adonisjs/lucid':
specifier: ^21.6.0
version: 21.6.0(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@vinejs/vine@3.0.0)
'@adonisjs/session':
specifier: ^7.5.1
version: 7.5.1(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@aws-sdk/client-dynamodb@3.751.0)(edge.js@6.2.1)
'@adonisjs/shield':
specifier: ^8.1.2
version: 8.1.2(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@adonisjs/session@7.5.1(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@aws-sdk/client-dynamodb@3.751.0)(edge.js@6.2.1))(edge.js@6.2.1)
'@adonisjs/static':
specifier: ^1.1.1
version: 1.1.1(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))
'@adonisjs/vite':
specifier: ^4.0.0
version: 4.0.0(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@adonisjs/shield@8.1.2(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@adonisjs/session@7.5.1(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@aws-sdk/client-dynamodb@3.751.0)(edge.js@6.2.1))(edge.js@6.2.1))(edge.js@6.2.1)(vite@6.1.1(@types/node@22.13.5)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))
'@inertiajs/vue3':
specifier: ^2.0.3
version: 2.0.3(vue@3.5.13(typescript@5.7.3))
'@julr/utils':
specifier: ^1.8.0
version: 1.8.0
'@primevue/themes':
specifier: ^4.2.5
version: 4.2.5
'@vinejs/vine':
specifier: ^3.0.0
version: 3.0.0
bentocache:
specifier: workspace:*
version: link:../packages/bentocache
edge.js:
specifier: ^6.2.1
version: 6.2.1
primeicons:
specifier: ^7.0.0
version: 7.0.0
primevue:
specifier: ^4.2.5
version: 4.2.5(vue@3.5.13(typescript@5.7.3))
reflect-metadata:
specifier: ^0.2.2
version: 0.2.2
vue:
specifier: ^3.5.13
version: 3.5.13(typescript@5.7.3)
devDependencies:
'@adonisjs/assembler':
specifier: ^7.8.2
version: 7.8.2(typescript@5.7.3)
'@adonisjs/eslint-config':
specifier: ^2.0.0
version: 2.0.0(eslint@9.21.0(jiti@2.4.2))(prettier@3.5.2)(typescript@5.7.3)
'@adonisjs/prettier-config':
specifier: ^1.4.0
version: 1.4.0
'@adonisjs/tsconfig':
specifier: ^1.4.0
version: 1.4.0
'@boringnode/bus':
specifier: ^0.7.1
version: 0.7.1(ioredis@5.5.0)
'@japa/assert':
specifier: ^4.0.1
version: 4.0.1(@japa/runner@4.2.0)
'@japa/plugin-adonisjs':
specifier: ^4.0.0
version: 4.0.0(@adonisjs/core@6.17.2(@adonisjs/assembler@7.8.2(typescript@5.7.3))(@vinejs/vine@3.0.0)(edge.js@6.2.1))(@japa/runner@4.2.0)
'@japa/runner':
specifier: ^4.2.0
version: 4.2.0
'@swc/core':
specifier: 1.10.16
version: 1.10.16(@swc/helpers@0.5.15)
'@types/node':
specifier: ^22.13.5
version: 22.13.5
'@unocss/reset':
specifier: ^66.0.0
version: 66.0.0
'@vitejs/plugin-vue':
specifier: ^5.2.1
version: 5.2.1(vite@6.1.1(@types/node@22.13.5)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))
eslint:
specifier: ^9.21.0
version: 9.21.0(jiti@2.4.2)
hot-hook:
specifier: ^0.4.0
version: 0.4.0
pino-pretty:
specifier: ^13.0.0
version: 13.0.0
prettier:
specifier: ^3.5.2
version: 3.5.2
ts-node-maintained:
specifier: ^10.9.5
version: 10.9.5(@swc/core@1.10.16(@swc/helpers@0.5.15))(@types/node@22.13.5)(typescript@5.7.3)
typescript:
specifier: ~5.7.3
version: 5.7.3
unocss:
specifier: ^66.0.0
version: 66.0.0(postcss@8.5.2)(vite@6.1.1(@types/node@22.13.5)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))
vite:
specifier: ^6.1.1
version: 6.1.1(@types/node@22.13.5)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
packages:
'@adonisjs/ace@13.3.0':
resolution: {integrity: sha512-68dveDFd766p69cBvK/MtOrOP0+YKYLeHspa9KLEWcWk9suPf3pbGkHQ2pwDnvLJxBPHk4932KbbSSzzpGNZGw==}
engines: {node: '>=18.16.0'}
'@adonisjs/application@8.3.1':
resolution: {integrity: sha512-hfZBgZ23BQAXvoSHDkc/I0hTSXyFVxypNqHPQ/WCk4VoWlBVWVgGaGnHLvIGhrZ3RMvyoC5NBgC0PR5G+/fGSw==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@adonisjs/config': ^5.0.0
'@adonisjs/fold': ^10.0.0
'@adonisjs/assembler@7.8.2':
resolution: {integrity: sha512-csLdMW58cwuRjdPEDE0dqwHZCT5snCh+1sQ19HPnQ/BLKPPAvQdDRdw0atoC8LVmouB8ghXVHp3SxnVxlvXYWQ==}
engines: {node: '>=20.6.0'}
peerDependencies:
typescript: ^4.0.0 || ^5.0.0
'@adonisjs/auth@9.3.1':
resolution: {integrity: sha512-FQ1ylsH/PRjqMsnjtplKgcWM7CEfmCGuIRbj0lFzTb9xajRTjjgBLWNIhUW/NocmkZP2T2rjV0TnDT1tQUe44Q==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@adonisjs/core': ^6.11.0
'@adonisjs/lucid': ^20.0.0 || ^21.0.1
'@adonisjs/session': ^7.4.1
'@japa/api-client': ^2.0.3 || ^3.0.0
'@japa/browser-client': ^2.0.3
'@japa/plugin-adonisjs': ^3.0.1 || ^4.0.0
peerDependenciesMeta:
'@adonisjs/lucid':
optional: true
'@adonisjs/session':
optional: true
'@japa/api-client':
optional: true
'@japa/browser-client':
optional: true
'@japa/plugin-adonisjs':
optional: true
'@adonisjs/bodyparser@10.0.3':
resolution: {integrity: sha512-rgnAE+w7/+8tlCG+GxT8/99TLyccMFHtUyIP99K4YbSg0af6kTHrbXOJkKE8YHKU8cFwECybu3uZOoIoHOYLyQ==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@adonisjs/http-server': ^7.4.0
'@adonisjs/config@5.0.2':
resolution: {integrity: sha512-NXjFqDHNGRTZ1EnA4zr20GFEt7qw/JvZ4ZV8/PzFyVc7dPoFprpoyE3bw7kmlKHhcQdBbF7YXCGB4q+HQUnqiQ==}
engines: {node: '>=18.16.0'}
'@adonisjs/core@6.17.2':
resolution: {integrity: sha512-POT5COID8Z3j37+Dd7Y1EfG01Q6+HPY/tGcSb0Y97W2VIPkFjqcW2ooTE4wFT09u7coNohtXJa19a0feMz9ncw==}
engines: {node: '>=20.6.0'}
hasBin: true
peerDependencies:
'@adonisjs/assembler': ^7.8.0
'@vinejs/vine': ^2.1.0 || ^3.0.0
argon2: ^0.31.2 || ^0.41.0
bcrypt: ^5.1.1
edge.js: ^6.2.0
peerDependenciesMeta:
'@adonisjs/assembler':
optional: true
'@vinejs/vine':
optional: true
argon2:
optional: true
bcrypt:
optional: true
edge.js:
optional: true
'@adonisjs/cors@2.2.1':
resolution: {integrity: sha512-qnrSG8ylpgTeZBOYEN3yXxY0PBUEg1KGDhgn9VKVFGxLKT+o9GGVOSZxUK3wG341B1zB9w5vuZN1z4M0Jitb6g==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@adonisjs/core': ^6.2.0
'@adonisjs/encryption@6.0.2':
resolution: {integrity: sha512-37XqVPsZi6zXMbC0Me1/qlcTP0uE+KAtYOFx7D7Tvtz377NL/6gqxqgpW/BopgOSD+CVDXjzO/Wx3M2UrbkJRQ==}
engines: {node: '>=18.16.0'}
'@adonisjs/env@6.1.0':
resolution: {integrity: sha512-CzK+njXTH3EK+d/UJPqckyqWocOItmLgHIUbvhpd6WvveBnfv1Dz5j9H3k+ogHqThDSJCXu1RkaRAC+HNym9gA==}
engines: {node: '>=18.16.0'}
'@adonisjs/env@6.1.1':
resolution: {integrity: sha512-sYvcJMbLSqwFWH0WtTTLddxkyXzERZl+8TEkXlMiIFaAZveq9h5eC4SQ+L5ILe9FHHiHVfmHsYF6LlAfcsIG1w==}
engines: {node: '>=18.16.0'}
'@adonisjs/eslint-config@2.0.0':
resolution: {integrity: sha512-u7xxPmYQ66cmVet6OjOR9yQsHC7h/ZhDXPb4w0UACsXKfKxL4VRsiYsI+/E5xwsfB3dmT/yWO6UrTx7auCLSJg==}
peerDependencies:
eslint: ^9.9.0
prettier: ^3.3.3
'@adonisjs/eslint-plugin@2.0.0-beta.5':
resolution: {integrity: sha512-zNXFq71B7o0ZJ9vMnd+4peSMQrRHBJns4MUDmDAQaTDlOMWRomU5hio2elRxRDTQUl2bJvw/yhfydreew/75xA==}
engines: {node: '>=20.6.0'}
peerDependencies:
eslint: ^9.9.1
'@adonisjs/events@9.0.2':
resolution: {integrity: sha512-qZn2e9V9C8tF4MNqEWv5JGxMG7gcHSJM8RncGpjuJ4cwFwd2jF4xrN6wkCprTVwoyZSxNS0Cp9NkAonySjG5vg==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@adonisjs/application': ^8.0.2
'@adonisjs/fold': ^10.0.1
'@adonisjs/fold@10.1.3':
resolution: {integrity: sha512-wzeuWMXx9SoJkNO4ycoyfxzoSyyMy3umVxb9cbzeWR/sYNVgi50l+vgJc634+lxpCE0RFTpxCv1M235EWDF9SQ==}
engines: {node: '>=18.16.0'}
'@adonisjs/hash@9.0.5':
resolution: {integrity: sha512-oY8PafBrdGsr5UY8cAzzxPCtehZDW7KsPcI47dZpjydOdL/PQrT4liX+cGujL6mSbi3JEgQLBgBs/+SlPFvCrg==}
engines: {node: '>=20.6.0'}
peerDependencies:
argon2: ^0.31.2 || ^0.41.0
bcrypt: ^5.1.1
peerDependenciesMeta:
argon2:
optional: true
bcrypt:
optional: true
'@adonisjs/health@2.0.0':
resolution: {integrity: sha512-dEAABiAJew1imzwi+OvV/SAnjkMp8TbD5ZIzx1dMRnPynJAlRf37//bHLwZ5Cw44ke5kPzZ/l1n9cx/VeBCicA==}
engines: {node: '>=20.6.0'}
'@adonisjs/http-server@7.4.0':
resolution: {integrity: sha512-2Me8ytUu0Sm0jYJs2SAiYQX3ECF6clOJwPE04cswsAwEnqSFLZkflD3c6rApjLjZO6P1wFlo090HNaZCFrlcMQ==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@adonisjs/application': ^8.0.2
'@adonisjs/encryption': ^6.0.0
'@adonisjs/events': ^9.0.0
'@adonisjs/fold': ^10.0.1
'@adonisjs/logger': ^6.0.1
'@adonisjs/inertia@3.1.0':
resolution: {integrity: sha512-BbuZyba7pVjN40AiyPNzOd0ArIikFsvPLz80Vs1Z2KUBsRR1qlIpH/tKiCsLgswFsSDeWYQwed97jUpvRG/tjw==}
engines: {node: '>=20.6.0'}
peerDependencies:
'@adonisjs/core': ^6.9.1
'@adonisjs/session': ^7.4.0
'@adonisjs/vite': ^4.0.0
'@japa/api-client': ^2.0.0 || ^3.0.0
edge.js: ^6.0.0
peerDependenciesMeta:
'@japa/api-client':
optional: true
'@adonisjs/logger@6.0.5':
resolution: {integrity: sha512-1QmbLPNC636MeJzqflMA64lUnAn5dbb7W0YQ/ea33papnNqGOfvDQuxqqKlzM6ww9jPZlXTIf/3t7KAWlfHCfQ==}
engines: {node: '>=18.16.0'}
'@adonisjs/lucid@21.6.0':
resolution: {integrity: sha512-wEocH/PsAT4VVTS5qz65VvxDJqEJCZPzTMmVldddNhM9Yiwc5mr5Nu+UQp9Pfnx2Jp3o+nicnF0IM6thJyb6lg==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@adonisjs/assembler': ^7.7.0
'@adonisjs/core': ^6.10.1
'@vinejs/vine': ^2.0.0 || ^3.0.0
luxon: ^3.4.4
peerDependenciesMeta:
'@adonisjs/assembler':
optional: true
'@vinejs/vine':
optional: true
luxon:
optional: true
'@adonisjs/presets@2.6.4':
resolution: {integrity: sha512-WvzWouziX88GMoGBLDobGRaSktWfz+fRqADJyhJd7+l0M2VMm5NF0LvAXbV8lMBLtBCicOxk973bJ9Kmyfy3qQ==}
peerDependencies:
'@adonisjs/assembler': ^7.8.2
'@adonisjs/core': ^6.13.0
peerDependenciesMeta:
'@adonisjs/assembler':
optional: true
'@adonisjs/prettier-config@1.4.0':
resolution: {integrity: sha512-6MqbAvGlxf8iNHwGiJmtMKMhwoxRNtpzuLV8F93lQtsLluU1fjF8EDDpTPl9RrQblt7+6zY28K5nh1rmmXk8mQ==}
'@adonisjs/repl@4.1.0':
resolution: {integrity: sha512-7Ml87uoufDQmpjRZYbJeRTk0/WcD4DllJ96L1r2IWF/jZIsryiVN5o+7Xd7fHlRzd8iapAbs32Tq4a6fVI6UKA==}
engines: {node: '>=18.16.0'}
'@adonisjs/session@7.5.1':
resolution: {integrity: sha512-b1E0W/1nnJfAq3Gv8yPywgsxJ7uzzOBJxxulonXI4t1eSdvJzZGNrFScfVLOcjTwlxwrEFA847tULIQxgR4Spw==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@adonisjs/core': ^6.6.0
'@adonisjs/redis': ^8.0.1 || ^9.0.0
'@aws-sdk/client-dynamodb': ^3.658.0
'@aws-sdk/util-dynamodb': ^3.658.0
'@japa/api-client': ^2.0.3 || ^3.0.0
'@japa/browser-client': ^2.0.3
edge.js: ^6.0.2
peerDependenciesMeta:
'@adonisjs/redis':
optional: true
'@aws-sdk/client-dynamodb':
optional: true
'@aws-sdk/util-dynamodb':
optional: true
'@japa/api-client':
optional: true
'@japa/browser-client':
optional: true
edge.js:
optional: true
'@adonisjs/shield@8.1.2':
resolution: {integrity: sha512-ksC3KMTnGVYyjos/PM7WMQ/mUNhDuxvpFqNd2YAgPEWYVc+kr3WTTkaRrC7srl6jFmbOOv4R4aQ9RIvo1S0pjg==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@adonisjs/core': ^6.2.0
'@adonisjs/i18n': ^2.0.0
'@adonisjs/session': ^7.0.0
'@japa/api-client': ^2.0.2 || ^3.0.0
edge.js: ^6.0.1
peerDependenciesMeta:
'@adonisjs/i18n':
optional: true
'@japa/api-client':
optional: true
edge.js:
optional: true
'@adonisjs/static@1.1.1':
resolution: {integrity: sha512-Ukd2WB21/eajKLNQbaQ3Chxdqn7HyeHSO41J29oWc8DQFEhxxQIUGq0C1Kv5cJFY7PvZm9RAKMBi/2JC58LFWQ==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@adonisjs/core': ^6.2.0
'@adonisjs/tsconfig@1.4.0':
resolution: {integrity: sha512-go5KlxE8jJaeoIRzm51PcF2YJSK5i022douVk9OjAqvDiU1t2UepcDoEsSiEOgogUDojp9kbRQmFyf0y0YqvOg==}
'@adonisjs/vite@4.0.0':
resolution: {integrity: sha512-5kdE0qLIm2dj+XO0HiCohmh3tfZ+X468wkNXErQ15VS0fkDjZWns2VuiYpoToTKd4tdX/oGlpnpd8aIwAGB4ow==}
engines: {node: '>=20.6.0'}
peerDependencies:
'@adonisjs/core': ^6.3.0
'@adonisjs/shield': ^8.0.0
edge.js: ^6.0.1
vite: ^6.0.0
peerDependenciesMeta:
'@adonisjs/shield':
optional: true
edge.js:
optional: true
'@algolia/autocomplete-core@1.17.9':
resolution: {integrity: sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==}
'@algolia/autocomplete-plugin-algolia-insights@1.17.9':
resolution: {integrity: sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ==}
peerDependencies:
search-insights: '>= 1 < 3'
'@algolia/autocomplete-preset-algolia@1.17.9':
resolution: {integrity: sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
'@algolia/autocomplete-shared@1.17.9':
resolution: {integrity: sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
'@algolia/client-abtesting@5.18.0':
resolution: {integrity: sha512-DLIrAukjsSrdMNNDx1ZTks72o4RH/1kOn8Wx5zZm8nnqFexG+JzY4SANnCNEjnFQPJTTvC+KpgiNW/CP2lumng==}
engines: {node: '>= 14.0.0'}
'@algolia/client-analytics@5.18.0':
resolution: {integrity: sha512-0VpGG2uQW+h2aejxbG8VbnMCQ9ary9/ot7OASXi6OjE0SRkYQ/+pkW+q09+IScif3pmsVVYggmlMPtAsmYWHng==}
engines: {node: '>= 14.0.0'}
'@algolia/client-common@5.18.0':
resolution: {integrity: sha512-X1WMSC+1ve2qlMsemyTF5bIjwipOT+m99Ng1Tyl36ZjQKTa54oajBKE0BrmM8LD8jGdtukAgkUhFoYOaRbMcmQ==}
engines: {node: '>= 14.0.0'}
'@algolia/client-insights@5.18.0':
resolution: {integrity: sha512-FAJRNANUOSs/FgYOJ/Njqp+YTe4TMz2GkeZtfsw1TMiA5mVNRS/nnMpxas9771aJz7KTEWvK9GwqPs0K6RMYWg==}
engines: {node: '>= 14.0.0'}
'@algolia/client-personalization@5.18.0':
resolution: {integrity: sha512-I2dc94Oiwic3SEbrRp8kvTZtYpJjGtg5y5XnqubgnA15AgX59YIY8frKsFG8SOH1n2rIhUClcuDkxYQNXJLg+w==}
engines: {node: '>= 14.0.0'}
'@algolia/client-query-suggestions@5.18.0':
resolution: {integrity: sha512-x6XKIQgKFTgK/bMasXhghoEjHhmgoP61pFPb9+TaUJ32aKOGc65b12usiGJ9A84yS73UDkXS452NjyP50Knh/g==}
engines: {node: '>= 14.0.0'}
'@algolia/client-search@5.18.0':
resolution: {integrity: sha512-qI3LcFsVgtvpsBGR7aNSJYxhsR+Zl46+958ODzg8aCxIcdxiK7QEVLMJMZAR57jGqW0Lg/vrjtuLFDMfSE53qA==}
engines: {node: '>= 14.0.0'}
'@algolia/ingestion@1.18.0':
resolution: {integrity: sha512-bGvJg7HnGGm+XWYMDruZXWgMDPVt4yCbBqq8DM6EoaMBK71SYC4WMfIdJaw+ABqttjBhe6aKNRkWf/bbvYOGyw==}
engines: {node: '>= 14.0.0'}
'@algolia/monitoring@1.18.0':
resolution: {integrity: sha512-lBssglINIeGIR+8KyzH05NAgAmn1BCrm5D2T6pMtr/8kbTHvvrm1Zvcltc5dKUQEFyyx3J5+MhNc7kfi8LdjVw==}
engines: {node: '>= 14.0.0'}
'@algolia/recommend@5.18.0':
resolution: {integrity: sha512-uSnkm0cdAuFwdMp4pGT5vHVQ84T6AYpTZ3I0b3k/M3wg4zXDhl3aCiY8NzokEyRLezz/kHLEEcgb/tTTobOYVw==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-browser-xhr@5.18.0':
resolution: {integrity: sha512-1XFjW0C3pV0dS/9zXbV44cKI+QM4ZIz9cpatXpsjRlq6SUCpLID3DZHsXyE6sTb8IhyPaUjk78GEJT8/3hviqg==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-fetch@5.18.0':
resolution: {integrity: sha512-0uodeNdAHz1YbzJh6C5xeQ4T6x5WGiUxUq3GOaT/R4njh5t78dq+Rb187elr7KtnjUmETVVuCvmEYaThfTHzNg==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-node-http@5.18.0':
resolution: {integrity: sha512-tZCqDrqJ2YE2I5ukCQrYN8oiF6u3JIdCxrtKq+eniuLkjkO78TKRnXrVcKZTmfFJyyDK8q47SfDcHzAA3nHi6w==}
engines: {node: '>= 14.0.0'}
'@alpinejs/persist@3.14.8':
resolution: {integrity: sha512-aK30sjUuvhoB4JIqY3QRu9WdBVHCuCq6tXq3vIzxyFSvdPI0vXAGAQNsjQ/Y2ak+GtSFVssd13NlUMotRYMQQA==}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@antfu/install-pkg@0.4.1':
resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==}
'@antfu/install-pkg@1.0.0':
resolution: {integrity: sha512-xvX6P/lo1B3ej0OsaErAjqgFYzYVcJpamjLAFLYh9vRJngBrMoUG7aVnrGTeqM7yxbyTD5p3F2+0/QUEh8Vzhw==}
'@antfu/utils@8.1.0':
resolution: {integrity: sha512-XPR7Jfwp0FFl/dFYPX8ZjpmU4/1mIXTjnZ1ba48BLMyKOV62/tiRjdsFcPs2hsYcSud4tzk7w3a3LjX8Fu3huA==}
'@arr/every@1.0.1':
resolution: {integrity: sha512-UQFQ6SgyJ6LX42W8rHCs8KVc0JS0tzVL9ct4XYedJukskYVWTo49tNiMEK9C2HTyarbNiT/RVIRSY82vH+6sTg==}
engines: {node: '>=4'}
'@aws-crypto/sha256-browser@5.2.0':
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
'@aws-crypto/sha256-js@5.2.0':
resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
engines: {node: '>=16.0.0'}
'@aws-crypto/supports-web-crypto@5.2.0':
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
'@aws-sdk/client-dynamodb@3.751.0':
resolution: {integrity: sha512-U7hbXiuePbfmH7wstnCvOmUxwrWRV3/FMK2WuZU7wQZfBrIsPdmMh8XMGyXJ7VZ4dSq66Skqs0U2OBpB+9sO5w==}
engines: {node: '>=18.0.0'}
'@aws-sdk/client-sso@3.750.0':
resolution: {integrity: sha512-y0Rx6pTQXw0E61CaptpZF65qNggjqOgymq/RYZU5vWba5DGQ+iqGt8Yq8s+jfBoBBNXshxq8l8Dl5Uq/JTY1wg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/core@3.750.0':
resolution: {integrity: sha512-bZ5K7N5L4+Pa2epbVpUQqd1XLG2uU8BGs/Sd+2nbgTf+lNQJyIxAg/Qsrjz9MzmY8zzQIeRQEkNmR6yVAfCmmQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-env@3.750.0':
resolution: {integrity: sha512-In6bsG0p/P31HcH4DBRKBbcDS/3SHvEPjfXV8ODPWZO/l3/p7IRoYBdQ07C9R+VMZU2D0+/Sc/DWK/TUNDk1+Q==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-http@3.750.0':
resolution: {integrity: sha512-wFB9qqfa20AB0dElsQz5ZlZT5o+a+XzpEpmg0erylmGYqEOvh8NQWfDUVpRmQuGq9VbvW/8cIbxPoNqEbPtuWQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-ini@3.750.0':
resolution: {integrity: sha512-2YIZmyEr5RUd3uxXpxOLD9G67Bibm4I/65M6vKFP17jVMUT+R1nL7mKqmhEVO2p+BoeV+bwMyJ/jpTYG368PCg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-node@3.750.0':
resolution: {integrity: sha512-THWHHAceLwsOiowPEmKyhWVDlEUxH07GHSw5AQFDvNQtGKOQl0HSIFO1mKObT2Q2Vqzji9Bq8H58SO5BFtNPRw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-process@3.750.0':
resolution: {integrity: sha512-Q78SCH1n0m7tpu36sJwfrUSxI8l611OyysjQeMiIOliVfZICEoHcLHLcLkiR+tnIpZ3rk7d2EQ6R1jwlXnalMQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-sso@3.750.0':
resolution: {integrity: sha512-FGYrDjXN/FOQVi/t8fHSv8zCk+NEvtFnuc4cZUj5OIbM4vrfFc5VaPyn41Uza3iv6Qq9rZg0QOwWnqK8lNrqUw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/credential-provider-web-identity@3.750.0':
resolution: {integrity: sha512-Nz8zs3YJ+GOTSrq+LyzbbC1Ffpt7pK38gcOyNZv76pP5MswKTUKNYBJehqwa+i7FcFQHsCk3TdhR8MT1ZR23uA==}
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-endpoint-discovery@3.734.0':
resolution: {integrity: sha512-hE3x9Sbqy64g/lcFIq7BF9IS1tSOyfBCyHf1xBgevWeFIDTWh647URuCNWoEwtw4HMEhO2MDUQcKf1PFh1dNDA==}
engines: {node: '>=18.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-logger@3.734.0':
resolution: {integrity: sha512-mUMFITpJUW3LcKvFok176eI5zXAUomVtahb9IQBwLzkqFYOrMJvWAvoV4yuxrJ8TlQBG8gyEnkb9SnhZvjg67w==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-recursion-detection@3.734.0':
resolution: {integrity: sha512-CUat2d9ITsFc2XsmeiRQO96iWpxSKYFjxvj27Hc7vo87YUHRnfMfnc8jw1EpxEwMcvBD7LsRa6vDNky6AjcrFA==}
engines: {node: '>=18.0.0'}
'@aws-sdk/middleware-user-agent@3.750.0':
resolution: {integrity: sha512-YYcslDsP5+2NZoN3UwuhZGkhAHPSli7HlJHBafBrvjGV/I9f8FuOO1d1ebxGdEP4HyRXUGyh+7Ur4q+Psk0ryw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/nested-clients@3.750.0':
resolution: {integrity: sha512-OH68BRF0rt9nDloq4zsfeHI0G21lj11a66qosaljtEP66PWm7tQ06feKbFkXHT5E1K3QhJW3nVyK8v2fEBY5fg==}
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/token-providers@3.750.0':
resolution: {integrity: sha512-X/KzqZw41iWolwNdc8e3RMcNSMR364viHv78u6AefXOO5eRM40c4/LuST1jDzq35/LpnqRhL7/MuixOetw+sFw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/types@3.734.0':
resolution: {integrity: sha512-o11tSPTT70nAkGV1fN9wm/hAIiLPyWX6SuGf+9JyTp7S/rC2cFWhR26MvA69nplcjNaXVzB0f+QFrLXXjOqCrg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-endpoints@3.743.0':
resolution: {integrity: sha512-sN1l559zrixeh5x+pttrnd0A3+r34r0tmPkJ/eaaMaAzXqsmKU/xYre9K3FNnsSS1J1k4PEfk/nHDTVUgFYjnw==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-locate-window@3.310.0':
resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==}
engines: {node: '>=14.0.0'}
'@aws-sdk/util-user-agent-browser@3.734.0':
resolution: {integrity: sha512-xQTCus6Q9LwUuALW+S76OL0jcWtMOVu14q+GoLnWPUM7QeUw963oQcLhF7oq0CtaLLKyl4GOUfcwc773Zmwwng==}
'@aws-sdk/util-user-agent-node@3.750.0':
resolution: {integrity: sha512-84HJj9G9zbrHX2opLk9eHfDceB+UIHVrmflMzWHpsmo9fDuro/flIBqaVDlE021Osj6qIM0SJJcnL6s23j7JEw==}
engines: {node: '>=18.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.26.9':
resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/runtime@7.26.7':
resolution: {integrity: sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ==}
engines: {node: '>=6.9.0'}
'@babel/types@7.26.9':
resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==}
engines: {node: '>=6.9.0'}
'@balena/dockerignore@1.0.2':
resolution: {integrity: sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q==}
'@bcoe/v8-coverage@1.0.2':
resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==}
engines: {node: '>=18'}
'@boringnode/bus@0.7.1':
resolution: {integrity: sha512-F74H1XxpX0MSP2xfDv5cTuP9OgC4HHG+K2w8kNRj/k104D/aBMC7mcEcntgIZMX8QgcRQsREToP5kPH5kZOO/Q==}
engines: {node: '>=20.6'}
peerDependencies:
ioredis: ^5.0.0
peerDependenciesMeta:
ioredis:
optional: true
'@changesets/apply-release-plan@7.0.10':
resolution: {integrity: sha512-wNyeIJ3yDsVspYvHnEz1xQDq18D9ifed3lI+wxRQRK4pArUcuHgCTrHv0QRnnwjhVCQACxZ+CBih3wgOct6UXw==}
'@changesets/assemble-release-plan@6.0.6':
resolution: {integrity: sha512-Frkj8hWJ1FRZiY3kzVCKzS0N5mMwWKwmv9vpam7vt8rZjLL1JMthdh6pSDVSPumHPshTTkKZ0VtNbE0cJHZZUg==}
'@changesets/changelog-git@0.2.1':
resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
'@changesets/cli@2.28.1':
resolution: {integrity: sha512-PiIyGRmSc6JddQJe/W1hRPjiN4VrMvb2VfQ6Uydy2punBioQrsxppyG5WafinKcW1mT0jOe/wU4k9Zy5ff21AA==}
hasBin: true
'@changesets/config@3.1.1':
resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==}
'@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
'@changesets/get-dependents-graph@2.1.3':
resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==}
'@changesets/get-release-plan@4.0.8':
resolution: {integrity: sha512-MM4mq2+DQU1ZT7nqxnpveDMTkMBLnwNX44cX7NSxlXmr7f8hO6/S2MXNiXG54uf/0nYnefv0cfy4Czf/ZL/EKQ==}
'@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
'@changesets/git@3.0.2':
resolution: {integrity: sha512-r1/Kju9Y8OxRRdvna+nxpQIsMsRQn9dhhAZt94FLDeu0Hij2hnOozW8iqnHBgvu+KdnJppCveQwK4odwfw/aWQ==}
'@changesets/logger@0.1.1':
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
'@changesets/parse@0.4.1':
resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==}
'@changesets/pre@2.0.2':
resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==}
'@changesets/read@0.6.3':
resolution: {integrity: sha512-9H4p/OuJ3jXEUTjaVGdQEhBdqoT2cO5Ts95JTFsQyawmKzpL8FnIeJSyhTDPW1MBRDnwZlHFEM9SpPwJDY5wIg==}
'@changesets/should-skip-package@0.1.2':
resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==}
'@changesets/types@4.1.0':
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
'@changesets/types@6.1.0':
resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==}
'@changesets/write@0.4.0':
resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
'@chevrotain/cst-dts-gen@11.0.3':
resolution: {integrity: sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==}
'@chevrotain/gast@11.0.3':
resolution: {integrity: sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==}
'@chevrotain/regexp-to-ast@11.0.3':
resolution: {integrity: sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==}
'@chevrotain/types@11.0.3':
resolution: {integrity: sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==}
'@chevrotain/utils@11.0.3':
resolution: {integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==}
'@clack/core@0.4.1':
resolution: {integrity: sha512-Pxhij4UXg8KSr7rPek6Zowm+5M22rbd2g1nfojHJkxp5YkFqiZ2+YLEM/XGVIzvGOcM0nqjIFxrpDwWRZYWYjA==}
'@clack/prompts@0.9.1':
resolution: {integrity: sha512-JIpyaboYZeWYlyP0H+OoPPxd6nqueG/CmN6ixBiNFsIDHREevjIf0n0Ohh5gr5C8pEDknzgvz+pIJ8dMhzWIeg==}
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
'@dimerapp/content@5.2.1':
resolution: {integrity: sha512-S+Dx8/02Slcqa+83imbE5avTUjHsmeiGVqDLuBILCs5TWfYI5Jh5ZWUsYq8b0FPsa5YOn7veiTZzTVJQgRPEjg==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@dimerapp/edge': ^5.0.0
edge.js: ^6.0.0
'@dimerapp/docs-theme@6.1.3':
resolution: {integrity: sha512-B5I4+OK0EI4F7eePFMpdnWmUmXVcx+8HEedWXc9q5aKT4gUVzYfchIYKz9wQk7bo2qFwc4DzNejlqWYzc42cnQ==}
engines: {node: '>=18.16.0'}
peerDependencies:
'@dimerapp/edge': ^5.0.0
'@radix-ui/colors': ^3.0.0
edge.js: ^6.0.0