-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathyarn.lock
12490 lines (11265 loc) · 438 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: 10c0
"@apify/actor-templates@npm:^0.1.5":
version: 0.1.5
resolution: "@apify/actor-templates@npm:0.1.5"
checksum: 10c0/69b8fb70da078a5373316c6478bb56739876d11ca4d92fa5fe1cbbcad6b88ad1e02097c90b934f3817ea502530699a076106894b80b4c886ca8887730a7b3177
languageName: node
linkType: hard
"@apify/consts@npm:^2.20.0, @apify/consts@npm:^2.23.0, @apify/consts@npm:^2.25.0, @apify/consts@npm:^2.36.0, @apify/consts@npm:^2.38.0":
version: 2.38.0
resolution: "@apify/consts@npm:2.38.0"
checksum: 10c0/4600d45674ded3d346474f02ec6d6b18831c059cbf83bbc3cf81a3976b1112b27dcb593e328432ede9b5509b05b7c3de6f7432e3b469f86847e3586da7b32422
languageName: node
linkType: hard
"@apify/datastructures@npm:^2.0.0":
version: 2.0.2
resolution: "@apify/datastructures@npm:2.0.2"
checksum: 10c0/d52b852bdc72be5e7debe72a90bd15deede574ae0d6313556fa8da148c87e36a3028105423e8b498569fd52c7b71579e5c517d1a3e89a7ffc6c6df512add0335
languageName: node
linkType: hard
"@apify/eslint-config-ts@npm:^0.4.1":
version: 0.4.1
resolution: "@apify/eslint-config-ts@npm:0.4.1"
dependencies:
"@apify/eslint-config": "npm:^0.4.0"
eslint-import-resolver-typescript: "npm:^3.6.1"
eslint-plugin-import: "npm:^2.29.0"
eslint-plugin-jsx-a11y: "npm:^6.7.1"
eslint-plugin-react: "npm:^7.33.2"
eslint-plugin-react-hooks: "npm:^4.6.0"
peerDependencies:
"@typescript-eslint/eslint-plugin": "*"
"@typescript-eslint/parser": "*"
eslint: "*"
typescript: "*"
checksum: 10c0/4c3695634280fec8878cc6e43538be5913deec9b49cd4bfbe2e1b70a8eb4d449ec1bdde3e5b1826bff2558ef8a15afaf9730714156c1e622218d70523e467962
languageName: node
linkType: hard
"@apify/eslint-config@npm:^0.4.0":
version: 0.4.0
resolution: "@apify/eslint-config@npm:0.4.0"
dependencies:
eslint-config-airbnb: "npm:^19.0.0"
eslint-config-airbnb-base: "npm:^15.0.0"
eslint-import-resolver-typescript: "npm:^2.5.0"
eslint-plugin-import: "npm:^2.25.3"
eslint-plugin-jsx-a11y: "npm:^6.5.1"
eslint-plugin-react: "npm:^7.27.0"
eslint-plugin-react-hooks: "npm:^4.3.0"
peerDependencies:
eslint: "*"
checksum: 10c0/ad8422b05d7b352d4dee2972c13b3c589a5750696aeca8d36b42689525bc795692cfc9057c58608cafcb1031656e6313a6f322a50f08b2e2998b549d31aac3e0
languageName: node
linkType: hard
"@apify/input_schema@npm:^3.12.0":
version: 3.13.1
resolution: "@apify/input_schema@npm:3.13.1"
dependencies:
"@apify/consts": "npm:^2.38.0"
acorn-loose: "npm:^8.4.0"
countries-list: "npm:^3.0.0"
peerDependencies:
ajv: ^8.0.0
checksum: 10c0/911f8fb5280cdf0fb14c830dc109c0edffc701d5148dacc70044d715ce3cdaf72ea355c51e5b56a29de161dfcaf59a70abf65f1765194e4d04d48b76c8bf8092
languageName: node
linkType: hard
"@apify/input_secrets@npm:^1.1.40":
version: 1.1.68
resolution: "@apify/input_secrets@npm:1.1.68"
dependencies:
"@apify/log": "npm:^2.5.14"
"@apify/utilities": "npm:^2.15.1"
ow: "npm:^0.28.2"
checksum: 10c0/e7359b8261bb8f68f313610b1b41933063f4ae86539555b002a4e0de20fc5c814f62ca84c85f1a635b12ff17f78e85b6e82b65b013594413ac6357868cefe98d
languageName: node
linkType: hard
"@apify/log@npm:^2.2.6, @apify/log@npm:^2.4.0, @apify/log@npm:^2.4.3, @apify/log@npm:^2.5.14":
version: 2.5.14
resolution: "@apify/log@npm:2.5.14"
dependencies:
"@apify/consts": "npm:^2.38.0"
ansi-colors: "npm:^4.1.1"
checksum: 10c0/542708d6049b299f1fec2ac1a57bc4651400dc9ae11834534253d440df8697c3786c3d856261053e5822fb07a7c3aa29a9a4eda621edc62ad67612826a6d05e7
languageName: node
linkType: hard
"@apify/ps-tree@npm:^1.2.0":
version: 1.2.0
resolution: "@apify/ps-tree@npm:1.2.0"
dependencies:
event-stream: "npm:3.3.4"
bin:
ps-tree: bin/ps-tree.js
checksum: 10c0/02420412f761f5090c3abd7b38264e4564f8c64901de0f50e538882cdedf669845292748c38ecbf064f1e33d2cccdcde5883eaa0a2233e9dd414f8a9e77f1599
languageName: node
linkType: hard
"@apify/pseudo_url@npm:^2.0.30":
version: 2.0.55
resolution: "@apify/pseudo_url@npm:2.0.55"
dependencies:
"@apify/log": "npm:^2.5.14"
checksum: 10c0/c5651d709e969d1c488774130df0e3e1146406202370d3f96ba0d108785a567ebcd5b9a4842bd9a49d58e0e5463a78aad125a300fcd92da5be63f261e28adb75
languageName: node
linkType: hard
"@apify/timeout@npm:^0.3.0":
version: 0.3.1
resolution: "@apify/timeout@npm:0.3.1"
checksum: 10c0/3019f9ef14bad1e3675553e85032f87ef5a2552dcbb1d4b26305e00591647999000641a0660d30838ea1a6aaab558881bc9f5514e52614969bca9bdccaf96fa6
languageName: node
linkType: hard
"@apify/tsconfig@npm:^0.1.0":
version: 0.1.0
resolution: "@apify/tsconfig@npm:0.1.0"
checksum: 10c0/aa3363b0fb68e1eb000c1e71fcc50b966c2bfbf8533df5b787bbb1a57752cf9ab516eb599e06d8fd67c187941b93dde044262b0b590db8e6409d146885a7bba2
languageName: node
linkType: hard
"@apify/utilities@npm:^2.15.1, @apify/utilities@npm:^2.7.10, @apify/utilities@npm:^2.9.3":
version: 2.15.1
resolution: "@apify/utilities@npm:2.15.1"
dependencies:
"@apify/consts": "npm:^2.38.0"
"@apify/log": "npm:^2.5.14"
checksum: 10c0/1269731a571f3ff85da0829f6bcec5b4544f94b8792fedc7ba6914406b1e9c75ef928bb94ed02c691f02f05d401dc7cb3a0c9a5eea6b47f63296adc8fc5f4ac2
languageName: node
linkType: hard
"@arcanis/slice-ansi@npm:^1.1.1":
version: 1.1.1
resolution: "@arcanis/slice-ansi@npm:1.1.1"
dependencies:
grapheme-splitter: "npm:^1.0.4"
checksum: 10c0/2f222b121b8aaf67e8495e27d60ebfc34e2472033445c3380e93fb06aba9bfef6ab3096aca190a181b3dd505ed4c07f4dc7243fc9cb5369008b649cd1e39e8d8
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@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/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@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/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@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/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
languageName: node
linkType: hard
"@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, @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-cloudfront@npm:^3.764.0":
version: 3.777.0
resolution: "@aws-sdk/client-cloudfront@npm:3.777.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-node": "npm:3.777.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@aws-sdk/xml-builder": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
tslib: "npm:^2.6.2"
checksum: 10c0/f115d7c38f3f4d7825cba2badd4658819822ae157766c35092117ed20b3636aacf2d29a1b9629f39633e9693308b8195fe1616c05d0239d15f5907b516de1e6f
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.772.0":
version: 3.779.0
resolution: "@aws-sdk/client-s3@npm:3.779.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-node": "npm:3.777.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.775.0"
"@aws-sdk/middleware-expect-continue": "npm:3.775.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-location-constraint": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.775.0"
"@aws-sdk/middleware-ssec": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@aws-sdk/xml-builder": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/eventstream-serde-browser": "npm:^4.0.2"
"@smithy/eventstream-serde-config-resolver": "npm:^4.1.0"
"@smithy/eventstream-serde-node": "npm:^4.0.2"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-blob-browser": "npm:^4.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/hash-stream-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/md5-js": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
tslib: "npm:^2.6.2"
checksum: 10c0/7b6f60e81a127208e37f3a79c903b2d92343eab0b952b9138469e3baef00f82f99b7221d9af8e0f1ea75fa7a2c2de4817375be5e8fb2e036ae54d1b2b4b010c0
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/client-sso@npm:3.777.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0a14dd828ef7c46621ea564811c9055866b9775f6a13724a6dad9e195dc818367fcd182d43c92980997be6bd004b0e23e012746c1f32e5af8fca9f402582f40f
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/core@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.0.2"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.0.2"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/14fb2fb46c191d4409a1f35fc4276ec77c446e81f22d6dc5355d3d7a28575ab26253fc646e4a0deed05c2fe89e4850547096191a4ef3ec6bb775a1a4c30171d1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-env@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/461d2dba7d8dde9720b99e9d34d6b9e4e115335d3d184d15011e36124fc73d182e9c9f33fcf77682428abc7849a1b248371758be46c23fc312521f51d08054e2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-http@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f2a5939108ecdb330610b60fab61c01f0b98e972df2abaa5ac6e46102e4a2a7e877c934e28bacb32a855a431c33af53a169568ee2df6b1c4bcf6e32ed69c721a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.777.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-env": "npm:3.775.0"
"@aws-sdk/credential-provider-http": "npm:3.775.0"
"@aws-sdk/credential-provider-process": "npm:3.775.0"
"@aws-sdk/credential-provider-sso": "npm:3.777.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.777.0"
"@aws-sdk/nested-clients": "npm:3.777.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/credential-provider-imds": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b905820d6591010f73bc1af5e0185d2a38590fa0722e979f9d85de46853516c353b6ccee641311e413231425b59ad9ddeb87b93a9e0ff3c301741fa79d099aef
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/credential-provider-node@npm:3.777.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.775.0"
"@aws-sdk/credential-provider-http": "npm:3.775.0"
"@aws-sdk/credential-provider-ini": "npm:3.777.0"
"@aws-sdk/credential-provider-process": "npm:3.775.0"
"@aws-sdk/credential-provider-sso": "npm:3.777.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.777.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/credential-provider-imds": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4d2b3b69e24f4e64a07450caa4965cf524d3a4cd0a568c7911639230b544cfc467ed3067b84f177e6550f6b2395895346c9b393c69945fa0a56b5f2a33476294
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-process@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5e8fc389ddf91694a590adb0ee2dadf148b7279759c1a0a8b3a055a78af0b75773f9f50f6a769be1d3284c639ad037a2a8951a463020e692c5f911c8e5062402
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.777.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.777.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/token-providers": "npm:3.777.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3df1ae333b74e9aa5ecf4e7d6dc87f778f2de11433e87e4383f46d33cacca8249dbd1b6f46ffdf720a7dd8bea25ab528cb3d4514d98bce7aa8cc30a09620ba19
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.777.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/nested-clients": "npm:3.777.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5d7fdf7d6911f06255f9d03540c1d7bdec1a74c529f91b6fb1960e473ffefcf8750d8aa8826b3e49d6bc7ec27e22b10e04888e8a9d2f6796cb262299af664e2d
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/67403c36a67aca9d1e0834f0ef22ab998846eb6ba408ae473862564da075e5dade2a1286e2f096c90c4defc166b89c1d56af74b761424d630a170301529f5c66
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b0f40cd2ecc4f3a28effc1af427d8c3984bcd5fa03c360073c32264ef134e1d32f6777c631e767ca9fa7c6d3f380cd930736f328fd3b0c896f1756981549ae0d
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.775.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c6afcb70aae0afa2880af0df09a5bd87ccb5139de74557d70d58c55aedf24bfd93a426d9ea4bedbe162ceca3b16c54eb900f1877d7a1cabab2a8e97eb0b37f63
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-host-header@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1e7fb71bc596250c20d51a6ec5f33801746db6ca553f2baf3f3261db5abf18dc5f0c31514c81496f6efaf39643aaa90226ca801b36d9bd76943221f15256a266
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/85f136cab13b6f955d28e88245dd8706e273652403a6ad8edf993502539e4c48963a5069e3db3c81c96de2db3bdd20a4acca7fdad1f59d9505671e6d3904d70f
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-logger@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ab46864523cd58e965bd7071781a8719dec7037aeef4c08345138ad90d6e0162ac911f79b40bd2bd3308776edbaa5dc987f9e104da0980537947227a4cddce12
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/652ac6384034cb7219d8f44cbbc059dbc68cc6f8c9e61dbd19bc5488ff267564cc899ab52cdc45aa79d0e2d4162ce52e00c518a3eb4371f5b72465e715cd5387
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.0.2"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4d7c47b4168f2b8f35d2bdf9aa964b8e31c6e4b2a243555265effa1aeae688629b7c8605ea34644d21b9b20850d53d7e7493c2ff44aa85f8ee9529cede7c7dcb
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-ssec@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6f5148efa3b470a25ee44d200b18676a417f2990cf681a54a87f4a79597714777f7aee7d7ac47194cb836609496856fa6a3b307df76d36f11890b9f3770bb0c3
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/dd782955a6482df9935faec08a64b674913e8be8c58347dae32d1b5ddb2196e49c328605d864d9d85c725f92ad6eb6454d3aef8433d7ff599ad2a94545b0c2e1
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/nested-clients@npm:3.777.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e7fe77cc30d09ba423b518e6a4dec71402ef8b01c959c15e1c61dbbed80c997213643dc14e347e8a5a463a2020038ca0b01078ec04761f331b1359fa8acc8599
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/region-config-resolver@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.2"
tslib: "npm:^2.6.2"
checksum: 10c0/774d3e65873c725634b208604df3aac379ba9a9b8c4910a0ba54360bae8855d22e7dd1310d15f1946d9b8b16bca03b268d29984d0b25f2ba33094aeb30da6072
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.775.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1e13b2382bdc4a8b917466c01388575b7139f9207410a19d99d39db6546f1e56b99fe043276136fbdad05133ca3e6e92c84a2c0fcf6cea573f12db9bc3d8079f
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/token-providers@npm:3.777.0"
dependencies:
"@aws-sdk/nested-clients": "npm:3.777.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/744cf95c4bcda2909ff49b7fbfb784a8d8de0f0072b13acbd8706c9cf35243aecc6f0cc40cd1fd819092893a4121964d9d6194751e30bc06278be7d0e2d95d5d
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.775.0, @aws-sdk/types@npm:^3.222.0":
version: 3.775.0
resolution: "@aws-sdk/types@npm:3.775.0"
dependencies:
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/106515a677a8619ecffc6a652d6866a29f9191f2f883d4a98e44ea1926a112994c4c4733e77f7d997f5f1a4cecf2ce605059a449001d5630ed73f6cd4d4d94a3
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.723.0":
version: 3.723.0
resolution: "@aws-sdk/util-arn-parser@npm:3.723.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/5d2adfded61acaf222ed21bf8e5a8b067fe469dfaab03a6b69c591a090c48d309b1f3c4fd64826f71ef9883390adb77a9bf884667b242615f221236bc5a8b326
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/util-endpoints@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.0.2"
tslib: "npm:^2.6.2"
checksum: 10c0/d85fbe8a1e213ac4925c9572ded852b3a26e688aa2be15918c02b3340f7493de4254fe5a2a5a4e21955a5b5b919c69004a9bfcefae834c15476dfa4ac4cb7b2d
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.723.0
resolution: "@aws-sdk/util-locate-window@npm:3.723.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/c9c75d3ee06bd1d1edad78bea8324f2d4ad6086803f27731e1f3c25e946bb630c8db2991a5337e4dbeee06507deab9abea80b134ba4e3fbb27471d438a030639
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/527f3225a28a49de6893c2a396d80cd13cfa64f9cc9d16b575a708e5d4a6006e145aaec6166071012aacdb732604c3a554d69ab6f099fb021d0d15565bb7fb4c
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.775.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/d9dfbf657b598e673aa9d6eb793868d801bd3a0935a66f0991b3afdc790bc9a78723ed9a400a28168b61d99ae5eeb81dd644751e85ea43fda74fa093d70260d9
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/xml-builder@npm:3.775.0"
dependencies:
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/636f0c3c463b391edf9118b6b07c650dc14218ec7a2b0c309a931f5df539d7b472185f5ae36f0fabbdf1422189ba7a641133246299b111e5b8fa7ad39f85a080
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
languageName: node
linkType: hard
"@biomejs/biome@npm:^1.8.3":
version: 1.9.4
resolution: "@biomejs/biome@npm:1.9.4"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:1.9.4"
"@biomejs/cli-darwin-x64": "npm:1.9.4"
"@biomejs/cli-linux-arm64": "npm:1.9.4"
"@biomejs/cli-linux-arm64-musl": "npm:1.9.4"
"@biomejs/cli-linux-x64": "npm:1.9.4"
"@biomejs/cli-linux-x64-musl": "npm:1.9.4"
"@biomejs/cli-win32-arm64": "npm:1.9.4"
"@biomejs/cli-win32-x64": "npm:1.9.4"
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: 10c0/b5655c5aed9a6fffe24f7d04f15ba4444389d0e891c9ed9106fab7388ac9b4be63185852cc2a937b22940dac3e550b71032a4afd306925cfea436c33e5646b3e
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-darwin-arm64@npm:1.9.4"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-darwin-x64@npm:1.9.4"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-arm64-musl@npm:1.9.4"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-arm64@npm:1.9.4"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-x64-musl@npm:1.9.4"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-x64@npm:1.9.4"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-win32-arm64@npm:1.9.4"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-win32-x64@npm:1.9.4"
conditions: os=win32 & cpu=x64
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
"@crawlee/core@npm:^3.9.0":
version: 3.13.0
resolution: "@crawlee/core@npm:3.13.0"
dependencies:
"@apify/consts": "npm:^2.20.0"
"@apify/datastructures": "npm:^2.0.0"
"@apify/log": "npm:^2.4.0"
"@apify/pseudo_url": "npm:^2.0.30"
"@apify/timeout": "npm:^0.3.0"
"@apify/utilities": "npm:^2.7.10"
"@crawlee/memory-storage": "npm:3.13.0"
"@crawlee/types": "npm:3.13.0"
"@crawlee/utils": "npm:3.13.0"
"@sapphire/async-queue": "npm:^1.5.1"
"@vladfrangu/async_event_emitter": "npm:^2.2.2"
csv-stringify: "npm:^6.2.0"
fs-extra: "npm:^11.0.0"
got-scraping: "npm:^4.0.0"
json5: "npm:^2.2.3"
minimatch: "npm:^9.0.0"
ow: "npm:^0.28.1"
stream-json: "npm:^1.8.0"
tldts: "npm:^6.0.0"
tough-cookie: "npm:^5.0.0"
tslib: "npm:^2.4.0"
type-fest: "npm:^4.0.0"
checksum: 10c0/aa993afda2a44aebd6d8cf6a5f2f160852d7239a6507deea0265fbdeeeaa25f2431c4c037f1be7fdf7c6be70667dda6d59349af13990ed001c1f33e893c374ae
languageName: node
linkType: hard
"@crawlee/memory-storage@npm:3.13.0, @crawlee/memory-storage@npm:^3.12.0":
version: 3.13.0
resolution: "@crawlee/memory-storage@npm:3.13.0"
dependencies:
"@apify/log": "npm:^2.4.0"
"@crawlee/types": "npm:3.13.0"
"@sapphire/async-queue": "npm:^1.5.0"
"@sapphire/shapeshift": "npm:^3.0.0"
content-type: "npm:^1.0.4"
fs-extra: "npm:^11.0.0"
json5: "npm:^2.2.3"
mime-types: "npm:^2.1.35"
proper-lockfile: "npm:^4.1.2"
tslib: "npm:^2.4.0"
checksum: 10c0/f133ddffd4f0fcfb53e54b66360b276da23626e248c14c55a033aba70e0dd3dced23a506247e9465dcf2e411ab18bb6d28300f87c349a1f2964c0b77b1df138c
languageName: node