-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathyarn.lock
12117 lines (10922 loc) · 422 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.37.0":
version: 2.37.0
resolution: "@apify/consts@npm:2.37.0"
checksum: 10c0/f8d48904e07382c9c9a5cc7823fd4ea1ccd6bb91dade0d88d10a75c7c24146b43ee996861a66e1b43d33c63496eaa82aa850c59a1be03ce804783a6d142225ef
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.0
resolution: "@apify/input_schema@npm:3.13.0"
dependencies:
"@apify/consts": "npm:^2.37.0"
acorn-loose: "npm:^8.4.0"
countries-list: "npm:^3.0.0"
peerDependencies:
ajv: ^8.0.0
checksum: 10c0/ed8d58c0eb53461a60327e829fe317e1ee97888c527a04c765b163012b9ecd2441ba9181470e310d6d918d41815421c43ebdba1f86d7762aad75917276cc45f1
languageName: node
linkType: hard
"@apify/input_secrets@npm:^1.1.40":
version: 1.1.63
resolution: "@apify/input_secrets@npm:1.1.63"
dependencies:
"@apify/log": "npm:^2.5.13"
"@apify/utilities": "npm:^2.12.2"
ow: "npm:^0.28.2"
checksum: 10c0/8c787930a5f23b124809b76c28b011122a7918c311cbea685f3525900f18693d1e87b755ef5de2aff5e3d3fc882229732ee9c82fe6ad8186069e498ba210f3e4
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.13":
version: 2.5.13
resolution: "@apify/log@npm:2.5.13"
dependencies:
"@apify/consts": "npm:^2.37.0"
ansi-colors: "npm:^4.1.1"
checksum: 10c0/b4295fec3101e63ed13af4c6ea103af6bd2bc2062091b1d6d921e23e4272883a262cba5fd1b68136a4dff207a40a4a36b5370eba0dac4f6f056c0bd2648a8118
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.54
resolution: "@apify/pseudo_url@npm:2.0.54"
dependencies:
"@apify/log": "npm:^2.5.13"
checksum: 10c0/8a04d0af3b8b08ea1ce5790bae46ab13c669456dabc8100ae8cca5d10bb68fa71c5a813fce140dc02a3080128a5da67dd4176967c97179678eba50182d24f14c
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.12.0, @apify/utilities@npm:^2.12.2, @apify/utilities@npm:^2.7.10, @apify/utilities@npm:^2.9.3":
version: 2.12.2
resolution: "@apify/utilities@npm:2.12.2"
dependencies:
"@apify/consts": "npm:^2.37.0"
"@apify/log": "npm:^2.5.13"
checksum: 10c0/417c14a1352e54d3de81c73e2fb765c6118730ab7a9fa58b5f75b8d7be4c01e3c35a369b6143185f90eced234fd4d29b0b1b26f2cbaf57d42c5afe906d1dd5d6
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.726.1":
version: 3.734.0
resolution: "@aws-sdk/client-cloudfront@npm:3.734.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/credential-provider-node": "npm:3.734.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.734.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.734.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.734.0"
"@aws-sdk/xml-builder": "npm:3.734.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.1"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.2"
"@smithy/middleware-retry": "npm:^4.0.3"
"@smithy/middleware-serde": "npm:^4.0.1"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@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.3"
"@smithy/util-defaults-mode-node": "npm:^4.0.3"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-stream": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.2"
tslib: "npm:^2.6.2"
checksum: 10c0/59719e175d6a14441fd018e8d765bf0162807867f57a744b6cd7f57c259714dda956189b9925dc1755d18c948d465a432a260e1844a0094dcca7246be450c8a9
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.722.0":
version: 3.735.0
resolution: "@aws-sdk/client-s3@npm:3.735.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.734.0"
"@aws-sdk/credential-provider-node": "npm:3.734.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.734.0"
"@aws-sdk/middleware-expect-continue": "npm:3.734.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.735.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-location-constraint": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.734.0"
"@aws-sdk/middleware-ssec": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.734.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.734.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.734.0"
"@aws-sdk/xml-builder": "npm:3.734.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.1"
"@smithy/eventstream-serde-browser": "npm:^4.0.1"
"@smithy/eventstream-serde-config-resolver": "npm:^4.0.1"
"@smithy/eventstream-serde-node": "npm:^4.0.1"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-blob-browser": "npm:^4.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/hash-stream-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/md5-js": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.2"
"@smithy/middleware-retry": "npm:^4.0.3"
"@smithy/middleware-serde": "npm:^4.0.1"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@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.3"
"@smithy/util-defaults-mode-node": "npm:^4.0.3"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-stream": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.2"
tslib: "npm:^2.6.2"
checksum: 10c0/1378a40e9ac1ae68bcfe930c9244f04f95ad5aef9db52444bfb6f4c876fed413dc815c03c96c6ab90246e56fe6eba5604d6e784bb6350a4623cb78d52458ca40
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/client-sso@npm:3.734.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.734.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.734.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.734.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.1"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.2"
"@smithy/middleware-retry": "npm:^4.0.3"
"@smithy/middleware-serde": "npm:^4.0.1"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@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.3"
"@smithy/util-defaults-mode-node": "npm:^4.0.3"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8098f0516c31ee1cb0f7c82932d8bcfd4a6f85f1945c0d022402c72c40c389a04b50888543e7de43a3c8db00203bbd00d3d13a9570f37f5e4fe8253085f72df8
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/core@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/core": "npm:^3.1.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/signature-v4": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-middleware": "npm:^4.0.1"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/1f301a3a1fa8172bacf881482bdbf10ac8212d9c6e1b726df66958994a8eaec7202f2d795e8668ae23ec4563067db4e4068ea8496a436426dd38ebd0f76d0f3e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-env@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/27071ce049fc6c73a65478f2dbbe9de21a5d4558a93d8c9ea4b9101b41323cbde012614ef7f87467e6f05515afa8cf5fc556a579b359ce83ebbf786493ee94fc
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-http@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/node-http-handler": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-stream": "npm:^4.0.2"
tslib: "npm:^2.6.2"
checksum: 10c0/60edc09a92f91049bd61f3b51700ceeaa1c429d1e41e25a39560bbe56f1f0623a3a475577e265d89552f31c6d6388acda5e073f3a111692b27f07c0ad824b613
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/credential-provider-env": "npm:3.734.0"
"@aws-sdk/credential-provider-http": "npm:3.734.0"
"@aws-sdk/credential-provider-process": "npm:3.734.0"
"@aws-sdk/credential-provider-sso": "npm:3.734.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.734.0"
"@aws-sdk/nested-clients": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/credential-provider-imds": "npm:^4.0.1"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f7b4824875088754a09b5afc9efe5424b56d061eb3af98052be8d7e62c9b1530c4de213e2353ca2f85eb312aec16a54ad550530f41ca626eeaf86ce694b9ece0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-node@npm:3.734.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.734.0"
"@aws-sdk/credential-provider-http": "npm:3.734.0"
"@aws-sdk/credential-provider-ini": "npm:3.734.0"
"@aws-sdk/credential-provider-process": "npm:3.734.0"
"@aws-sdk/credential-provider-sso": "npm:3.734.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/credential-provider-imds": "npm:^4.0.1"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5ef9d24a473e73c831748bde93169ca4634d7f7e4ac1b5100d78f08c407b3bc0ffe7ff21b65c6a04b0e7c1fe9a4c484a1348b3e63cb6e394d72066940c5ea507
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-process@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/059beffaf6c6d880234c57935356918e3456d85348165ca42028c89e5aff86f6e87a8d4ad11b2d5fc04a22178c86daff3a59ffd02a7fdc2bd2ecf0829de981b1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.734.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.734.0"
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/token-providers": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7a09107ef25574ce1f54261e6827a609d538a5d84c00a29e0381ee090fc372b012d288b8b6a074ec95a9557e098778799fbdd4a1bff105099da064041a0e8d39
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/nested-clients": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6985306744419084580beb22877ef2fbdea4d341d6e1ef1255513b06370f4cde9d6ffc6b71394375a03687db3d7fef8c486250ff0116bbea2eba89cc513fa675
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f0f98bb478ff469ec3aab0ae5b8122cafc26e4d88efbb1d277429dfd21c70a64eaf996d5cbb7360ff93dcc0e985d75bca5bfcb6a814b1d18ab14c5b912c7c5ad
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5e6fa03e4b4ef8ff52314a5aea6b7c807e39516ad7c817003c8ef22c4d25de98dc469bab30d6f11a56cba7a968bcdf032373c8c1d074a16ff72ac2cd08f1a5e9
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.735.0":
version: 3.735.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.735.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.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-stream": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b9ca77c97528a99c4264a35803d897ace77b1e422ff3b351b2ea84c9b8adef247874f446a75321dc9caee48f8778fc164579753c363aee1dc30839915625b948
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-host-header@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/56e8501c3beda2961ebba56f1146849594edafa0d33ce2bdb04b62df9732d1218ffe89882333d87d76079798dc575af1756db4d7270916d8d83f8d9ef7c4798e
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ec6a10d2545dfbda2806e8dd2244a6be76c97d5fdae2068c461cb61753801ce60079518ad45f3eb559a37042f057636da754cccec751d04d0b94b534d423424e
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-logger@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/dc690e546d0411929ff5888cd2dad56b7583f160ce4339f24d4963b9d11022f06da76d5f96c56d2ff2624493885254200788c763f113c26695875b8a229ee9a1
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e46e5f99895a4370141b3439c58b94670fddd01d18bbda43a621cb0a5f2bb3384db66757f16da49815af52d29f2cfb8c5d12e273853ad34c919f4f71d078572f
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/core": "npm:^3.1.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/signature-v4": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-stream": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cd775c7066707ea7ddd0cdc8dd809720fd5aed6e5f7e615629f7403ad6e30923fb89e8da0311f5dd1165a28b3a575b491ac0e2002e80afa12719eb8472f8ca95
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-ssec@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ba1d0f202ef0e58d82895bbe71dcb4520f0eaf958ebc37baa3383e42729091fca2f927ec3482478b0ece35ae001c72da9afb71c83504e0aba6df4074a6a2187a
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.734.0"
dependencies:
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.734.0"
"@smithy/core": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/aecda461346fc272d440ee9557588bb7379020ee5ffead61ca1e905f1ccdcd009d6aee53b364a6f9278f2a092608ca86c0650f02fb14f28f2ba99a34dd4af136
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/nested-clients@npm:3.734.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.734.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.734.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.734.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.734.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.1"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.2"
"@smithy/middleware-retry": "npm:^4.0.3"
"@smithy/middleware-serde": "npm:^4.0.1"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.2"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@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.3"
"@smithy/util-defaults-mode-node": "npm:^4.0.3"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/55877c3f8cac486183c2cfad34a650a4459c85d07ae08c804e9e64ad731d7607cd783156cf5646736c7026f44d3c4e76335bb42cc37fcf91cc98195b273fbd84
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/region-config-resolver@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.1"
tslib: "npm:^2.6.2"
checksum: 10c0/c1e026dcbe9d7529ec5efee979a868d0c868287d68e7e219bd730d887ab1ccf17ef48516477e57325fef55543217496bcfe7ba6d17d9ecad98cf8cf18d5ced63
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.734.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/signature-v4": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1b71e5a5c7995af4aa5432a0156853e4fb43873ac535b1d982e411ac200d8e2482c5bd56a288e67414a9d05c983a06bee7e3fa0d499b13ac236e5b4b81138a03
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/token-providers@npm:3.734.0"
dependencies:
"@aws-sdk/nested-clients": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/65a3696a930229d54a90e971158f399f3760200dfe080d1a4abc0cc6ceb130968036a9f2809be58ed0d35cd82357d32adfdbc391f3ed2ed89c4e0dcd114cb0de
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.734.0, @aws-sdk/types@npm:^3.222.0":
version: 3.734.0
resolution: "@aws-sdk/types@npm:3.734.0"
dependencies:
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/74313849619b8bce9e6a52c70fcdaa212574a443503c78bccdba77cdc7bc66b8cecefe461852e0bab7376cc2ec3e1891730b1a027be63efb47394115c8ddb856
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.734.0":
version: 3.734.0
resolution: "@aws-sdk/util-endpoints@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-endpoints": "npm:^3.0.1"
tslib: "npm:^2.6.2"
checksum: 10c0/655d51da2fc57679be0e7c243cf2876f802c3d10df431cd56c00ec19de584d073c3838f2b917fb4b4d8c4e7d61a49af69c1b7135b8371619ae2339a793117005
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.734.0":
version: 3.734.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7fc8c5e29f3219f8abf1d0cff73dd6bb34f32a235473843e50f61375b1c05f4c49269cd956c9e4623c87c025e1eeef9fc699ae3389665459721bc11e00c25ead
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.734.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/bae227776ede8d0c85193e257ac6e69b07f1ba94481544036fcdbdd633069fd7ebc19a0141c1e168ef58fc2c267da15a511e498552902ca15eac1a5240841f6e
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/xml-builder@npm:3.734.0"
dependencies:
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/77eb3d603d45a235982a86e5adbc2de727389924cbbd8edb9b13f1a201b15304c57aebb18e00cce909920b3519d0ca71406989b01b6544c87c7b3c4f04d66887
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.22.13":
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.12.1
resolution: "@crawlee/core@npm:3.12.1"
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.12.1"
"@crawlee/types": "npm:3.12.1"
"@crawlee/utils": "npm:3.12.1"
"@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/a3d105427f7febc64c8cb39e8000df44f8318f9d155714702c190fd7a3e2cb9f2845ed3022f894125497b99c47fa4a41bb45bf293a9f2d0af10f04c4f0ab6ab1
languageName: node
linkType: hard
"@crawlee/memory-storage@npm:3.12.1, @crawlee/memory-storage@npm:^3.12.0":
version: 3.12.1
resolution: "@crawlee/memory-storage@npm:3.12.1"
dependencies:
"@apify/log": "npm:^2.4.0"
"@crawlee/types": "npm:3.12.1"
"@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/09810a1f4ad6699c4aa7aa86255b7d9e2c21b4ad6a0428d1f1f560835b17381919fd3e0efbe57873ece8fb615b1f027da4bcf16fc9ad8167b9fada26766d12da
languageName: node