-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
7314 lines (6591 loc) · 244 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.1":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
languageName: node
linkType: hard
"@auth0/nextjs-auth0@npm:3.2.0":
version: 3.2.0
resolution: "@auth0/nextjs-auth0@npm:3.2.0"
dependencies:
"@panva/hkdf": "npm:^1.0.2"
cookie: "npm:^0.5.0"
debug: "npm:^4.3.4"
joi: "npm:^17.6.0"
jose: "npm:^4.9.2"
oauth4webapi: "npm:^2.3.0"
openid-client: "npm:^5.2.1"
tslib: "npm:^2.4.0"
url-join: "npm:^4.0.1"
peerDependencies:
next: ">=10"
checksum: 5c1c0d1ce42492b51e0ba736c13efe49b22be0c2c1b2ff16b62adede5e6ed7847b61acdc46eadd2d103d8f902f424bc12ccda1f7ed010a6ef6b160c4c3153593
languageName: node
linkType: hard
"@babel/runtime@npm:^7.23.2":
version: 7.23.2
resolution: "@babel/runtime@npm:7.23.2"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: abdcbdd590c7e31762e1bdab94dd466823c8bcedd3ff2fde85eeb94dac7cccaef151ac37c428bda7018ededd27c9a82b4dfeb621f978ad934232475a902f8e3a
languageName: node
linkType: hard
"@cfworker/jwt@npm:4.0.6":
version: 4.0.6
resolution: "@cfworker/jwt@npm:4.0.6"
dependencies:
"@cfworker/worker-types": "npm:^1.12.3"
"@cloudflare/workers-types": "npm:^2.2.2"
rfc4648: "npm:^1.5.2"
checksum: 6195017fcbd774fc5851bc0ec2539a447f0af26dd254f114a82b33439e9ef284207265575e5869976c952caf5d5c2666284cc66d043c46ea8d0791528f204a8a
languageName: node
linkType: hard
"@cfworker/worker-types@npm:^1.12.3":
version: 1.12.3
resolution: "@cfworker/worker-types@npm:1.12.3"
checksum: f10bb4027adf8b080d54ed21de08e3f87fe3d58f22b68a92c04b17a35e058653f857fd81b2446252f8065f4dc7022a218983c0e1d8a9a5406e1af1d0d150a3c4
languageName: node
linkType: hard
"@cloudflare/kv-asset-handler@npm:^0.2.0":
version: 0.2.0
resolution: "@cloudflare/kv-asset-handler@npm:0.2.0"
dependencies:
mime: "npm:^3.0.0"
checksum: 56affbe5afdcfcf0860e7b9c826b3156210f1286791e702320b0ee378e540ed3e2d7ecdd55928e404475d4469433a47ca255889374b88992b481499a6d30b84b
languageName: node
linkType: hard
"@cloudflare/workerd-darwin-64@npm:1.20231025.0":
version: 1.20231025.0
resolution: "@cloudflare/workerd-darwin-64@npm:1.20231025.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@cloudflare/workerd-darwin-arm64@npm:1.20231025.0":
version: 1.20231025.0
resolution: "@cloudflare/workerd-darwin-arm64@npm:1.20231025.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@cloudflare/workerd-linux-64@npm:1.20231025.0":
version: 1.20231025.0
resolution: "@cloudflare/workerd-linux-64@npm:1.20231025.0"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@cloudflare/workerd-linux-arm64@npm:1.20231025.0":
version: 1.20231025.0
resolution: "@cloudflare/workerd-linux-arm64@npm:1.20231025.0"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@cloudflare/workerd-windows-64@npm:1.20231025.0":
version: 1.20231025.0
resolution: "@cloudflare/workerd-windows-64@npm:1.20231025.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@cloudflare/workers-types@npm:4.20231025.0, @cloudflare/workers-types@npm:^4.20230404.0":
version: 4.20231025.0
resolution: "@cloudflare/workers-types@npm:4.20231025.0"
checksum: 9c1b68611fd3eb1a2a56b401bfb6400009ebf0422799228c0f1620e2b10f1e828fda350ce04e961bd91ef27b3087b64e977418f6e3c337955ba03b0b735aee3c
languageName: node
linkType: hard
"@cloudflare/workers-types@npm:^2.2.2":
version: 2.2.2
resolution: "@cloudflare/workers-types@npm:2.2.2"
checksum: 9b53afc675892421da48664f156802a91972ae13e9a1c3b9e1bea513c9a86463bd12a122f45da25bd52970fbeafce7d2b6e541c39fc7b04233c0378141295bba
languageName: node
linkType: hard
"@esbuild-plugins/node-globals-polyfill@npm:^0.2.3":
version: 0.2.3
resolution: "@esbuild-plugins/node-globals-polyfill@npm:0.2.3"
peerDependencies:
esbuild: "*"
checksum: 6452637b55da3d577b03bb6e9e9c5b88ec153a2c260a71d4f237fac1b46577e3536059030524b7088c9af7bc8da2afd926a5ebb72653876ce83621cc63d57efc
languageName: node
linkType: hard
"@esbuild-plugins/node-modules-polyfill@npm:^0.2.2":
version: 0.2.2
resolution: "@esbuild-plugins/node-modules-polyfill@npm:0.2.2"
dependencies:
escape-string-regexp: "npm:^4.0.0"
rollup-plugin-node-polyfills: "npm:^0.2.1"
peerDependencies:
esbuild: "*"
checksum: 0f5601f0ce46b33079c16881142966afff2a528799f85667db7cab38e53607157ef53d8e48cdb1d082b410688a536e14d87b7cd2971784b3afc15befb9b86520
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/android-arm64@npm:0.17.19"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm64@npm:0.18.20"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/android-arm64@npm:0.19.5"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/android-arm@npm:0.17.19"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm@npm:0.18.20"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/android-arm@npm:0.19.5"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/android-x64@npm:0.17.19"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-x64@npm:0.18.20"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/android-x64@npm:0.19.5"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/darwin-arm64@npm:0.17.19"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-arm64@npm:0.18.20"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/darwin-arm64@npm:0.19.5"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/darwin-x64@npm:0.17.19"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-x64@npm:0.18.20"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/darwin-x64@npm:0.19.5"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/freebsd-arm64@npm:0.17.19"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-arm64@npm:0.18.20"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/freebsd-arm64@npm:0.19.5"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/freebsd-x64@npm:0.17.19"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-x64@npm:0.18.20"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/freebsd-x64@npm:0.19.5"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/linux-arm64@npm:0.17.19"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm64@npm:0.18.20"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-arm64@npm:0.19.5"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/linux-arm@npm:0.17.19"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm@npm:0.18.20"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-arm@npm:0.19.5"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/linux-ia32@npm:0.17.19"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ia32@npm:0.18.20"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-ia32@npm:0.19.5"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/linux-loong64@npm:0.17.19"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-loong64@npm:0.18.20"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-loong64@npm:0.19.5"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/linux-mips64el@npm:0.17.19"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-mips64el@npm:0.18.20"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-mips64el@npm:0.19.5"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/linux-ppc64@npm:0.17.19"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ppc64@npm:0.18.20"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-ppc64@npm:0.19.5"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/linux-riscv64@npm:0.17.19"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-riscv64@npm:0.18.20"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-riscv64@npm:0.19.5"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/linux-s390x@npm:0.17.19"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-s390x@npm:0.18.20"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-s390x@npm:0.19.5"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/linux-x64@npm:0.17.19"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-x64@npm:0.18.20"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-x64@npm:0.19.5"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/netbsd-x64@npm:0.17.19"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/netbsd-x64@npm:0.18.20"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/netbsd-x64@npm:0.19.5"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/openbsd-x64@npm:0.17.19"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/openbsd-x64@npm:0.18.20"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/openbsd-x64@npm:0.19.5"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/sunos-x64@npm:0.17.19"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/sunos-x64@npm:0.18.20"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/sunos-x64@npm:0.19.5"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/win32-arm64@npm:0.17.19"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-arm64@npm:0.18.20"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/win32-arm64@npm:0.19.5"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/win32-ia32@npm:0.17.19"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-ia32@npm:0.18.20"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/win32-ia32@npm:0.19.5"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.17.19":
version: 0.17.19
resolution: "@esbuild/win32-x64@npm:0.17.19"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-x64@npm:0.18.20"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/win32-x64@npm:0.19.5"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 8d70bcdcd8cd279049183aca747d6c2ed7092a5cf0cf5916faac1ef37ffa74f0c245c2a3a3d3b9979d9dfdd4ca59257b4c5621db699d637b847a2c5e02f491c2
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.10.0
resolution: "@eslint-community/regexpp@npm:4.10.0"
checksum: 8c36169c815fc5d726078e8c71a5b592957ee60d08c6470f9ce0187c8046af1a00afbda0a065cc40ff18d5d83f82aed9793c6818f7304a74a7488dc9f3ecbd42
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.2":
version: 2.1.2
resolution: "@eslint/eslintrc@npm:2.1.2"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: fa25638f2666cac6810f98ee7d0f4b912f191806467c1b40d72bac759fffef0b3357f12a1869817286837b258e4de3517e0c7408520e156ca860fc53a1fbaed9
languageName: node
linkType: hard
"@eslint/js@npm:8.52.0":
version: 8.52.0
resolution: "@eslint/js@npm:8.52.0"
checksum: 86beff213d0ae4ced203a922b74e2cc4d767d109e7815f985bf648946ba072198977102e32afc9fa04f7825a6de83a831874f6b6675ba0c1d0743ade2dc2d53d
languageName: node
linkType: hard
"@fastify/busboy@npm:^2.0.0":
version: 2.0.0
resolution: "@fastify/busboy@npm:2.0.0"
checksum: 6a2366d06b82aac1069b8323792f76f7a8fca02533cb3745fcd218d8f0f953dc4dbef057287237414658cd43f8dede0846ef33398999e3dbe54ddaeefec71c0a
languageName: node
linkType: hard
"@flare-city/cli@npm:0.4.0":
version: 0.4.0
resolution: "@flare-city/cli@npm:0.4.0"
dependencies:
"@inquirer/prompts": "npm:^3.2.0"
commander: "npm:11.1.0"
fs-extra: "npm:^11.1.1"
glob: "npm:^10.3.10"
handlebars: "npm:^4.7.8"
inquirer: "npm:^9.2.11"
vite: "npm:4.5.0"
vitest: "npm:0.34.6"
bin:
flare-city: ./bin/index.js
checksum: c88c9d3d2f5f314f6a162dc24cd029a6013a23b7800f68c87b9b0d05f07bd6d31562c098f8193f061097b1b21395c6fea6a9c7024e4a4e118a9febdf1acfb939
languageName: node
linkType: hard
"@flare-city/core@npm:0.3.0":
version: 0.3.0
resolution: "@flare-city/core@npm:0.3.0"
dependencies:
"@cfworker/jwt": "npm:4.0.6"
"@flare-city/logger": "npm:0.2.0"
zod: "npm:3.22.4"
checksum: c63fb099516b179de4e860849a7c77915459987b0c3d5344a8f2c98369c43dd238f277c0b8f824f74fa5db2d86b8bd53c2569276256c858137c1ec0c6f64cdf9
languageName: node
linkType: hard
"@flare-city/eslint-config@npm:0.3.0":
version: 0.3.0
resolution: "@flare-city/eslint-config@npm:0.3.0"
checksum: 81f1858a4ae641f3e3c8da9d05a8ed1c1e792a4c87b9baa88ad6cf0dd39b233efb8337b8984bd034288ef12bd51296e7a07faedb07d57ea9a21eb5e21f21a24e
languageName: node
linkType: hard
"@flare-city/logger@npm:0.2.0":
version: 0.2.0
resolution: "@flare-city/logger@npm:0.2.0"
checksum: 8fe2392e8cd62d510182f7a713d8ab8bed639cdf69b81cee163cc9032953ce7a3bfaeb739d2bcf4d8cf110d396eeb1a9ad4e0a0c68e9b8629bca0778fa088f8b
languageName: node
linkType: hard
"@flare-city/test@npm:0.4.0":
version: 0.4.0
resolution: "@flare-city/test@npm:0.4.0"
dependencies:
"@flare-city/cli": "npm:0.4.0"
"@flare-city/core": "npm:0.3.0"
vite: "npm:4.5.0"
vitest: "npm:0.34.6"
wrangler: "npm:3.15.0"
checksum: 74debcfed4e5bb083776ef1ddfb1a0d323250d3b8b94d88710699bc92a0abd414b7c277bf0946b81557b832c480bc6cfb3a3f4a9049127bfbac6f82c067d8c77
languageName: node
linkType: hard
"@flare-city/tsconfig@npm:0.3.0":
version: 0.3.0
resolution: "@flare-city/tsconfig@npm:0.3.0"
dependencies:
"@cloudflare/workers-types": "npm:4.20231025.0"
typescript: "npm:5.2.2"
checksum: 3dcbc11002fa269724b5404d76be80d54bfdd4cd10c3ec7cadcccdf21701fc144f492ea457ddf3a3ad1460d72295655eba0a0818acacf616d7d0cdb46dcd0628
languageName: node
linkType: hard
"@hapi/hoek@npm:^9.0.0":
version: 9.3.0
resolution: "@hapi/hoek@npm:9.3.0"
checksum: ad83a223787749f3873bce42bd32a9a19673765bf3edece0a427e138859ff729469e68d5fdf9ff6bbee6fb0c8e21bab61415afa4584f527cfc40b59ea1957e70
languageName: node
linkType: hard
"@hapi/topo@npm:^5.0.0":
version: 5.1.0
resolution: "@hapi/topo@npm:5.1.0"
dependencies:
"@hapi/hoek": "npm:^9.0.0"
checksum: 084bfa647015f4fd3fdd51fadb2747d09ef2f5e1443d6cbada2988b0c88494f85edf257ec606c790db146ac4e34ff57f3fcb22e3299b8e06ed5c87ba7583495c
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.13":
version: 0.11.13
resolution: "@humanwhocodes/config-array@npm:0.11.13"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: 9f655e1df7efa5a86822cd149ca5cef57240bb8ffd728f0c07cc682cc0a15c6bdce68425fbfd58f9b3e8b16f79b3fd8cb1e96b10c434c9a76f20b2a89f213272
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: e993950e346331e5a32eefb27948ecdee2a2c4ab3f072b8f566cd213ef485dd50a3ca497050608db91006f5479e43f91a439aef68d2a313bd3ded06909c7c5b3
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.1":
version: 2.0.1
resolution: "@humanwhocodes/object-schema@npm:2.0.1"
checksum: dbddfd0465aecf92ed845ec30d06dba3f7bb2496d544b33b53dac7abc40370c0e46b8787b268d24a366730d5eeb5336ac88967232072a183905ee4abf7df4dab
languageName: node
linkType: hard
"@inquirer/checkbox@npm:^1.4.0":
version: 1.4.0
resolution: "@inquirer/checkbox@npm:1.4.0"
dependencies:
"@inquirer/core": "npm:^5.1.0"
"@inquirer/type": "npm:^1.1.5"
ansi-escapes: "npm:^4.3.2"
chalk: "npm:^4.1.2"
figures: "npm:^3.2.0"
checksum: cb89e87fb50d0419356747f845812b61359cd08fde9f5efdbd6b55ee3aa7de26130a5691ebb5e24c8a789b24368fa36686be86ad2c26b6b5dccd5e31e8742307
languageName: node
linkType: hard
"@inquirer/confirm@npm:^2.0.14":
version: 2.0.14
resolution: "@inquirer/confirm@npm:2.0.14"
dependencies:
"@inquirer/core": "npm:^5.1.0"
"@inquirer/type": "npm:^1.1.5"
chalk: "npm:^4.1.2"
checksum: 900074ea5842d8c58b5e1d3d3df42c0ac81320d1fb6d29b44306b5938162fa061edc0912cbecc094fee276a49ebead01a628eec83dabb3ef0f493c78af73a34b
languageName: node
linkType: hard
"@inquirer/core@npm:^5.1.0":
version: 5.1.0
resolution: "@inquirer/core@npm:5.1.0"
dependencies:
"@inquirer/type": "npm:^1.1.5"
"@types/mute-stream": "npm:^0.0.2"
"@types/node": "npm:^20.8.2"
"@types/wrap-ansi": "npm:^3.0.0"
ansi-escapes: "npm:^4.3.2"
chalk: "npm:^4.1.2"
cli-spinners: "npm:^2.9.1"
cli-width: "npm:^4.1.0"
figures: "npm:^3.2.0"
mute-stream: "npm:^1.0.0"
run-async: "npm:^3.0.0"
signal-exit: "npm:^4.1.0"
strip-ansi: "npm:^6.0.1"
wrap-ansi: "npm:^6.2.0"
checksum: 0de9968eb8449b633cddd50d9cb86ab135da5376783e3afc31344a88b0d95ce6feb8dfb73a7f2783ea6c877ad47fef898db46423cc8e869e0a3ba641c2c62fd5
languageName: node
linkType: hard
"@inquirer/editor@npm:^1.2.12":
version: 1.2.12
resolution: "@inquirer/editor@npm:1.2.12"
dependencies:
"@inquirer/core": "npm:^5.1.0"
"@inquirer/type": "npm:^1.1.5"
chalk: "npm:^4.1.2"
external-editor: "npm:^3.1.0"
checksum: bb94d737816c16b2ef1cd53eed25d472dbcd7f148570a72298adc18fd8aefbd1a5ffc5d6848dc1b38e9a7cfe48fa83cbd02637076840dc64a6327ae0f5b9ed13
languageName: node
linkType: hard
"@inquirer/expand@npm:^1.1.13":
version: 1.1.13
resolution: "@inquirer/expand@npm:1.1.13"
dependencies:
"@inquirer/core": "npm:^5.1.0"
"@inquirer/type": "npm:^1.1.5"
chalk: "npm:^4.1.2"
figures: "npm:^3.2.0"
checksum: 824034d46a4f80295aec9998a09c396ff2ce771aa4d895ed8e5722f413ca24d3ccc31c7dce94d846c5be4093f6592f4d5233e719274081121e6c8093f2b43225
languageName: node
linkType: hard
"@inquirer/input@npm:^1.2.13":
version: 1.2.13
resolution: "@inquirer/input@npm:1.2.13"
dependencies:
"@inquirer/core": "npm:^5.1.0"
"@inquirer/type": "npm:^1.1.5"
chalk: "npm:^4.1.2"
checksum: 628c9d0f5f18d64d55a3cf6df76028958bcaa2b05f8712b452a365f303d7c630f39cff833b60ac9f206bb031c921afe0b2b79a9ae00c6ea74ff75d15cfb6c44c
languageName: node
linkType: hard
"@inquirer/password@npm:^1.1.13":
version: 1.1.13
resolution: "@inquirer/password@npm:1.1.13"
dependencies:
"@inquirer/input": "npm:^1.2.13"
"@inquirer/type": "npm:^1.1.5"
ansi-escapes: "npm:^4.3.2"
chalk: "npm:^4.1.2"
checksum: 32ff916a338e0b6457435252940e99e93816cc4bc96199ec73c033ec4089a1852fa5afe3dc817cd993436e71da1666e955f7e49bb21d57638dfbcab90776a802
languageName: node
linkType: hard
"@inquirer/prompts@npm:^3.2.0":
version: 3.2.0
resolution: "@inquirer/prompts@npm:3.2.0"
dependencies:
"@inquirer/checkbox": "npm:^1.4.0"
"@inquirer/confirm": "npm:^2.0.14"
"@inquirer/core": "npm:^5.1.0"
"@inquirer/editor": "npm:^1.2.12"
"@inquirer/expand": "npm:^1.1.13"
"@inquirer/input": "npm:^1.2.13"
"@inquirer/password": "npm:^1.1.13"
"@inquirer/rawlist": "npm:^1.2.13"
"@inquirer/select": "npm:^1.3.0"
checksum: 0705c191a108398765faa0b4c60093d38e91cabc31378dd6fcb22abecb7b051cb1556789627ea01593456eabe8994ea262985dbf6ecf842c5e2acc82ef15dccb
languageName: node
linkType: hard
"@inquirer/rawlist@npm:^1.2.13":
version: 1.2.13
resolution: "@inquirer/rawlist@npm:1.2.13"
dependencies:
"@inquirer/core": "npm:^5.1.0"
"@inquirer/type": "npm:^1.1.5"
chalk: "npm:^4.1.2"
checksum: 580087298d34375b5f3d28359993e5ee23e34e9d70a70f02ba7c66a38a3b9ca24b5c3b37206751d08780b5cb2066c2adedffbcaac8c84bc5a82b34b6e2fbd4f4
languageName: node
linkType: hard
"@inquirer/select@npm:^1.3.0":
version: 1.3.0
resolution: "@inquirer/select@npm:1.3.0"
dependencies:
"@inquirer/core": "npm:^5.1.0"
"@inquirer/type": "npm:^1.1.5"
ansi-escapes: "npm:^4.3.2"
chalk: "npm:^4.1.2"
figures: "npm:^3.2.0"
checksum: 0f9d0babb7ef6d1b7a21bb860842c412d19750e4654833645aed8798e2169d705ab69fa5fce55daab281ff329b69cd09230e28ccd403bec4cdcdb7c736dd39eb
languageName: node
linkType: hard
"@inquirer/type@npm:^1.1.5":
version: 1.1.5
resolution: "@inquirer/type@npm:1.1.5"
checksum: 5417e10978b7fbbb691c64259261d220ab12b95d05a7092dba228ce71e830385e6da26669e45916993b367177f3d99157a95ff09a0ad7075f0545ef9c1a0c81b
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: e9ed5fd27c3aec1095e3a16e0c0cf148d1fee55a38665c35f7b3f86a9b5d00d042ddaabc98e8a1cb7463b9378c15f22a94eb35e99469c201453eb8375191f243
languageName: node
linkType: hard
"@jest/schemas@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/schemas@npm:29.6.3"
dependencies:
"@sinclair/typebox": "npm:^0.27.8"
checksum: 910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.0":
version: 0.3.3
resolution: "@jridgewell/gen-mapping@npm:0.3.3"
dependencies:
"@jridgewell/set-array": "npm:^1.0.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 072ace159c39ab85944bdabe017c3de15c5e046a4a4a772045b00ff05e2ebdcfa3840b88ae27e897d473eb4d4845b37be3c78e28910c779f5aeeeae2fb7f0cc2
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: 64d59df8ae1a4e74315eb1b61e012f1c7bc8aac47a3a1e683f6fe7008eab07bc512a742b7aa7c0405685d1421206de58c9c2e6adbfe23832f8bd69408ffc183e
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: 69a84d5980385f396ff60a175f7177af0b8da4ddb81824cb7016a9ef914eee9806c72b6b65942003c63f7983d4f39a5c6c27185bbca88eb4690b62075602e28e
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.13, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: 89960ac087781b961ad918978975bcdf2051cd1741880469783c42de64239703eab9db5230d776d8e6a09d73bb5e4cb964e07d93ee6e2e7aea5a7d726e865c09
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.20
resolution: "@jridgewell/trace-mapping@npm:0.3.20"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 683117e4e6707ef50c725d6d0ec4234687ff751f36fa46c2b3068931eb6a86b49af374d3030200777666579a992b7470d1bd1c591e9bf64d764dda5295f33093
languageName: node
linkType: hard
"@ljharb/through@npm:^2.3.9":
version: 2.3.11
resolution: "@ljharb/through@npm:2.3.11"
dependencies:
call-bind: "npm:^1.0.2"
checksum: 45bcc0681b89bbaf4c814473f3dcb89ba8c6d259becce36d21aafde8959c2fb0e3e640bd735fa00ac68b13e2947b165225bf56a70609f697b20c91a6982bfbd1
languageName: node
linkType: hard
"@next/env@npm:14.0.1":
version: 14.0.1
resolution: "@next/env@npm:14.0.1"
checksum: e0dad5ba1e68e05563d11524dd8d866a52e9c414d3cfb34bbc9d3c2618cff4bf0696effc3851249dcbcf76322c2c8fa3e413a7f5729881ea56dfcfbe3fe992d3
languageName: node
linkType: hard
"@next/eslint-plugin-next@npm:14.0.1":
version: 14.0.1
resolution: "@next/eslint-plugin-next@npm:14.0.1"
dependencies:
glob: "npm:7.1.7"
checksum: 14f42c0a47e042b6d06caa1eaa15a40d3761fe9e61fcd16c91e0b9fb4443a935294a8066d0b8806570a69e436d3fa412029138c504a54554195a057557b9391b
languageName: node
linkType: hard
"@next/swc-darwin-arm64@npm:14.0.1":
version: 14.0.1