forked from sanity-io/hydrogen-sanity-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
6693 lines (5771 loc) · 268 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 IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@ampproject/remapping@^2.1.0":
"integrity" "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"@jridgewell/gen-mapping" "^0.1.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@babel/code-frame@^7.16.7":
"integrity" "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/highlight" "^7.16.7"
"@babel/compat-data@^7.17.10":
"integrity" "sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.10.tgz"
"version" "7.17.10"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.17.10":
"integrity" "sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.18.2.tgz"
"version" "7.18.2"
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.16.7"
"@babel/generator" "^7.18.2"
"@babel/helper-compilation-targets" "^7.18.2"
"@babel/helper-module-transforms" "^7.18.0"
"@babel/helpers" "^7.18.2"
"@babel/parser" "^7.18.0"
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.18.2"
"@babel/types" "^7.18.2"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.1"
"semver" "^6.3.0"
"@babel/generator@^7.18.2":
"integrity" "sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.18.2.tgz"
"version" "7.18.2"
dependencies:
"@babel/types" "^7.18.2"
"@jridgewell/gen-mapping" "^0.3.0"
"jsesc" "^2.5.1"
"@babel/helper-annotate-as-pure@^7.16.7":
"integrity" "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw=="
"resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-compilation-targets@^7.18.2":
"integrity" "sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz"
"version" "7.18.2"
dependencies:
"@babel/compat-data" "^7.17.10"
"@babel/helper-validator-option" "^7.16.7"
"browserslist" "^4.20.2"
"semver" "^6.3.0"
"@babel/helper-environment-visitor@^7.16.7", "@babel/helper-environment-visitor@^7.18.2":
"integrity" "sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz"
"version" "7.18.2"
"@babel/helper-function-name@^7.17.9":
"integrity" "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz"
"version" "7.17.9"
dependencies:
"@babel/template" "^7.16.7"
"@babel/types" "^7.17.0"
"@babel/helper-hoist-variables@^7.16.7":
"integrity" "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-module-imports@^7.16.7":
"integrity" "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-module-transforms@^7.18.0":
"integrity" "sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz"
"version" "7.18.0"
dependencies:
"@babel/helper-environment-visitor" "^7.16.7"
"@babel/helper-module-imports" "^7.16.7"
"@babel/helper-simple-access" "^7.17.7"
"@babel/helper-split-export-declaration" "^7.16.7"
"@babel/helper-validator-identifier" "^7.16.7"
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.18.0"
"@babel/types" "^7.18.0"
"@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.17.12":
"integrity" "sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz"
"version" "7.17.12"
"@babel/helper-simple-access@^7.17.7":
"integrity" "sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz"
"version" "7.18.2"
dependencies:
"@babel/types" "^7.18.2"
"@babel/helper-split-export-declaration@^7.16.7":
"integrity" "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-validator-identifier@^7.16.7":
"integrity" "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"
"version" "7.16.7"
"@babel/helper-validator-option@^7.16.7":
"integrity" "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz"
"version" "7.16.7"
"@babel/helpers@^7.18.2":
"integrity" "sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.2.tgz"
"version" "7.18.2"
dependencies:
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.18.2"
"@babel/types" "^7.18.2"
"@babel/highlight@^7.16.7":
"integrity" "sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz"
"version" "7.17.12"
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.16.7", "@babel/parser@^7.18.0":
"integrity" "sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.18.4.tgz"
"version" "7.18.4"
"@babel/plugin-syntax-jsx@^7.17.12":
"integrity" "sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.17.12.tgz"
"version" "7.17.12"
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
"@babel/plugin-transform-react-jsx-development@^7.16.7":
"integrity" "sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/plugin-transform-react-jsx" "^7.16.7"
"@babel/plugin-transform-react-jsx-self@^7.16.7":
"integrity" "sha512-7S9G2B44EnYOx74mue02t1uD8ckWZ/ee6Uz/qfdzc35uWHX5NgRy9i+iJSb2LFRgMd+QV9zNcStQaazzzZ3n3Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.17.12.tgz"
"version" "7.17.12"
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
"@babel/plugin-transform-react-jsx-source@^7.16.7":
"integrity" "sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/plugin-transform-react-jsx@^7.16.7", "@babel/plugin-transform-react-jsx@^7.17.3":
"integrity" "sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.12.tgz"
"version" "7.17.12"
dependencies:
"@babel/helper-annotate-as-pure" "^7.16.7"
"@babel/helper-module-imports" "^7.16.7"
"@babel/helper-plugin-utils" "^7.17.12"
"@babel/plugin-syntax-jsx" "^7.17.12"
"@babel/types" "^7.17.12"
"@babel/runtime-corejs3@^7.10.2":
"integrity" "sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q=="
"resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.3.tgz"
"version" "7.18.3"
dependencies:
"core-js-pure" "^3.20.2"
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.7.6":
"integrity" "sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.3.tgz"
"version" "7.18.3"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.15.4":
"integrity" "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.16.7":
"integrity" "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/code-frame" "^7.16.7"
"@babel/parser" "^7.16.7"
"@babel/types" "^7.16.7"
"@babel/traverse@^7.18.0", "@babel/traverse@^7.18.2":
"integrity" "sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.2.tgz"
"version" "7.18.2"
dependencies:
"@babel/code-frame" "^7.16.7"
"@babel/generator" "^7.18.2"
"@babel/helper-environment-visitor" "^7.18.2"
"@babel/helper-function-name" "^7.17.9"
"@babel/helper-hoist-variables" "^7.16.7"
"@babel/helper-split-export-declaration" "^7.16.7"
"@babel/parser" "^7.18.0"
"@babel/types" "^7.18.2"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.17.12", "@babel/types@^7.18.0", "@babel/types@^7.18.2":
"integrity" "sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.18.4.tgz"
"version" "7.18.4"
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
"to-fast-properties" "^2.0.0"
"@bugsnag/browser@^7.17.0":
"integrity" "sha512-hTF1Bb62kIDN576vVw+u2m1kyT4b/1lDlAOxi5S+T1npydd+DKPQToXNbRJr29z23Ni+GG26uWA1c+rzWdYRDQ=="
"resolved" "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.17.0.tgz"
"version" "7.17.0"
dependencies:
"@bugsnag/core" "^7.17.0"
"@bugsnag/core@^7.17.0":
"integrity" "sha512-qt3+Ub64tspbdb6wMiJZIOFyKGv7ZSGRa66GjBmW3Y9cTb42Y8cNx1/0hxY4cDhSbwfunGTqKCcjFRrRcTlfNA=="
"resolved" "https://registry.npmjs.org/@bugsnag/core/-/core-7.17.0.tgz"
"version" "7.17.0"
dependencies:
"@bugsnag/cuid" "^3.0.0"
"@bugsnag/safe-json-stringify" "^6.0.0"
"error-stack-parser" "^2.0.3"
"iserror" "0.0.2"
"stack-generator" "^2.0.3"
"@bugsnag/cuid@^3.0.0":
"integrity" "sha512-LOt8aaBI+KvOQGneBtpuCz3YqzyEAehd1f3nC5yr9TIYW1+IzYKa2xWS4EiMz5pPOnRPHkyyS5t/wmSmN51Gjg=="
"resolved" "https://registry.npmjs.org/@bugsnag/cuid/-/cuid-3.0.0.tgz"
"version" "3.0.0"
"@bugsnag/js@^7.16.7":
"integrity" "sha512-wBiB/4wv3X6Iw2HrU7wywGnT+tt1DfOJjTeZIcWVzJ4u9b5avx4SmvJogfHjYRV/BIZaGuG5wxZU/0NsQy429g=="
"resolved" "https://registry.npmjs.org/@bugsnag/js/-/js-7.17.0.tgz"
"version" "7.17.0"
dependencies:
"@bugsnag/browser" "^7.17.0"
"@bugsnag/node" "^7.17.0"
"@bugsnag/node@^7.17.0":
"integrity" "sha512-tTk7QMp0eKTg8p0W404xnWHsAbz+cO7wyBUwrw2FAcLYj4QIbMqz0l0hjpwN+qUl07RbCrgdKA/RWN1Evf5ziw=="
"resolved" "https://registry.npmjs.org/@bugsnag/node/-/node-7.17.0.tgz"
"version" "7.17.0"
dependencies:
"@bugsnag/core" "^7.17.0"
"byline" "^5.0.0"
"error-stack-parser" "^2.0.2"
"iserror" "^0.0.2"
"pump" "^3.0.0"
"stack-generator" "^2.0.3"
"@bugsnag/safe-json-stringify@^6.0.0":
"integrity" "sha512-htzFO1Zc57S8kgdRK9mLcPVTW1BY2ijfH7Dk2CeZmspTWKdKqSo1iwmqrq2WtRjFlo8aRZYgLX0wFrDXF/9DLA=="
"resolved" "https://registry.npmjs.org/@bugsnag/safe-json-stringify/-/safe-json-stringify-6.0.0.tgz"
"version" "6.0.0"
"@cloudflare/kv-asset-handler@^0.2.0":
"integrity" "sha512-MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A=="
"resolved" "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"mime" "^3.0.0"
"@eslint/eslintrc@^1.3.0":
"integrity" "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz"
"version" "1.3.0"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
"espree" "^9.3.2"
"globals" "^13.15.0"
"ignore" "^5.2.0"
"import-fresh" "^3.2.1"
"js-yaml" "^4.1.0"
"minimatch" "^3.1.2"
"strip-json-comments" "^3.1.1"
"@fastify/ajv-compiler@^3.1.1":
"integrity" "sha512-IRnids8lblQ8e1i8h4JLyfJmebXE+ohcj8x8X/+Ew6ZB4H0Ui05z5YL6q5FOcl0zItVpu4adRzeyVNNUwmduIg=="
"resolved" "https://registry.npmjs.org/@fastify/ajv-compiler/-/ajv-compiler-3.3.1.tgz"
"version" "3.3.1"
dependencies:
"ajv" "^8.11.0"
"ajv-formats" "^2.1.1"
"fast-uri" "^2.0.0"
"@fastify/deepmerge@^1.0.0":
"integrity" "sha512-E8Hfdvs1bG6u0N4vN5Nty6JONUfTdOciyD5rn8KnEsLKIenvOVcr210BQR9t34PRkNyjqnMLGk3e0BsaxRdL+g=="
"resolved" "https://registry.npmjs.org/@fastify/deepmerge/-/deepmerge-1.1.0.tgz"
"version" "1.1.0"
"@fastify/error@^3.0.0":
"integrity" "sha512-dPRyT40GiHRzSCll3/Jn2nPe25+E1VXc9tDwRAIKwFCxd5Np5wzgz1tmooWG3sV0qKgrBibihVoCna2ru4SEFg=="
"resolved" "https://registry.npmjs.org/@fastify/error/-/error-3.0.0.tgz"
"version" "3.0.0"
"@fastify/fast-json-stringify-compiler@^4.0.0":
"integrity" "sha512-cTKBV2J9+u6VaKDhX7HepSfPSzw+F+TSd+k0wzifj4rG+4E5PjSFJCk19P8R6tr/72cuzgGd+mbB3jFT6lvAgw=="
"resolved" "https://registry.npmjs.org/@fastify/fast-json-stringify-compiler/-/fast-json-stringify-compiler-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"fast-json-stringify" "^5.0.0"
"@headlessui/react@^1.6.4":
"integrity" "sha512-0yqz1scwbFtwljmbbKjXsSGl5ABEYNICVHZnMCWo0UtOZodo2Tpu94uOVgCRjRZ77l2WcTi2S0uidINDvG7lsA=="
"resolved" "https://registry.npmjs.org/@headlessui/react/-/react-1.6.4.tgz"
"version" "1.6.4"
"@hookform/resolvers@^2.9.7":
"integrity" "sha512-BloehX3MOLwuFEwT4yZnmolPjVmqyn8VsSuodLfazbCIqxBHsQ4qUZsi+bvNNCduRli1AGWFrkDLGD5QoNzsoA=="
"resolved" "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-2.9.7.tgz"
"version" "2.9.7"
"@humanwhocodes/config-array@^0.9.2":
"integrity" "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
"debug" "^4.1.1"
"minimatch" "^3.0.4"
"@humanwhocodes/object-schema@^1.2.1":
"integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
"@iarna/toml@^2.2.5":
"integrity" "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
"resolved" "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz"
"version" "2.2.5"
"@jridgewell/gen-mapping@^0.1.0":
"integrity" "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"
"version" "0.1.1"
dependencies:
"@jridgewell/set-array" "^1.0.0"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/gen-mapping@^0.3.0":
"integrity" "sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz"
"version" "0.3.1"
dependencies:
"@jridgewell/set-array" "^1.0.0"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/resolve-uri@^3.0.3":
"integrity" "sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz"
"version" "3.0.7"
"@jridgewell/set-array@^1.0.0":
"integrity" "sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.1.tgz"
"version" "1.1.1"
"@jridgewell/sourcemap-codec@^1.4.10":
"integrity" "sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz"
"version" "1.4.13"
"@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz"
"version" "0.3.13"
dependencies:
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@kwsites/file-exists@^1.1.1":
"integrity" "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw=="
"resolved" "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"debug" "^4.1.1"
"@kwsites/promise-deferred@^1.1.1":
"integrity" "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw=="
"resolved" "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz"
"version" "1.1.1"
"@miniflare/cache@^2.8.2":
"integrity" "sha512-lriPxUEva9TJ01vU9P7pI60s3SsFnb4apWkNwZ+D7CRqyXPipSbapY8BWI2FUIwkEG7xap6UhzeTS76NettCXQ=="
"resolved" "https://registry.npmjs.org/@miniflare/cache/-/cache-2.9.0.tgz"
"version" "2.9.0"
dependencies:
"@miniflare/core" "2.9.0"
"@miniflare/shared" "2.9.0"
"http-cache-semantics" "^4.1.0"
"undici" "5.9.1"
"@miniflare/core@^2.8.2", "@miniflare/core@2.9.0":
"integrity" "sha512-QqSwF6oHvgrFvN5lnrLc6EEagFlZWW+UMU8QdrE8305cNGHrIOxKCA2nte4PVFZUVw/Ts13a0tVhUk3a2fAyxQ=="
"resolved" "https://registry.npmjs.org/@miniflare/core/-/core-2.9.0.tgz"
"version" "2.9.0"
dependencies:
"@iarna/toml" "^2.2.5"
"@miniflare/queues" "2.9.0"
"@miniflare/shared" "2.9.0"
"@miniflare/watcher" "2.9.0"
"busboy" "^1.6.0"
"dotenv" "^10.0.0"
"kleur" "^4.1.4"
"set-cookie-parser" "^2.4.8"
"undici" "5.9.1"
"urlpattern-polyfill" "^4.0.3"
"@miniflare/core@2.8.2":
"integrity" "sha512-a9Ecyf4xALcvphQhK3qA+mtUApUrUbwcxCexXvvgVsPrQtMCOIjJ2qs7+RKrC+krCy2O8Eq/8eq2hYh4y/HOKQ=="
"resolved" "https://registry.npmjs.org/@miniflare/core/-/core-2.8.2.tgz"
"version" "2.8.2"
dependencies:
"@iarna/toml" "^2.2.5"
"@miniflare/queues" "2.8.2"
"@miniflare/shared" "2.8.2"
"@miniflare/watcher" "2.8.2"
"busboy" "^1.6.0"
"dotenv" "^10.0.0"
"kleur" "^4.1.4"
"set-cookie-parser" "^2.4.8"
"undici" "5.9.1"
"urlpattern-polyfill" "^4.0.3"
"@miniflare/queues@^2.8.2", "@miniflare/queues@2.9.0":
"integrity" "sha512-cAHWIlLF57rxQaJl19AzXw1k0SOM/uLTlx8r2PylHajZ/RRSs7CkCox3oKA6E5zKyfyxk2M64bmsAFZ9RCA0gw=="
"resolved" "https://registry.npmjs.org/@miniflare/queues/-/queues-2.9.0.tgz"
"version" "2.9.0"
dependencies:
"@miniflare/shared" "2.9.0"
"@miniflare/queues@2.8.2":
"integrity" "sha512-WYlK5L7ukdcL86DdB/BsJhnX7jcLNzyYdcn5vPQbCnDyaK1Lz9lm1RCrtCz7qwJjTrq5z453pczm0ELTxa5n9g=="
"resolved" "https://registry.npmjs.org/@miniflare/queues/-/queues-2.8.2.tgz"
"version" "2.8.2"
dependencies:
"@miniflare/shared" "2.8.2"
"@miniflare/runner-vm@^2.8.2":
"integrity" "sha512-vewP+Fy7Czb261GmB9x/YtQkoDs/QP9B5LbP0YfJ35bI2C2j940eJLm8JP72IHV7ILtWNOqMc3Ure8uAbpf9NQ=="
"resolved" "https://registry.npmjs.org/@miniflare/runner-vm/-/runner-vm-2.9.0.tgz"
"version" "2.9.0"
dependencies:
"@miniflare/shared" "2.9.0"
"@miniflare/shared@^2.8.2", "@miniflare/shared@2.9.0":
"integrity" "sha512-5Ew/Ph0cHDQqKvOlmN70kz+qZW0hdgE9fQBStKLY3vDYhnBEhopbCUChSS+FCcL7WtxVJJVE7iB6J09NQTnQ/A=="
"resolved" "https://registry.npmjs.org/@miniflare/shared/-/shared-2.9.0.tgz"
"version" "2.9.0"
dependencies:
"@types/better-sqlite3" "^7.6.0"
"kleur" "^4.1.4"
"npx-import" "^1.1.3"
"picomatch" "^2.3.1"
"@miniflare/shared@2.8.2":
"integrity" "sha512-cjuLIeTAlqcb1POrK4nLa8Bt79SfzbglUr/w78xRAUUoOdB0Lsm3HnEERzD1o0lO2G/Q9F+VDAp2QyglPFV61A=="
"resolved" "https://registry.npmjs.org/@miniflare/shared/-/shared-2.8.2.tgz"
"version" "2.8.2"
dependencies:
"kleur" "^4.1.4"
"picomatch" "^2.3.1"
"@miniflare/storage-memory@^2.8.2":
"integrity" "sha512-p2yrr0omQhv6teDbdzhdBKzoQAFmUBMLEx+PtrO7CJHX15ICD08/pFAFAp96IcljNwZZDchU20Z3AcbldMj6Tw=="
"resolved" "https://registry.npmjs.org/@miniflare/storage-memory/-/storage-memory-2.9.0.tgz"
"version" "2.9.0"
dependencies:
"@miniflare/shared" "2.9.0"
"@miniflare/watcher@2.8.2":
"integrity" "sha512-2+awQITWkUGb9GlpzVmYwoe+qiSibni7C6gVDnkxorBRoecwUAzjFRF09QjdEn40+q7peNdE0ui1oWjZMgOaHg=="
"resolved" "https://registry.npmjs.org/@miniflare/watcher/-/watcher-2.8.2.tgz"
"version" "2.8.2"
dependencies:
"@miniflare/shared" "2.8.2"
"@miniflare/watcher@2.9.0":
"integrity" "sha512-Yqz8Q1He/2chebXvmCft8sMamuUiDQ4FIn0bwiF0+GBP2vvGCmy6SejXZY4ZD4REluPqQSis3CLKcIOWlHnIsw=="
"resolved" "https://registry.npmjs.org/@miniflare/watcher/-/watcher-2.9.0.tgz"
"version" "2.9.0"
dependencies:
"@miniflare/shared" "2.9.0"
"@miniflare/web-sockets@2.8.2":
"integrity" "sha512-oW9vG7zImwZZ/OKuAI4CEMtVqYVQqWe9MoO47VoxmB/WMMdaXJArx+k8xcJJJL7tcHVtbwBHsypJf69DOtrCmg=="
"resolved" "https://registry.npmjs.org/@miniflare/web-sockets/-/web-sockets-2.8.2.tgz"
"version" "2.8.2"
dependencies:
"@miniflare/core" "2.8.2"
"@miniflare/shared" "2.8.2"
"undici" "5.9.1"
"ws" "^8.2.2"
"@netlify/hydrogen-platform@^1.1.2":
"integrity" "sha512-dgQeZ5PpZXL3SeKJ1oypn7oqV1tgRBaCwjsGemhoZn3qH/lGxYLDk3lRFDmWxx7goO37YRqzMu77RePi39/b2Q=="
"resolved" "https://registry.npmjs.org/@netlify/hydrogen-platform/-/hydrogen-platform-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"@netlify/vite-plugin-netlify-edge" "^1.1.0"
"@netlify/vite-plugin-netlify-edge@^1.1.0":
"integrity" "sha512-s/FVk0L87+boNPPW9OkTEFLsYPIKK/e6huj/MWb4ukoC0S2iDhi3uBlyEUM/ujHJnpyWGoZIUiZ7mPsdNwz/rA=="
"resolved" "https://registry.npmjs.org/@netlify/vite-plugin-netlify-edge/-/vite-plugin-netlify-edge-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"fast-glob" "^3.2.11"
"@nodelib/fs.scandir@2.1.5":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@oclif/color@^1.0.1":
"integrity" "sha512-qjYr+izgWdIVOroiBKqTzQgc1r5Wd9QB1J7yGM2EeelqhBARiiVLRZL45vhV4zdyTRdDkZS0EBzFwQap+nliLA=="
"resolved" "https://registry.npmjs.org/@oclif/color/-/color-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"ansi-styles" "^4.2.1"
"chalk" "^4.1.0"
"strip-ansi" "^6.0.1"
"supports-color" "^8.1.1"
"tslib" "^2"
"@oclif/core@^1.2.0":
"integrity" "sha512-duvlaRQf4JM+mKuwwos1DNa/Q9x6tnF3khV5RU0fy5hhETF7THlTmxioKlIvKMyQDVpySqtZXZ0OKHeCi2EWuQ=="
"resolved" "https://registry.npmjs.org/@oclif/core/-/core-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@oclif/linewrap" "^1.0.0"
"@oclif/screen" "^3.0.2"
"ansi-escapes" "^4.3.2"
"ansi-styles" "^4.3.0"
"cardinal" "^2.1.1"
"chalk" "^4.1.2"
"clean-stack" "^3.0.1"
"cli-progress" "^3.10.0"
"debug" "^4.3.4"
"ejs" "^3.1.6"
"fs-extra" "^9.1.0"
"get-package-type" "^0.1.0"
"globby" "^11.1.0"
"hyperlinker" "^1.0.0"
"indent-string" "^4.0.0"
"is-wsl" "^2.2.0"
"js-yaml" "^3.14.1"
"natural-orderby" "^2.0.3"
"object-treeify" "^1.1.33"
"password-prompt" "^1.1.2"
"semver" "^7.3.7"
"string-width" "^4.2.3"
"strip-ansi" "^6.0.1"
"supports-color" "^8.1.1"
"supports-hyperlinks" "^2.2.0"
"tslib" "^2.3.1"
"widest-line" "^3.1.0"
"wrap-ansi" "^7.0.0"
"@oclif/core@^1.3.6":
"integrity" "sha512-duvlaRQf4JM+mKuwwos1DNa/Q9x6tnF3khV5RU0fy5hhETF7THlTmxioKlIvKMyQDVpySqtZXZ0OKHeCi2EWuQ=="
"resolved" "https://registry.npmjs.org/@oclif/core/-/core-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@oclif/linewrap" "^1.0.0"
"@oclif/screen" "^3.0.2"
"ansi-escapes" "^4.3.2"
"ansi-styles" "^4.3.0"
"cardinal" "^2.1.1"
"chalk" "^4.1.2"
"clean-stack" "^3.0.1"
"cli-progress" "^3.10.0"
"debug" "^4.3.4"
"ejs" "^3.1.6"
"fs-extra" "^9.1.0"
"get-package-type" "^0.1.0"
"globby" "^11.1.0"
"hyperlinker" "^1.0.0"
"indent-string" "^4.0.0"
"is-wsl" "^2.2.0"
"js-yaml" "^3.14.1"
"natural-orderby" "^2.0.3"
"object-treeify" "^1.1.33"
"password-prompt" "^1.1.2"
"semver" "^7.3.7"
"string-width" "^4.2.3"
"strip-ansi" "^6.0.1"
"supports-color" "^8.1.1"
"supports-hyperlinks" "^2.2.0"
"tslib" "^2.3.1"
"widest-line" "^3.1.0"
"wrap-ansi" "^7.0.0"
"@oclif/core@1.9.2":
"integrity" "sha512-+qhfvDHn+tR4UN/Vk3UYIeM0Dm0XKsHrM4igJrUpJj/ZXXdaGbZEB+cMIRDZHGqBw+pcwP4+9zQFmxotMDIWcw=="
"resolved" "https://registry.npmjs.org/@oclif/core/-/core-1.9.2.tgz"
"version" "1.9.2"
dependencies:
"@oclif/linewrap" "^1.0.0"
"@oclif/screen" "^3.0.2"
"ansi-escapes" "^4.3.2"
"ansi-styles" "^4.3.0"
"cardinal" "^2.1.1"
"chalk" "^4.1.2"
"clean-stack" "^3.0.1"
"cli-progress" "^3.10.0"
"debug" "^4.3.4"
"ejs" "^3.1.6"
"fs-extra" "^9.1.0"
"get-package-type" "^0.1.0"
"globby" "^11.1.0"
"hyperlinker" "^1.0.0"
"indent-string" "^4.0.0"
"is-wsl" "^2.2.0"
"js-yaml" "^3.14.1"
"natural-orderby" "^2.0.3"
"object-treeify" "^1.1.33"
"password-prompt" "^1.1.2"
"semver" "^7.3.7"
"string-width" "^4.2.3"
"strip-ansi" "^6.0.1"
"supports-color" "^8.1.1"
"supports-hyperlinks" "^2.2.0"
"tslib" "^2.3.1"
"widest-line" "^3.1.0"
"wrap-ansi" "^7.0.0"
"@oclif/linewrap@^1.0.0":
"integrity" "sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw=="
"resolved" "https://registry.npmjs.org/@oclif/linewrap/-/linewrap-1.0.0.tgz"
"version" "1.0.0"
"@oclif/plugin-help@^5.1.12":
"integrity" "sha512-HvH/RubJxqCinP0vUWQLTOboT+SfjfL8h40s+PymkWaldIcXlpoRaJX50vz+SjZIs7uewZwEk8fzLqpF/BWXlg=="
"resolved" "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.1.12.tgz"
"version" "5.1.12"
dependencies:
"@oclif/core" "^1.3.6"
"@oclif/plugin-plugins@^2.1.0":
"integrity" "sha512-Bgt+QpTlX7+Q0HkVgtbUGYQlo/hyzNBAaXH5l16ou9Ji5wfi5T+niV5AzQ14R7JF8ZDOTbUOU/NRBJ2bzLCaZQ=="
"resolved" "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"@oclif/color" "^1.0.1"
"@oclif/core" "^1.2.0"
"chalk" "^4.1.2"
"debug" "^4.1.0"
"fs-extra" "^9.0"
"http-call" "^5.2.2"
"load-json-file" "^5.3.0"
"npm-run-path" "^4.0.1"
"semver" "^7.3.2"
"tslib" "^2.0.0"
"yarn" "^1.22.17"
"@oclif/screen@^3.0.2":
"integrity" "sha512-S/SF/XYJeevwIgHFmVDAFRUvM3m+OjhvCAYMk78ZJQCYCQ5wS7j+LTt1ZEv2jpEEGg2tx/F6TYYWxddNAYHrFQ=="
"resolved" "https://registry.npmjs.org/@oclif/screen/-/screen-3.0.2.tgz"
"version" "3.0.2"
"@polka/url@^1.0.0-next.20":
"integrity" "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g=="
"resolved" "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz"
"version" "1.0.0-next.21"
"@popperjs/core@^2.9.0":
"integrity" "sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw=="
"resolved" "https://registry.npmjs.org/@popperjs/core/-/core-2.11.5.tgz"
"version" "2.11.5"
"@portabletext/types@^1.0.3":
"integrity" "sha512-SDDsdury2SaTI2D5Ea6o+Y39SSZMYHRMWJHxkxYl3yzFP0n/0EknOhoXcoaV+bxGr2dTTqZi2TOEj+uWYuavSw=="
"resolved" "https://registry.npmjs.org/@portabletext/types/-/types-1.0.3.tgz"
"version" "1.0.3"
"@rollup/pluginutils@^4.1.2", "@rollup/pluginutils@^4.2.1":
"integrity" "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ=="
"resolved" "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz"
"version" "4.2.1"
dependencies:
"estree-walker" "^2.0.1"
"picomatch" "^2.2.2"
"@sanity/block-content-to-hyperscript@^3.0.0":
"integrity" "sha512-uoXWLdFY5LqO8A9sFJqnZWWDCBC+0r3Egeh0bwKQ2EK2Vil5L40iJGNXMZhDB8BnvH+6B4155SU8Q3vY59T6pA=="
"resolved" "https://registry.npmjs.org/@sanity/block-content-to-hyperscript/-/block-content-to-hyperscript-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"@sanity/generate-help-url" "^0.140.0"
"@sanity/image-url" "^0.140.15"
"hyperscript" "^2.0.2"
"object-assign" "^4.1.1"
"@sanity/block-content-to-react@^3.0.0":
"integrity" "sha512-oHPLlIsulsnL3ITs93RIvUPBI6nAeoSFOUf16vX4T7z4wWywxP39N1DF9mAx2tV6Kjr1fJAx5GF7zfiMXYLaqA=="
"resolved" "https://registry.npmjs.org/@sanity/block-content-to-react/-/block-content-to-react-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"@sanity/block-content-to-hyperscript" "^3.0.0"
"prop-types" "^15.6.2"
"@sanity/client@^3.2.0", "@sanity/client@^3.3.2":
"integrity" "sha512-M89v/KcNob0tnoMCW2caSnwYhSSqO1j5XuDXCloe966ZRFUAZWe9EVyyvvP7x1vPff5xR9PKxidrcx95l221mg=="
"resolved" "https://registry.npmjs.org/@sanity/client/-/client-3.3.2.tgz"
"version" "3.3.2"
dependencies:
"@sanity/eventsource" "^4.0.0"
"@sanity/generate-help-url" "^3.0.0"
"get-it" "^6.0.1"
"make-error" "^1.3.0"
"object-assign" "^4.1.1"
"rxjs" "^6.0.0"
"@sanity/color@^2.1.8":
"integrity" "sha512-ZComCEDE7Y5xu/+BksJDVkAffawRWrJvoI7VdIA+szhqzYQWgLRLfsr+UBkYZMtb9a+8HyUm6Uqoo028GNGREQ=="
"resolved" "https://registry.npmjs.org/@sanity/color/-/color-2.1.11.tgz"
"version" "2.1.11"
"@sanity/eventsource@^4.0.0":
"integrity" "sha512-W0AD141JILOySJ177j2+HTr5k4tWNyXjGsr0dDXJzpqlwZ09J/uPHI73hMe5XtoFumPa9Bj6jy8uu2qdZX84NQ=="
"resolved" "https://registry.npmjs.org/@sanity/eventsource/-/eventsource-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"event-source-polyfill" "1.0.25"
"eventsource" "^2.0.2"
"@sanity/generate-help-url@^0.140.0":
"integrity" "sha512-H/G/WA9S22TXcXST52CIiTsHx3S2hH0gvK7LnI5w76vfKS0obnDPh8jrPg4xeNRYGPuV9MHYRlyERGpRGoo4Qw=="
"resolved" "https://registry.npmjs.org/@sanity/generate-help-url/-/generate-help-url-0.140.0.tgz"
"version" "0.140.0"
"@sanity/generate-help-url@^3.0.0":
"integrity" "sha512-wtMYcV5GIDIhVyF/jjmdwq1GdlK07dRL40XMns73VbrFI7FteRltxv48bhYVZPcLkRXb0SHjpDS/icj9/yzbVA=="
"resolved" "https://registry.npmjs.org/@sanity/generate-help-url/-/generate-help-url-3.0.0.tgz"
"version" "3.0.0"
"@sanity/image-url@^0.140.15":
"integrity" "sha512-CAmQZnj+KM7FSEYiWlIGDit072syicYuAw0w7R2ctMzHiZ4p9mE/g6dBnYqrqFUrw2J+GpJgPt+RVspKP8vdqA=="
"resolved" "https://registry.npmjs.org/@sanity/image-url/-/image-url-0.140.22.tgz"
"version" "0.140.22"
"@sanity/image-url@^1.0.1":
"integrity" "sha512-AdKQ3zMk7WdoNwoJPrAvQhW+kUtBldBX0nHtnGy+rwmgsCQ0rAXasrgH43Fhmsp/yB6piiq+F2d5qEuBFsdQVg=="
"resolved" "https://registry.npmjs.org/@sanity/image-url/-/image-url-1.0.1.tgz"
"version" "1.0.1"
"@sanity/timed-out@^4.0.2":
"integrity" "sha512-NBDKGj14g9Z+bopIvZcQKWCzJq5JSrdmzRR1CS+iyA3Gm8SnIWBfZa7I3mTg2X6Nu8LQXG0EPKXdOGozLS4i3w=="
"resolved" "https://registry.npmjs.org/@sanity/timed-out/-/timed-out-4.0.2.tgz"
"version" "4.0.2"
"@sanity/types@^2.29.5":
"integrity" "sha512-opsUt96xJy6j8LVw8L96HMCyF84Li9p4CNUZEUyKEa63nfG4IYD6fNY5ISiBthkw1os/J6E5EQfjkvME84seQA=="
"resolved" "https://registry.npmjs.org/@sanity/types/-/types-2.29.5.tgz"
"version" "2.29.5"
dependencies:
"@sanity/client" "^3.2.0"
"@sanity/color" "^2.1.8"
"@types/react" "^17.0.42"
"rxjs" "^6.5.3"
"@shopify/cli-hydrogen@^3.12.0":
"integrity" "sha512-j+6YgfqII1KBe4mLfOzZByhNwt94qx0eMexU55qraty40ndYGwTX+ppjYtdwvFy+pt4YyVN/FPumXNSJNzRKKQ=="
"resolved" "https://registry.npmjs.org/@shopify/cli-hydrogen/-/cli-hydrogen-3.13.1.tgz"
"version" "3.13.1"
dependencies:
"@oclif/core" "1.9.2"
"@shopify/cli-kit" "3.13.1"
"@shopify/hydrogen" "^0.26.0"
"@shopify/mini-oxygen" "^0.2.0"
"@shopify/prettier-config" "^1.1.2"
"@types/prettier" "^2.6.3"
"fast-glob" "^3.2.11"
"fs-extra" "^10.0.0"
"graphql-request" "^4.3.0"
"prettier" "^2.6.1"
"typescript" "^4.7.4"
"vite" "^2.9.13"
"@shopify/cli-kit@3.13.1":
"integrity" "sha512-xpbyX5Es2R58IPTe5BkIAYvi6v92om7MxB+XIrjglNKc1AgxQ4E4NIEy4ePlqTq7SnKvC37F06AeSNk/hSwIuA=="
"resolved" "https://registry.npmjs.org/@shopify/cli-kit/-/cli-kit-3.13.1.tgz"
"version" "3.13.1"
dependencies:
"@bugsnag/js" "^7.16.7"
"@iarna/toml" "^2.2.5"
"@oclif/core" "1.9.2"
"@types/archiver" "^5.3.1"
"abort-controller" "^3.0.0"
"ansi-colors" "^4.1.1"
"archiver" "^5.3.1"
"change-case" "^4.1.2"
"color-json" "^2.0.1"
"commondir" "^1.0.1"
"conf" "^10.1.2"
"cross-zip" "^4.0.0"
"del" "^6.0.0"
"env-paths" "^3.0.0"
"envfile" "^6.18.0"
"execa" "^6.0.0"
"fast-glob" "^3.2.11"
"fastify" "^4.2.1"
"find-process" "^1.4.7"
"find-up" "^6.2.0"
"find-versions" "^5.0.0"
"form-data" "^4.0.0"
"fs-extra" "^10.0.0"
"fuzzy" "^0.1.3"
"get-port-please" "^2.5.0"
"graphql" "^16.4.0"
"graphql-request" "^4.3.0"
"inquirer" "^8.2.4"
"inquirer-autocomplete-prompt" "^2.0.0"
"is-interactive" "^2.0.0"
"js-yaml" "^4.1.0"
"keytar" "^7.9.0"
"kill-port-process" "^3.1.0"
"latest-version" "^6.0.0"
"liquidjs" "^9.36.0"
"listr2" "^4.0.5"
"log-update" "^4.0.0"
"md5-file" "^5.0.0"
"node-fetch" "^3.2.4"
"open" "^8.4.0"
"pathe" "0.2.0"
"prettier" "^2.7.1"
"semver" "^7.3.6"
"simple-git" "^3.5.0"
"source-map-support" "^0.5.21"
"stacktracey" "^2.1.8"
"strip-ansi" "^7.0.1"
"tempy" "^3.0.0"
"term-size" "^3.0.1"
"terminal-link" "^3.0.0"
"ts-error" "^1.0.6"
"unique-string" "^3.0.0"
"zod" "^3.17.3"
"@shopify/cli@^3.12.0":
"integrity" "sha512-J7l5IigQWJj08nhoOi8D/u/SEspfH8cY+rbHRB4zxUziUreCfYnQFxADtblQ3qheb5lmZvOHaw9g8GzFhmI1kw=="
"resolved" "https://registry.npmjs.org/@shopify/cli/-/cli-3.13.1.tgz"
"version" "3.13.1"
dependencies:
"@oclif/core" "1.9.2"
"@oclif/plugin-help" "^5.1.12"
"@oclif/plugin-plugins" "^2.1.0"
"@shopify/cli-kit" "3.13.1"
"@shopify/plugin-ngrok" "^3.13.1"
"@shopify/hydrogen@^0.26.0":
"integrity" "sha512-eC26PCKZxKjGjLDCvsath5uXnGmqd/XcgtNzOBRZBO+/WPoYHFw7/fnTi5cqpTgkFWFSTTtxe00XBm4h4dcVbw=="
"resolved" "https://registry.npmjs.org/@shopify/hydrogen/-/hydrogen-0.26.1.tgz"
"version" "0.26.1"
dependencies:
"@vitejs/plugin-react" "^1.3.0"
"abort-controller" "^3.0.0"
"body-parser" "^1.20.0"
"compression" "^1.7.4"
"connect" "^3.7.0"
"es-module-lexer" "^0.10.0"
"fast-glob" "^3.2.11"
"graphql" "^16.3.0"
"graphql-tag" "^2.12.6"
"history" "^5.3.0"
"kolorist" "^1.5.1"
"magic-string" "^0.26.1"
"node-fetch" "^2.6.7"
"path-to-regexp" "^6.2.0"
"react-error-boundary" "^3.1.3"
"react-helmet-async" "^1.2.3"
"serve-static" "^1.15.0"
"set-cookie-parser" "^2.5.0"
"undici" "^5.5.1"
"uuid" "^8.3.2"
"vite-plugin-inspect" "^0.3.6"
"web-streams-polyfill" "^3.2.0"
"worktop" "^0.7.3"
"@shopify/hydrogen@~1.4.1":
"integrity" "sha512-UVwSuHvn/SviIbQ82G+7BIhd6FdP9Hagn5XtgTTZNxcEDp7wsodzzrV7WVBcW456zmG+G1NmZEPZ/q2RZVTpAQ=="
"resolved" "https://registry.npmjs.org/@shopify/hydrogen/-/hydrogen-1.4.1.tgz"
"version" "1.4.1"
dependencies:
"@vitejs/plugin-react" "^1.3.0"
"@xstate/fsm" "^2.0.0"
"@xstate/react" "^3.0.0"
"abort-controller" "^3.0.0"
"body-parser" "^1.20.0"
"compression" "^1.7.4"
"connect" "^3.7.0"
"es-module-lexer" "^0.10.0"
"fast-glob" "^3.2.11"
"graphql" "^16.3.0"
"graphql-tag" "^2.12.6"
"history" "^5.3.0"
"kolorist" "^1.5.1"
"magic-string" "^0.26.1"
"node-fetch" "^2.6.7"
"path-to-regexp" "^6.2.0"
"react-error-boundary" "^3.1.3"
"react-helmet-async" "^1.3.0"
"serve-static" "^1.15.0"
"set-cookie-parser" "^2.5.0"
"undici" "^5.8.2"
"uuid" "^8.3.2"
"vite-plugin-inspect" "^0.3.6"
"web-streams-polyfill" "^3.2.0"
"worktop" "^0.7.3"
"@shopify/mini-oxygen@^0.2.0":
"integrity" "sha512-yGIg6xFLrbmV3yNXSYrNRpfiAY80u2PZMkds3RwL3JLVGH780IpffBoK5Yov3i/EwwTN+4iIXgk3U/4Csqr1eA=="
"resolved" "https://registry.npmjs.org/@shopify/mini-oxygen/-/mini-oxygen-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"@miniflare/cache" "^2.8.2"
"@miniflare/core" "^2.8.2"
"@miniflare/queues" "^2.8.2"
"@miniflare/runner-vm" "^2.8.2"
"@miniflare/shared" "^2.8.2"
"@miniflare/storage-memory" "^2.8.2"
"@miniflare/web-sockets" "2.8.2"
"@types/connect" "^3.4.35"
"@types/mime" "^3.0.1"
"body-parser" "1.20.0"
"connect" "^3.7.0"
"fs-extra" "^10.1.0"
"inquirer" "^9.0.0"
"mime" "^3.0.0"
"semiver" "^1.1.0"
"typescript" "^4.7.2"
"vitest" "^0.22.1"