-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathyarn.lock
More file actions
8884 lines (8035 loc) · 315 KB
/
yarn.lock
File metadata and controls
8884 lines (8035 loc) · 315 KB
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: 10c0
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @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: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
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: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.980.0":
version: 3.980.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.980.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.4"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.5"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.980.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.3"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7a247502e8346882d6f656bdc8c17f2101ef20b500eda51b088ae2e8cf815e67eeffb3aa3689f063465385e53af162e4ec632ce7d0034259d85f2b27374c328e
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.994.0":
version: 3.994.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.994.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/credential-provider-node": "npm:^3.972.10"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.11"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.994.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.9"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.2"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.16"
"@smithy/middleware-retry": "npm:^4.4.33"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.5"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.32"
"@smithy/util-defaults-mode-node": "npm:^4.2.35"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/312de89b7245fcdf6668d8b9b7750b10799ca46dd3c93131c758e23594125f5e0ec46950cfff7babdb0021ce04bda34c42222e058a7485836338ac270b224602
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.993.0":
version: 3.993.0
resolution: "@aws-sdk/client-sso@npm:3.993.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.11"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.993.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.9"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.2"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.16"
"@smithy/middleware-retry": "npm:^4.4.33"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.5"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.32"
"@smithy/util-defaults-mode-node": "npm:^4.2.35"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0ed0c389a79d9bf33020c8ea51f250c014ddbda326bc0d3551675a91441fccf03958f6a51ad224329451c31284f4daa3333ebcb91644bb904edc229dbd3dfd5c
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.973.11, @aws-sdk/core@npm:^3.973.5":
version: 3.973.11
resolution: "@aws-sdk/core@npm:3.973.11"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/xml-builder": "npm:^3.972.5"
"@smithy/core": "npm:^3.23.2"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/signature-v4": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.5"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c39a54e7c3a30845ee8651650c5de05a0eb03b32e90d0d91b630be37687feefe73dccc000758c831fcc1faf84d999f4dd534cc6fd422e714b90dbcbef11b236e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.972.3"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.980.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/aaebb8e67bad5a8a1d10b99a1be492d5ffb20952b91cc622c37eec69a720c32a7dcde2f5af79627bd85a0880ea3e485385f24d53e5fe369b68eaff0fb5d40df6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-env@npm:3.972.9"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d60b9b183b400763d6943c502d0b5784db44fa5772234f8f43760061d5a9c75bf105017525d10917895c1859d299ee0dc45c818a7c068bb4168c92bb23dcb742
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.11":
version: 3.972.11
resolution: "@aws-sdk/credential-provider-http@npm:3.972.11"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.5"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-stream": "npm:^4.5.12"
tslib: "npm:^2.6.2"
checksum: 10c0/e195b04292a3c3b78d58e0f84f7358e694a4692986acb94996127f73dee98cc044de62453b55f47c7909ebf9312695d0b53ea287f2feef4e8d837f07498ed4ef
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.9"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/credential-provider-env": "npm:^3.972.9"
"@aws-sdk/credential-provider-http": "npm:^3.972.11"
"@aws-sdk/credential-provider-login": "npm:^3.972.9"
"@aws-sdk/credential-provider-process": "npm:^3.972.9"
"@aws-sdk/credential-provider-sso": "npm:^3.972.9"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.9"
"@aws-sdk/nested-clients": "npm:3.993.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8eb45ad42a778991f2d446f004c9b71d931cc4bd5b740aea608017723db9d18c8d12b53025889b82f97c6be3cee38480fc56ff7b41e3b68cab5d08bb5f901406
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-login@npm:3.972.9"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/nested-clients": "npm:3.993.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9fea532867c6abafb361896895337990ac7a036961596b62e45ac57d4119df40419f840b31257c33cc533f6da88511b59e386ae87d0c0c35a7c0b213c1b8b0b5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.10, @aws-sdk/credential-provider-node@npm:^3.972.4":
version: 3.972.10
resolution: "@aws-sdk/credential-provider-node@npm:3.972.10"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.9"
"@aws-sdk/credential-provider-http": "npm:^3.972.11"
"@aws-sdk/credential-provider-ini": "npm:^3.972.9"
"@aws-sdk/credential-provider-process": "npm:^3.972.9"
"@aws-sdk/credential-provider-sso": "npm:^3.972.9"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.9"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a07342d94effc497e99fdae9d4978bea54bd1ec87dcdfa71cc7d72f184061a473f829f4496b8f1e84a81cdeea4ca6482eba213b9ecef68ef5c7b1e3d9579da34
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-process@npm:3.972.9"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/19902b80e0129a841d9f6c44104e26e67489951694023d1df9b66eeed1f3c4a991670868d5925702119ac3b70badd17b69070ab5390fc6ae860801f933a571d4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.9"
dependencies:
"@aws-sdk/client-sso": "npm:3.993.0"
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/token-providers": "npm:3.993.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/54269216983f6adb36738b5f520c91a505fd8f5bc2c5925ccf461a8cacface167c1339fe87d4c20a61a5a334e690bc4ae91f9bae82787aa291d27430773052d5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.9"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/nested-clients": "npm:3.993.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c7fd1a29e1eb3c3b7bb34b49fea404da53a0b974c37e19366a8e1954b7bf86644616f59b5ce5a8a909b5b8aa3843d0cfb7a4ecce0f52de37ffe0863a6d2e796e
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.186.0":
version: 3.994.0
resolution: "@aws-sdk/credential-providers@npm:3.994.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.994.0"
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/credential-provider-cognito-identity": "npm:^3.972.3"
"@aws-sdk/credential-provider-env": "npm:^3.972.9"
"@aws-sdk/credential-provider-http": "npm:^3.972.11"
"@aws-sdk/credential-provider-ini": "npm:^3.972.9"
"@aws-sdk/credential-provider-login": "npm:^3.972.9"
"@aws-sdk/credential-provider-node": "npm:^3.972.10"
"@aws-sdk/credential-provider-process": "npm:^3.972.9"
"@aws-sdk/credential-provider-sso": "npm:^3.972.9"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.9"
"@aws-sdk/nested-clients": "npm:3.994.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.2"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0fe159dd4f4d027655aa0df26be2d88c3743e1915a6ad253184c4c70899385e08edbcdeb26a676dd2f760626b5c3d1e790ad2ba3fd9a7aba3ad1af07e8b7c179
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/middleware-host-header@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/680a1934403b1544cbe1998ca22d684ff28bbbea78db8bea515bae80f7ede7ce762b2eb6fd5a56030b3a9a56a964e1c62ad40a8e2343e06862e1ccaa0cc3331b
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/middleware-logger@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3cb6c1eddb7344f14f634fe1d6c9e7571ec8fe856ccf62dab71fae5fcef302f3b0e97d9ddb5ee90a427e14f28672cf406e8dadf30693e590f0d2a7eb1b439934
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cc3e30e6968f18a5456c9b786b95579f688dd429422f6792211ebeaa462cf87186fd93996a8f034ce4abd95f39cfc0071c1cb801ad751be766617aac585cbb09
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.11, @aws-sdk/middleware-user-agent@npm:^3.972.5":
version: 3.972.11
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.11"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.993.0"
"@smithy/core": "npm:^3.23.2"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e7c622fada34cb860ea20af2a95e80f63bc5d5ed26b12e7a17c7fa889b8e88874b5325eacd398124c552778602c2e745e1fc8e708059bcb1c526bea78d871145
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.993.0":
version: 3.993.0
resolution: "@aws-sdk/nested-clients@npm:3.993.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.11"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.993.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.9"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.2"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.16"
"@smithy/middleware-retry": "npm:^4.4.33"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.5"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.32"
"@smithy/util-defaults-mode-node": "npm:^4.2.35"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d7f3a578b88d62346fb1ae436b2f61713d7b74bae6ff7a3d91bc67be90eb8d54fb5cec361e92d54341713d4e6f46b2610e0e7232967fe6c66e10977d9547c56b
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.994.0":
version: 3.994.0
resolution: "@aws-sdk/nested-clients@npm:3.994.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.11"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.994.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.9"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.2"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.16"
"@smithy/middleware-retry": "npm:^4.4.33"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.5"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.32"
"@smithy/util-defaults-mode-node": "npm:^4.2.35"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/efeb1405ff65c3522be9f68fa65b8cd306436f2e0276fbbfab085fbad634737db9c4378cb9d018a40280dbe3f7613973f9e47ac41ef3e17039f4284768e04845
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/region-config-resolver@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6682f729ba131b9067f7af77bcb49f3cae41668614e5c3b21ce8f091346a6961e852d0b72e15f262ad1fdccc9f4190680b35f756244cd691b6314b2866e071d9
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.993.0":
version: 3.993.0
resolution: "@aws-sdk/token-providers@npm:3.993.0"
dependencies:
"@aws-sdk/core": "npm:^3.973.11"
"@aws-sdk/nested-clients": "npm:3.993.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3a26b115aa5d4802c80fe52e6793d82d5e959c58d47b8f571531ed72703e3b04f548fe360e2da444f8ba6867d847ecd1e3565cfaaaaee20aaf2295044d1343fb
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.973.1":
version: 3.973.1
resolution: "@aws-sdk/types@npm:3.973.1"
dependencies:
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8a4a183cc39b4d6f4d065ece884b50d397a54b17add32b649f49adbe676174e7bee2c3c94394fc5227a4fccb96c34482291a1eb2702158e1dbb12c441af32863
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.980.0":
version: 3.980.0
resolution: "@aws-sdk/util-endpoints@npm:3.980.0"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/0de91a4d1e2382f45fbfcbd4e1424d2088fd58479483235b5dec23875a10fe11502a2482295ef14763793eeb607c4a0c1f75d2fc4101868e33f0837deab9a6ba
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.993.0":
version: 3.993.0
resolution: "@aws-sdk/util-endpoints@npm:3.993.0"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/b6186a1adc42f6947b5d070698cabcd2e69abb133f186ea90b0c97534582cccb42f2eabe38bc2158cbc2189b409a1c4bd6ad9516f56ba61d4efcd1e0c1b9c575
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.994.0":
version: 3.994.0
resolution: "@aws-sdk/util-endpoints@npm:3.994.0"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/3a316e085d255dceefd7369f2d7f85e740fd16f6f64f4ae0d20f698f471e1f370e4669d001ab85230830541e9e074f18e499f182e4e062f5ac8fa152f27dc7af
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.965.4
resolution: "@aws-sdk/util-locate-window@npm:3.965.4"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/c87bef4cbeef564cb101f3d80b1dee008667e5a8c301b974dc25ec275e8d503a3226d3740bbfc4c1e17781719b7b8f06a25deea8196919caeaf87b0b8117286d
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/637f1396cfbca7b352ffaf332998c4223c35d0fa41431c106151a34c6bfe7c9e32e6a6dc7e75c495714e05f3729ae1f61996da923156c3edcb33e217e24328ad
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:^3.972.3, @aws-sdk/util-user-agent-node@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/util-user-agent-node@npm:3.972.9"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:^3.972.11"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/740f4d0f4ee71f856f53a454bccd45dfc4456d26e0e70c97c4574a3c92c06a3714475dbf4414dcbdb86a8299317f2380ad6a5fa16e3a8f932750a340658b1220
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:^3.972.5":
version: 3.972.5
resolution: "@aws-sdk/xml-builder@npm:3.972.5"
dependencies:
"@smithy/types": "npm:^4.12.0"
fast-xml-parser: "npm:5.3.6"
tslib: "npm:^2.6.2"
checksum: 10c0/b8957bd382fa79f16aef06491d6d7ac52ac31fd9b7a4997c7ad71657c0a293c4ccfdaa1af4ae32f2e90d1fbd0796307e6eccd03eb7cd93a28f0d4c43275524e3
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.2":
version: 0.2.3
resolution: "@aws/lambda-invoke-store@npm:0.2.3"
checksum: 10c0/3869a5d2494ff81fba306d603c0f2e36c59f89c4efdffd1105a208a595da77059547209a163b6f0c1b716e9d273ce24f94dcbd5a08bad74b2602d13711b0cb3b
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 10c0/eb42729851adca56d19a08e48d5a1e95efd2a32c55ae0323de8119052be0510d4b7a1611f2abcbf28c044a6c11e6b7d38f99fccdad7429300c37a8ea5fb95b44
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.2.0":
version: 1.8.1
resolution: "@emnapi/runtime@npm:1.8.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/f4929d75e37aafb24da77d2f58816761fe3f826aad2e37fa6d4421dac9060cbd5098eea1ac3c9ecc4526b89deb58153852fa432f87021dc57863f2ff726d713f
languageName: node
linkType: hard
"@fast-csv/format@npm:4.3.5":
version: 4.3.5
resolution: "@fast-csv/format@npm:4.3.5"
dependencies:
"@types/node": "npm:^14.0.1"
lodash.escaperegexp: "npm:^4.1.2"
lodash.isboolean: "npm:^3.0.3"
lodash.isequal: "npm:^4.5.0"
lodash.isfunction: "npm:^3.0.9"
lodash.isnil: "npm:^4.0.0"
checksum: 10c0/06c6b3310edaf08033236539b93ebed027ea36f9f8a3cf42069034d4f75dff103a35930c9a9f01e2e344d8836fb2cc55a16affb5c345a8b3682d5a0cb031e0ea
languageName: node
linkType: hard
"@fast-csv/parse@npm:4.3.6":
version: 4.3.6
resolution: "@fast-csv/parse@npm:4.3.6"
dependencies:
"@types/node": "npm:^14.0.1"
lodash.escaperegexp: "npm:^4.1.2"
lodash.groupby: "npm:^4.6.0"
lodash.isfunction: "npm:^3.0.9"
lodash.isnil: "npm:^4.0.0"
lodash.isundefined: "npm:^3.0.1"
lodash.uniq: "npm:^4.5.0"
checksum: 10c0/dfd1834bfcea2665bd9db05b21793f79fd3502abdf955d6d63f7bf9724082f0b67a6379687b2945ca8d513b4d383a7bdaeed72a03cabd9191032b81448379917
languageName: node
linkType: hard
"@img/sharp-darwin-arm64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-darwin-arm64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-darwin-arm64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-darwin-arm64":
optional: true
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-darwin-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-darwin-x64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-darwin-x64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-darwin-x64":
optional: true
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-arm64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-x64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm@npm:1.0.5":
version: 1.0.5
resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-s390x@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-x64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-x64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linux-arm64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-arm64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-arm64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linux-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-arm@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-arm@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-arm": "npm:1.0.5"
dependenciesMeta:
"@img/sharp-libvips-linux-arm":
optional: true
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-s390x@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-s390x@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-s390x": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linux-s390x":
optional: true
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-x64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-x64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linux-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linuxmusl-arm64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linuxmusl-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-wasm32@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-wasm32@npm:0.33.5"
dependencies:
"@emnapi/runtime": "npm:^1.2.0"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@img/sharp-win32-ia32@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-win32-ia32@npm:0.33.5"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@img/sharp-win32-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-win32-x64@npm:0.33.5"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@mongodb-js/saslprep@npm:^1.1.0":
version: 1.4.6
resolution: "@mongodb-js/saslprep@npm:1.4.6"
dependencies:
sparse-bitfield: "npm:^3.0.3"
checksum: 10c0/bc429bad416b413ded91ef5b74da544b6ce819c5cba49bdad90fd318215e012c22b3c5eb8e2e12fd437d5efa6b8c00361b61dd147483b3c312962574a3831afd
languageName: node
linkType: hard
"@noble/hashes@npm:^1.1.5":
version: 1.8.0
resolution: "@noble/hashes@npm:1.8.0"
checksum: 10c0/06a0b52c81a6fa7f04d67762e08b2c476a00285858150caeaaff4037356dd5e119f45b2a530f638b77a5eeca013168ec1b655db41bae3236cb2e9d511484fc77
languageName: node
linkType: hard
"@npmcli/agent@npm:^4.0.0":
version: 4.0.0
resolution: "@npmcli/agent@npm:4.0.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^11.2.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/f7b5ce0f3dd42c3f8c6546e8433573d8049f67ef11ec22aa4704bc41483122f68bf97752e06302c455ead667af5cb753e6a09bff06632bc465c1cfd4c4b75a53
languageName: node
linkType: hard
"@npmcli/fs@npm:^5.0.0":
version: 5.0.0
resolution: "@npmcli/fs@npm:5.0.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/26e376d780f60ff16e874a0ac9bc3399186846baae0b6e1352286385ac134d900cc5dafaded77f38d77f86898fc923ae1cee9d7399f0275b1aa24878915d722b
languageName: node
linkType: hard
"@paralleldrive/cuid2@npm:^2.2.2":
version: 2.3.1
resolution: "@paralleldrive/cuid2@npm:2.3.1"
dependencies:
"@noble/hashes": "npm:^1.1.5"
checksum: 10c0/6576b73de49d826b0f33cbab88424dec1f6fa454a9e59a7b621f78c2cfdd2e59d7f48175826d698940a717f45eeb5e87a508583a7316e608f6a05a861a40c129
languageName: node
linkType: hard
"@sinonjs/commons@npm:^3.0.0, @sinonjs/commons@npm:^3.0.1":
version: 3.0.1
resolution: "@sinonjs/commons@npm:3.0.1"
dependencies:
type-detect: "npm:4.0.8"
checksum: 10c0/1227a7b5bd6c6f9584274db996d7f8cee2c8c350534b9d0141fc662eaf1f292ea0ae3ed19e5e5271c8fd390d27e492ca2803acd31a1978be2cdc6be0da711403
languageName: node
linkType: hard
"@sinonjs/fake-timers@npm:^11.2.2":
version: 11.3.1
resolution: "@sinonjs/fake-timers@npm:11.3.1"
dependencies:
"@sinonjs/commons": "npm:^3.0.1"
checksum: 10c0/c4f96ea7c3ab0e1a5fc1e2e1201e984a9302841a9fb10059120ce3b6789dae0f851c8827cf16b052a6f87db9a098cdd36f7067246e7a9b71da1d5a2c3d3a9f3d
languageName: node
linkType: hard
"@sinonjs/samsam@npm:^8.0.0":
version: 8.0.3
resolution: "@sinonjs/samsam@npm:8.0.3"
dependencies:
"@sinonjs/commons": "npm:^3.0.1"
type-detect: "npm:^4.1.0"
checksum: 10c0/9bf57a8f8a484b3455696786e1679db7f0d6017de62099ee304bd364281fcb20895b7c6b05292aa10fecf76df27691e914fc3e1cb8a56d88c027e87d869dcf0c
languageName: node
linkType: hard
"@sinonjs/text-encoding@npm:^0.7.2":
version: 0.7.3
resolution: "@sinonjs/text-encoding@npm:0.7.3"
checksum: 10c0/b112d1e97af7f99fbdc63c7dbcd35d6a60764dfec85cfcfff532e55cce8ecd8453f9fa2139e70aea47142c940fd90cd201d19f370b9a0141700d8a6de3116815
languageName: node
linkType: hard
"@smithy/abort-controller@npm:^4.2.8":
version: 4.2.8
resolution: "@smithy/abort-controller@npm:4.2.8"
dependencies:
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/2c2094ebd0b842a478746da74a74feaf579ca5fe03d7a1a7868ba7d048d88e2479edad8d2791d22d7bb9e5e774c1df4201a3ffa360c3aefaf158f692c45594f8
languageName: node
linkType: hard
"@smithy/config-resolver@npm:^4.4.6":
version: 4.4.6
resolution: "@smithy/config-resolver@npm:4.4.6"
dependencies:
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/ab3de62329d53ca886d0efb2e10e904c3d3a7e564cda6b4d710d8512d2f4b9980e5346614da511d978c6a9a6c3c71f968e7c752dac36dfd61219d2e6fd0695cc
languageName: node
linkType: hard