forked from tldraw/tldraw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
25919 lines (23482 loc) · 902 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@actions/github@npm:^6.0.0":
version: 6.0.0
resolution: "@actions/github@npm:6.0.0"
dependencies:
"@actions/http-client": "npm:^2.2.0"
"@octokit/core": "npm:^5.0.1"
"@octokit/plugin-paginate-rest": "npm:^9.0.0"
"@octokit/plugin-rest-endpoint-methods": "npm:^10.0.0"
checksum: 81831a78377175d8825fc0b94247ff366c0e87ad1dfa48df9b30b8659506f216dcf1e2d3124fcd318839b92c24ba20165e238b3cc11a34db89c69c40825e9ccf
languageName: node
linkType: hard
"@actions/http-client@npm:^2.2.0":
version: 2.2.0
resolution: "@actions/http-client@npm:2.2.0"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^5.25.4"
checksum: af2051e056b369d78073f3eddd04d838c27495ef7e8bc27b69a8409d7f8652c19b5b6c781a1560675094142bd2548cfa06b6e9a2454c70116007bd4f37cf0cd7
languageName: node
linkType: hard
"@adobe/css-tools@npm:^4.0.1":
version: 4.3.2
resolution: "@adobe/css-tools@npm:4.3.2"
checksum: 973dcb7ba5141f57ec726ddec2e94e8947361bb0c5f0e8ebd1e8aa3a84b28e66db4ad843908825f99730d59784ff3c43868b014a7268676a65950cdb850c42cc
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: e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
languageName: node
linkType: hard
"@ariakit/core@npm:0.4.1":
version: 0.4.1
resolution: "@ariakit/core@npm:0.4.1"
checksum: 536697f9608c1c0694c76e797a0c54a107fda14dec779a5ebbf8fe7684f2fb3f315e0cd337d4e8cc97956377b061b7a8b2046d70024cb5db45667852f4c40960
languageName: node
linkType: hard
"@ariakit/react-core@npm:0.4.1":
version: 0.4.1
resolution: "@ariakit/react-core@npm:0.4.1"
dependencies:
"@ariakit/core": "npm:0.4.1"
"@floating-ui/dom": "npm:^1.0.0"
use-sync-external-store: "npm:^1.2.0"
peerDependencies:
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
checksum: 83731f8be4301555b00d68825c9b195084961dc944affbead636dd7125c95bb5abec6d40646fb051ef8e20108fe641654207da8f7329059d74019a4b29ed28d5
languageName: node
linkType: hard
"@ariakit/react@npm:^0.4.1":
version: 0.4.1
resolution: "@ariakit/react@npm:0.4.1"
dependencies:
"@ariakit/react-core": "npm:0.4.1"
peerDependencies:
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
checksum: 1414b8aac17efea15793c2bcade85a32bdeb9b8cad8355a9f889a16e45ce97ad00699001bc2edd181b003fac7e18cd5f4e96792a581d1107d87a403386eb11e8
languageName: node
linkType: hard
"@auto-it/bot-list@npm:11.1.1":
version: 11.1.1
resolution: "@auto-it/bot-list@npm:11.1.1"
checksum: 37b6d689d23d95ef05a618ac05123f310c1667daa42fdf76338fce8a9a120b90ebb787c6e8c87cbf8e55d34862b30dd37363b8dd41cd351a0e81c3340eade643
languageName: node
linkType: hard
"@auto-it/core@npm:11.1.1, @auto-it/core@npm:^11.1.1":
version: 11.1.1
resolution: "@auto-it/core@npm:11.1.1"
dependencies:
"@auto-it/bot-list": "npm:11.1.1"
"@endemolshinegroup/cosmiconfig-typescript-loader": "npm:^3.0.2"
"@octokit/core": "npm:^3.5.1"
"@octokit/plugin-enterprise-compatibility": "npm:1.3.0"
"@octokit/plugin-retry": "npm:^3.0.9"
"@octokit/plugin-throttling": "npm:^3.6.2"
"@octokit/rest": "npm:^18.12.0"
await-to-js: "npm:^3.0.0"
chalk: "npm:^4.0.0"
cosmiconfig: "npm:7.0.0"
deepmerge: "npm:^4.0.0"
dotenv: "npm:^8.0.0"
endent: "npm:^2.1.0"
enquirer: "npm:^2.3.4"
env-ci: "npm:^5.0.1"
fast-glob: "npm:^3.1.1"
fp-ts: "npm:^2.5.3"
fromentries: "npm:^1.2.0"
gitlog: "npm:^4.0.3"
https-proxy-agent: "npm:^5.0.0"
import-cwd: "npm:^3.0.0"
import-from: "npm:^3.0.0"
io-ts: "npm:^2.1.2"
lodash.chunk: "npm:^4.2.0"
log-symbols: "npm:^4.0.0"
node-fetch: "npm:2.6.7"
parse-author: "npm:^2.0.0"
parse-github-url: "npm:1.0.2"
pretty-ms: "npm:^7.0.0"
requireg: "npm:^0.2.2"
semver: "npm:^7.0.0"
signale: "npm:^1.4.0"
tapable: "npm:^2.2.0"
terminal-link: "npm:^2.1.1"
tinycolor2: "npm:^1.4.1"
ts-node: "npm:^10.9.1"
tslib: "npm:2.1.0"
type-fest: "npm:^0.21.1"
typescript-memoize: "npm:^1.0.0-alpha.3"
url-join: "npm:^4.0.0"
peerDependencies:
typescript: ">=2.7"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 77e60dceecc3dd7e115a8034127b474ebc19109322ad6ee82e8b615ffb8af2845e9f732c43a489a0575e62e0bbdf5d2615c5e9e6fe42cdc444a66cd578478616
languageName: node
linkType: hard
"@auto-it/npm@npm:11.1.1":
version: 11.1.1
resolution: "@auto-it/npm@npm:11.1.1"
dependencies:
"@auto-it/core": "npm:11.1.1"
"@auto-it/package-json-utils": "npm:11.1.1"
await-to-js: "npm:^3.0.0"
endent: "npm:^2.1.0"
env-ci: "npm:^5.0.1"
fp-ts: "npm:^2.5.3"
get-monorepo-packages: "npm:^1.1.0"
io-ts: "npm:^2.1.2"
registry-url: "npm:^5.1.0"
semver: "npm:^7.0.0"
tslib: "npm:2.1.0"
typescript-memoize: "npm:^1.0.0-alpha.3"
url-join: "npm:^4.0.0"
user-home: "npm:^2.0.0"
checksum: f63ffa1c89096d32a51d1d90c9ac724b533bb640cac9b663fe114055e6eacae7875e731c6ec9c5bd3db1b5b3991e2ed12e92528ab09f65ce6a67fec4bf31b49e
languageName: node
linkType: hard
"@auto-it/package-json-utils@npm:11.1.1":
version: 11.1.1
resolution: "@auto-it/package-json-utils@npm:11.1.1"
dependencies:
parse-author: "npm:^2.0.0"
parse-github-url: "npm:1.0.2"
checksum: bc51c25039d4819e8bcf7034c0f5bbae7f29b6581b2b733a68318aacb9d1d42173e056997e1f5bc98e56e26136f441503947ab5532e16d096d5e40cc8635fb23
languageName: node
linkType: hard
"@auto-it/released@npm:11.1.1":
version: 11.1.1
resolution: "@auto-it/released@npm:11.1.1"
dependencies:
"@auto-it/bot-list": "npm:11.1.1"
"@auto-it/core": "npm:11.1.1"
deepmerge: "npm:^4.0.0"
fp-ts: "npm:^2.5.3"
io-ts: "npm:^2.1.2"
tslib: "npm:2.1.0"
checksum: d8660def9bd9daab92f1673832ca2753842586d18cc4300ff0b6dd9c9204ed29a4b06bf9a53927eefec89bc7853d5a4730184519a7232c30d9e76e9d81b32820
languageName: node
linkType: hard
"@auto-it/version-file@npm:11.1.1":
version: 11.1.1
resolution: "@auto-it/version-file@npm:11.1.1"
dependencies:
"@auto-it/core": "npm:11.1.1"
fp-ts: "npm:^2.5.3"
io-ts: "npm:^2.1.2"
semver: "npm:^7.0.0"
tslib: "npm:1.10.0"
checksum: ac4e47264f8002feb344db4d056d78aea1cb4431ae4f45937609ca99f18e58863ea7a82cf664998055d155dbc47ba95dae510243bf85b74b5b0bbc25aa38dd59
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 672d593fd98a88709a1b488db92aabf584b6dad3e8099e04b6d2870e34a2ee668cbbe0e5406e60c0d776b9c34a91cfc427999230ad959518fed56a3db037704c
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: 3e604ad7a8d3fb10e5fe11597d593d0ae8e1d6dc06a06b8d882d5732a6e181f6a77fd4f92fb3ae9002a2007121d49e40bc6b78d83af62d36deb1b457b7f1d977
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: f5aee4a11a113ab9640474e75d398c99538aa30775f484cd519f0de0096ae0d4a6b68d2f0c685f24bd6f2425067c565bc20592c36c0dc1f4d28c1b4751a40734
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: 8c30fa1e427bf2c295077b007835b0dd9af6beb6250e0aa775cecd42a1f517ef211751e7e12c2423f39d9b1c6748b99eb7b73207eb69165abc696cc470d8659e
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: 4e075906c48a46bbb8babb60db3e6b280db405a88c68b77c1496c26218292d5ea509beae3ccc19366ca6bc944c6d37fe347d0917909900dbac86f054a19c71c7
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:3.0.0, @aws-crypto/sha256-js@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-js@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: f9fc2d51631950434d0f91f51c2ce17845d4e8e75971806e21604987e3186ee1e54de8a89e5349585b91cb36e56d5f058d6a45004e1bfbce1351dbb40f479152
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: 8a48788d2866e391354f256aa79b577b2ba1474b50184cbe690467de7e64a79928afece95007ab69a1556f99da97ea129487db091d94489847e14decdc7c9a6f
languageName: node
linkType: hard
"@aws-crypto/util@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/util@npm:3.0.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 92c835b83d7a888b37b2f2a37c82e58bb8fabb617e371173c488d2a71b916c69ee566f0ea0b3f7f4e16296226c49793f95b3d59fc07a7ca00af91f8f9f29e6c4
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.440.0":
version: 3.490.0
resolution: "@aws-sdk/client-s3@npm:3.490.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-sts": "npm:3.490.0"
"@aws-sdk/core": "npm:3.490.0"
"@aws-sdk/credential-provider-node": "npm:3.490.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.489.0"
"@aws-sdk/middleware-expect-continue": "npm:3.489.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.489.0"
"@aws-sdk/middleware-host-header": "npm:3.489.0"
"@aws-sdk/middleware-location-constraint": "npm:3.489.0"
"@aws-sdk/middleware-logger": "npm:3.489.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.489.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.489.0"
"@aws-sdk/middleware-signing": "npm:3.489.0"
"@aws-sdk/middleware-ssec": "npm:3.489.0"
"@aws-sdk/middleware-user-agent": "npm:3.489.0"
"@aws-sdk/region-config-resolver": "npm:3.489.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.489.0"
"@aws-sdk/types": "npm:3.489.0"
"@aws-sdk/util-endpoints": "npm:3.489.0"
"@aws-sdk/util-user-agent-browser": "npm:3.489.0"
"@aws-sdk/util-user-agent-node": "npm:3.489.0"
"@aws-sdk/xml-builder": "npm:3.485.0"
"@smithy/config-resolver": "npm:^2.0.23"
"@smithy/core": "npm:^1.2.2"
"@smithy/eventstream-serde-browser": "npm:^2.0.16"
"@smithy/eventstream-serde-config-resolver": "npm:^2.0.16"
"@smithy/eventstream-serde-node": "npm:^2.0.16"
"@smithy/fetch-http-handler": "npm:^2.3.2"
"@smithy/hash-blob-browser": "npm:^2.0.17"
"@smithy/hash-node": "npm:^2.0.18"
"@smithy/hash-stream-node": "npm:^2.0.18"
"@smithy/invalid-dependency": "npm:^2.0.16"
"@smithy/md5-js": "npm:^2.0.18"
"@smithy/middleware-content-length": "npm:^2.0.18"
"@smithy/middleware-endpoint": "npm:^2.3.0"
"@smithy/middleware-retry": "npm:^2.0.26"
"@smithy/middleware-serde": "npm:^2.0.16"
"@smithy/middleware-stack": "npm:^2.0.10"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/node-http-handler": "npm:^2.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
"@smithy/url-parser": "npm:^2.0.16"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.24"
"@smithy/util-defaults-mode-node": "npm:^2.0.32"
"@smithy/util-endpoints": "npm:^1.0.8"
"@smithy/util-retry": "npm:^2.0.9"
"@smithy/util-stream": "npm:^2.0.24"
"@smithy/util-utf8": "npm:^2.0.2"
"@smithy/util-waiter": "npm:^2.0.16"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 1829e8178fd5c269d018086031f6c11b4e28d339b8eb7f12c0a974b02eb282fbea64510dfca0cac7682b488f5514b81316367c6e83ed89ae465572ac95a07f0b
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.490.0":
version: 3.490.0
resolution: "@aws-sdk/client-sso@npm:3.490.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.490.0"
"@aws-sdk/middleware-host-header": "npm:3.489.0"
"@aws-sdk/middleware-logger": "npm:3.489.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.489.0"
"@aws-sdk/middleware-user-agent": "npm:3.489.0"
"@aws-sdk/region-config-resolver": "npm:3.489.0"
"@aws-sdk/types": "npm:3.489.0"
"@aws-sdk/util-endpoints": "npm:3.489.0"
"@aws-sdk/util-user-agent-browser": "npm:3.489.0"
"@aws-sdk/util-user-agent-node": "npm:3.489.0"
"@smithy/config-resolver": "npm:^2.0.23"
"@smithy/core": "npm:^1.2.2"
"@smithy/fetch-http-handler": "npm:^2.3.2"
"@smithy/hash-node": "npm:^2.0.18"
"@smithy/invalid-dependency": "npm:^2.0.16"
"@smithy/middleware-content-length": "npm:^2.0.18"
"@smithy/middleware-endpoint": "npm:^2.3.0"
"@smithy/middleware-retry": "npm:^2.0.26"
"@smithy/middleware-serde": "npm:^2.0.16"
"@smithy/middleware-stack": "npm:^2.0.10"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/node-http-handler": "npm:^2.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
"@smithy/url-parser": "npm:^2.0.16"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.24"
"@smithy/util-defaults-mode-node": "npm:^2.0.32"
"@smithy/util-endpoints": "npm:^1.0.8"
"@smithy/util-retry": "npm:^2.0.9"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 785147e3c255897345ac5b06daacdefd6f53952bef74d22b8a48906d5e320481eb2f52235db5364e194b3632360056b3a37124974398abcd7374f21ce9fea3a9
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.490.0":
version: 3.490.0
resolution: "@aws-sdk/client-sts@npm:3.490.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.490.0"
"@aws-sdk/credential-provider-node": "npm:3.490.0"
"@aws-sdk/middleware-host-header": "npm:3.489.0"
"@aws-sdk/middleware-logger": "npm:3.489.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.489.0"
"@aws-sdk/middleware-user-agent": "npm:3.489.0"
"@aws-sdk/region-config-resolver": "npm:3.489.0"
"@aws-sdk/types": "npm:3.489.0"
"@aws-sdk/util-endpoints": "npm:3.489.0"
"@aws-sdk/util-user-agent-browser": "npm:3.489.0"
"@aws-sdk/util-user-agent-node": "npm:3.489.0"
"@smithy/config-resolver": "npm:^2.0.23"
"@smithy/core": "npm:^1.2.2"
"@smithy/fetch-http-handler": "npm:^2.3.2"
"@smithy/hash-node": "npm:^2.0.18"
"@smithy/invalid-dependency": "npm:^2.0.16"
"@smithy/middleware-content-length": "npm:^2.0.18"
"@smithy/middleware-endpoint": "npm:^2.3.0"
"@smithy/middleware-retry": "npm:^2.0.26"
"@smithy/middleware-serde": "npm:^2.0.16"
"@smithy/middleware-stack": "npm:^2.0.10"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/node-http-handler": "npm:^2.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
"@smithy/url-parser": "npm:^2.0.16"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.24"
"@smithy/util-defaults-mode-node": "npm:^2.0.32"
"@smithy/util-endpoints": "npm:^1.0.8"
"@smithy/util-middleware": "npm:^2.0.9"
"@smithy/util-retry": "npm:^2.0.9"
"@smithy/util-utf8": "npm:^2.0.2"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 19d1b98694d600cac8a5518a2c05ab8d008c8eaaa25253397462d3d70e1a7c2ae7ab792b6814312536e0a2d140690d38ba166c1c28e82dd02daaa1173675f75c
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.490.0":
version: 3.490.0
resolution: "@aws-sdk/core@npm:3.490.0"
dependencies:
"@smithy/core": "npm:^1.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 3e81f378253be05efda42bd4c8d6d3a4969826f42ed48b904d760a4450f8affefe4f9c389bbdd975949831b0569e522db16d0bdfd829e9a6ddf98f08bc593f38
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/credential-provider-env@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 95ab96ee49a3ebf7957feb97987c2863c280c0daa67dcb5168874b8da3d807909e6b494405d5e42c33871a474db8f252ccd0d5eb2af55430a03d023eb9525c5c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.490.0":
version: 3.490.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.490.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.489.0"
"@aws-sdk/credential-provider-process": "npm:3.489.0"
"@aws-sdk/credential-provider-sso": "npm:3.490.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.489.0"
"@aws-sdk/types": "npm:3.489.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 4e4cd2633a4ea64e88b353bf85e9efc569704d6be5eb48845cb5bfe378706fe0f942d62c958acabf050d6778576b69bcce9dffd74a75ef75c5b5e76b972c3998
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.490.0":
version: 3.490.0
resolution: "@aws-sdk/credential-provider-node@npm:3.490.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.489.0"
"@aws-sdk/credential-provider-ini": "npm:3.490.0"
"@aws-sdk/credential-provider-process": "npm:3.489.0"
"@aws-sdk/credential-provider-sso": "npm:3.490.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.489.0"
"@aws-sdk/types": "npm:3.489.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 2f8141c3e17935d418e10b5b2df8eba4090dee40e53855bc5ddc5357ef80ef769df2e157002ebbce014946dcc1553200c2bd962f36602fe85e788423652d7e46
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/credential-provider-process@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 42f4f5f21de3d29425ac32770707d908b613e7bfc4018ccfa1321a0d1f263364d4df6500268a2c7067b36aba7b1245481a3cd1db0bad7fc5f92a39616997b847
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.490.0":
version: 3.490.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.490.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.490.0"
"@aws-sdk/token-providers": "npm:3.489.0"
"@aws-sdk/types": "npm:3.489.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: ef2eff8fbc6f3e7a4cd5dfd3eeb88d4ce4a3841813bd405a7f52ce650795a5bcf24363632aaa6fb7a88e980fdf4684c899bd74f83323a2f9c9b6d550746e7ef3
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 911bc3fd2830167218083a42743360e91a04fe06bfe25a6108d7be94a851848ec9563cf7287c504011c3d88307d80f3340c657271ecf356995f1b6e369040cc6
languageName: node
linkType: hard
"@aws-sdk/lib-storage@npm:^3.440.0":
version: 3.490.0
resolution: "@aws-sdk/lib-storage@npm:3.490.0"
dependencies:
"@smithy/abort-controller": "npm:^2.0.1"
"@smithy/middleware-endpoint": "npm:^2.3.0"
"@smithy/smithy-client": "npm:^2.2.1"
buffer: "npm:5.6.0"
events: "npm:3.3.0"
stream-browserify: "npm:3.0.0"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-sdk/client-s3": ^3.0.0
checksum: 2fc49706f953659af0f8568c70c86308652a01abe25aacc3f03507c190c235ebfbec4a6b5f75a002ef8768e20dd95e9083c3a1eda5fa8a7c0548cf87fd04e831
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@aws-sdk/util-arn-parser": "npm:3.465.0"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/types": "npm:^2.8.0"
"@smithy/util-config-provider": "npm:^2.1.0"
tslib: "npm:^2.5.0"
checksum: 06a3c32eebd74774264eb086eaaa90914caa37f1d136f8ea0cdcbe81ffecd37e444a124101843e8595184757582077fcc78aba293be6871a3e2ae79ed40255f0
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 9df967db833614b90615a40a318043ea457d3b7211cc8a4f23c8a38766bc76966b26957b9acc1db787c0f10df86f7291c96a07ac255a147d50a7b55de4695a87
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.489.0"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@aws-crypto/crc32c": "npm:3.0.0"
"@aws-sdk/types": "npm:3.489.0"
"@smithy/is-array-buffer": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/types": "npm:^2.8.0"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: e4289a142603a0d96c51c1d0c107f25217d01066d864f218c11766b35aa765f31672414753b83dd2ae33c5e280177719cd0dfc5ddc7968e04ff1a13976371aee
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/middleware-host-header@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 3f80f716911369f27be55b553e6be74f006039b8ae4888440ccb503c74e9b9dfcf49c98a0582e3f9c84e89de7dad4199fb054c27e56c24c33238c2ad13e46433
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 2609d38fed15fbce6612ba7d0d8b0e834e9d2ba336c208760941d036e7b24af1169164c0bea562321c7a12656e6f2fc1d54e05984ba4e2e0413163f2b093c3cc
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/middleware-logger@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 0bbf9d08c70cf1d87c67b3aed49ce1e0252b3c654a4e878648a56d05c59a4b5c23485acb6d9804cdfa9add9f88dcaefba249128d405a165ecf6a141e0217974f
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 91eb0b3b466478b27fd7f3e7f09a9596fe91fb50f1101ff2ed5b2d28e59e810797336a19917a5e9bd61ddf0aa52d210ff4273582bfc779910eece8a7ea0a8461
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@aws-sdk/util-arn-parser": "npm:3.465.0"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
"@smithy/util-config-provider": "npm:^2.1.0"
tslib: "npm:^2.5.0"
checksum: 72731d234ad47aabbd1dbd70ac367fcd9484524ef9c26b2e5d2f446670a3614a1414cc28cf2c4024bb048f3381d50fb37ce4fb190c71e6ada9a4f99caa51cf1e
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/middleware-signing@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/types": "npm:^2.8.0"
"@smithy/util-middleware": "npm:^2.0.9"
tslib: "npm:^2.5.0"
checksum: 6fedba456932f5a80c1604a841c08c74de9a091db389f6561f0f475630c643e309e3ede5bb4c96002a7fc17ac30eb9b6a8dd12989235e50aefd316ab282975a1
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/middleware-ssec@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: e59d0153db00301a2843f8c029ade88ff81408f02625e4ad129b31f7f0c600c31c9430277b1a2f7b68e41db0524a82c2c8059883e91c078d5fc2aa938baad7f7
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@aws-sdk/util-endpoints": "npm:3.489.0"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 51fc7a8a03db40ccef888725c4893951dd4114077851225e691b3144924046272c75a2263f8651723977e5aac9463ed6d470c0b6e13e1555cc59f2e6d4754329
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/region-config-resolver@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/types": "npm:^2.8.0"
"@smithy/util-config-provider": "npm:^2.1.0"
"@smithy/util-middleware": "npm:^2.0.9"
tslib: "npm:^2.5.0"
checksum: 045a630c94638a05b60f8d4805ff0f0709c39201e44f4c3453c8fc1d6cf331a550bb5e74980cadc86436a67786b7fc34380a25503d720e160b74c1eff434abaa
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.489.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.489.0"
"@aws-sdk/types": "npm:3.489.0"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 0b3dd6f6b66cf4e392b2ceb9656acdb8a55fccf2bb2045c4238aa237c73697bb1082bca252e7435f2830c72b7e31c2253f74daefb4edc69f1c168f72bad800d4
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/token-providers@npm:3.489.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/middleware-host-header": "npm:3.489.0"
"@aws-sdk/middleware-logger": "npm:3.489.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.489.0"
"@aws-sdk/middleware-user-agent": "npm:3.489.0"
"@aws-sdk/region-config-resolver": "npm:3.489.0"
"@aws-sdk/types": "npm:3.489.0"
"@aws-sdk/util-endpoints": "npm:3.489.0"
"@aws-sdk/util-user-agent-browser": "npm:3.489.0"
"@aws-sdk/util-user-agent-node": "npm:3.489.0"
"@smithy/config-resolver": "npm:^2.0.23"
"@smithy/fetch-http-handler": "npm:^2.3.2"
"@smithy/hash-node": "npm:^2.0.18"
"@smithy/invalid-dependency": "npm:^2.0.16"
"@smithy/middleware-content-length": "npm:^2.0.18"
"@smithy/middleware-endpoint": "npm:^2.3.0"
"@smithy/middleware-retry": "npm:^2.0.26"
"@smithy/middleware-serde": "npm:^2.0.16"
"@smithy/middleware-stack": "npm:^2.0.10"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/node-http-handler": "npm:^2.2.2"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
"@smithy/url-parser": "npm:^2.0.16"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.24"
"@smithy/util-defaults-mode-node": "npm:^2.0.32"
"@smithy/util-endpoints": "npm:^1.0.8"
"@smithy/util-retry": "npm:^2.0.9"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: ee7a20eff71284f33a2f9ad9aeb0f8a3c2a40adbb8b88053a903a64115b3b802aa9a8f8de781b422d88340b8d6fe0ff6c255c1ae6792bde569fed817d7a8933c
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.489.0, @aws-sdk/types@npm:^3.222.0":
version: 3.489.0
resolution: "@aws-sdk/types@npm:3.489.0"
dependencies:
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 48778dad14f6966e974b14b9d421372846c0242e2aa47f76a8161b22f5d9430bf530b88163d913a8acad48480199fc99a012df3689e94a317c1dc875f4a353ed
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.465.0":
version: 3.465.0
resolution: "@aws-sdk/util-arn-parser@npm:3.465.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 0fb11c7e3d09901708f46cb0c885c2df7a8e8af70560484fa478bf9e2f8ee2aa6028c67187c0520eec6a92003bc43ae68c0ddc32db3af3e6d554b48080910af5
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/util-endpoints@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/types": "npm:^2.8.0"
"@smithy/util-endpoints": "npm:^1.0.8"
tslib: "npm:^2.5.0"
checksum: 68f921982f651be0254040633e602406648a6dafa9c6030a2e97b3a632a21866cb7bac098f3d2212aebf866032a26a9e9b8e53a6531c1773bc4a990d17399e39
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.465.0
resolution: "@aws-sdk/util-locate-window@npm:3.465.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: a8caa2a0052a7cac4038cb04e9e33d63e3524802e8d0a5865a22b8031f391537873a839e1bc7e1bb75f36f7b7fa590aed5b1bfcb02017177d0ba5a4088f584b1
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/types": "npm:^2.8.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.5.0"
checksum: 2bb414b8d8a84f159bc8635796a5eafdeac7d325a8d4bec5e4c735b2f12029b54f750ec53b22f44f2a402aa2e3d7935572e3c77fc60ddaf776f5c34ac8707768
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 95dc1e07b6b8b38b8d3bb922ae3619c4910dbc413a24bc5daca6ecaeab6891c2f3765ca85ed64a80532adfab09fc70e1d224c7679d763cecebe1ec48e4975bc8
languageName: node
linkType: hard
"@aws-sdk/util-utf8-browser@npm:^3.0.0":
version: 3.259.0
resolution: "@aws-sdk/util-utf8-browser@npm:3.259.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: bdcf29a92a9a1010b44bf8bade3f1224cb6577a6550b39df97cc053d353f2868d355c25589d61e1da54691d65350d8578a496840ad770ed916a6c3af0971f657
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.485.0":
version: 3.485.0
resolution: "@aws-sdk/xml-builder@npm:3.485.0"
dependencies:
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 82bee30922662391703fca2ca1c735f6a91b031e3330091ca3fab774062742ac0dd88085feeebc2431e7d3c3d02f50bfa0d1bec7673e691dcd07ef03ff6bb880
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: 44e58529c9d93083288dc9e649c553c5ba997475a7b0758cc3ddc4d77b8a7d985dbe78cc39c9bbc61f26d50af6da1ddf0a3427eae8cc222a9370619b671ed8f5
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.23.3, @babel/compat-data@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/compat-data@npm:7.23.5"
checksum: 088f14f646ecbddd5ef89f120a60a1b3389a50a9705d44603dca77662707d0175a5e0e0da3943c3298f1907a4ab871468656fbbf74bb7842cd8b0686b2c19736
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.18.6, @babel/core@npm:^7.20.7":
version: 7.23.9
resolution: "@babel/core@npm:7.23.9"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.23.5"
"@babel/generator": "npm:^7.23.6"
"@babel/helper-compilation-targets": "npm:^7.23.6"
"@babel/helper-module-transforms": "npm:^7.23.3"
"@babel/helpers": "npm:^7.23.9"
"@babel/parser": "npm:^7.23.9"
"@babel/template": "npm:^7.23.9"
"@babel/traverse": "npm:^7.23.9"
"@babel/types": "npm:^7.23.9"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 268cdbb86bef1b8ea5b1300f2f325e56a1740a5051360cb228ffeaa0f80282b6674f3a2b4d6466adb0691183759b88d4c37b4a4f77232c84a49ed771c84cdc27
languageName: node
linkType: hard
"@babel/generator@npm:^7.18.6, @babel/generator@npm:^7.23.6, @babel/generator@npm:^7.7.2":
version: 7.23.6
resolution: "@babel/generator@npm:7.23.6"
dependencies:
"@babel/types": "npm:^7.23.6"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: 864090d5122c0aa3074471fd7b79d8a880c1468480cbd28925020a3dcc7eb6e98bedcdb38983df299c12b44b166e30915b8085a7bc126e68fa7e2aadc7bd1ac5
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-annotate-as-pure@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 53da330f1835c46f26b7bf4da31f7a496dee9fd8696cca12366b94ba19d97421ce519a74a837f687749318f94d1a37f8d1abcbf35e8ed22c32d16373b2f6198d
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.15":
version: 7.22.15
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 639c697a1c729f9fafa2dd4c9af2e18568190299b5907bd4c2d0bc818fcbd1e83ffeecc2af24327a7faa7ac4c34edd9d7940510a5e66296c19bad17001cf5c7a
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.22.15, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/helper-compilation-targets@npm:7.23.6"
dependencies:
"@babel/compat-data": "npm:^7.23.5"
"@babel/helper-validator-option": "npm:^7.23.5"
browserslist: "npm:^4.22.2"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 05595cd73087ddcd81b82d2f3297aac0c0422858dfdded43d304786cf680ec33e846e2317e6992d2c964ee61d93945cbf1fa8ec80b55aee5bfb159227fb02cb9
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.22.15, @babel/helper-create-class-features-plugin@npm:^7.23.6":
version: 7.23.7
resolution: "@babel/helper-create-class-features-plugin@npm:7.23.7"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-function-name": "npm:^7.23.0"
"@babel/helper-member-expression-to-functions": "npm:^7.23.0"
"@babel/helper-optimise-call-expression": "npm:^7.22.5"
"@babel/helper-replace-supers": "npm:^7.22.20"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: c8b3ef58fca399a25f00d703b0fb2ac1d86642d9e3bd7af04df77857641ed08aaca042ffb271ef93771f9272481fd1cf102a9bddfcee407fb126c927deeef6a7
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.15, @babel/helper-create-regexp-features-plugin@npm:^7.22.5":
version: 7.22.15
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
regexpu-core: "npm:^5.3.1"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 886b675e82f1327b4f7a2c69a68eefdb5dbb0b9d4762c2d4f42a694960a9ccf61e1a3bcad601efd92c110033eb1a944fcd1e5cac188aa6b2e2076b541e210e20
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.4.4":
version: 0.4.4