-
-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathyarn.lock
More file actions
9824 lines (8897 loc) · 349 KB
/
yarn.lock
File metadata and controls
9824 lines (8897 loc) · 349 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@apideck/better-ajv-errors@npm:^0.3.1":
version: 0.3.6
resolution: "@apideck/better-ajv-errors@npm:0.3.6"
dependencies:
json-schema: "npm:^0.4.0"
jsonpointer: "npm:^5.0.0"
leven: "npm:^3.1.0"
peerDependencies:
ajv: ">=8"
checksum: 10c0/f89a1e16ecbc2ada91c56d4391c8345471e385f0b9c38d62c3bccac40ec94482cdfa496d4c2fe0af411e9851a9931c0d5042a8040f52213f603ba6b6fd7f949b
languageName: node
linkType: hard
"@aws-amplify/analytics@npm:7.0.93":
version: 7.0.93
resolution: "@aws-amplify/analytics@npm:7.0.93"
dependencies:
"@aws-sdk/client-firehose": "npm:3.982.0"
"@aws-sdk/client-kinesis": "npm:3.982.0"
"@aws-sdk/client-personalize-events": "npm:3.982.0"
"@smithy/util-utf8": "npm:2.0.0"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10c0/a399a8cbf4d00099bb0503abc5db657ce2e726fedd167115d4dbdc855f3c07d62579b14095070914c1b1b8997b550c86481ab9b61b947e89adbc4d41a226efa3
languageName: node
linkType: hard
"@aws-amplify/api-graphql@npm:4.8.5":
version: 4.8.5
resolution: "@aws-amplify/api-graphql@npm:4.8.5"
dependencies:
"@aws-amplify/api-rest": "npm:4.6.3"
"@aws-amplify/core": "npm:6.16.1"
"@aws-amplify/data-schema": "npm:^1.7.0"
"@aws-sdk/types": "npm:3.973.1"
graphql: "npm:15.8.0"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.5.0"
uuid: "npm:^11.0.0"
checksum: 10c0/021f6b5a6ca3913a75830ade4d549bf972885c1e10cbbda4cf84e6d780c3a16d82107058e99dc7315314548ab76034e5e7e0b0aee320f09f254bff89ff9a18ec
languageName: node
linkType: hard
"@aws-amplify/api-rest@npm:4.6.3":
version: 4.6.3
resolution: "@aws-amplify/api-rest@npm:4.6.3"
dependencies:
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10c0/06d7ad0ebc1ed0f6d561d0f8975712ff1042061be705f2d6543717aca8809dc228bee3fc94bd1eea60b62e797215c4a1dc58928cdac7eb5e82d40b24b0f036fd
languageName: node
linkType: hard
"@aws-amplify/api@npm:6.3.24":
version: 6.3.24
resolution: "@aws-amplify/api@npm:6.3.24"
dependencies:
"@aws-amplify/api-graphql": "npm:4.8.5"
"@aws-amplify/api-rest": "npm:4.6.3"
"@aws-amplify/data-schema": "npm:^1.7.0"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10c0/d275c6304ad2f58f887c1fd48c88e16909ff1b9dfc1d02e16e1415dcf92fc723fd30de32c6bda5b7eb61f7ff101ede9a9c040a79ae835cbfa7acc1bae9d8082b
languageName: node
linkType: hard
"@aws-amplify/auth@npm:6.19.1":
version: 6.19.1
resolution: "@aws-amplify/auth@npm:6.19.1"
dependencies:
"@aws-crypto/sha256-js": "npm:5.2.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
"@aws-amplify/react-native": ^1.1.10
peerDependenciesMeta:
"@aws-amplify/react-native":
optional: true
checksum: 10c0/42caba8fc57d6bc59fff6703b670b17a265506b64b254c5b2aece1f33015ac5cbb7e38235deb36193dfa3d49e0ab42238446ad754ae4a767e7e1bffd9c06bbd1
languageName: node
linkType: hard
"@aws-amplify/core@npm:6.16.1":
version: 6.16.1
resolution: "@aws-amplify/core@npm:6.16.1"
dependencies:
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/types": "npm:3.973.1"
"@smithy/util-hex-encoding": "npm:2.0.0"
"@types/uuid": "npm:^9.0.0"
js-cookie: "npm:^3.0.5"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.5.0"
uuid: "npm:^11.0.0"
checksum: 10c0/fc54b51c412616848446d48595855574e03dd1252a0fd09e8ee9ff5eb8fec35542e98353cb343c37fb5d20c859cc0a053a322c909eacd702b8c2407ab8cd8392
languageName: node
linkType: hard
"@aws-amplify/data-schema-types@npm:*":
version: 1.2.1
resolution: "@aws-amplify/data-schema-types@npm:1.2.1"
dependencies:
graphql: "npm:15.8.0"
rxjs: "npm:^7.8.1"
checksum: 10c0/55196fb8533f0067161d7fcbe4ca1c22bab3bb5496974ab252a884cb41ff99054437055c3b620070e51b8aefa0f29721d83b97de39c8ecc4860be268e44a954e
languageName: node
linkType: hard
"@aws-amplify/data-schema@npm:^1.7.0":
version: 1.25.1
resolution: "@aws-amplify/data-schema@npm:1.25.1"
dependencies:
"@aws-amplify/data-schema-types": "npm:*"
"@smithy/util-base64": "npm:^3.0.0"
"@types/aws-lambda": "npm:^8.10.134"
"@types/json-schema": "npm:^7.0.15"
rxjs: "npm:^7.8.1"
checksum: 10c0/610c42ce7e00cbd963e882f4f0b5bb5e17e87d8a64446888df11455447aa00f64c7277dc180707f1321c99bbf017f0e6f5272512eb3ffcc1707d3e3e4c73880a
languageName: node
linkType: hard
"@aws-amplify/datastore@npm:5.1.5":
version: 5.1.5
resolution: "@aws-amplify/datastore@npm:5.1.5"
dependencies:
"@aws-amplify/api": "npm:6.3.24"
"@aws-amplify/api-graphql": "npm:4.8.5"
buffer: "npm:4.9.2"
idb: "npm:5.0.6"
immer: "npm:9.0.6"
rxjs: "npm:^7.8.1"
ulid: "npm:^2.3.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10c0/97d8a4669a4b3ee3bf34ab32bf879d31d42f3796f288993932df6bbb64d9b9c8bc0c133bc45023a40fc41a6b8f13910f0959fe012e950c7c5cc073774fe1bed9
languageName: node
linkType: hard
"@aws-amplify/notifications@npm:2.0.93":
version: 2.0.93
resolution: "@aws-amplify/notifications@npm:2.0.93"
dependencies:
"@aws-sdk/types": "npm:3.973.1"
lodash: "npm:^4.17.21"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10c0/9344cfb03380e73eb77f9004988494d6e2e828305dbcebcd99026e87ec89ffb22c3175152de18f692630a76de9ae30fa382203309c8c73bade28370022145e0c
languageName: node
linkType: hard
"@aws-amplify/storage@npm:6.13.1":
version: 6.13.1
resolution: "@aws-amplify/storage@npm:6.13.1"
dependencies:
"@aws-sdk/types": "npm:3.973.1"
"@smithy/md5-js": "npm:2.0.7"
buffer: "npm:4.9.2"
crc-32: "npm:1.2.2"
fast-xml-parser: "npm:^5.3.4"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10c0/3ed137c387bebcf10c45857e8eb1a3c9e4a090387cc22cf058786b6347624b0d93564eead793627b87b6af2720251fec1fc36f154dcfd65d71f97c0b362dcd10
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/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-firehose@npm:3.982.0":
version: 3.982.0
resolution: "@aws-sdk/client-firehose@npm:3.982.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.6"
"@aws-sdk/credential-provider-node": "npm:^3.972.5"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.6"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.982.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.4"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f3b181061828e25c48afb98e88436c61a63723b7329fe5f31dc1fff30360ac2e9cd5b00c9f4c79c2bf5393da66e64b1350961b3fa9a81ff4a93eb51d66fc0775
languageName: node
linkType: hard
"@aws-sdk/client-kinesis@npm:3.982.0":
version: 3.982.0
resolution: "@aws-sdk/client-kinesis@npm:3.982.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.6"
"@aws-sdk/credential-provider-node": "npm:^3.972.5"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.6"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.982.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.4"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.8"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.8"
"@smithy/eventstream-serde-node": "npm:^4.2.8"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/73b793e2c90f275f4f32f9fa6d7caa6522288a8307998a1b309794108128dbcd1ff64e2d6473913d328c40c539a0357fa60dcadf7772376c0e1f8b44ecb55003
languageName: node
linkType: hard
"@aws-sdk/client-personalize-events@npm:3.982.0":
version: 3.982.0
resolution: "@aws-sdk/client-personalize-events@npm:3.982.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.6"
"@aws-sdk/credential-provider-node": "npm:^3.972.5"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.6"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.982.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.4"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/77a9b66cd69e1dc4d9f758f12130dd2800056d54092e51880aa0c687e9656a4dcdc7111e1984e922339207390f784d21f263fcff95873cff58ef9407b7050039
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.973.18, @aws-sdk/core@npm:^3.973.6":
version: 3.973.18
resolution: "@aws-sdk/core@npm:3.973.18"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/xml-builder": "npm:^3.972.10"
"@smithy/core": "npm:^3.23.8"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/signature-v4": "npm:^5.3.11"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-middleware": "npm:^4.2.11"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/7acbaa195346509fce8e33bd470b5df81ccd5d8e1880798769ae1373f892af0259d2dbb5689c6f416282158af0de1e9b1ab66310f9f46bd5a038cf1f91be948d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.16":
version: 3.972.16
resolution: "@aws-sdk/credential-provider-env@npm:3.972.16"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1df76908da7f24b4a2229f8da0cce0a1a4e36e0b3ee20e8feeb2ba6e144a7553aab45b39e04d38ae7389f2f74e2631ccf8a057237f6c37477599262aa8e5bfe7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.18":
version: 3.972.18
resolution: "@aws-sdk/credential-provider-http@npm:3.972.18"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/fetch-http-handler": "npm:^5.3.13"
"@smithy/node-http-handler": "npm:^4.4.14"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-stream": "npm:^4.5.17"
tslib: "npm:^2.6.2"
checksum: 10c0/115d128c79a200a043a274382bfbdce4d18565ce00c33d769930b6dfe868053ecfcc63d401cba6033bea41be0f7628e0e7359a8e4d12d068890d4a51cddc1624
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:^3.972.16":
version: 3.972.16
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.16"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/credential-provider-env": "npm:^3.972.16"
"@aws-sdk/credential-provider-http": "npm:^3.972.18"
"@aws-sdk/credential-provider-login": "npm:^3.972.16"
"@aws-sdk/credential-provider-process": "npm:^3.972.16"
"@aws-sdk/credential-provider-sso": "npm:^3.972.16"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.16"
"@aws-sdk/nested-clients": "npm:^3.996.6"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/credential-provider-imds": "npm:^4.2.11"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c613ac8e48d29e67f6db54d4be5d42ea66530a621b0acd3b612069775e5107e2b090056bba563656cf4cf6a2a81d1ac3ae3dadadf96c020f7959b3a77428cf19
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.16":
version: 3.972.16
resolution: "@aws-sdk/credential-provider-login@npm:3.972.16"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/nested-clients": "npm:^3.996.6"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d7b40b1adcc5449e7c2ece7861519a0b2db1dd0795d05ea7b5f292c16a337cffe3e03b25a7452a0eea22557bd0595690b476bb4ef2aa6e352b275a8495fe250a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.5":
version: 3.972.17
resolution: "@aws-sdk/credential-provider-node@npm:3.972.17"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.16"
"@aws-sdk/credential-provider-http": "npm:^3.972.18"
"@aws-sdk/credential-provider-ini": "npm:^3.972.16"
"@aws-sdk/credential-provider-process": "npm:^3.972.16"
"@aws-sdk/credential-provider-sso": "npm:^3.972.16"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.16"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/credential-provider-imds": "npm:^4.2.11"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e8fe2a7d3b33ce7dc390429e7080ec39d55e5dca23db658a89f53fec7298b4b6554e29565560988d470c197ad2613fc0ea12af0c8d6065fe735e63eb80e8d4db
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.16":
version: 3.972.16
resolution: "@aws-sdk/credential-provider-process@npm:3.972.16"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/47bfbe7cc5f340a916822d4c6029a19520b098b5150ab3c2b0710ca2f6086ca08ea9c565b8ba494dde6b9dff61f4006ff71028438c7b95dea21fb80c073e11e7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.16":
version: 3.972.16
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.16"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/nested-clients": "npm:^3.996.6"
"@aws-sdk/token-providers": "npm:3.1003.0"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e7a95680d5f4e5b03629ecfe11ba979696beb94c8d2b8c7052a8bcabebdbc43c4be59c6df07517d667ae45e879cec607a9274f60ed465fdb2907c95d58c80908
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.16":
version: 3.972.16
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.16"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/nested-clients": "npm:^3.996.6"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b38801b0a9b35e461e4894c071a091682bbef2724149d850817d4a2ee4770b50ba3ac75caae0a5f321f2ff898be8a129df60fb24cc6be323c5d7f62a01107da1
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.3, @aws-sdk/middleware-host-header@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/middleware-host-header@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9342dafb33e94851043daefa85988ce0a334c4c3cda8117b02c2bbc018a87e215e5f35c535933caee87721f5dc10fcf55b8df60f27fd6337d7ec332fe9c9c621
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.3, @aws-sdk/middleware-logger@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/middleware-logger@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/390ac837c32499d47d339939a838a4a46ab7b5fc0a883d98d4e0aed513f0eaf810d838aee0ae5314daed79c7dc8785529bf0807365737cdd91da218e1035a2ba
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.3, @aws-sdk/middleware-recursion-detection@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a38d9c1c4e8b1c5f1716e80d029641ba1fc0db8734702eace84b2d011822dc69bd81dfbde70c6a2acf3c3245b3734fc74b43386d7573e40eb26eb77ad9b8c85a
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.18, @aws-sdk/middleware-user-agent@npm:^3.972.6":
version: 3.972.18
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.18"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/util-endpoints": "npm:^3.996.4"
"@smithy/core": "npm:^3.23.8"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a8befe71ea6f9f1304eb33f57cd6d33e5126acd3841201b755a4dc48e6c7d085a8f7e19d777037e67f356a335ae128e69470a6f150e8cd5b9a1fe0fc04edc3f1
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:^3.996.6":
version: 3.996.6
resolution: "@aws-sdk/nested-clients@npm:3.996.6"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/middleware-host-header": "npm:^3.972.7"
"@aws-sdk/middleware-logger": "npm:^3.972.7"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.7"
"@aws-sdk/middleware-user-agent": "npm:^3.972.18"
"@aws-sdk/region-config-resolver": "npm:^3.972.7"
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/util-endpoints": "npm:^3.996.4"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.7"
"@aws-sdk/util-user-agent-node": "npm:^3.973.3"
"@smithy/config-resolver": "npm:^4.4.10"
"@smithy/core": "npm:^3.23.8"
"@smithy/fetch-http-handler": "npm:^5.3.13"
"@smithy/hash-node": "npm:^4.2.11"
"@smithy/invalid-dependency": "npm:^4.2.11"
"@smithy/middleware-content-length": "npm:^4.2.11"
"@smithy/middleware-endpoint": "npm:^4.4.22"
"@smithy/middleware-retry": "npm:^4.4.39"
"@smithy/middleware-serde": "npm:^4.2.12"
"@smithy/middleware-stack": "npm:^4.2.11"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/node-http-handler": "npm:^4.4.14"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.11"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.38"
"@smithy/util-defaults-mode-node": "npm:^4.2.41"
"@smithy/util-endpoints": "npm:^3.3.2"
"@smithy/util-middleware": "npm:^4.2.11"
"@smithy/util-retry": "npm:^4.2.11"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/38bcb2c10c9f0b40e1c983a29fbed76ed2c33776cbc6942f2dcc83fc1bfae23e9b05069d249daf10e3e1508b94b8d433d9a59ff39f6fa43a6c5ae1bafd9b3403
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.3, @aws-sdk/region-config-resolver@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/region-config-resolver@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/config-resolver": "npm:^4.4.10"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cef6a7dfbfa81c2d2773005c4dfca28c5fdd8a03fb2e6f71645f57280af2ef0f757f1d9c00bc146f1fd305aaec81ede67aaf5f40ea67d0d8a36160eb10303eec
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.1003.0":
version: 3.1003.0
resolution: "@aws-sdk/token-providers@npm:3.1003.0"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/nested-clients": "npm:^3.996.6"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/73c9ffa7bb94be10ad297819060b76441d9b8209d6c6c999b179dddee4cf2b5040a3b773dd2690de8c6a2eba03a595ec291f2406424b4b68822d3210acbf761e
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.973.1":
version: 3.973.1
resolution: "@aws-sdk/types@npm:3.973.1"
dependencies:
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8a4a183cc39b4d6f4d065ece884b50d397a54b17add32b649f49adbe676174e7bee2c3c94394fc5227a4fccb96c34482291a1eb2702158e1dbb12c441af32863
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.973.1, @aws-sdk/types@npm:^3.973.5":
version: 3.973.5
resolution: "@aws-sdk/types@npm:3.973.5"
dependencies:
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9d21676eb696afc71e915b96f87ae8c67f53a52b3cf3b20f6c35e05654c5a36b67f917310ecd1dd6b696be2019e184dc5bd278318ee1f0051e51f80b292ed578
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.982.0":
version: 3.982.0
resolution: "@aws-sdk/util-endpoints@npm:3.982.0"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/1ebdb4e53e80a5c8f8f742268bbbabd3834b58784e1f6f6015985865893261830e3143282d84a6b1730f069ccd66e0e5d41b1082738c6800b2dac70f189c7e58
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:^3.996.4":
version: 3.996.4
resolution: "@aws-sdk/util-endpoints@npm:3.996.4"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.11"
"@smithy/util-endpoints": "npm:^3.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/d2004a3a1951337d65f6f158007002cb5c5da962d0a6a9c0ace832af55fefb791636f088b29012e346e73fd35326c62ff79b3fe6671e741d94ffe2d64876ee9a
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.965.5
resolution: "@aws-sdk/util-locate-window@npm:3.965.5"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/f5e33a4d7cbfd832ce4bf35b0e532bcabb4084e9b17d45903bccd43f0e221366a423b6acdea8c705ec66b9776f1e624fd640ad716f7446d014e698249d091e83
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:^3.972.3, @aws-sdk/util-user-agent-browser@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/types": "npm:^4.13.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/dc2b3ded5314e77a355a2902383d9f5a7344a642a37d9896b8b9e7d110996026474cc1f91a0756c723d8e671a4bb600b345ea178b2809efbce396830d60e09c8
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:^3.972.4, @aws-sdk/util-user-agent-node@npm:^3.973.3":
version: 3.973.3
resolution: "@aws-sdk/util-user-agent-node@npm:3.973.3"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:^3.972.18"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/0b71bf779f5c5d157d9fe557e9b5f824d1c4184702e17e7540a681a23653d0529bc252bc72c0afe34c1ec2192be7e95ed45c282939680543ec47be9431f2ecb4
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/xml-builder@npm:3.972.10"
dependencies:
"@smithy/types": "npm:^4.13.0"
fast-xml-parser: "npm:5.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/90adcedabfb4d6744f6c2fae932d1529843a2b5f2e07ca9332e73acac94eaeceb7c235758c233b338724ef124762f8ade034c56699e9b2db5c3f588ebdc2999f
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.2":
version: 0.2.3
resolution: "@aws/lambda-invoke-store@npm:0.2.3"
checksum: 10c0/3869a5d2494ff81fba306d603c0f2e36c59f89c4efdffd1105a208a595da77059547209a163b6f0c1b716e9d273ce24f94dcbd5a08bad74b2602d13711b0cb3b
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.28.6, @babel/code-frame@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/code-frame@npm:7.29.0"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.28.5"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/d34cc504e7765dfb576a663d97067afb614525806b5cad1a5cc1a7183b916fec8ff57fa233585e3926fd5a9e6b31aae6df91aa81ae9775fb7a28f658d3346f0d
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.28.6, @babel/compat-data@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/compat-data@npm:7.29.0"
checksum: 10c0/08f348554989d23aa801bf1405aa34b15e841c0d52d79da7e524285c77a5f9d298e70e11d91cc578d8e2c9542efc586d50c5f5cf8e1915b254a9dcf786913a94
languageName: node
linkType: hard
"@babel/core@npm:^7.18.5, @babel/core@npm:^7.24.4":
version: 7.29.0
resolution: "@babel/core@npm:7.29.0"
dependencies:
"@babel/code-frame": "npm:^7.29.0"
"@babel/generator": "npm:^7.29.0"
"@babel/helper-compilation-targets": "npm:^7.28.6"
"@babel/helper-module-transforms": "npm:^7.28.6"
"@babel/helpers": "npm:^7.28.6"
"@babel/parser": "npm:^7.29.0"
"@babel/template": "npm:^7.28.6"
"@babel/traverse": "npm:^7.29.0"
"@babel/types": "npm:^7.29.0"
"@jridgewell/remapping": "npm:^2.3.5"
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: 10c0/5127d2e8e842ae409e11bcbb5c2dff9874abf5415e8026925af7308e903f4f43397341467a130490d1a39884f461bc2b67f3063bce0be44340db89687fd852aa
languageName: node
linkType: hard
"@babel/generator@npm:^7.29.0":
version: 7.29.1
resolution: "@babel/generator@npm:7.29.1"
dependencies:
"@babel/parser": "npm:^7.29.0"
"@babel/types": "npm:^7.29.0"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
checksum: 10c0/349086e6876258ef3fb2823030fee0f6c0eb9c3ebe35fc572e16997f8c030d765f636ddc6299edae63e760ea6658f8ee9a2edfa6d6b24c9a80c917916b973551
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.27.1, @babel/helper-annotate-as-pure@npm:^7.27.3":
version: 7.27.3
resolution: "@babel/helper-annotate-as-pure@npm:7.27.3"
dependencies:
"@babel/types": "npm:^7.27.3"
checksum: 10c0/94996ce0a05b7229f956033e6dcd69393db2b0886d0db6aff41e704390402b8cdcca11f61449cb4f86cfd9e61b5ad3a73e4fa661eeed7846b125bd1c33dbc633
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.27.1, @babel/helper-compilation-targets@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-compilation-targets@npm:7.28.6"
dependencies:
"@babel/compat-data": "npm:^7.28.6"
"@babel/helper-validator-option": "npm:^7.27.1"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10c0/3fcdf3b1b857a1578e99d20508859dbd3f22f3c87b8a0f3dc540627b4be539bae7f6e61e49d931542fe5b557545347272bbdacd7f58a5c77025a18b745593a50
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-create-class-features-plugin@npm:7.28.6"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.27.3"
"@babel/helper-member-expression-to-functions": "npm:^7.28.5"
"@babel/helper-optimise-call-expression": "npm:^7.27.1"
"@babel/helper-replace-supers": "npm:^7.28.6"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1"
"@babel/traverse": "npm:^7.28.6"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/0b62b46717891f4366006b88c9b7f277980d4f578c4c3789b7a4f5a2e09e121de4cda9a414ab403986745cd3ad1af3fe2d948c9f78ab80d4dc085afc9602af50
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.27.1, @babel/helper-create-regexp-features-plugin@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.28.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.27.3"
regexpu-core: "npm:^6.3.1"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/7af3d604cadecdb2b0d2cedd696507f02a53a58be0523281c2d6766211443b55161dde1e6c0d96ab16ddfd82a2607a2f792390caa24797e9733631f8aa86859f
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.6.6":
version: 0.6.6
resolution: "@babel/helper-define-polyfill-provider@npm:0.6.6"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.28.6"
"@babel/helper-plugin-utils": "npm:^7.28.6"
debug: "npm:^4.4.3"
lodash.debounce: "npm:^4.0.8"
resolve: "npm:^1.22.11"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
checksum: 10c0/1293d6f54d4ebb10c9e947e54de1aaa23b00233e19aca9790072f1893bf143af01442613f7b413300be7016d8e41b550af77acab28e7fa5fb796b2a175c528a1
languageName: node
linkType: hard
"@babel/helper-globals@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/helper-globals@npm:7.28.0"
checksum: 10c0/5a0cd0c0e8c764b5f27f2095e4243e8af6fa145daea2b41b53c0c1414fe6ff139e3640f4e2207ae2b3d2153a1abd346f901c26c290ee7cb3881dd922d4ee9232
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-member-expression-to-functions@npm:7.28.5"
dependencies:
"@babel/traverse": "npm:^7.28.5"
"@babel/types": "npm:^7.28.5"
checksum: 10c0/4e6e05fbf4dffd0bc3e55e28fcaab008850be6de5a7013994ce874ec2beb90619cda4744b11607a60f8aae0227694502908add6188ceb1b5223596e765b44814
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.10.4, @babel/helper-module-imports@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-module-imports@npm:7.28.6"
dependencies:
"@babel/traverse": "npm:^7.28.6"
"@babel/types": "npm:^7.28.6"
checksum: 10c0/b49d8d8f204d9dbfd5ac70c54e533e5269afb3cea966a9d976722b13e9922cc773a653405f53c89acb247d5aebdae4681d631a3ae3df77ec046b58da76eda2ac
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.27.1, @babel/helper-module-transforms@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-module-transforms@npm:7.28.6"
dependencies:
"@babel/helper-module-imports": "npm:^7.28.6"
"@babel/helper-validator-identifier": "npm:^7.28.5"
"@babel/traverse": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/6f03e14fc30b287ce0b839474b5f271e72837d0cafe6b172d759184d998fbee3903a035e81e07c2c596449e504f453463d58baa65b6f40a37ded5bec74620b2b
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-optimise-call-expression@npm:7.27.1"
dependencies:
"@babel/types": "npm:^7.27.1"
checksum: 10c0/6b861e7fcf6031b9c9fc2de3cd6c005e94a459d6caf3621d93346b52774925800ca29d4f64595a5ceacf4d161eb0d27649ae385110ed69491d9776686fa488e6
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.27.1, @babel/helper-plugin-utils@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-plugin-utils@npm:7.28.6"
checksum: 10c0/3f5f8acc152fdbb69a84b8624145ff4f9b9f6e776cb989f9f968f8606eb7185c5c3cfcf3ba08534e37e1e0e1c118ac67080610333f56baa4f7376c99b5f1143d
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-remap-async-to-generator@npm:7.27.1"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.27.1"
"@babel/helper-wrap-function": "npm:^7.27.1"
"@babel/traverse": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/5ba6258f4bb57c7c9fa76b55f416b2d18c867b48c1af4f9f2f7cd7cc933fe6da7514811d08ceb4972f1493be46f4b69c40282b811d1397403febae13c2ec57b5
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.27.1, @babel/helper-replace-supers@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-replace-supers@npm:7.28.6"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.28.5"
"@babel/helper-optimise-call-expression": "npm:^7.27.1"
"@babel/traverse": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/04663c6389551b99b8c3e7ba4e2638b8ca2a156418c26771516124c53083aa8e74b6a45abe5dd46360af79709a0e9c6b72c076d0eab9efecdd5aaf836e79d8d5
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.27.1"
dependencies:
"@babel/traverse": "npm:^7.27.1"
"@babel/types": "npm:^7.27.1"
checksum: 10c0/f625013bcdea422c470223a2614e90d2c1cc9d832e97f32ca1b4f82b34bb4aa67c3904cb4b116375d3b5b753acfb3951ed50835a1e832e7225295c7b0c24dff7
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-option@npm:7.27.1"
checksum: 10c0/6fec5f006eba40001a20f26b1ef5dbbda377b7b68c8ad518c05baa9af3f396e780bdfded24c4eef95d14bb7b8fd56192a6ed38d5d439b97d10efc5f1a191d148
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.27.1":
version: 7.28.6