-
Notifications
You must be signed in to change notification settings - Fork 6
/
yarn.lock
7179 lines (6497 loc) · 250 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
"@adobe/css-tools@npm:^4.4.0":
version: 4.4.0
resolution: "@adobe/css-tools@npm:4.4.0"
checksum: 10/9c6315fe9efa5075d6ddb6ded7a1424bc9c41a01f2314b6bdcc368723985fe161008d03ddcc2b27b2da50cb9c14190fbce965d15cefe5f9a31bdd43f35b52115
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10/bdc35758b552bcf045733ac047fb7f9a07c4678b944c641adfbd41f798b4b91fffd0fdc0df2578d9b0afc7b4d636aa6e110ead5d6281a2adc1ab90efd7f057f8
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@aws-amplify/analytics@npm:7.0.35":
version: 7.0.35
resolution: "@aws-amplify/analytics@npm:7.0.35"
dependencies:
"@aws-sdk/client-firehose": "npm:3.398.0"
"@aws-sdk/client-kinesis": "npm:3.398.0"
"@aws-sdk/client-personalize-events": "npm:3.398.0"
"@smithy/util-utf8": "npm:2.0.0"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/8c91592515de3bf9260d97249e3bac9db1bff1df780d78fe6d292d65f6bed9ffcd1762214f06de7c5d15df0b55853d8bd21b6fb86cf02f84d8c26c32fa225a32
languageName: node
linkType: hard
"@aws-amplify/api-graphql@npm:4.1.6":
version: 4.1.6
resolution: "@aws-amplify/api-graphql@npm:4.1.6"
dependencies:
"@aws-amplify/api-rest": "npm:4.0.35"
"@aws-amplify/core": "npm:6.3.2"
"@aws-amplify/data-schema": "npm:^1.0.0"
"@aws-sdk/types": "npm:3.387.0"
graphql: "npm:15.8.0"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.5.0"
uuid: "npm:^9.0.0"
checksum: 10/7dcbf1b60a77664c064ebf28345b7cef141a4d0e3e09c04a5cc141d215b519a19735d54c94651fe89f475e0bc0765598547f8d688ccab9fa22c51c8adf3fa22e
languageName: node
linkType: hard
"@aws-amplify/api-rest@npm:4.0.35":
version: 4.0.35
resolution: "@aws-amplify/api-rest@npm:4.0.35"
dependencies:
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/b9a7225117180fb473f09024e712ec1f3bf019dfab1cb97204389c5a743c2889ba7764c230d9b32c085bbc1a8cab0a7ac9f0b1d35344e1e066d9f6f3e056a75a
languageName: node
linkType: hard
"@aws-amplify/api@npm:6.0.37":
version: 6.0.37
resolution: "@aws-amplify/api@npm:6.0.37"
dependencies:
"@aws-amplify/api-graphql": "npm:4.1.6"
"@aws-amplify/api-rest": "npm:4.0.35"
tslib: "npm:^2.5.0"
checksum: 10/94cf6e7722f025a3640e23146f968e4a9ec19cbbf3eb4956234a448f8fa4f2c1d2f7dc4bfd48d1c61e54c111573ec3610260e4fa05dd91787dc29aefdfd10813
languageName: node
linkType: hard
"@aws-amplify/auth@npm:6.3.5":
version: 6.3.5
resolution: "@aws-amplify/auth@npm:6.3.5"
dependencies:
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/cbdcc5f703742c1466453cb10c4ce6d8fe9a625c949835d714fedb3de0da2d3959148407a6fdfc62ae9727423a33f76a2ae32c870e1d94ac55e6b6ba732ac9ba
languageName: node
linkType: hard
"@aws-amplify/core@npm:6.3.2":
version: 6.3.2
resolution: "@aws-amplify/core@npm:6.3.2"
dependencies:
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/types": "npm:3.398.0"
"@smithy/util-hex-encoding": "npm:2.0.0"
"@types/uuid": "npm:^9.0.0"
js-cookie: "npm:^3.0.5"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.5.0"
uuid: "npm:^9.0.0"
checksum: 10/decd900d984567fa13cb6eb27a5eb778d6a65fc6b6aa030865ef1481eb724777dbd088b5633e0d8eadf1e7cc27892750101ae334f3d6a4fb650e416106efb8c0
languageName: node
linkType: hard
"@aws-amplify/data-schema-types@npm:*":
version: 1.0.0
resolution: "@aws-amplify/data-schema-types@npm:1.0.0"
dependencies:
graphql: "npm:15.8.0"
rxjs: "npm:^7.8.1"
checksum: 10/b6d3bba21150ebc4e7d29f5e90434d624718a7cec10ae03d0d852d5c4f36d1996a4509a5871f805769ad6bc06b9358793a47b1070ecf2efdc9b8dba9b5ebff9f
languageName: node
linkType: hard
"@aws-amplify/data-schema@npm:^1.0.0":
version: 1.1.3
resolution: "@aws-amplify/data-schema@npm:1.1.3"
dependencies:
"@aws-amplify/data-schema-types": "npm:*"
"@types/aws-lambda": "npm:^8.10.134"
rxjs: "npm:^7.8.1"
checksum: 10/36e90321eabdb591c56f7fc293320d99b66f2005073710c0e7f317888bb55660a7a8b29c59b62024cda92d5eb57b9bce066cf6a7d99b9b59ec1311b271a08f97
languageName: node
linkType: hard
"@aws-amplify/datastore@npm:5.0.37":
version: 5.0.37
resolution: "@aws-amplify/datastore@npm:5.0.37"
dependencies:
"@aws-amplify/api": "npm:6.0.37"
buffer: "npm:4.9.2"
idb: "npm:5.0.6"
immer: "npm:9.0.6"
rxjs: "npm:^7.8.1"
ulid: "npm:^2.3.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/7661fb50dcf6c410b72ae171b68d747e0f22cf5133be845231dadcb44c71b0922c8f883dbe4b71beee2d9c5b3b7587fe309b4281d73ccbbf61612002a1a64dfc
languageName: node
linkType: hard
"@aws-amplify/notifications@npm:2.0.35":
version: 2.0.35
resolution: "@aws-amplify/notifications@npm:2.0.35"
dependencies:
lodash: "npm:^4.17.21"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/371055ccd207e79a5891e5af34d37ebf774fedb159bc257e2eb463dcd2542bbf9ece4829f45eb35b12157809fb70199d6d0e5226772af72e7c5dfd43283c9b23
languageName: node
linkType: hard
"@aws-amplify/storage@npm:6.4.6":
version: 6.4.6
resolution: "@aws-amplify/storage@npm:6.4.6"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/md5-js": "npm:2.0.7"
buffer: "npm:4.9.2"
fast-xml-parser: "npm:^4.2.5"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/81b765ee86b9834ffc1e5b3f00a7b9afa3ac88796a03429b09a2b965bc7544eac82a4b42ff26f6f8bf4f0698eb5cf849a79cb8d5192c0ad700fc69b67a680144
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10/672d593fd98a88709a1b488db92aabf584b6dad3e8099e04b6d2870e34a2ee668cbbe0e5406e60c0d776b9c34a91cfc427999230ad959518fed56a3db037704c
languageName: node
linkType: hard
"@aws-crypto/ie11-detection@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/ie11-detection@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10/f5aee4a11a113ab9640474e75d398c99538aa30775f484cd519f0de0096ae0d4a6b68d2f0c685f24bd6f2425067c565bc20592c36c0dc1f4d28c1b4751a40734
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/sha256-js": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10/4e075906c48a46bbb8babb60db3e6b280db405a88c68b77c1496c26218292d5ea509beae3ccc19366ca6bc944c6d37fe347d0917909900dbac86f054a19c71c7
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:3.0.0, @aws-crypto/sha256-js@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-js@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10/f9fc2d51631950434d0f91f51c2ce17845d4e8e75971806e21604987e3186ee1e54de8a89e5349585b91cb36e56d5f058d6a45004e1bfbce1351dbb40f479152
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/supports-web-crypto@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10/8a48788d2866e391354f256aa79b577b2ba1474b50184cbe690467de7e64a79928afece95007ab69a1556f99da97ea129487db091d94489847e14decdc7c9a6f
languageName: node
linkType: hard
"@aws-crypto/util@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/util@npm:3.0.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10/92c835b83d7a888b37b2f2a37c82e58bb8fabb617e371173c488d2a71b916c69ee566f0ea0b3f7f4e16296226c49793f95b3d59fc07a7ca00af91f8f9f29e6c4
languageName: node
linkType: hard
"@aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-firehose@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/client-firehose@npm:3.398.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.398.0"
"@aws-sdk/credential-provider-node": "npm:3.398.0"
"@aws-sdk/middleware-host-header": "npm:3.398.0"
"@aws-sdk/middleware-logger": "npm:3.398.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.398.0"
"@aws-sdk/middleware-signing": "npm:3.398.0"
"@aws-sdk/middleware-user-agent": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@aws-sdk/util-endpoints": "npm:3.398.0"
"@aws-sdk/util-user-agent-browser": "npm:3.398.0"
"@aws-sdk/util-user-agent-node": "npm:3.398.0"
"@smithy/config-resolver": "npm:^2.0.5"
"@smithy/fetch-http-handler": "npm:^2.0.5"
"@smithy/hash-node": "npm:^2.0.5"
"@smithy/invalid-dependency": "npm:^2.0.5"
"@smithy/middleware-content-length": "npm:^2.0.5"
"@smithy/middleware-endpoint": "npm:^2.0.5"
"@smithy/middleware-retry": "npm:^2.0.5"
"@smithy/middleware-serde": "npm:^2.0.5"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.5"
"@smithy/node-http-handler": "npm:^2.0.5"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/smithy-client": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
"@smithy/url-parser": "npm:^2.0.5"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.5"
"@smithy/util-defaults-mode-node": "npm:^2.0.5"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10/ccd8fa2ae639e455e0a257db224ccd51d1b8043ebbd7c4640f8befa0b1f1991d1ef98c07bed67f34a0a3242668b11e5286d1f22a6cc36ce7e4a3cf822e6d240b
languageName: node
linkType: hard
"@aws-sdk/client-kinesis@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/client-kinesis@npm:3.398.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.398.0"
"@aws-sdk/credential-provider-node": "npm:3.398.0"
"@aws-sdk/middleware-host-header": "npm:3.398.0"
"@aws-sdk/middleware-logger": "npm:3.398.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.398.0"
"@aws-sdk/middleware-signing": "npm:3.398.0"
"@aws-sdk/middleware-user-agent": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@aws-sdk/util-endpoints": "npm:3.398.0"
"@aws-sdk/util-user-agent-browser": "npm:3.398.0"
"@aws-sdk/util-user-agent-node": "npm:3.398.0"
"@smithy/config-resolver": "npm:^2.0.5"
"@smithy/eventstream-serde-browser": "npm:^2.0.5"
"@smithy/eventstream-serde-config-resolver": "npm:^2.0.5"
"@smithy/eventstream-serde-node": "npm:^2.0.5"
"@smithy/fetch-http-handler": "npm:^2.0.5"
"@smithy/hash-node": "npm:^2.0.5"
"@smithy/invalid-dependency": "npm:^2.0.5"
"@smithy/middleware-content-length": "npm:^2.0.5"
"@smithy/middleware-endpoint": "npm:^2.0.5"
"@smithy/middleware-retry": "npm:^2.0.5"
"@smithy/middleware-serde": "npm:^2.0.5"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.5"
"@smithy/node-http-handler": "npm:^2.0.5"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/smithy-client": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
"@smithy/url-parser": "npm:^2.0.5"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.5"
"@smithy/util-defaults-mode-node": "npm:^2.0.5"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
"@smithy/util-waiter": "npm:^2.0.5"
tslib: "npm:^2.5.0"
checksum: 10/4f7fe95ca838608e3744eb84c2ce6ac4d4f284f5173d23a9ba4ae995ea7df53dcd9ef4aa3ed054de1de360319bcaed49c69d318b3fb9157f5362a30c2de51d81
languageName: node
linkType: hard
"@aws-sdk/client-personalize-events@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/client-personalize-events@npm:3.398.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.398.0"
"@aws-sdk/credential-provider-node": "npm:3.398.0"
"@aws-sdk/middleware-host-header": "npm:3.398.0"
"@aws-sdk/middleware-logger": "npm:3.398.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.398.0"
"@aws-sdk/middleware-signing": "npm:3.398.0"
"@aws-sdk/middleware-user-agent": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@aws-sdk/util-endpoints": "npm:3.398.0"
"@aws-sdk/util-user-agent-browser": "npm:3.398.0"
"@aws-sdk/util-user-agent-node": "npm:3.398.0"
"@smithy/config-resolver": "npm:^2.0.5"
"@smithy/fetch-http-handler": "npm:^2.0.5"
"@smithy/hash-node": "npm:^2.0.5"
"@smithy/invalid-dependency": "npm:^2.0.5"
"@smithy/middleware-content-length": "npm:^2.0.5"
"@smithy/middleware-endpoint": "npm:^2.0.5"
"@smithy/middleware-retry": "npm:^2.0.5"
"@smithy/middleware-serde": "npm:^2.0.5"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.5"
"@smithy/node-http-handler": "npm:^2.0.5"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/smithy-client": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
"@smithy/url-parser": "npm:^2.0.5"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.5"
"@smithy/util-defaults-mode-node": "npm:^2.0.5"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10/bdd7fa7d9a2945fa90c10361dfd01ad333015b3c94a1b40edb557997e0b0eaaea16840be537b6d27d1278e3e34406fae2babdaae2f3453b798018e0483bc0129
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/client-sso@npm:3.398.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/middleware-host-header": "npm:3.398.0"
"@aws-sdk/middleware-logger": "npm:3.398.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.398.0"
"@aws-sdk/middleware-user-agent": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@aws-sdk/util-endpoints": "npm:3.398.0"
"@aws-sdk/util-user-agent-browser": "npm:3.398.0"
"@aws-sdk/util-user-agent-node": "npm:3.398.0"
"@smithy/config-resolver": "npm:^2.0.5"
"@smithy/fetch-http-handler": "npm:^2.0.5"
"@smithy/hash-node": "npm:^2.0.5"
"@smithy/invalid-dependency": "npm:^2.0.5"
"@smithy/middleware-content-length": "npm:^2.0.5"
"@smithy/middleware-endpoint": "npm:^2.0.5"
"@smithy/middleware-retry": "npm:^2.0.5"
"@smithy/middleware-serde": "npm:^2.0.5"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.5"
"@smithy/node-http-handler": "npm:^2.0.5"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/smithy-client": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
"@smithy/url-parser": "npm:^2.0.5"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.5"
"@smithy/util-defaults-mode-node": "npm:^2.0.5"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10/ad96acab1256615b38421b4a7928dbe7890042856d70412e493c2bcebcbdeb98f608ae412b1a9f0ca115a24485c4cd43e43eca5fe96b620a610abdfe9ec18f5f
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/client-sts@npm:3.398.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/credential-provider-node": "npm:3.398.0"
"@aws-sdk/middleware-host-header": "npm:3.398.0"
"@aws-sdk/middleware-logger": "npm:3.398.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.398.0"
"@aws-sdk/middleware-sdk-sts": "npm:3.398.0"
"@aws-sdk/middleware-signing": "npm:3.398.0"
"@aws-sdk/middleware-user-agent": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@aws-sdk/util-endpoints": "npm:3.398.0"
"@aws-sdk/util-user-agent-browser": "npm:3.398.0"
"@aws-sdk/util-user-agent-node": "npm:3.398.0"
"@smithy/config-resolver": "npm:^2.0.5"
"@smithy/fetch-http-handler": "npm:^2.0.5"
"@smithy/hash-node": "npm:^2.0.5"
"@smithy/invalid-dependency": "npm:^2.0.5"
"@smithy/middleware-content-length": "npm:^2.0.5"
"@smithy/middleware-endpoint": "npm:^2.0.5"
"@smithy/middleware-retry": "npm:^2.0.5"
"@smithy/middleware-serde": "npm:^2.0.5"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.5"
"@smithy/node-http-handler": "npm:^2.0.5"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/smithy-client": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
"@smithy/url-parser": "npm:^2.0.5"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.5"
"@smithy/util-defaults-mode-node": "npm:^2.0.5"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 10/a3164f6d564fc2456a2bacebf8e0117bb9f0e155df781b8d27db826c705de23010d3ed4c4c4926064d7b1cd3c53b6a3eca72724912867d58d8d1fd1200db8efa
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-env@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/bc42da64b029e916b1d45da5d0edcf0b1e7cc74bc43d0aac07f29c7fe6f64091e5b35c312403b5ba9f67f70f523f0a321926849d0fba9f2d2d1da2e076b070bd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.398.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.398.0"
"@aws-sdk/credential-provider-process": "npm:3.398.0"
"@aws-sdk/credential-provider-sso": "npm:3.398.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/16fc9bf4a7bacf360ac7c294a7a51d5c45efa51d5283c750d97822f0e51617a3bdc78ee76b1ab2df0270813ec499b9144c0af2fb5590203c595527d58ea22a42
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-node@npm:3.398.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.398.0"
"@aws-sdk/credential-provider-ini": "npm:3.398.0"
"@aws-sdk/credential-provider-process": "npm:3.398.0"
"@aws-sdk/credential-provider-sso": "npm:3.398.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/4c7cf65f074ef30bc77f5178e603442f5a101527cba9c525ddc7a142e97ce796df7b69a77280f4fc10d722efa9676d5207b107c15b7d96353c38fa4dd4d10ee2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-process@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/b6449f3cd4cc5e17b0449bb0497aaa3afe5cd87559c503c8397a139b3d867eb6c47f587918825d0f61e4bca0c2e40b07876a24d3c1f9787d147e24b723cf1ad1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.398.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.398.0"
"@aws-sdk/token-providers": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/e77a51724692ac4e32dbf56433bfb38faf83403da909807251adf1d04dcdcc96312ab06f82ff0842e2f57ad024a2e497295bb53ce5989d6faade5cc8cc488b4d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/2b790f0be8440cf3b1b193f9fb11402b06a14ceac3f774360a860dc3839670894f6204d839d8a74aeb6b5af7bb232d6fd5fac5f5174e90693b96ee9c9b4f1d52
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/middleware-host-header@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/87cfe1ca6e01fedd5ea3fa81593e104081cb9b4f6a831c6a9f876bb5e10ab6530603ee0086e8bad59a203962f1c4b3732a008d8162868a48ffda79adeae78329
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/middleware-logger@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/10d6930906845f48881d1c516de2a463af61fca59b5645bd9f1cfa7f3c826a35fbdf78128c51bdb3755c3cc2d3b4b2c8033760316e6d1fda3389eb6e79f5fead
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/41888a61f005f73f90c84265c92ae65d648ea5d0c920206d17d5379cc59d9fffb48e84534ff8c652a79a53f4f9911b01b787d19d4745c9ba1a311d10c5adb639
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sts@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/middleware-sdk-sts@npm:3.398.0"
dependencies:
"@aws-sdk/middleware-signing": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/2f1d748e44dde10d894f6787e58d7f1d76249287eda470d7b191a8079da47e34b45a9bd44a94ae35edf79a90ce5c2be0ad44c4038f2c46ecda1407c67fe3e326
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/middleware-signing@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
"@smithy/util-middleware": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10/19dac7cc19b737e9246923e9351eb42c57b26a210dca770570220671d7da8e5af17f4da062cf6917f92dd7a75df858a6a5bf616854412c8c4b03573c0e640612
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@aws-sdk/util-endpoints": "npm:3.398.0"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/a104ec2e410ad56c83cc5cf822a86b3d513ad309a9e9ecb7810b6a062745ef554a93c35e3818a6b42ff198de0ebefc24dfb6ec4bfb4ec96f9db50a7bb82e52a2
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/token-providers@npm:3.398.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/middleware-host-header": "npm:3.398.0"
"@aws-sdk/middleware-logger": "npm:3.398.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.398.0"
"@aws-sdk/middleware-user-agent": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@aws-sdk/util-endpoints": "npm:3.398.0"
"@aws-sdk/util-user-agent-browser": "npm:3.398.0"
"@aws-sdk/util-user-agent-node": "npm:3.398.0"
"@smithy/config-resolver": "npm:^2.0.5"
"@smithy/fetch-http-handler": "npm:^2.0.5"
"@smithy/hash-node": "npm:^2.0.5"
"@smithy/invalid-dependency": "npm:^2.0.5"
"@smithy/middleware-content-length": "npm:^2.0.5"
"@smithy/middleware-endpoint": "npm:^2.0.5"
"@smithy/middleware-retry": "npm:^2.0.5"
"@smithy/middleware-serde": "npm:^2.0.5"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.5"
"@smithy/node-http-handler": "npm:^2.0.5"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/smithy-client": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
"@smithy/url-parser": "npm:^2.0.5"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.5"
"@smithy/util-defaults-mode-node": "npm:^2.0.5"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10/5d8d1f803b02bd3da14788003e0af7f4192ad6576b4afdc92e9cd3816e760872a6539d4c5eaa5d535b7b5adaba66ec302ebd92200f75cf4d3d8ab4b64cd881ac
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.387.0":
version: 3.387.0
resolution: "@aws-sdk/types@npm:3.387.0"
dependencies:
"@smithy/types": "npm:^2.1.0"
tslib: "npm:^2.5.0"
checksum: 10/9a04bcf495f126b53c4feeb9ff84db4c741611292d976a55d7f4aac5612d9ebbc8ca64a449ab502dcc97988c300d178406cc0ab4bea415e77d4eead7f33e9675
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/types@npm:3.398.0"
dependencies:
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/bb0a8682f9ca8d3dce1541ea5310bf2fc04d3458a7060525af0031f93e7ab9a5ba2fb2f78d196b55db1635b3d13e0698443107e778b7c5ebaef58af4334a8c5a
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.523.0
resolution: "@aws-sdk/types@npm:3.523.0"
dependencies:
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10/2a33cc1a68d259de199526efde22da2551bd4b6f0f1265d4d378a83b87a22eb88fb3c5b26aa6d649392c04e22aadfd88e56e86d37c304260a6ccb7275d76ed27
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/util-endpoints@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
tslib: "npm:^2.5.0"
checksum: 10/92b24d13b61bce87e26f23898117b883f2e371f0d9cac881b1d806b4d98912c2396af5f981b739aa7c8112acee42fe262532954fdc35e9ea31fff9deb412cbc3
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.495.0
resolution: "@aws-sdk/util-locate-window@npm:3.495.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10/8823f6b91ff5d314bb04f156289623fa1a66909ec15363c4b3d2a3e91590bed1cf9b40d55444535ee4fa790a93e17ee86c7a7ac98731e9cbc2708bebd835922c
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/types": "npm:^2.2.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.5.0"
checksum: 10/ea5f26d52f762ba1e862d78b5cea7b01e049e13d1a7e04d177775f8218835fda9779b0fab0b18be96ac16870e5cf09f889ae3f5943488771b156fae62d408151
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/node-config-provider": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/2a5a4fb2ef8337f3a753991fe9096a4b8ac6de107999de7cb026af92b9e586278097cabc3e85b298ca8fbe459ff1c67f7ba3c80b5f90a9e630f97f74e7c3d1e4
languageName: node
linkType: hard
"@aws-sdk/util-utf8-browser@npm:^3.0.0":
version: 3.259.0
resolution: "@aws-sdk/util-utf8-browser@npm:3.259.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 10/bdcf29a92a9a1010b44bf8bade3f1224cb6577a6550b39df97cc053d353f2868d355c25589d61e1da54691d65350d8578a496840ad770ed916a6c3af0971f657
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.10.4":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: 10/44e58529c9d93083288dc9e649c553c5ba997475a7b0758cc3ddc4d77b8a7d985dbe78cc39c9bbc61f26d50af6da1ddf0a3427eae8cc222a9370619b671ed8f5
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 10/df882d2675101df2d507b95b195ca2f86a3ef28cb711c84f37e79ca23178e13b9f0d8b522774211f51e40168bf5142be4c1c9776a150cddb61a0d5bf3e95750b
languageName: node
linkType: hard
"@babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 10/62fef9b5bcea7131df4626d009029b1ae85332042f4648a4ce6e740c3fd23112603c740c45575caec62f260c96b11054d3be5987f4981a5479793579c3aac71f
languageName: node
linkType: hard
"@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.13.10, @babel/runtime@npm:^7.9.2":
version: 7.24.0
resolution: "@babel/runtime@npm:7.24.0"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10/8d32c7e116606ea322b89f9fde8ffae6be9503b549dc0d0abb38bd9dc26e87469b9fb7a66964cc089ee558fd0a97d304fb0a3cfec140694764fb0d71b6a6f5e4
languageName: node
linkType: hard
"@better-giving/assets@npm:1.0.18":
version: 1.0.18
resolution: "@better-giving/assets@npm:1.0.18"
checksum: 10/665c760809b29ddd6369815f50def761f28dbd9ca858624158f54b68b7eeb1582a519d4ff09ec864ba8f035248ffebe4ae1b162d5596b75e1707a24bacb9e508
languageName: node
linkType: hard
"@better-giving/registration@npm:1.0.24":
version: 1.0.24
resolution: "@better-giving/registration@npm:1.0.24"
peerDependencies:
valibot: 0.42.0
checksum: 10/8f485d84d8fa1d14635d7d784f486b0cc38e98b215b904702c34f0d488450129e7da769dff1f0cbe4105a1a5842d090045babb8e41bd90790320544bc9a03fe7
languageName: node
linkType: hard
"@biomejs/biome@npm:1.8.1":
version: 1.8.1
resolution: "@biomejs/biome@npm:1.8.1"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:1.8.1"
"@biomejs/cli-darwin-x64": "npm:1.8.1"
"@biomejs/cli-linux-arm64": "npm:1.8.1"
"@biomejs/cli-linux-arm64-musl": "npm:1.8.1"
"@biomejs/cli-linux-x64": "npm:1.8.1"
"@biomejs/cli-linux-x64-musl": "npm:1.8.1"
"@biomejs/cli-win32-arm64": "npm:1.8.1"
"@biomejs/cli-win32-x64": "npm:1.8.1"
dependenciesMeta:
"@biomejs/cli-darwin-arm64":
optional: true
"@biomejs/cli-darwin-x64":
optional: true
"@biomejs/cli-linux-arm64":
optional: true
"@biomejs/cli-linux-arm64-musl":
optional: true
"@biomejs/cli-linux-x64":
optional: true
"@biomejs/cli-linux-x64-musl":
optional: true
"@biomejs/cli-win32-arm64":
optional: true
"@biomejs/cli-win32-x64":
optional: true
bin:
biome: bin/biome
checksum: 10/93732980dd65b6bca772e5b7980f46f061ca10e5bcb22c0b24b1d9e9018445bd19cd565e16302e5588c4bf46c2a8a6c394a62650b42d129da281385ebba9bb1c
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:1.8.1":
version: 1.8.1
resolution: "@biomejs/cli-darwin-arm64@npm:1.8.1"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:1.8.1":
version: 1.8.1
resolution: "@biomejs/cli-darwin-x64@npm:1.8.1"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:1.8.1":
version: 1.8.1
resolution: "@biomejs/cli-linux-arm64-musl@npm:1.8.1"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:1.8.1":
version: 1.8.1
resolution: "@biomejs/cli-linux-arm64@npm:1.8.1"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:1.8.1":
version: 1.8.1
resolution: "@biomejs/cli-linux-x64-musl@npm:1.8.1"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:1.8.1":
version: 1.8.1
resolution: "@biomejs/cli-linux-x64@npm:1.8.1"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:1.8.1":
version: 1.8.1
resolution: "@biomejs/cli-win32-arm64@npm:1.8.1"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:1.8.1":
version: 1.8.1
resolution: "@biomejs/cli-win32-x64@npm:1.8.1"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@bundled-es-modules/cookie@npm:^2.0.0":
version: 2.0.0
resolution: "@bundled-es-modules/cookie@npm:2.0.0"
dependencies:
cookie: "npm:^0.5.0"
checksum: 10/c8ef02aa5d3f6c786cfa407e1c93b4af29c600eb09990973f47a7a49e4771c1bec37c8f8e567638bb9cbc41f4e38d065ff1d8eaf9bf91f0c3613a6d60bc82c8c
languageName: node
linkType: hard
"@bundled-es-modules/statuses@npm:^1.0.1":
version: 1.0.1
resolution: "@bundled-es-modules/statuses@npm:1.0.1"
dependencies:
statuses: "npm:^2.0.1"
checksum: 10/9bf6a2bcf040a66fb805da0e1446041fd9def7468bb5da29c5ce02adf121a3f7cec123664308059a62a46fcaee666add83094b76df6dce72e5cafa8e6bebe60d
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/aix-ppc64@npm:0.19.12"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-arm64@npm:0.19.12"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-arm@npm:0.19.12"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-x64@npm:0.19.12"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/darwin-arm64@npm:0.19.12"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/darwin-x64@npm:0.19.12"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/freebsd-arm64@npm:0.19.12"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/freebsd-x64@npm:0.19.12"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.19.12":
version: 0.19.12