-
Notifications
You must be signed in to change notification settings - Fork 29
/
yarn.lock
25201 lines (22824 loc) · 907 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
"@0no-co/graphql.web@npm:^1.0.5":
version: 1.0.6
resolution: "@0no-co/graphql.web@npm:1.0.6"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
peerDependenciesMeta:
graphql:
optional: true
checksum: 10c0/10103e9b30df14d351d098871a4a35d38c9a478763faa667eb1409bfb27bf06c8f8d2bb3c33dd6a4250a5d866d7d301afe0090dacc409a38831674b087cc78cd
languageName: node
linkType: hard
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10c0/53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@adraffy/ens-normalize@npm:1.10.0":
version: 1.10.0
resolution: "@adraffy/ens-normalize@npm:1.10.0"
checksum: 10c0/78ae700847a2516d5a0ae12c4e23d09392a40c67e73b137eb7189f51afb1601c8d18784aeda2ed288a278997824dc924d1f398852c21d41ee2c4c564f2fb4d26
languageName: node
linkType: hard
"@adraffy/ens-normalize@npm:^1.8.8":
version: 1.11.0
resolution: "@adraffy/ens-normalize@npm:1.11.0"
checksum: 10c0/5111d0f1a273468cb5661ed3cf46ee58de8f32f84e2ebc2365652e66c1ead82649df94c736804e2b9cfa831d30ef24e1cc3575d970dbda583416d3a98d8870a6
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10c0/92ce5915f8901d8c7cd4f4e6e2fe7b9fd335a29955b400caa52e0e5b12ca3796ada7c2f10e78c9c5b0f9c2539dff0ffea7b19850a56e1487aa083531e1e46d43
languageName: node
linkType: hard
"@ardatan/relay-compiler@npm:12.0.0":
version: 12.0.0
resolution: "@ardatan/relay-compiler@npm:12.0.0"
dependencies:
"@babel/core": "npm:^7.14.0"
"@babel/generator": "npm:^7.14.0"
"@babel/parser": "npm:^7.14.0"
"@babel/runtime": "npm:^7.0.0"
"@babel/traverse": "npm:^7.14.0"
"@babel/types": "npm:^7.0.0"
babel-preset-fbjs: "npm:^3.4.0"
chalk: "npm:^4.0.0"
fb-watchman: "npm:^2.0.0"
fbjs: "npm:^3.0.0"
glob: "npm:^7.1.1"
immutable: "npm:~3.7.6"
invariant: "npm:^2.2.4"
nullthrows: "npm:^1.1.1"
relay-runtime: "npm:12.0.0"
signedsource: "npm:^1.0.0"
yargs: "npm:^15.3.1"
peerDependencies:
graphql: "*"
bin:
relay-compiler: bin/relay-compiler
checksum: 10c0/7207d65dd39d3a6202fcee81b03338409642a0ff4e7f799b4a074025429ce2b17b6c71c9579a6328b0f4548763ba4efbff0436cddbcad934af00cc4dbc7ac4e1
languageName: node
linkType: hard
"@ardatan/sync-fetch@npm:^0.0.1":
version: 0.0.1
resolution: "@ardatan/sync-fetch@npm:0.0.1"
dependencies:
node-fetch: "npm:^2.6.1"
checksum: 10c0/cd69134005ef5ea570d55631c8be59b593e2dda2207f616d30618f948af6ee5d227b857aefd56c535e8f7f3ade47083e4e7795b5ee014a6732011c6e5f9eb08f
languageName: node
linkType: hard
"@artblocks/contracts@npm:^1.0.2, @artblocks/contracts@workspace:packages/contracts":
version: 0.0.0-use.local
resolution: "@artblocks/contracts@workspace:packages/contracts"
dependencies:
"@aws-sdk/client-s3": "npm:^3.596.0"
"@aws-sdk/credential-providers": "npm:^3.651.1"
"@defi-wonderland/smock": "npm:^2.4.0"
"@gnosis.pm/safe-contracts": "npm:^1.3.0"
"@gnosis.pm/safe-core-sdk": "npm:^2.1.0"
"@gnosis.pm/safe-core-sdk-types": "npm:^1.7.0"
"@gnosis.pm/safe-ethers-lib": "npm:1.1.0"
"@gnosis.pm/safe-service-client": "npm:^1.4.0"
"@nomicfoundation/hardhat-chai-matchers": "npm:^1.0.0"
"@nomicfoundation/hardhat-ledger": "npm:^1.0.3"
"@nomicfoundation/hardhat-network-helpers": "npm:^1.0.11"
"@nomicfoundation/hardhat-verify": "npm:^2.0.5"
"@nomiclabs/hardhat-ethers": "npm:^2.2.1"
"@nomiclabs/hardhat-solhint": "npm:^3.1.0"
"@nomiclabs/hardhat-truffle5": "npm:^2.0.7"
"@nomiclabs/hardhat-waffle": "npm:^2.0.3"
"@nomiclabs/hardhat-web3": "npm:^2.0.0"
"@openzeppelin-0.5/contracts": "npm:@openzeppelin/contracts@2.5.1"
"@openzeppelin-4.5/contracts": "npm:@openzeppelin/contracts@4.5.0"
"@openzeppelin-4.7/contracts": "npm:@openzeppelin/contracts@4.7.1"
"@openzeppelin-4.8/contracts-upgradeable": "npm:@openzeppelin/contracts-upgradeable@4.8.0"
"@openzeppelin-5.0/contracts": "npm:@openzeppelin/contracts@5.0.1"
"@openzeppelin/hardhat-upgrades": "npm:^1.28.0"
"@openzeppelin/test-helpers": "npm:^0.5.16"
"@remix-project/remixd": "npm:^0.6.37"
"@safe-global/api-kit": "npm:^1.3.1"
"@safe-global/protocol-kit": "npm:1.3.0"
"@safe-global/safe-core-sdk-types": "npm:2.3.0"
"@typechain/ethers-v5": "npm:^11.1.2"
"@typechain/hardhat": "npm:7.0.0"
"@types/jest": "npm:^29.5.13"
"@types/mocha": "npm:^10.0.8"
"@types/prompt": "npm:^1.1.8"
"@typescript-eslint/eslint-plugin": "npm:^7.13.0"
"@typescript-eslint/parser": "npm:^7.13.0"
"@urql/exchange-retry": "npm:^1.2.1"
aws-sdk-client-mock: "npm:^4.0.1"
chai: "npm:^4.3.10"
coveralls: "npm:^3.1.1"
dotenv: "npm:^16.4.5"
eslint: "npm:^8.57.0"
eslint-config-custom: "npm:*"
eslint-plugin-mocha: "npm:^10.4.3"
ethers: "npm:^5.7.2"
graphql: "npm:^16.8.2"
hardhat: "npm:^2.22.10"
hardhat-contract-sizer: "npm:^2.10.0"
hardhat-docgen: "npm:^1.3.0"
hardhat-gas-reporter: "npm:^2.2.1"
husky: "npm:^9.0.11"
istanbul-combine: "npm:^0.3.0"
keccak256: "npm:^1.0.6"
merkletreejs: "npm:^0.3.11"
prettier: "npm:^3.3.2"
prettier-plugin-solidity: "npm:^1.3.1"
prompt: "npm:^1.3.0"
prompt-sync: "npm:^4.2.0"
readline-sync: "npm:^1.4.10"
scripty.sol: "npm:2.1.1"
solady: "npm:^0.0.181"
solidity-coverage: "npm:^0.8.12"
ts-node: "npm:^9.1.1"
tsconfig: "npm:*"
typechain: "npm:^8.3.2"
typescript: "npm:^5.4.5"
urql: "npm:^4.0.7"
languageName: unknown
linkType: soft
"@artblocks/sdk@workspace:packages/sdk":
version: 0.0.0-use.local
resolution: "@artblocks/sdk@workspace:packages/sdk"
dependencies:
"@artblocks/contracts": "npm:^1.0.2"
"@babel/core": "npm:^7.24.7"
"@babel/preset-env": "npm:^7.24.7"
"@babel/preset-typescript": "npm:^7.24.7"
"@jest/globals": "npm:^29.7.0"
"@types/lodash": "npm:^4.17.5"
abitype: "npm:^1.0.6"
encoding: "npm:^0.1.13"
eslint-config-custom: "npm:*"
graphql: "npm:^16.8.2"
graphql-request: "npm:^6.1.0"
jest: "npm:^29.7.0"
jest-environment-jsdom: "npm:^29.7.0"
jsdoc: "npm:^4.0.3"
jsdoc-plugin-typescript: "npm:^2.2.1"
lint-staged: "npm:^15.2.10"
lodash: "npm:^4.17.21"
merkletreejs: "npm:^0.3.11"
prettier: "npm:^3.3.2"
tsconfig: "npm:*"
tsup: "npm:^8.1.0"
typescript: "npm:^5.4.5"
viem: "npm:^2.13.7"
xstate: "npm:5.13.2"
zod: "npm:^3.23.8"
languageName: unknown
linkType: soft
"@aws-crypto/crc32@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/09189ada61a4ffe6b3bd363b0535438470a8cc1a83c89a2591ef2a0b91acb9c4ba95626557cddf856abb9df0d2bfdb0969512f1949b6db7bff5d17109d8beb3f
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32c@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/a5c7ec12ec23fd44c93971234176e0f3bda33d1d5ff3abe25a538f46d8a0baa312eefd179ac3f9bcca1c2d31886e3a36d1e2349b6989c59c3ea6853161095229
languageName: node
linkType: hard
"@aws-crypto/ie11-detection@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/ie11-detection@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/388891b86d816adb658175afeedaa6c4b4c70e83a7e94050d0425788da7fd5c1d675c5bd1588700e5168325bb342cc1063aa1ee4e519bc7f9b028b3998b69c53
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha1-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/26b51cba7f4f0412531205661d21e4a4f56cd87dbcfeb9844c4758b23029b83ff9815bd5207abbe98b62803948625d559cf177f6f6bce3af6654a6e05e0e1e31
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/sha256-js": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/c6a2d6b8176f6ab34b86f7b8c81e2beeae9d41bd4f5f375b332fbe9cbb916b94adcd70676fc7a505ba5abd4232dec1ddfcfa55877f91696d4c65f166648f3026
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:1.2.2":
version: 1.2.2
resolution: "@aws-crypto/sha256-js@npm:1.2.2"
dependencies:
"@aws-crypto/util": "npm:^1.2.2"
"@aws-sdk/types": "npm:^3.1.0"
tslib: "npm:^1.11.1"
checksum: 10c0/f4e8593cfbc48591413f00c744569b21e5ed5fab0e27fa4b59c517f2024ca4f46fab7b3874f2a207ceeef8feefc22d143a82d6c6bfe5303ea717f579d8d7ad0a
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:3.0.0, @aws-crypto/sha256-js@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-js@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/fc013b25a5813c425d4fb77c9ffbc8b5f73d2c78b423df98a1b2575a26de5ff3775c8f62fcf8ef2cc39c8af1cc651013e2c670c1a605a2e16749e06920a2d68f
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:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/supports-web-crypto@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/67e5cbdebd9560244658ba4dd8610c8dc51022497780961fb5061c09618d4337e18b1ee6c71ac24b4aca175f2aa34d1390b95f8759dc293f197f2339dd5dd8c9
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:^1.2.2":
version: 1.2.2
resolution: "@aws-crypto/util@npm:1.2.2"
dependencies:
"@aws-sdk/types": "npm:^3.1.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/ade8843bf13529b1854f64d6bbb23f30b46330743c8866adfd2105d830e30ce837a868eaaf41c4c2381d27e9d225d3a0a7558ee1eee022f0192916e33bfb654c
languageName: node
linkType: hard
"@aws-crypto/util@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/util@npm:3.0.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/71ab6963daabbf080b274e24d160e4af6c8bbb6832bb885644018849ff53356bf82bb8000b8596cf296e7d6b14ad6201872b6b902f944e97e121eb2b2f692667
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.651.1":
version: 3.651.1
resolution: "@aws-sdk/client-cognito-identity@npm:3.651.1"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.651.1"
"@aws-sdk/client-sts": "npm:3.651.1"
"@aws-sdk/core": "npm:3.651.1"
"@aws-sdk/credential-provider-node": "npm:3.651.1"
"@aws-sdk/middleware-host-header": "npm:3.649.0"
"@aws-sdk/middleware-logger": "npm:3.649.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.649.0"
"@aws-sdk/middleware-user-agent": "npm:3.649.0"
"@aws-sdk/region-config-resolver": "npm:3.649.0"
"@aws-sdk/types": "npm:3.649.0"
"@aws-sdk/util-endpoints": "npm:3.649.0"
"@aws-sdk/util-user-agent-browser": "npm:3.649.0"
"@aws-sdk/util-user-agent-node": "npm:3.649.0"
"@smithy/config-resolver": "npm:^3.0.6"
"@smithy/core": "npm:^2.4.1"
"@smithy/fetch-http-handler": "npm:^3.2.5"
"@smithy/hash-node": "npm:^3.0.4"
"@smithy/invalid-dependency": "npm:^3.0.4"
"@smithy/middleware-content-length": "npm:^3.0.6"
"@smithy/middleware-endpoint": "npm:^3.1.1"
"@smithy/middleware-retry": "npm:^3.0.16"
"@smithy/middleware-serde": "npm:^3.0.4"
"@smithy/middleware-stack": "npm:^3.0.4"
"@smithy/node-config-provider": "npm:^3.1.5"
"@smithy/node-http-handler": "npm:^3.2.0"
"@smithy/protocol-http": "npm:^4.1.1"
"@smithy/smithy-client": "npm:^3.3.0"
"@smithy/types": "npm:^3.4.0"
"@smithy/url-parser": "npm:^3.0.4"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.16"
"@smithy/util-defaults-mode-node": "npm:^3.0.16"
"@smithy/util-endpoints": "npm:^2.1.0"
"@smithy/util-middleware": "npm:^3.0.4"
"@smithy/util-retry": "npm:^3.0.4"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5d4f7c7d4fa53bd74d6b50d918370383839c54b2550addebbdd55daad3493131192681554f3446b1ff0bce51984be51d677679944b406416a67aebfbf25c25a8
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.596.0":
version: 3.596.0
resolution: "@aws-sdk/client-s3@npm:3.596.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:3.0.0"
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sso-oidc": "npm:3.596.0"
"@aws-sdk/client-sts": "npm:3.596.0"
"@aws-sdk/core": "npm:3.592.0"
"@aws-sdk/credential-provider-node": "npm:3.596.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.587.0"
"@aws-sdk/middleware-expect-continue": "npm:3.577.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.587.0"
"@aws-sdk/middleware-host-header": "npm:3.577.0"
"@aws-sdk/middleware-location-constraint": "npm:3.577.0"
"@aws-sdk/middleware-logger": "npm:3.577.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.577.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.587.0"
"@aws-sdk/middleware-signing": "npm:3.587.0"
"@aws-sdk/middleware-ssec": "npm:3.577.0"
"@aws-sdk/middleware-user-agent": "npm:3.587.0"
"@aws-sdk/region-config-resolver": "npm:3.587.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.587.0"
"@aws-sdk/types": "npm:3.577.0"
"@aws-sdk/util-endpoints": "npm:3.587.0"
"@aws-sdk/util-user-agent-browser": "npm:3.577.0"
"@aws-sdk/util-user-agent-node": "npm:3.587.0"
"@aws-sdk/xml-builder": "npm:3.575.0"
"@smithy/config-resolver": "npm:^3.0.1"
"@smithy/core": "npm:^2.2.0"
"@smithy/eventstream-serde-browser": "npm:^3.0.0"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.0"
"@smithy/eventstream-serde-node": "npm:^3.0.0"
"@smithy/fetch-http-handler": "npm:^3.0.1"
"@smithy/hash-blob-browser": "npm:^3.0.0"
"@smithy/hash-node": "npm:^3.0.0"
"@smithy/hash-stream-node": "npm:^3.0.0"
"@smithy/invalid-dependency": "npm:^3.0.0"
"@smithy/md5-js": "npm:^3.0.0"
"@smithy/middleware-content-length": "npm:^3.0.0"
"@smithy/middleware-endpoint": "npm:^3.0.1"
"@smithy/middleware-retry": "npm:^3.0.3"
"@smithy/middleware-serde": "npm:^3.0.0"
"@smithy/middleware-stack": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.0"
"@smithy/node-http-handler": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^4.0.0"
"@smithy/smithy-client": "npm:^3.1.1"
"@smithy/types": "npm:^3.0.0"
"@smithy/url-parser": "npm:^3.0.0"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.3"
"@smithy/util-defaults-mode-node": "npm:^3.0.3"
"@smithy/util-endpoints": "npm:^2.0.1"
"@smithy/util-retry": "npm:^3.0.0"
"@smithy/util-stream": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/196517e779057ca3582fb663aed2272d7c5a644d6b4430baff1a77496d27450ff6675d623ed9a7d226fb3b1426766eeca73e042fb12943357da958683dc304f6
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.596.0":
version: 3.596.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.596.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.596.0"
"@aws-sdk/core": "npm:3.592.0"
"@aws-sdk/credential-provider-node": "npm:3.596.0"
"@aws-sdk/middleware-host-header": "npm:3.577.0"
"@aws-sdk/middleware-logger": "npm:3.577.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.577.0"
"@aws-sdk/middleware-user-agent": "npm:3.587.0"
"@aws-sdk/region-config-resolver": "npm:3.587.0"
"@aws-sdk/types": "npm:3.577.0"
"@aws-sdk/util-endpoints": "npm:3.587.0"
"@aws-sdk/util-user-agent-browser": "npm:3.577.0"
"@aws-sdk/util-user-agent-node": "npm:3.587.0"
"@smithy/config-resolver": "npm:^3.0.1"
"@smithy/core": "npm:^2.2.0"
"@smithy/fetch-http-handler": "npm:^3.0.1"
"@smithy/hash-node": "npm:^3.0.0"
"@smithy/invalid-dependency": "npm:^3.0.0"
"@smithy/middleware-content-length": "npm:^3.0.0"
"@smithy/middleware-endpoint": "npm:^3.0.1"
"@smithy/middleware-retry": "npm:^3.0.3"
"@smithy/middleware-serde": "npm:^3.0.0"
"@smithy/middleware-stack": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.0"
"@smithy/node-http-handler": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^4.0.0"
"@smithy/smithy-client": "npm:^3.1.1"
"@smithy/types": "npm:^3.0.0"
"@smithy/url-parser": "npm:^3.0.0"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.3"
"@smithy/util-defaults-mode-node": "npm:^3.0.3"
"@smithy/util-endpoints": "npm:^2.0.1"
"@smithy/util-middleware": "npm:^3.0.0"
"@smithy/util-retry": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b8079b999c9412a795cfc1f6cf42475b14487098e06254bbb6d520b85f7cf712c182f88b6d864399cd92ead9a61d4f6b52980c7c1d5d37ccc00525048308b87e
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.651.1":
version: 3.651.1
resolution: "@aws-sdk/client-sso-oidc@npm:3.651.1"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.651.1"
"@aws-sdk/credential-provider-node": "npm:3.651.1"
"@aws-sdk/middleware-host-header": "npm:3.649.0"
"@aws-sdk/middleware-logger": "npm:3.649.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.649.0"
"@aws-sdk/middleware-user-agent": "npm:3.649.0"
"@aws-sdk/region-config-resolver": "npm:3.649.0"
"@aws-sdk/types": "npm:3.649.0"
"@aws-sdk/util-endpoints": "npm:3.649.0"
"@aws-sdk/util-user-agent-browser": "npm:3.649.0"
"@aws-sdk/util-user-agent-node": "npm:3.649.0"
"@smithy/config-resolver": "npm:^3.0.6"
"@smithy/core": "npm:^2.4.1"
"@smithy/fetch-http-handler": "npm:^3.2.5"
"@smithy/hash-node": "npm:^3.0.4"
"@smithy/invalid-dependency": "npm:^3.0.4"
"@smithy/middleware-content-length": "npm:^3.0.6"
"@smithy/middleware-endpoint": "npm:^3.1.1"
"@smithy/middleware-retry": "npm:^3.0.16"
"@smithy/middleware-serde": "npm:^3.0.4"
"@smithy/middleware-stack": "npm:^3.0.4"
"@smithy/node-config-provider": "npm:^3.1.5"
"@smithy/node-http-handler": "npm:^3.2.0"
"@smithy/protocol-http": "npm:^4.1.1"
"@smithy/smithy-client": "npm:^3.3.0"
"@smithy/types": "npm:^3.4.0"
"@smithy/url-parser": "npm:^3.0.4"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.16"
"@smithy/util-defaults-mode-node": "npm:^3.0.16"
"@smithy/util-endpoints": "npm:^2.1.0"
"@smithy/util-middleware": "npm:^3.0.4"
"@smithy/util-retry": "npm:^3.0.4"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.651.1
checksum: 10c0/5d8a9071427406a76cb0004c9d925a7945b6b6c86da772544bee2c2218a56fd95093ebd8d2c28a727a722703a5cb238b70bc86fb5f438e31effc44c5aaa5e168
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.592.0":
version: 3.592.0
resolution: "@aws-sdk/client-sso@npm:3.592.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.592.0"
"@aws-sdk/middleware-host-header": "npm:3.577.0"
"@aws-sdk/middleware-logger": "npm:3.577.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.577.0"
"@aws-sdk/middleware-user-agent": "npm:3.587.0"
"@aws-sdk/region-config-resolver": "npm:3.587.0"
"@aws-sdk/types": "npm:3.577.0"
"@aws-sdk/util-endpoints": "npm:3.587.0"
"@aws-sdk/util-user-agent-browser": "npm:3.577.0"
"@aws-sdk/util-user-agent-node": "npm:3.587.0"
"@smithy/config-resolver": "npm:^3.0.1"
"@smithy/core": "npm:^2.2.0"
"@smithy/fetch-http-handler": "npm:^3.0.1"
"@smithy/hash-node": "npm:^3.0.0"
"@smithy/invalid-dependency": "npm:^3.0.0"
"@smithy/middleware-content-length": "npm:^3.0.0"
"@smithy/middleware-endpoint": "npm:^3.0.1"
"@smithy/middleware-retry": "npm:^3.0.3"
"@smithy/middleware-serde": "npm:^3.0.0"
"@smithy/middleware-stack": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.0"
"@smithy/node-http-handler": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^4.0.0"
"@smithy/smithy-client": "npm:^3.1.1"
"@smithy/types": "npm:^3.0.0"
"@smithy/url-parser": "npm:^3.0.0"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.3"
"@smithy/util-defaults-mode-node": "npm:^3.0.3"
"@smithy/util-endpoints": "npm:^2.0.1"
"@smithy/util-middleware": "npm:^3.0.0"
"@smithy/util-retry": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/bb5fb9f6664ae176685147bd7aa761cbcd29980efcb89ba3be4e10b6508805b823328b5def53e6a58dcff5bf9b064b48d0f9314326c0e727f22cd4fabd31aebc
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.651.1":
version: 3.651.1
resolution: "@aws-sdk/client-sso@npm:3.651.1"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.651.1"
"@aws-sdk/middleware-host-header": "npm:3.649.0"
"@aws-sdk/middleware-logger": "npm:3.649.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.649.0"
"@aws-sdk/middleware-user-agent": "npm:3.649.0"
"@aws-sdk/region-config-resolver": "npm:3.649.0"
"@aws-sdk/types": "npm:3.649.0"
"@aws-sdk/util-endpoints": "npm:3.649.0"
"@aws-sdk/util-user-agent-browser": "npm:3.649.0"
"@aws-sdk/util-user-agent-node": "npm:3.649.0"
"@smithy/config-resolver": "npm:^3.0.6"
"@smithy/core": "npm:^2.4.1"
"@smithy/fetch-http-handler": "npm:^3.2.5"
"@smithy/hash-node": "npm:^3.0.4"
"@smithy/invalid-dependency": "npm:^3.0.4"
"@smithy/middleware-content-length": "npm:^3.0.6"
"@smithy/middleware-endpoint": "npm:^3.1.1"
"@smithy/middleware-retry": "npm:^3.0.16"
"@smithy/middleware-serde": "npm:^3.0.4"
"@smithy/middleware-stack": "npm:^3.0.4"
"@smithy/node-config-provider": "npm:^3.1.5"
"@smithy/node-http-handler": "npm:^3.2.0"
"@smithy/protocol-http": "npm:^4.1.1"
"@smithy/smithy-client": "npm:^3.3.0"
"@smithy/types": "npm:^3.4.0"
"@smithy/url-parser": "npm:^3.0.4"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.16"
"@smithy/util-defaults-mode-node": "npm:^3.0.16"
"@smithy/util-endpoints": "npm:^2.1.0"
"@smithy/util-middleware": "npm:^3.0.4"
"@smithy/util-retry": "npm:^3.0.4"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8757537a0dd44f3ba18b92cac6e81d6b7efdfa21e6facec5c0fdad14c16ce6224a0162e562b773dcf000a922c9aaa717dda480228a97b9e43ba2cf0b7e9c5538
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.596.0":
version: 3.596.0
resolution: "@aws-sdk/client-sts@npm:3.596.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sso-oidc": "npm:3.596.0"
"@aws-sdk/core": "npm:3.592.0"
"@aws-sdk/credential-provider-node": "npm:3.596.0"
"@aws-sdk/middleware-host-header": "npm:3.577.0"
"@aws-sdk/middleware-logger": "npm:3.577.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.577.0"
"@aws-sdk/middleware-user-agent": "npm:3.587.0"
"@aws-sdk/region-config-resolver": "npm:3.587.0"
"@aws-sdk/types": "npm:3.577.0"
"@aws-sdk/util-endpoints": "npm:3.587.0"
"@aws-sdk/util-user-agent-browser": "npm:3.577.0"
"@aws-sdk/util-user-agent-node": "npm:3.587.0"
"@smithy/config-resolver": "npm:^3.0.1"
"@smithy/core": "npm:^2.2.0"
"@smithy/fetch-http-handler": "npm:^3.0.1"
"@smithy/hash-node": "npm:^3.0.0"
"@smithy/invalid-dependency": "npm:^3.0.0"
"@smithy/middleware-content-length": "npm:^3.0.0"
"@smithy/middleware-endpoint": "npm:^3.0.1"
"@smithy/middleware-retry": "npm:^3.0.3"
"@smithy/middleware-serde": "npm:^3.0.0"
"@smithy/middleware-stack": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.0"
"@smithy/node-http-handler": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^4.0.0"
"@smithy/smithy-client": "npm:^3.1.1"
"@smithy/types": "npm:^3.0.0"
"@smithy/url-parser": "npm:^3.0.0"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.3"
"@smithy/util-defaults-mode-node": "npm:^3.0.3"
"@smithy/util-endpoints": "npm:^2.0.1"
"@smithy/util-middleware": "npm:^3.0.0"
"@smithy/util-retry": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/38e098f0ac238bbb84dde08e5d87b62d7335fc193c9860b3a592ca8943a60efcaeed098b2540f161bc5eea1544cfd77b2ad78e1178d27d3de93afc66ce2f5e8b
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.651.1":
version: 3.651.1
resolution: "@aws-sdk/client-sts@npm:3.651.1"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.651.1"
"@aws-sdk/core": "npm:3.651.1"
"@aws-sdk/credential-provider-node": "npm:3.651.1"
"@aws-sdk/middleware-host-header": "npm:3.649.0"
"@aws-sdk/middleware-logger": "npm:3.649.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.649.0"
"@aws-sdk/middleware-user-agent": "npm:3.649.0"
"@aws-sdk/region-config-resolver": "npm:3.649.0"
"@aws-sdk/types": "npm:3.649.0"
"@aws-sdk/util-endpoints": "npm:3.649.0"
"@aws-sdk/util-user-agent-browser": "npm:3.649.0"
"@aws-sdk/util-user-agent-node": "npm:3.649.0"
"@smithy/config-resolver": "npm:^3.0.6"
"@smithy/core": "npm:^2.4.1"
"@smithy/fetch-http-handler": "npm:^3.2.5"
"@smithy/hash-node": "npm:^3.0.4"
"@smithy/invalid-dependency": "npm:^3.0.4"
"@smithy/middleware-content-length": "npm:^3.0.6"
"@smithy/middleware-endpoint": "npm:^3.1.1"
"@smithy/middleware-retry": "npm:^3.0.16"
"@smithy/middleware-serde": "npm:^3.0.4"
"@smithy/middleware-stack": "npm:^3.0.4"
"@smithy/node-config-provider": "npm:^3.1.5"
"@smithy/node-http-handler": "npm:^3.2.0"
"@smithy/protocol-http": "npm:^4.1.1"
"@smithy/smithy-client": "npm:^3.3.0"
"@smithy/types": "npm:^3.4.0"
"@smithy/url-parser": "npm:^3.0.4"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.16"
"@smithy/util-defaults-mode-node": "npm:^3.0.16"
"@smithy/util-endpoints": "npm:^2.1.0"
"@smithy/util-middleware": "npm:^3.0.4"
"@smithy/util-retry": "npm:^3.0.4"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/eb4913546c2aa801e7f8d00b2d01537ff996408b2a06e4635698128122bad74b5cb1aeee53941f31358416733422821b89861e1bd73839ecf1784c2d6f39c2d8
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.592.0":
version: 3.592.0
resolution: "@aws-sdk/core@npm:3.592.0"
dependencies:
"@smithy/core": "npm:^2.2.0"
"@smithy/protocol-http": "npm:^4.0.0"
"@smithy/signature-v4": "npm:^3.0.0"
"@smithy/smithy-client": "npm:^3.1.1"
"@smithy/types": "npm:^3.0.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/d944d5c041c7c7a2cacf1e6f9a92fc599cea23e2f5103819a377227528355e2e5985b66d9b6f7bfa9558a248ec22c92f61d314cf966060e37eaed260d7819a93
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.651.1":
version: 3.651.1
resolution: "@aws-sdk/core@npm:3.651.1"
dependencies:
"@smithy/core": "npm:^2.4.1"
"@smithy/node-config-provider": "npm:^3.1.5"
"@smithy/property-provider": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.1"
"@smithy/signature-v4": "npm:^4.1.1"
"@smithy/smithy-client": "npm:^3.3.0"
"@smithy/types": "npm:^3.4.0"
"@smithy/util-middleware": "npm:^3.0.4"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/3f7e0f06321214bbb8282973ef27409738b4d689f1db5ef6f1f582a20b9f5c94788c393327a3ca8886f1e53d06151c122f6e944b2aff52fb896e8dcdad01a35b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.651.1":
version: 3.651.1
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.651.1"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.651.1"
"@aws-sdk/types": "npm:3.649.0"
"@smithy/property-provider": "npm:^3.1.4"
"@smithy/types": "npm:^3.4.0"
tslib: "npm:^2.6.2"
checksum: 10c0/485734c89d2faf5cb7f3d7f14397e42918737c33cfd73ba3b6962db74cb3782764f9e36b99a1cc42101a82d122e0e63b7e3065201d8bb0fa50c85423a41ce3a6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.587.0":
version: 3.587.0
resolution: "@aws-sdk/credential-provider-env@npm:3.587.0"
dependencies:
"@aws-sdk/types": "npm:3.577.0"
"@smithy/property-provider": "npm:^3.1.0"
"@smithy/types": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/36ee31c1f68ac0464ec1e07296a8457c48d4b63bfb45ca7ca20d3f16bbf4dc8e3cabec056216a6f7c36ba66ba70513ab8c361045a8798d1e0d888c4171f9da6d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.649.0":
version: 3.649.0
resolution: "@aws-sdk/credential-provider-env@npm:3.649.0"
dependencies:
"@aws-sdk/types": "npm:3.649.0"
"@smithy/property-provider": "npm:^3.1.4"
"@smithy/types": "npm:^3.4.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e0e24dc24701cf7c6aa8b02cd309471544d8d4719d97a585abbbaaa85cca6e3995faceeb4070e775a9e66e60554ab82dc48d33b0448cdb9eccd75c1874a3107d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.596.0":
version: 3.596.0
resolution: "@aws-sdk/credential-provider-http@npm:3.596.0"
dependencies:
"@aws-sdk/types": "npm:3.577.0"
"@smithy/fetch-http-handler": "npm:^3.0.1"
"@smithy/node-http-handler": "npm:^3.0.0"
"@smithy/property-provider": "npm:^3.1.0"
"@smithy/protocol-http": "npm:^4.0.0"
"@smithy/smithy-client": "npm:^3.1.1"
"@smithy/types": "npm:^3.0.0"
"@smithy/util-stream": "npm:^3.0.1"
tslib: "npm:^2.6.2"
checksum: 10c0/f62574819faf4689512d1630ce36670a629a578849399ac20437346598eb3c972dd396e3ee062f8f313842c365259da8907914360cb4dec3a2cd51ae666b2e64
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.649.0":
version: 3.649.0
resolution: "@aws-sdk/credential-provider-http@npm:3.649.0"
dependencies:
"@aws-sdk/types": "npm:3.649.0"
"@smithy/fetch-http-handler": "npm:^3.2.5"
"@smithy/node-http-handler": "npm:^3.2.0"
"@smithy/property-provider": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.1"
"@smithy/smithy-client": "npm:^3.3.0"
"@smithy/types": "npm:^3.4.0"
"@smithy/util-stream": "npm:^3.1.4"
tslib: "npm:^2.6.2"
checksum: 10c0/0c365620ad68271e25127959cc0d0f1c747b7405dc4b3b286947ba002dc21f4213de3d83a0bf0a3d33829664635b7e06074a573ad03afd5ae834a382bba24703
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.596.0":
version: 3.596.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.596.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.587.0"
"@aws-sdk/credential-provider-http": "npm:3.596.0"
"@aws-sdk/credential-provider-process": "npm:3.587.0"
"@aws-sdk/credential-provider-sso": "npm:3.592.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.587.0"
"@aws-sdk/types": "npm:3.577.0"
"@smithy/credential-provider-imds": "npm:^3.1.0"
"@smithy/property-provider": "npm:^3.1.0"
"@smithy/shared-ini-file-loader": "npm:^3.1.0"
"@smithy/types": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.596.0
checksum: 10c0/5acafa179e592746e71a7d8029f3d8d9d7ff83b69af48112be162f8b7f01f288a325d1d93209e167f44d1669de3c3aea71f8fa99a3890701acd05e832aa53ae5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.651.1":
version: 3.651.1
resolution: "@aws-sdk/credential-provider-ini@npm:3.651.1"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.649.0"
"@aws-sdk/credential-provider-http": "npm:3.649.0"
"@aws-sdk/credential-provider-process": "npm:3.649.0"
"@aws-sdk/credential-provider-sso": "npm:3.651.1"
"@aws-sdk/credential-provider-web-identity": "npm:3.649.0"
"@aws-sdk/types": "npm:3.649.0"
"@smithy/credential-provider-imds": "npm:^3.2.1"
"@smithy/property-provider": "npm:^3.1.4"
"@smithy/shared-ini-file-loader": "npm:^3.1.5"
"@smithy/types": "npm:^3.4.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.651.1
checksum: 10c0/ed6d1054f4276736ab132baf0fd1b9b1980cf115794b4c14f747adf8b4a431c2e1a18fe95e5f60503ef659764be6746cbaf5e00fa508d9ac9a1af6e1e30c44f0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.596.0":
version: 3.596.0
resolution: "@aws-sdk/credential-provider-node@npm:3.596.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.587.0"
"@aws-sdk/credential-provider-http": "npm:3.596.0"
"@aws-sdk/credential-provider-ini": "npm:3.596.0"
"@aws-sdk/credential-provider-process": "npm:3.587.0"
"@aws-sdk/credential-provider-sso": "npm:3.592.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.587.0"
"@aws-sdk/types": "npm:3.577.0"
"@smithy/credential-provider-imds": "npm:^3.1.0"
"@smithy/property-provider": "npm:^3.1.0"
"@smithy/shared-ini-file-loader": "npm:^3.1.0"
"@smithy/types": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/2e7c4a1e54489517a4a5c957b2e481cf9bfdf62ab122755651665df17f7df5119033338b0f7b00a28914f69b3f9d941f1d1e8c07ed781acf94e2416eff8abd0a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.651.1":
version: 3.651.1
resolution: "@aws-sdk/credential-provider-node@npm:3.651.1"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.649.0"
"@aws-sdk/credential-provider-http": "npm:3.649.0"
"@aws-sdk/credential-provider-ini": "npm:3.651.1"
"@aws-sdk/credential-provider-process": "npm:3.649.0"
"@aws-sdk/credential-provider-sso": "npm:3.651.1"
"@aws-sdk/credential-provider-web-identity": "npm:3.649.0"
"@aws-sdk/types": "npm:3.649.0"
"@smithy/credential-provider-imds": "npm:^3.2.1"
"@smithy/property-provider": "npm:^3.1.4"
"@smithy/shared-ini-file-loader": "npm:^3.1.5"
"@smithy/types": "npm:^3.4.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a72ddc1c56f75d75ee49ed207bac90a8a0dbd0077c95b6f49c40bc82e3f2b97f9dd459cb5c62a8851230e89515c18d9169f8fd236dfe7b7ae712ae52475ab51a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.587.0":
version: 3.587.0
resolution: "@aws-sdk/credential-provider-process@npm:3.587.0"
dependencies:
"@aws-sdk/types": "npm:3.577.0"
"@smithy/property-provider": "npm:^3.1.0"
"@smithy/shared-ini-file-loader": "npm:^3.1.0"
"@smithy/types": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6521c845c41d5b481fb38faa0f15daa7ffb67fd5aea364fbcb941bbcf2ea73263f73e70df965c20cc82c8d563516b4ebafb2d783ad169a58889b12564a3bcf38
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.649.0":
version: 3.649.0
resolution: "@aws-sdk/credential-provider-process@npm:3.649.0"
dependencies:
"@aws-sdk/types": "npm:3.649.0"
"@smithy/property-provider": "npm:^3.1.4"
"@smithy/shared-ini-file-loader": "npm:^3.1.5"
"@smithy/types": "npm:^3.4.0"
tslib: "npm:^2.6.2"
checksum: 10c0/fa203d633f14301784d9f5d4271bc04c70ac7dbe9afa0bc888a9f548d9337e86c020b273e59f0a73fb5e3c78821171b353c6f5d59aa619394232c724c232dcf7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.592.0":
version: 3.592.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.592.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.592.0"
"@aws-sdk/token-providers": "npm:3.587.0"
"@aws-sdk/types": "npm:3.577.0"
"@smithy/property-provider": "npm:^3.1.0"
"@smithy/shared-ini-file-loader": "npm:^3.1.0"
"@smithy/types": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9cf8e5092120c898b5ee468c6a4181a4e4328f11f609a33a9577f47acff5687a89ed23d8ec1ed1ac1755d772f6e3dc7866e921fb1695008d8b2cdcad5b15e39a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.651.1":
version: 3.651.1
resolution: "@aws-sdk/credential-provider-sso@npm:3.651.1"
dependencies:
"@aws-sdk/client-sso": "npm:3.651.1"
"@aws-sdk/token-providers": "npm:3.649.0"
"@aws-sdk/types": "npm:3.649.0"
"@smithy/property-provider": "npm:^3.1.4"
"@smithy/shared-ini-file-loader": "npm:^3.1.5"
"@smithy/types": "npm:^3.4.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a294a96d3fea49ef5880acc84da4848ede524f999ba9777e7ad550805d846c82ff9de36352b44019bb3ec7149d620e8db091bb2848974022ef61e81082c57ea6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.587.0":
version: 3.587.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.587.0"
dependencies: