forked from nocobase/nocobase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
24138 lines (20637 loc) · 860 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 IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@aashutoshrathi/word-wrap@^1.2.3":
version "1.2.6"
resolved "https://registry.npmmirror.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf"
"@adobe/css-tools@^4.0.1":
version "4.2.0"
resolved "https://registry.npmmirror.com/@adobe/css-tools/-/css-tools-4.2.0.tgz#e1a84fca468f4b337816fcb7f0964beb620ba855"
"@alicloud/credentials@^2":
version "2.2.6"
resolved "https://registry.npmmirror.com/@alicloud/credentials/-/credentials-2.2.6.tgz#24b0c188e8ad4b3c5a51a1bc4d75e9c127771975"
dependencies:
"@alicloud/tea-typescript" "^1.5.3"
httpx "^2.2.0"
ini "^1.3.5"
kitx "^2.0.0"
"@alicloud/dysmsapi20170525@2.0.17":
version "2.0.17"
resolved "https://registry.npmmirror.com/@alicloud/dysmsapi20170525/-/dysmsapi20170525-2.0.17.tgz#a350a443f52456b823772345dd57cc5fe2e6c8da"
dependencies:
"@alicloud/endpoint-util" "^0.0.1"
"@alicloud/openapi-client" "^0.4.1"
"@alicloud/openapi-util" "^0.2.9"
"@alicloud/tea-typescript" "^1.7.1"
"@alicloud/tea-util" "^1.4.4"
"@alicloud/endpoint-util@^0.0.1":
version "0.0.1"
resolved "https://registry.npmmirror.com/@alicloud/endpoint-util/-/endpoint-util-0.0.1.tgz#b237f5e04e373abb54c42119377b30bd6afb1a7c"
dependencies:
"@alicloud/tea-typescript" "^1.5.1"
kitx "^2.0.0"
"@alicloud/gateway-spi@^0.0.8":
version "0.0.8"
resolved "https://registry.npmmirror.com/@alicloud/gateway-spi/-/gateway-spi-0.0.8.tgz#1d251986ed40d8b98690dcac8128fec0c56f0f53"
dependencies:
"@alicloud/credentials" "^2"
"@alicloud/tea-typescript" "^1.7.1"
"@alicloud/openapi-client@0.4.1":
version "0.4.1"
resolved "https://registry.npmmirror.com/@alicloud/openapi-client/-/openapi-client-0.4.1.tgz#8e55a3bdfee17a00c2ec3d10feaf7bfd0eff7502"
dependencies:
"@alicloud/credentials" "^2"
"@alicloud/gateway-spi" "^0.0.8"
"@alicloud/openapi-util" "^0.2.7"
"@alicloud/tea-typescript" "^1.7.1"
"@alicloud/tea-util" "^1.4.0"
"@alicloud/openapi-client@^0.4.1":
version "0.4.6"
resolved "https://registry.npmmirror.com/@alicloud/openapi-client/-/openapi-client-0.4.6.tgz#6e354cf94cddb56322f97569714a31fbbb12cb34"
dependencies:
"@alicloud/credentials" "^2"
"@alicloud/gateway-spi" "^0.0.8"
"@alicloud/openapi-util" "^0.3.1"
"@alicloud/tea-typescript" "^1.7.1"
"@alicloud/tea-util" "^1.4.5"
"@alicloud/tea-xml" "0.0.2"
"@alicloud/openapi-util@^0.2.7", "@alicloud/openapi-util@^0.2.9":
version "0.2.9"
resolved "https://registry.npmmirror.com/@alicloud/openapi-util/-/openapi-util-0.2.9.tgz#2379cd81f993dcab32066a2b892ddcbdd266d51c"
dependencies:
"@alicloud/tea-typescript" "^1.7.1"
"@alicloud/tea-util" "^1.3.0"
kitx "^2.1.0"
sm3 "^1.0.3"
"@alicloud/openapi-util@^0.3.1":
version "0.3.1"
resolved "https://registry.npmmirror.com/@alicloud/openapi-util/-/openapi-util-0.3.1.tgz#104f79d91e13a347115c8a416cc2c8f56580af5d"
dependencies:
"@alicloud/tea-typescript" "^1.7.1"
"@alicloud/tea-util" "^1.3.0"
kitx "^2.1.0"
sm3 "^1.0.3"
"@alicloud/tea-typescript@^1", "@alicloud/tea-typescript@^1.5.1", "@alicloud/tea-typescript@^1.5.3", "@alicloud/tea-typescript@^1.7.1":
version "1.8.0"
resolved "https://registry.npmmirror.com/@alicloud/tea-typescript/-/tea-typescript-1.8.0.tgz#aa9b04b6ee53e1b22aa51e224a950ea5bcd966e9"
dependencies:
"@types/node" "^12.0.2"
httpx "^2.2.6"
"@alicloud/tea-util@1.4.4":
version "1.4.4"
resolved "https://registry.npmmirror.com/@alicloud/tea-util/-/tea-util-1.4.4.tgz#d70efe2d401bdd6e2fc2c5b69bbfff3db733e844"
dependencies:
"@alicloud/tea-typescript" "^1.5.1"
kitx "^2.0.0"
"@alicloud/tea-util@^1.3.0", "@alicloud/tea-util@^1.4.0", "@alicloud/tea-util@^1.4.4", "@alicloud/tea-util@^1.4.5":
version "1.4.7"
resolved "https://registry.npmmirror.com/@alicloud/tea-util/-/tea-util-1.4.7.tgz#40748613c3751f5373ffa8e5a0e892602ef3f78c"
dependencies:
"@alicloud/tea-typescript" "^1.5.1"
kitx "^2.0.0"
"@alicloud/tea-xml@0.0.2":
version "0.0.2"
resolved "https://registry.npmmirror.com/@alicloud/tea-xml/-/tea-xml-0.0.2.tgz#7c97a38255d5e4f009c437facd3a2afc0ef17f45"
dependencies:
"@alicloud/tea-typescript" "^1"
"@types/xml2js" "^0.4.5"
xml2js "^0.4.22"
"@amap/amap-jsapi-loader@^1.0.1":
version "1.0.1"
resolved "https://registry.npmmirror.com/@amap/amap-jsapi-loader/-/amap-jsapi-loader-1.0.1.tgz#9ec4b4d5d2467eac451f6c852e35db69e9f9f0c0"
"@amap/amap-jsapi-types@^0.0.10":
version "0.0.10"
resolved "https://registry.npmmirror.com/@amap/amap-jsapi-types/-/amap-jsapi-types-0.0.10.tgz#0e8e69ac8921ed3dde74da209dbb7e04b830debd"
"@ampproject/remapping@^2.2.0":
version "2.2.1"
resolved "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@ant-design/colors@^6", "@ant-design/colors@^6.0.0":
version "6.0.0"
resolved "https://registry.npmmirror.com/@ant-design/colors/-/colors-6.0.0.tgz#9b9366257cffcc47db42b9d0203bb592c13c0298"
dependencies:
"@ctrl/tinycolor" "^3.4.0"
"@ant-design/colors@^7.0.0":
version "7.0.0"
resolved "https://registry.npmmirror.com/@ant-design/colors/-/colors-7.0.0.tgz#eb7eecead124c3533aea05d61254f0a17f2b61b3"
dependencies:
"@ctrl/tinycolor" "^3.4.0"
"@ant-design/cssinjs@^1", "@ant-design/cssinjs@^1.3.1":
version "1.10.1"
resolved "https://registry.npmmirror.com/@ant-design/cssinjs/-/cssinjs-1.10.1.tgz#c9173f38e3d61f0883ca3c17d7cf1e30784e0dd7"
dependencies:
"@babel/runtime" "^7.11.1"
"@emotion/hash" "^0.8.0"
"@emotion/unitless" "^0.7.5"
classnames "^2.3.1"
csstype "^3.0.10"
rc-util "^5.27.0"
stylis "^4.0.13"
"@ant-design/cssinjs@^1.11.1":
version "1.13.2"
resolved "https://registry.npmmirror.com/@ant-design/cssinjs/-/cssinjs-1.13.2.tgz#833098a6866a9f754e31562b0d5dc8b1133648d9"
dependencies:
"@babel/runtime" "^7.11.1"
"@emotion/hash" "^0.8.0"
"@emotion/unitless" "^0.7.5"
classnames "^2.3.1"
csstype "^3.0.10"
rc-util "^5.34.1"
stylis "^4.0.13"
"@ant-design/cssinjs@^1.16.0":
version "1.17.0"
resolved "https://registry.npmmirror.com/@ant-design/cssinjs/-/cssinjs-1.17.0.tgz#a3f69cf5131539b76ccdbfced43d242557599fea"
dependencies:
"@babel/runtime" "^7.11.1"
"@emotion/hash" "^0.8.0"
"@emotion/unitless" "^0.7.5"
classnames "^2.3.1"
csstype "^3.0.10"
rc-util "^5.35.0"
stylis "^4.0.13"
"@ant-design/icons-svg@^4.2.1":
version "4.2.1"
resolved "https://registry.npmmirror.com/@ant-design/icons-svg/-/icons-svg-4.2.1.tgz#8630da8eb4471a4aabdaed7d1ff6a97dcb2cf05a"
"@ant-design/icons-svg@^4.3.0":
version "4.3.1"
resolved "https://registry.npmmirror.com/@ant-design/icons-svg/-/icons-svg-4.3.1.tgz#4b2f65a17d4d32b526baa6414aca2117382bf8da"
"@ant-design/icons@5.x", "@ant-design/icons@^5.0.0", "@ant-design/icons@^5.1.3", "@ant-design/icons@^5.1.4":
version "5.1.4"
resolved "https://registry.npmmirror.com/@ant-design/icons/-/icons-5.1.4.tgz#614e29e26d092c2c1c1a2acbc0d84434d8d1474e"
dependencies:
"@ant-design/colors" "^7.0.0"
"@ant-design/icons-svg" "^4.2.1"
"@babel/runtime" "^7.11.2"
classnames "^2.2.6"
rc-util "^5.31.1"
"@ant-design/icons@^4":
version "4.8.0"
resolved "https://registry.npmmirror.com/@ant-design/icons/-/icons-4.8.0.tgz#3084e2bb494cac3dad6c0392f77c1efc90ee1fa4"
dependencies:
"@ant-design/colors" "^6.0.0"
"@ant-design/icons-svg" "^4.2.1"
"@babel/runtime" "^7.11.2"
classnames "^2.2.6"
rc-util "^5.9.4"
"@ant-design/icons@^5.2.2":
version "5.2.6"
resolved "https://registry.npmmirror.com/@ant-design/icons/-/icons-5.2.6.tgz#2d4a9a37f531eb2a20cebec01d6fb69cf593900d"
dependencies:
"@ant-design/colors" "^7.0.0"
"@ant-design/icons-svg" "^4.3.0"
"@babel/runtime" "^7.11.2"
classnames "^2.2.6"
rc-util "^5.31.1"
"@ant-design/plots@^1.2.5":
version "1.2.5"
resolved "https://registry.npmmirror.com/@ant-design/plots/-/plots-1.2.5.tgz#404caf0e2c8d052590fe080c6f0fdf0e0c3119ab"
dependencies:
"@antv/g2plot" "^2.2.11"
"@antv/util" "^2.0.9"
react-content-loader "^5.0.4"
"@ant-design/pro-layout@^7.16.11":
version "7.16.11"
resolved "https://registry.npmmirror.com/@ant-design/pro-layout/-/pro-layout-7.16.11.tgz#e9bee6ea95786b98644ca271d5d97456f2f1d015"
dependencies:
"@ant-design/icons" "^5.0.0"
"@ant-design/pro-provider" "2.12.2"
"@ant-design/pro-utils" "2.14.2"
"@babel/runtime" "^7.18.0"
"@umijs/route-utils" "^4.0.0"
"@umijs/use-params" "^1.0.9"
classnames "^2.3.2"
lodash.merge "^4.6.2"
omit.js "^2.0.2"
path-to-regexp "2.4.0"
rc-resize-observer "^1.1.0"
rc-util "^5.0.6"
swr "^2.0.0"
warning "^4.0.3"
"@ant-design/pro-provider@2.12.2":
version "2.12.2"
resolved "https://registry.npmmirror.com/@ant-design/pro-provider/-/pro-provider-2.12.2.tgz#e1e07df7cdb1c5e3c277793873ab22816d5b8c3d"
dependencies:
"@ant-design/cssinjs" "^1.11.1"
"@babel/runtime" "^7.18.0"
"@ctrl/tinycolor" "^3.4.0"
rc-util "^5.0.1"
swr "^2.0.0"
"@ant-design/pro-utils@2.14.2":
version "2.14.2"
resolved "https://registry.npmmirror.com/@ant-design/pro-utils/-/pro-utils-2.14.2.tgz#3b136e53f25ad7c56ccddf44a126ef1616e4f47e"
dependencies:
"@ant-design/icons" "^5.0.0"
"@ant-design/pro-provider" "2.12.2"
"@babel/runtime" "^7.18.0"
classnames "^2.3.2"
dayjs "^1.11.9"
lodash.merge "^4.6.2"
rc-util "^5.0.6"
safe-stable-stringify "^2.4.3"
swr "^2.0.0"
"@ant-design/react-slick@~1.0.0":
version "1.0.1"
resolved "https://registry.npmmirror.com/@ant-design/react-slick/-/react-slick-1.0.1.tgz#af10e67ef9a233df5610c36313a5c804ccc2ae6b"
dependencies:
"@babel/runtime" "^7.10.4"
classnames "^2.2.5"
json2mq "^0.2.0"
resize-observer-polyfill "^1.5.1"
throttle-debounce "^5.0.0"
"@antfu/install-pkg@^0.1.1":
version "0.1.1"
resolved "https://registry.npmmirror.com/@antfu/install-pkg/-/install-pkg-0.1.1.tgz#157bb04f0de8100b9e4c01734db1a6c77e98bbb5"
dependencies:
execa "^5.1.1"
find-up "^5.0.0"
"@antfu/utils@^0.7.2":
version "0.7.5"
resolved "https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.5.tgz#c36f37add92a7de57b9c29ae0c1f399706bff345"
"@antv/adjust@^0.2.1":
version "0.2.5"
resolved "https://registry.npmmirror.com/@antv/adjust/-/adjust-0.2.5.tgz#bb37bb4a0a87ca3f4b660848bc9ac07f02bcf5db"
dependencies:
"@antv/util" "~2.0.0"
tslib "^1.10.0"
"@antv/attr@^0.3.1":
version "0.3.5"
resolved "https://registry.npmmirror.com/@antv/attr/-/attr-0.3.5.tgz#0708c74fed5ad6ee03ad1e2913099ed8248f7ebf"
dependencies:
"@antv/color-util" "^2.0.1"
"@antv/scale" "^0.3.0"
"@antv/util" "~2.0.0"
tslib "^2.3.1"
"@antv/color-util@^2.0.1", "@antv/color-util@^2.0.2", "@antv/color-util@^2.0.3", "@antv/color-util@^2.0.6":
version "2.0.6"
resolved "https://registry.npmmirror.com/@antv/color-util/-/color-util-2.0.6.tgz#5e129bb9ce3f2b9309b52102b3dc929430ccc016"
dependencies:
"@antv/util" "^2.0.9"
tslib "^2.0.3"
"@antv/component@^0.8.27":
version "0.8.35"
resolved "https://registry.npmmirror.com/@antv/component/-/component-0.8.35.tgz#1d5b8e11bd496cb505e646f505f5f58f0c5173e9"
dependencies:
"@antv/color-util" "^2.0.3"
"@antv/dom-util" "~2.0.1"
"@antv/g-base" "^0.5.9"
"@antv/matrix-util" "^3.1.0-beta.1"
"@antv/path-util" "~2.0.7"
"@antv/scale" "~0.3.1"
"@antv/util" "~2.0.0"
fecha "~4.2.0"
tslib "^2.0.3"
"@antv/coord@^0.3.0":
version "0.3.1"
resolved "https://registry.npmmirror.com/@antv/coord/-/coord-0.3.1.tgz#982e261d8a1e06a198eb518ea7acc20ed875a019"
dependencies:
"@antv/matrix-util" "^3.1.0-beta.2"
"@antv/util" "~2.0.12"
tslib "^2.1.0"
"@antv/dom-util@^2.0.2", "@antv/dom-util@~2.0.1":
version "2.0.4"
resolved "https://registry.npmmirror.com/@antv/dom-util/-/dom-util-2.0.4.tgz#b09b56c56fec42896fc856edad56b595b47ab514"
dependencies:
tslib "^2.0.3"
"@antv/event-emitter@^0.1.1", "@antv/event-emitter@^0.1.2", "@antv/event-emitter@~0.1.0":
version "0.1.3"
resolved "https://registry.npmmirror.com/@antv/event-emitter/-/event-emitter-0.1.3.tgz#3e06323b9dcd55a3241ddc7c5458cfabd2095164"
"@antv/g-base@^0.5.11", "@antv/g-base@^0.5.12", "@antv/g-base@^0.5.9", "@antv/g-base@~0.5.6":
version "0.5.15"
resolved "https://registry.npmmirror.com/@antv/g-base/-/g-base-0.5.15.tgz#4d4174c956ba652a4b55c4f6a2c28aaa92e7738d"
dependencies:
"@antv/event-emitter" "^0.1.1"
"@antv/g-math" "^0.1.9"
"@antv/matrix-util" "^3.1.0-beta.1"
"@antv/path-util" "~2.0.5"
"@antv/util" "~2.0.13"
"@types/d3-timer" "^2.0.0"
d3-ease "^1.0.5"
d3-interpolate "^3.0.1"
d3-timer "^1.0.9"
detect-browser "^5.1.0"
tslib "^2.0.3"
"@antv/g-canvas@~0.5.10":
version "0.5.14"
resolved "https://registry.npmmirror.com/@antv/g-canvas/-/g-canvas-0.5.14.tgz#099668cb65d9c89dc2fc1000313c18298dcf8a13"
dependencies:
"@antv/g-base" "^0.5.12"
"@antv/g-math" "^0.1.9"
"@antv/matrix-util" "^3.1.0-beta.1"
"@antv/path-util" "~2.0.5"
"@antv/util" "~2.0.0"
gl-matrix "^3.0.0"
tslib "^2.0.3"
"@antv/g-math@^0.1.9":
version "0.1.9"
resolved "https://registry.npmmirror.com/@antv/g-math/-/g-math-0.1.9.tgz#1f981b9aebf5c024f284389aa3e5cba8cefa1f28"
dependencies:
"@antv/util" "~2.0.0"
gl-matrix "^3.0.0"
"@antv/g-svg@~0.5.6":
version "0.5.7"
resolved "https://registry.npmmirror.com/@antv/g-svg/-/g-svg-0.5.7.tgz#d63db5f8590a5f3ceab097c183ec80ed143f0a50"
dependencies:
"@antv/g-base" "^0.5.12"
"@antv/g-math" "^0.1.9"
"@antv/util" "~2.0.0"
detect-browser "^5.0.0"
tslib "^2.0.3"
"@antv/g2@^4.1.26":
version "4.2.10"
resolved "https://registry.npmmirror.com/@antv/g2/-/g2-4.2.10.tgz#9448082e7610eb8d16bdf7c97c2ce4f275bafdf9"
dependencies:
"@antv/adjust" "^0.2.1"
"@antv/attr" "^0.3.1"
"@antv/color-util" "^2.0.2"
"@antv/component" "^0.8.27"
"@antv/coord" "^0.3.0"
"@antv/dom-util" "^2.0.2"
"@antv/event-emitter" "~0.1.0"
"@antv/g-base" "~0.5.6"
"@antv/g-canvas" "~0.5.10"
"@antv/g-svg" "~0.5.6"
"@antv/matrix-util" "^3.1.0-beta.3"
"@antv/path-util" "^2.0.15"
"@antv/scale" "^0.3.14"
"@antv/util" "~2.0.5"
tslib "^2.0.0"
"@antv/g2plot@^2.2.11", "@antv/g2plot@^2.4.18":
version "2.4.31"
resolved "https://registry.npmmirror.com/@antv/g2plot/-/g2plot-2.4.31.tgz#b444aee07d06939949eaa8ba8f8e93f948634aa5"
dependencies:
"@antv/color-util" "^2.0.6"
"@antv/event-emitter" "^0.1.2"
"@antv/g-base" "^0.5.11"
"@antv/g2" "^4.1.26"
"@antv/matrix-util" "^3.1.0-beta.2"
"@antv/path-util" "^3.0.1"
"@antv/scale" "^0.3.18"
"@antv/util" "^2.0.17"
d3-hierarchy "^2.0.0"
d3-regression "^1.3.5"
fmin "^0.0.2"
pdfast "^0.2.0"
size-sensor "^1.0.1"
tslib "^2.0.3"
"@antv/matrix-util@^3.0.4":
version "3.0.4"
resolved "https://registry.npmmirror.com/@antv/matrix-util/-/matrix-util-3.0.4.tgz#ea13f158aa2fb4ba2fb8d6b6b561ec467ea3ac20"
dependencies:
"@antv/util" "^2.0.9"
gl-matrix "^3.3.0"
tslib "^2.0.3"
"@antv/matrix-util@^3.1.0-beta.1", "@antv/matrix-util@^3.1.0-beta.2", "@antv/matrix-util@^3.1.0-beta.3":
version "3.1.0-beta.3"
resolved "https://registry.npmmirror.com/@antv/matrix-util/-/matrix-util-3.1.0-beta.3.tgz#e061de8fa7be04605a155c69cc5ce9082eedddee"
dependencies:
"@antv/util" "^2.0.9"
gl-matrix "^3.4.3"
tslib "^2.0.3"
"@antv/path-util@^2.0.15", "@antv/path-util@~2.0.5", "@antv/path-util@~2.0.7":
version "2.0.15"
resolved "https://registry.npmmirror.com/@antv/path-util/-/path-util-2.0.15.tgz#a6f691dfc8b7bce5be7f0aabb5bd614964325631"
dependencies:
"@antv/matrix-util" "^3.0.4"
"@antv/util" "^2.0.9"
tslib "^2.0.3"
"@antv/path-util@^3.0.1":
version "3.0.1"
resolved "https://registry.npmmirror.com/@antv/path-util/-/path-util-3.0.1.tgz#42fd84222824e8ad8d1bde70f164a05924870d4a"
dependencies:
gl-matrix "^3.1.0"
lodash-es "^4.17.21"
tslib "^2.0.3"
"@antv/scale@^0.3.0", "@antv/scale@^0.3.14", "@antv/scale@^0.3.18", "@antv/scale@~0.3.1":
version "0.3.18"
resolved "https://registry.npmmirror.com/@antv/scale/-/scale-0.3.18.tgz#b911f431b3e0b9547b6a65f66d0d3fa295b5ef32"
dependencies:
"@antv/util" "~2.0.3"
fecha "~4.2.0"
tslib "^2.0.0"
"@antv/util@^2.0.17", "@antv/util@^2.0.9", "@antv/util@~2.0.0", "@antv/util@~2.0.12", "@antv/util@~2.0.13", "@antv/util@~2.0.3", "@antv/util@~2.0.5":
version "2.0.17"
resolved "https://registry.npmmirror.com/@antv/util/-/util-2.0.17.tgz#e8ef42aca7892815b229269f3dd10c6b3c7597a9"
dependencies:
csstype "^3.0.8"
tslib "^2.0.3"
"@antv/x6-common@^2.0.13":
version "2.0.14"
resolved "https://registry.npmmirror.com/@antv/x6-common/-/x6-common-2.0.14.tgz#ab89959df2f4bfb7626615ab60fc7203d339359a"
dependencies:
lodash-es "^4.17.15"
utility-types "^3.10.0"
"@antv/x6-geometry@^2.0.5":
version "2.0.5"
resolved "https://registry.npmmirror.com/@antv/x6-geometry/-/x6-geometry-2.0.5.tgz#c158317d74135bedd78c2fdeb76f9c7cfa0ef0aa"
"@antv/x6-plugin-dnd@^2.0.0":
version "2.0.6"
resolved "https://registry.npmmirror.com/@antv/x6-plugin-dnd/-/x6-plugin-dnd-2.0.6.tgz#403b8f45dc18f0622512298f556a531ed10a158b"
"@antv/x6-plugin-export@^2.0.0":
version "2.1.6"
resolved "https://registry.npmmirror.com/@antv/x6-plugin-export/-/x6-plugin-export-2.1.6.tgz#f8cedab3707c43728baaf0f0bfb1e75ec4a61a30"
"@antv/x6-plugin-minimap@^2.0.0":
version "2.0.5"
resolved "https://registry.npmmirror.com/@antv/x6-plugin-minimap/-/x6-plugin-minimap-2.0.5.tgz#bd4699408715b4709e77e83edf14ceb0e767b1f6"
"@antv/x6-plugin-scroller@^2.0.0":
version "2.0.10"
resolved "https://registry.npmmirror.com/@antv/x6-plugin-scroller/-/x6-plugin-scroller-2.0.10.tgz#bdd39d3530e469bbe72c5feca3b6787512232a3d"
"@antv/x6-plugin-selection@^2.0.0":
version "2.1.7"
resolved "https://registry.npmmirror.com/@antv/x6-plugin-selection/-/x6-plugin-selection-2.1.7.tgz#8964041d595b732bec5883a1f77757bededec594"
"@antv/x6-plugin-snapline@^2.0.0":
version "2.1.7"
resolved "https://registry.npmmirror.com/@antv/x6-plugin-snapline/-/x6-plugin-snapline-2.1.7.tgz#1b4e3be0a281ba324117b7ac7b9b8c39e484cce2"
"@antv/x6-react-shape@^2.0.0":
version "2.2.2"
resolved "https://registry.npmmirror.com/@antv/x6-react-shape/-/x6-react-shape-2.2.2.tgz#b0caf31219fa3219b4e7a4960583e2c3affb870c"
"@antv/x6@^2.0.0":
version "2.13.1"
resolved "https://registry.npmmirror.com/@antv/x6/-/x6-2.13.1.tgz#c344eb797edc0e437ab1bed599099a8bd68a4ada"
dependencies:
"@antv/x6-common" "^2.0.13"
"@antv/x6-geometry" "^2.0.5"
utility-types "^3.10.0"
"@arvinxu/layout-kit@^1":
version "1.4.0"
resolved "https://registry.npmmirror.com/@arvinxu/layout-kit/-/layout-kit-1.4.0.tgz#8bcb4328a19b76a1aed2614730c330616b6ca29f"
dependencies:
styled-components "^5.3.3"
"@aws-crypto/crc32@3.0.0":
version "3.0.0"
resolved "https://registry.npmmirror.com/@aws-crypto/crc32/-/crc32-3.0.0.tgz#07300eca214409c33e3ff769cd5697b57fdd38fa"
dependencies:
"@aws-crypto/util" "^3.0.0"
"@aws-sdk/types" "^3.222.0"
tslib "^1.11.1"
"@aws-crypto/crc32c@3.0.0":
version "3.0.0"
resolved "https://registry.npmmirror.com/@aws-crypto/crc32c/-/crc32c-3.0.0.tgz#016c92da559ef638a84a245eecb75c3e97cb664f"
dependencies:
"@aws-crypto/util" "^3.0.0"
"@aws-sdk/types" "^3.222.0"
tslib "^1.11.1"
"@aws-crypto/ie11-detection@^3.0.0":
version "3.0.0"
resolved "https://registry.npmmirror.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688"
dependencies:
tslib "^1.11.1"
"@aws-crypto/sha1-browser@3.0.0":
version "3.0.0"
resolved "https://registry.npmmirror.com/@aws-crypto/sha1-browser/-/sha1-browser-3.0.0.tgz#f9083c00782b24714f528b1a1fef2174002266a3"
dependencies:
"@aws-crypto/ie11-detection" "^3.0.0"
"@aws-crypto/supports-web-crypto" "^3.0.0"
"@aws-crypto/util" "^3.0.0"
"@aws-sdk/types" "^3.222.0"
"@aws-sdk/util-locate-window" "^3.0.0"
"@aws-sdk/util-utf8-browser" "^3.0.0"
tslib "^1.11.1"
"@aws-crypto/sha256-browser@3.0.0":
version "3.0.0"
resolved "https://registry.npmmirror.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766"
dependencies:
"@aws-crypto/ie11-detection" "^3.0.0"
"@aws-crypto/sha256-js" "^3.0.0"
"@aws-crypto/supports-web-crypto" "^3.0.0"
"@aws-crypto/util" "^3.0.0"
"@aws-sdk/types" "^3.222.0"
"@aws-sdk/util-locate-window" "^3.0.0"
"@aws-sdk/util-utf8-browser" "^3.0.0"
tslib "^1.11.1"
"@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0":
version "3.0.0"
resolved "https://registry.npmmirror.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2"
dependencies:
"@aws-crypto/util" "^3.0.0"
"@aws-sdk/types" "^3.222.0"
tslib "^1.11.1"
"@aws-crypto/supports-web-crypto@^3.0.0":
version "3.0.0"
resolved "https://registry.npmmirror.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2"
dependencies:
tslib "^1.11.1"
"@aws-crypto/util@^3.0.0":
version "3.0.0"
resolved "https://registry.npmmirror.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0"
dependencies:
"@aws-sdk/types" "^3.222.0"
"@aws-sdk/util-utf8-browser" "^3.0.0"
tslib "^1.11.1"
"@aws-sdk/chunked-blob-reader@3.310.0":
version "3.310.0"
resolved "https://registry.npmmirror.com/@aws-sdk/chunked-blob-reader/-/chunked-blob-reader-3.310.0.tgz#2ada1b024a2745c2fe7e869606fab781325f981e"
dependencies:
tslib "^2.5.0"
"@aws-sdk/client-s3@^3.245.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/client-s3/-/client-s3-3.363.0.tgz#757384d92c32a407ab0aaecf6f54d47cd9053514"
dependencies:
"@aws-crypto/sha1-browser" "3.0.0"
"@aws-crypto/sha256-browser" "3.0.0"
"@aws-crypto/sha256-js" "3.0.0"
"@aws-sdk/client-sts" "3.363.0"
"@aws-sdk/credential-provider-node" "3.363.0"
"@aws-sdk/hash-blob-browser" "3.357.0"
"@aws-sdk/hash-stream-node" "3.357.0"
"@aws-sdk/md5-js" "3.357.0"
"@aws-sdk/middleware-bucket-endpoint" "3.363.0"
"@aws-sdk/middleware-expect-continue" "3.363.0"
"@aws-sdk/middleware-flexible-checksums" "3.363.0"
"@aws-sdk/middleware-host-header" "3.363.0"
"@aws-sdk/middleware-location-constraint" "3.363.0"
"@aws-sdk/middleware-logger" "3.363.0"
"@aws-sdk/middleware-recursion-detection" "3.363.0"
"@aws-sdk/middleware-sdk-s3" "3.363.0"
"@aws-sdk/middleware-signing" "3.363.0"
"@aws-sdk/middleware-ssec" "3.363.0"
"@aws-sdk/middleware-user-agent" "3.363.0"
"@aws-sdk/signature-v4-multi-region" "3.363.0"
"@aws-sdk/types" "3.357.0"
"@aws-sdk/util-endpoints" "3.357.0"
"@aws-sdk/util-user-agent-browser" "3.363.0"
"@aws-sdk/util-user-agent-node" "3.363.0"
"@aws-sdk/xml-builder" "3.310.0"
"@smithy/config-resolver" "^1.0.1"
"@smithy/eventstream-serde-browser" "^1.0.1"
"@smithy/eventstream-serde-config-resolver" "^1.0.1"
"@smithy/eventstream-serde-node" "^1.0.1"
"@smithy/fetch-http-handler" "^1.0.1"
"@smithy/hash-node" "^1.0.1"
"@smithy/invalid-dependency" "^1.0.1"
"@smithy/middleware-content-length" "^1.0.1"
"@smithy/middleware-endpoint" "^1.0.1"
"@smithy/middleware-retry" "^1.0.2"
"@smithy/middleware-serde" "^1.0.1"
"@smithy/middleware-stack" "^1.0.1"
"@smithy/node-config-provider" "^1.0.1"
"@smithy/node-http-handler" "^1.0.2"
"@smithy/protocol-http" "^1.0.1"
"@smithy/smithy-client" "^1.0.3"
"@smithy/types" "^1.0.0"
"@smithy/url-parser" "^1.0.1"
"@smithy/util-base64" "^1.0.1"
"@smithy/util-body-length-browser" "^1.0.1"
"@smithy/util-body-length-node" "^1.0.1"
"@smithy/util-defaults-mode-browser" "^1.0.1"
"@smithy/util-defaults-mode-node" "^1.0.1"
"@smithy/util-retry" "^1.0.2"
"@smithy/util-stream" "^1.0.1"
"@smithy/util-utf8" "^1.0.1"
"@smithy/util-waiter" "^1.0.1"
fast-xml-parser "4.2.5"
tslib "^2.5.0"
"@aws-sdk/client-sso-oidc@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.363.0.tgz#71240d729a0847fd5a7aaac09ed5a3a07c3666cf"
dependencies:
"@aws-crypto/sha256-browser" "3.0.0"
"@aws-crypto/sha256-js" "3.0.0"
"@aws-sdk/middleware-host-header" "3.363.0"
"@aws-sdk/middleware-logger" "3.363.0"
"@aws-sdk/middleware-recursion-detection" "3.363.0"
"@aws-sdk/middleware-user-agent" "3.363.0"
"@aws-sdk/types" "3.357.0"
"@aws-sdk/util-endpoints" "3.357.0"
"@aws-sdk/util-user-agent-browser" "3.363.0"
"@aws-sdk/util-user-agent-node" "3.363.0"
"@smithy/config-resolver" "^1.0.1"
"@smithy/fetch-http-handler" "^1.0.1"
"@smithy/hash-node" "^1.0.1"
"@smithy/invalid-dependency" "^1.0.1"
"@smithy/middleware-content-length" "^1.0.1"
"@smithy/middleware-endpoint" "^1.0.1"
"@smithy/middleware-retry" "^1.0.2"
"@smithy/middleware-serde" "^1.0.1"
"@smithy/middleware-stack" "^1.0.1"
"@smithy/node-config-provider" "^1.0.1"
"@smithy/node-http-handler" "^1.0.2"
"@smithy/protocol-http" "^1.0.1"
"@smithy/smithy-client" "^1.0.3"
"@smithy/types" "^1.0.0"
"@smithy/url-parser" "^1.0.1"
"@smithy/util-base64" "^1.0.1"
"@smithy/util-body-length-browser" "^1.0.1"
"@smithy/util-body-length-node" "^1.0.1"
"@smithy/util-defaults-mode-browser" "^1.0.1"
"@smithy/util-defaults-mode-node" "^1.0.1"
"@smithy/util-retry" "^1.0.2"
"@smithy/util-utf8" "^1.0.1"
tslib "^2.5.0"
"@aws-sdk/client-sso@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/client-sso/-/client-sso-3.363.0.tgz#b1939ee6769cf208f1dd4fbfa924c223da9d60ec"
dependencies:
"@aws-crypto/sha256-browser" "3.0.0"
"@aws-crypto/sha256-js" "3.0.0"
"@aws-sdk/middleware-host-header" "3.363.0"
"@aws-sdk/middleware-logger" "3.363.0"
"@aws-sdk/middleware-recursion-detection" "3.363.0"
"@aws-sdk/middleware-user-agent" "3.363.0"
"@aws-sdk/types" "3.357.0"
"@aws-sdk/util-endpoints" "3.357.0"
"@aws-sdk/util-user-agent-browser" "3.363.0"
"@aws-sdk/util-user-agent-node" "3.363.0"
"@smithy/config-resolver" "^1.0.1"
"@smithy/fetch-http-handler" "^1.0.1"
"@smithy/hash-node" "^1.0.1"
"@smithy/invalid-dependency" "^1.0.1"
"@smithy/middleware-content-length" "^1.0.1"
"@smithy/middleware-endpoint" "^1.0.1"
"@smithy/middleware-retry" "^1.0.2"
"@smithy/middleware-serde" "^1.0.1"
"@smithy/middleware-stack" "^1.0.1"
"@smithy/node-config-provider" "^1.0.1"
"@smithy/node-http-handler" "^1.0.2"
"@smithy/protocol-http" "^1.0.1"
"@smithy/smithy-client" "^1.0.3"
"@smithy/types" "^1.0.0"
"@smithy/url-parser" "^1.0.1"
"@smithy/util-base64" "^1.0.1"
"@smithy/util-body-length-browser" "^1.0.1"
"@smithy/util-body-length-node" "^1.0.1"
"@smithy/util-defaults-mode-browser" "^1.0.1"
"@smithy/util-defaults-mode-node" "^1.0.1"
"@smithy/util-retry" "^1.0.2"
"@smithy/util-utf8" "^1.0.1"
tslib "^2.5.0"
"@aws-sdk/client-sts@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/client-sts/-/client-sts-3.363.0.tgz#c02b3cf3bd2ef9d54195323370db964cd1df4711"
dependencies:
"@aws-crypto/sha256-browser" "3.0.0"
"@aws-crypto/sha256-js" "3.0.0"
"@aws-sdk/credential-provider-node" "3.363.0"
"@aws-sdk/middleware-host-header" "3.363.0"
"@aws-sdk/middleware-logger" "3.363.0"
"@aws-sdk/middleware-recursion-detection" "3.363.0"
"@aws-sdk/middleware-sdk-sts" "3.363.0"
"@aws-sdk/middleware-signing" "3.363.0"
"@aws-sdk/middleware-user-agent" "3.363.0"
"@aws-sdk/types" "3.357.0"
"@aws-sdk/util-endpoints" "3.357.0"
"@aws-sdk/util-user-agent-browser" "3.363.0"
"@aws-sdk/util-user-agent-node" "3.363.0"
"@smithy/config-resolver" "^1.0.1"
"@smithy/fetch-http-handler" "^1.0.1"
"@smithy/hash-node" "^1.0.1"
"@smithy/invalid-dependency" "^1.0.1"
"@smithy/middleware-content-length" "^1.0.1"
"@smithy/middleware-endpoint" "^1.0.1"
"@smithy/middleware-retry" "^1.0.1"
"@smithy/middleware-serde" "^1.0.1"
"@smithy/middleware-stack" "^1.0.1"
"@smithy/node-config-provider" "^1.0.1"
"@smithy/node-http-handler" "^1.0.1"
"@smithy/protocol-http" "^1.1.0"
"@smithy/smithy-client" "^1.0.2"
"@smithy/types" "^1.1.0"
"@smithy/url-parser" "^1.0.1"
"@smithy/util-base64" "^1.0.1"
"@smithy/util-body-length-browser" "^1.0.1"
"@smithy/util-body-length-node" "^1.0.1"
"@smithy/util-defaults-mode-browser" "^1.0.1"
"@smithy/util-defaults-mode-node" "^1.0.1"
"@smithy/util-retry" "^1.0.1"
"@smithy/util-utf8" "^1.0.1"
fast-xml-parser "4.2.5"
tslib "^2.5.0"
"@aws-sdk/credential-provider-env@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.363.0.tgz#5b8471a243cdb54696ecae99ad4cc1c48d687657"
dependencies:
"@aws-sdk/types" "3.357.0"
"@smithy/property-provider" "^1.0.1"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/credential-provider-ini@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.363.0.tgz#e77e65e1ffc7c736aa724ebdf038e99dca57a87b"
dependencies:
"@aws-sdk/credential-provider-env" "3.363.0"
"@aws-sdk/credential-provider-process" "3.363.0"
"@aws-sdk/credential-provider-sso" "3.363.0"
"@aws-sdk/credential-provider-web-identity" "3.363.0"
"@aws-sdk/types" "3.357.0"
"@smithy/credential-provider-imds" "^1.0.1"
"@smithy/property-provider" "^1.0.1"
"@smithy/shared-ini-file-loader" "^1.0.1"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/credential-provider-node@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.363.0.tgz#70815b3c8bc98d9afd148b851c8fdae9ce11fcd6"
dependencies:
"@aws-sdk/credential-provider-env" "3.363.0"
"@aws-sdk/credential-provider-ini" "3.363.0"
"@aws-sdk/credential-provider-process" "3.363.0"
"@aws-sdk/credential-provider-sso" "3.363.0"
"@aws-sdk/credential-provider-web-identity" "3.363.0"
"@aws-sdk/types" "3.357.0"
"@smithy/credential-provider-imds" "^1.0.1"
"@smithy/property-provider" "^1.0.1"
"@smithy/shared-ini-file-loader" "^1.0.1"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/credential-provider-process@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.363.0.tgz#08608f6da246084f9b20481ac0de17f04ae54b4d"
dependencies:
"@aws-sdk/types" "3.357.0"
"@smithy/property-provider" "^1.0.1"
"@smithy/shared-ini-file-loader" "^1.0.1"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/credential-provider-sso@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.363.0.tgz#949190c9ea510d9772aef9c61345575f4b40b44d"
dependencies:
"@aws-sdk/client-sso" "3.363.0"
"@aws-sdk/token-providers" "3.363.0"
"@aws-sdk/types" "3.357.0"
"@smithy/property-provider" "^1.0.1"
"@smithy/shared-ini-file-loader" "^1.0.1"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/credential-provider-web-identity@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.363.0.tgz#a5312519126ff7c3fea56ffefa0e51ef9383663c"
dependencies:
"@aws-sdk/types" "3.357.0"
"@smithy/property-provider" "^1.0.1"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/hash-blob-browser@3.357.0":
version "3.357.0"
resolved "https://registry.npmmirror.com/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.357.0.tgz#e507929499fe0fe128664b67cd26f63f16ed4d25"
dependencies:
"@aws-sdk/chunked-blob-reader" "3.310.0"
"@aws-sdk/types" "3.357.0"
tslib "^2.5.0"
"@aws-sdk/hash-stream-node@3.357.0":
version "3.357.0"
resolved "https://registry.npmmirror.com/@aws-sdk/hash-stream-node/-/hash-stream-node-3.357.0.tgz#a78c6d1ae1c78cb52854311bad50988e8fc12142"
dependencies:
"@aws-sdk/types" "3.357.0"
"@aws-sdk/util-utf8" "3.310.0"
tslib "^2.5.0"
"@aws-sdk/is-array-buffer@3.310.0":
version "3.310.0"
resolved "https://registry.npmmirror.com/@aws-sdk/is-array-buffer/-/is-array-buffer-3.310.0.tgz#f87a79f1b858c88744f07e8d8d0a791df204017e"
dependencies:
tslib "^2.5.0"
"@aws-sdk/lib-storage@^3.46.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/lib-storage/-/lib-storage-3.363.0.tgz#88f1ea7163ec360479fd86e6c054dfa9ef6d29fc"
dependencies:
"@smithy/middleware-endpoint" "^1.0.1"
"@smithy/smithy-client" "^1.0.3"
buffer "5.6.0"
events "3.3.0"
stream-browserify "3.0.0"
tslib "^2.5.0"
"@aws-sdk/md5-js@3.357.0":
version "3.357.0"
resolved "https://registry.npmmirror.com/@aws-sdk/md5-js/-/md5-js-3.357.0.tgz#61853f562e71af0ec58aeede7883de122177ed55"
dependencies:
"@aws-sdk/types" "3.357.0"
"@aws-sdk/util-utf8" "3.310.0"
tslib "^2.5.0"
"@aws-sdk/middleware-bucket-endpoint@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.363.0.tgz#6c9b2dda20eaaf9171b7f2c4faff3b34b4331522"
dependencies:
"@aws-sdk/types" "3.357.0"
"@aws-sdk/util-arn-parser" "3.310.0"
"@smithy/protocol-http" "^1.1.0"
"@smithy/types" "^1.1.0"
"@smithy/util-config-provider" "^1.0.1"
tslib "^2.5.0"
"@aws-sdk/middleware-expect-continue@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.363.0.tgz#125356f3685e14eaa8816383bbf5f3de05dd856e"
dependencies:
"@aws-sdk/types" "3.357.0"
"@smithy/protocol-http" "^1.1.0"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/middleware-flexible-checksums@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.363.0.tgz#99cd3e09183768ac378eae5c5f4e54189147921d"
dependencies:
"@aws-crypto/crc32" "3.0.0"
"@aws-crypto/crc32c" "3.0.0"
"@aws-sdk/types" "3.357.0"
"@smithy/is-array-buffer" "^1.0.1"
"@smithy/protocol-http" "^1.1.0"
"@smithy/types" "^1.1.0"
"@smithy/util-utf8" "^1.0.1"
tslib "^2.5.0"
"@aws-sdk/middleware-host-header@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.363.0.tgz#3fc25569c1fdbb29ee7b95690d222743b9791210"
dependencies:
"@aws-sdk/types" "3.357.0"
"@smithy/protocol-http" "^1.1.0"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/middleware-location-constraint@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.363.0.tgz#48c8a16698d7678578a5f06e0eb7f8118ec86f82"
dependencies:
"@aws-sdk/types" "3.357.0"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/middleware-logger@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-logger/-/middleware-logger-3.363.0.tgz#64ebef9910802f9437cae8900e8825ca5141c9ed"
dependencies:
"@aws-sdk/types" "3.357.0"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/middleware-recursion-detection@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.363.0.tgz#bd8b8010f5be5d7e90a97bf9e55a7980289b1600"
dependencies:
"@aws-sdk/types" "3.357.0"
"@smithy/protocol-http" "^1.1.0"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/middleware-sdk-s3@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.363.0.tgz#35e77ad14b6799b0be1c313d9c8b7ca0ad2f4fdb"
dependencies:
"@aws-sdk/types" "3.357.0"
"@aws-sdk/util-arn-parser" "3.310.0"
"@smithy/protocol-http" "^1.1.0"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/middleware-sdk-sts@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.363.0.tgz#41b10aa8b8004bda9156cadde3b2302a84309e6a"
dependencies:
"@aws-sdk/middleware-signing" "3.363.0"
"@aws-sdk/types" "3.357.0"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/middleware-signing@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-signing/-/middleware-signing-3.363.0.tgz#81067698e0566584f0ca30be56232758f69e2232"
dependencies:
"@aws-sdk/types" "3.357.0"
"@smithy/property-provider" "^1.0.1"
"@smithy/protocol-http" "^1.1.0"
"@smithy/signature-v4" "^1.0.1"
"@smithy/types" "^1.1.0"
"@smithy/util-middleware" "^1.0.1"
tslib "^2.5.0"
"@aws-sdk/middleware-ssec@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.363.0.tgz#9dde9e09660bcb6a0d39939d7f1ab043b93fefdb"
dependencies:
"@aws-sdk/types" "3.357.0"
"@smithy/types" "^1.1.0"
tslib "^2.5.0"
"@aws-sdk/middleware-user-agent@3.363.0":
version "3.363.0"
resolved "https://registry.npmmirror.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.363.0.tgz#a75a7ca5c791a68d750736c87b968b54d394443d"
dependencies:
"@aws-sdk/types" "3.357.0"