-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
3619 lines (3114 loc) · 156 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
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5", "@babel/code-frame@^7.16.0":
"integrity" "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/code-frame/-/code-frame-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/highlight" "^7.16.0"
"@babel/compat-data@^7.16.0":
"integrity" "sha512-DGjt2QZse5SGd9nfOSqO4WLJ8NN/oHkijbXbPrxuoJO3oIPJL3TciZs9FX+cOHNiY9E9l0opL8g7BmLe3T+9ew=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/compat-data/-/compat-data-7.16.0.tgz"
"version" "7.16.0"
"@babel/core@^7.0.0", "@babel/core@^7.12.16", "@babel/core@>=7.11.0":
"integrity" "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/core/-/core-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/code-frame" "^7.16.0"
"@babel/generator" "^7.16.0"
"@babel/helper-compilation-targets" "^7.16.0"
"@babel/helper-module-transforms" "^7.16.0"
"@babel/helpers" "^7.16.0"
"@babel/parser" "^7.16.0"
"@babel/template" "^7.16.0"
"@babel/traverse" "^7.16.0"
"@babel/types" "^7.16.0"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"semver" "^6.3.0"
"source-map" "^0.5.0"
"@babel/[email protected]":
"integrity" "sha512-bfIYcT0BdKeAZrovpMqX2Mx5NrgAckGbwT982AkdS5GNfn3KMGiprlBAtmBcFZRUmpaufS6WZFP8trvx8ptFDw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/core/-/core-7.13.10.tgz"
"version" "7.13.10"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.13.9"
"@babel/helper-compilation-targets" "^7.13.10"
"@babel/helper-module-transforms" "^7.13.0"
"@babel/helpers" "^7.13.10"
"@babel/parser" "^7.13.10"
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.13.0"
"@babel/types" "^7.13.0"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"lodash" "^4.17.19"
"semver" "^6.3.0"
"source-map" "^0.5.0"
"@babel/eslint-parser@^7.12.16":
"integrity" "sha512-iB4ElZT0jAt7PKVaeVulOECdGe6UnmA/O0P9jlF5g5GBOwDVbna8AXhHRu4s27xQf6OkveyA8iTDv1jHdDejgQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/eslint-parser/-/eslint-parser-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"eslint-scope" "^5.1.1"
"eslint-visitor-keys" "^2.1.0"
"semver" "^6.3.0"
"@babel/generator@^7.13.0", "@babel/generator@^7.13.9", "@babel/[email protected]":
"integrity" "sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/generator/-/generator-7.13.9.tgz"
"version" "7.13.9"
dependencies:
"@babel/types" "^7.13.0"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/generator@^7.16.0":
"integrity" "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/generator/-/generator-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-compilation-targets@^7.13.10", "@babel/helper-compilation-targets@^7.16.0":
"integrity" "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"@babel/compat-data" "^7.16.0"
"@babel/helper-validator-option" "^7.14.5"
"browserslist" "^4.17.5"
"semver" "^6.3.0"
"@babel/helper-function-name@^7.12.13", "@babel/helper-function-name@^7.16.0":
"integrity" "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-get-function-arity" "^7.16.0"
"@babel/template" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/helper-get-function-arity@^7.16.0":
"integrity" "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-hoist-variables@^7.16.0":
"integrity" "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-member-expression-to-functions@^7.16.0":
"integrity" "sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-module-imports@^7.16.0":
"integrity" "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.16.0":
"integrity" "sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-module-imports" "^7.16.0"
"@babel/helper-replace-supers" "^7.16.0"
"@babel/helper-simple-access" "^7.16.0"
"@babel/helper-split-export-declaration" "^7.16.0"
"@babel/helper-validator-identifier" "^7.15.7"
"@babel/template" "^7.16.0"
"@babel/traverse" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/helper-optimise-call-expression@^7.16.0":
"integrity" "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-replace-supers@^7.16.0":
"integrity" "sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-member-expression-to-functions" "^7.16.0"
"@babel/helper-optimise-call-expression" "^7.16.0"
"@babel/traverse" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/helper-simple-access@^7.16.0":
"integrity" "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-split-export-declaration@^7.12.13", "@babel/helper-split-export-declaration@^7.16.0":
"integrity" "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.15.7":
"integrity" "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"
"version" "7.15.7"
"@babel/helper-validator-option@^7.14.5":
"integrity" "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"
"version" "7.14.5"
"@babel/helpers@^7.13.10", "@babel/helpers@^7.16.0":
"integrity" "sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/helpers/-/helpers-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"@babel/template" "^7.16.0"
"@babel/traverse" "^7.16.3"
"@babel/types" "^7.16.0"
"@babel/highlight@^7.16.0":
"integrity" "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/highlight/-/highlight-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-validator-identifier" "^7.15.7"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.13.0", "@babel/parser@^7.13.10", "@babel/[email protected]":
"integrity" "sha512-0s7Mlrw9uTWkYua7xWr99Wpk2bnGa0ANleKfksYAES8LpWH4gW1OUr42vqKNf0us5UQNfru2wPqMqRITzq/SIQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/parser/-/parser-7.13.10.tgz"
"version" "7.13.10"
"@babel/parser@^7.16.0", "@babel/parser@^7.16.3":
"integrity" "sha512-dcNwU1O4sx57ClvLBVFbEgx0UZWfd0JQX5X6fxFRCLHelFBGXFfSz6Y0FAq2PEwUqlqLkdVjVr4VASEOuUnLJw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/parser/-/parser-7.16.3.tgz"
"version" "7.16.3"
"@babel/template@^7.12.13", "@babel/template@^7.16.0":
"integrity" "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/template/-/template-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/code-frame" "^7.16.0"
"@babel/parser" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/traverse@^7.13.0", "@babel/[email protected]":
"integrity" "sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/traverse/-/traverse-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.13.0"
"@babel/helper-function-name" "^7.12.13"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/parser" "^7.13.0"
"@babel/types" "^7.13.0"
"debug" "^4.1.0"
"globals" "^11.1.0"
"lodash" "^4.17.19"
"@babel/traverse@^7.16.0", "@babel/traverse@^7.16.3":
"integrity" "sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/traverse/-/traverse-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"@babel/code-frame" "^7.16.0"
"@babel/generator" "^7.16.0"
"@babel/helper-function-name" "^7.16.0"
"@babel/helper-hoist-variables" "^7.16.0"
"@babel/helper-split-export-declaration" "^7.16.0"
"@babel/parser" "^7.16.3"
"@babel/types" "^7.16.0"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.13.0", "@babel/[email protected]":
"integrity" "sha512-hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/types/-/types-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-validator-identifier" "^7.12.11"
"lodash" "^4.17.19"
"to-fast-properties" "^2.0.0"
"@babel/types@^7.16.0":
"integrity" "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@babel/types/-/types-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-validator-identifier" "^7.15.7"
"to-fast-properties" "^2.0.0"
"@eslint-kit/eslint-config-base@^5.0.2":
"integrity" "sha512-Ar8yMXKhWUoo6dJYsbIBgLyzClkhfFqhmh3h5WtM3VqoDpX/Lt5RxtEq46RmowP33+NFwyzBYjixXiT9/ggROA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@eslint-kit/eslint-config-base/-/eslint-config-base-5.0.2.tgz"
"version" "5.0.2"
dependencies:
"eslint-plugin-import" "2.23.2"
"eslint-plugin-sonarjs" "0.7.0"
"eslint-plugin-unicorn" "32.0.1"
"@eslint-kit/eslint-config-node@^2.0.0":
"integrity" "sha512-NijY2BJkQGDvch7EHTmfOpKhvuYaItiBV+a56kwTB9uPh969Nqp5AumVcGcP9ZKrT8DJh7FOTw9B1CuGY3SyGA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@eslint-kit/eslint-config-node/-/eslint-config-node-2.0.0.tgz"
"version" "2.0.0"
"@eslint-kit/eslint-config-patch@^1.0.0":
"integrity" "sha512-b3pODxIVCfXz/q5n/C6NeB5rOjNwS+IKtMAIbi9qk4Pz9wrYgTgjaiOCxj5aEfT0gE49t7/bjvZv2tWlSe171Q=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@eslint-kit/eslint-config-patch/-/eslint-config-patch-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"@rushstack/eslint-patch" "1.0.6"
"@eslint-kit/eslint-config-prettier@^4.0.0":
"integrity" "sha512-nHGuzIMnDzcs36ivDFd6FFCFy8f21NHAF50XbTOSQo0BX7rDoJcWbENn4N0n16RXIAi1AZ3CjAvfPQiQX4C2Gg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@eslint-kit/eslint-config-prettier/-/eslint-config-prettier-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"@trivago/prettier-plugin-sort-imports" "2.0.2"
"eslint-plugin-prettier" "3.4.0"
"@eslint-kit/eslint-config-typescript@^5.1.0":
"integrity" "sha512-wettxLN81GHj1NLAECOneVytswnjdjQ5EacBgKzAHwjbB4t5APaLNQGEUmEca1se3CyroWeD05X1WutM1ItpOw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@eslint-kit/eslint-config-typescript/-/eslint-config-typescript-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@typescript-eslint/eslint-plugin" "^4.28.1"
"@typescript-eslint/parser" "^4.28.1"
"@eslint/eslintrc@^0.1.3":
"integrity" "sha512-4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@eslint/eslintrc/-/eslintrc-0.1.3.tgz"
"version" "0.1.3"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.1.1"
"espree" "^7.3.0"
"globals" "^12.1.0"
"ignore" "^4.0.6"
"import-fresh" "^3.2.1"
"js-yaml" "^3.13.1"
"lodash" "^4.17.19"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@medusa/webpack-plugin@^1.0.0":
"resolved" "file:../medusa-webpack-plugin"
"version" "1.1.0"
dependencies:
"find-package-json" "^1.2.0"
"webpack" "^5.61.0"
"@nodelib/[email protected]":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@rollup/pluginutils@^4.1.1":
"integrity" "sha512-clDjivHqWGXi7u+0d2r2sBi4Ie6VLEAzWMIkvJLnDmxoOhBYOTfzGbOQBA32THHm11/LiJbd01tJUpJsbshSWQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@rollup/pluginutils/-/pluginutils-4.1.1.tgz"
"version" "4.1.1"
dependencies:
"estree-walker" "^2.0.1"
"picomatch" "^2.2.2"
"@rushstack/[email protected]":
"integrity" "sha512-Myxw//kzromB9yWgS8qYGuGVf91oBUUJpNvy5eM50sqvmKLbKjwLxohJnkWGTeeI9v9IBMtPLxz5Gc60FIfvCA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@rushstack/eslint-patch/-/eslint-patch-1.0.6.tgz"
"version" "1.0.6"
"@trivago/[email protected]":
"integrity" "sha512-esk6vplzXYwXQs079wBbKog4AFuZfxpJU+MygiijV0wbAibI0tEm+diFFhYP7B2lAaKKdU4+w+BW+McNZCw9HA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@trivago/prettier-plugin-sort-imports/-/prettier-plugin-sort-imports-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"@babel/core" "7.13.10"
"@babel/generator" "7.13.9"
"@babel/parser" "7.13.10"
"@babel/traverse" "7.13.0"
"@babel/types" "7.13.0"
"@types/lodash" "4.14.168"
"javascript-natural-sort" "0.7.1"
"lodash" "4.17.21"
"prettier" "2.2.1"
"@types/eslint-scope@^3.7.0":
"integrity" "sha512-SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/eslint-scope/-/eslint-scope-3.7.1.tgz"
"version" "3.7.1"
dependencies:
"@types/eslint" "*"
"@types/estree" "*"
"@types/eslint@*":
"integrity" "sha512-KubbADPkfoU75KgKeKLsFHXnU4ipH7wYg0TRT33NK3N3yiu7jlFAAoygIWBV+KbuHx/G+AvuGX6DllnK35gfJA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/eslint/-/eslint-7.28.2.tgz"
"version" "7.28.2"
dependencies:
"@types/estree" "*"
"@types/json-schema" "*"
"@types/estree@*", "@types/estree@^0.0.50":
"integrity" "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/estree/-/estree-0.0.50.tgz"
"version" "0.0.50"
"@types/fs-extra@^9.0.12":
"integrity" "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/fs-extra/-/fs-extra-9.0.13.tgz"
"version" "9.0.13"
dependencies:
"@types/node" "*"
"@types/json-schema@*", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8":
"integrity" "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/json-schema/-/json-schema-7.0.9.tgz"
"version" "7.0.9"
"@types/json5@^0.0.29":
"integrity" "sha1-7ihweulOEdK4J7y+UnC86n8+ce4="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/json5/-/json5-0.0.29.tgz"
"version" "0.0.29"
"@types/lodash.debounce@^4.0.6":
"integrity" "sha512-4WTmnnhCfDvvuLMaF3KV4Qfki93KebocUF45msxhYyjMttZDQYzHkO639ohhk8+oco2cluAFL3t5+Jn4mleylQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/lodash.debounce/-/lodash.debounce-4.0.6.tgz"
"version" "4.0.6"
dependencies:
"@types/lodash" "*"
"@types/lodash@*", "@types/[email protected]":
"integrity" "sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/lodash/-/lodash-4.14.168.tgz"
"version" "4.14.168"
"@types/merge-deep@^3.0.0":
"integrity" "sha512-t5B5UfacpaP8opUvFGUwT0uQetFrD+qm1/I2ksxokJFLT0Tb4B2NI2G2LYz3ugMDKOE7adkNBZ6coK7RW6MAqA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/merge-deep/-/merge-deep-3.0.0.tgz"
"version" "3.0.0"
"@types/minimist@^1.2.2":
"integrity" "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/minimist/-/minimist-1.2.2.tgz"
"version" "1.2.2"
"@types/node-fetch@^2.5.12":
"integrity" "sha512-MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/node-fetch/-/node-fetch-2.5.12.tgz"
"version" "2.5.12"
dependencies:
"@types/node" "*"
"form-data" "^3.0.0"
"@types/node@*", "@types/node@^16.6":
"integrity" "sha512-QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/node/-/node-16.11.7.tgz"
"version" "16.11.7"
"@types/normalize-package-data@^2.4.0":
"integrity" "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz"
"version" "2.4.1"
"@types/object-hash@^2.2.1":
"integrity" "sha512-i/rtaJFCsPljrZvP/akBqEwUP2y5cZLOmvO+JaYnz01aPknrQ+hB5MRcO7iqCUsFaYfTG8kGfKUyboA07xeDHQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/object-hash/-/object-hash-2.2.1.tgz"
"version" "2.2.1"
"@types/prop-types@*":
"integrity" "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/prop-types/-/prop-types-15.7.4.tgz"
"version" "15.7.4"
"@types/react@^17.0.34", "@types/react@>=16.8.0":
"integrity" "sha512-46FEGrMjc2+8XhHXILr+3+/sTe3OfzSPU9YGKILLrUYbQ1CLQC9Daqo1KzENGXAWwrFwiY0l4ZbF20gRvgpWTg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/react/-/react-17.0.34.tgz"
"version" "17.0.34"
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
"csstype" "^3.0.2"
"@types/scheduler@*":
"integrity" "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/scheduler/-/scheduler-0.16.2.tgz"
"version" "0.16.2"
"@types/[email protected]":
"integrity" "sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@types/yoga-layout/-/yoga-layout-1.9.2.tgz"
"version" "1.9.2"
"@typescript-eslint/eslint-plugin@^4.28.1":
"integrity" "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@typescript-eslint/experimental-utils" "4.33.0"
"@typescript-eslint/scope-manager" "4.33.0"
"debug" "^4.3.1"
"functional-red-black-tree" "^1.0.1"
"ignore" "^5.1.8"
"regexpp" "^3.1.0"
"semver" "^7.3.5"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@types/json-schema" "^7.0.7"
"@typescript-eslint/scope-manager" "4.33.0"
"@typescript-eslint/types" "4.33.0"
"@typescript-eslint/typescript-estree" "4.33.0"
"eslint-scope" "^5.1.1"
"eslint-utils" "^3.0.0"
"@typescript-eslint/parser@^4.0.0", "@typescript-eslint/[email protected]":
"integrity" "sha512-L6Dtbq8Bc7g2aZwnIBETpmUa9XDKCMzKVwAArnGp5Mn7PRNFjf3mUzq8UeBjL3K8t311hvevnyqXAMSmxO8Gpg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/parser/-/parser-4.15.0.tgz"
"version" "4.15.0"
dependencies:
"@typescript-eslint/scope-manager" "4.15.0"
"@typescript-eslint/types" "4.15.0"
"@typescript-eslint/typescript-estree" "4.15.0"
"debug" "^4.1.1"
"@typescript-eslint/parser@^4.28.1":
"integrity" "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/parser/-/parser-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@typescript-eslint/scope-manager" "4.33.0"
"@typescript-eslint/types" "4.33.0"
"@typescript-eslint/typescript-estree" "4.33.0"
"debug" "^4.3.1"
"@typescript-eslint/[email protected]":
"integrity" "sha512-CSNBZnCC2jEA/a+pR9Ljh8Y+5TY5qgbPz7ICEk9WCpSEgT6Pi7H2RIjxfrrbUXvotd6ta+i27sssKEH8Azm75g=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/scope-manager/-/scope-manager-4.15.0.tgz"
"version" "4.15.0"
dependencies:
"@typescript-eslint/types" "4.15.0"
"@typescript-eslint/visitor-keys" "4.15.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@typescript-eslint/types" "4.33.0"
"@typescript-eslint/visitor-keys" "4.33.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-su4RHkJhS+iFwyqyXHcS8EGPlUVoC+XREfy5daivjLur9JP8GhvTmDipuRpcujtGC4M+GYhUOJCPDE3rC5NJrg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/types/-/types-4.15.0.tgz"
"version" "4.15.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/types/-/types-4.33.0.tgz"
"version" "4.33.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-jG6xTmcNbi6xzZq0SdWh7wQ9cMb2pqXaUp6bUZOMsIlu5aOlxGxgE/t6L/gPybybQGvdguajXGkZKSndZJpksA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/typescript-estree/-/typescript-estree-4.15.0.tgz"
"version" "4.15.0"
dependencies:
"@typescript-eslint/types" "4.15.0"
"@typescript-eslint/visitor-keys" "4.15.0"
"debug" "^4.1.1"
"globby" "^11.0.1"
"is-glob" "^4.0.1"
"semver" "^7.3.2"
"tsutils" "^3.17.1"
"@typescript-eslint/[email protected]":
"integrity" "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@typescript-eslint/types" "4.33.0"
"@typescript-eslint/visitor-keys" "4.33.0"
"debug" "^4.3.1"
"globby" "^11.0.3"
"is-glob" "^4.0.1"
"semver" "^7.3.5"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-RnDtJwOwFucWFAMjG3ghCG/ikImFJFEg20DI7mn4pHEx3vC48lIAoyjhffvfHmErRDboUPC7p9Z2il4CLb7qxA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/visitor-keys/-/visitor-keys-4.15.0.tgz"
"version" "4.15.0"
dependencies:
"@typescript-eslint/types" "4.15.0"
"eslint-visitor-keys" "^2.0.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@typescript-eslint/types" "4.33.0"
"eslint-visitor-keys" "^2.0.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/ast/-/ast-1.11.1.tgz"
"version" "1.11.1"
dependencies:
"@webassemblyjs/helper-numbers" "1.11.1"
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
"@webassemblyjs/[email protected]":
"integrity" "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz"
"version" "1.11.1"
"@webassemblyjs/[email protected]":
"integrity" "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz"
"version" "1.11.1"
"@webassemblyjs/[email protected]":
"integrity" "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz"
"version" "1.11.1"
"@webassemblyjs/[email protected]":
"integrity" "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz"
"version" "1.11.1"
dependencies:
"@webassemblyjs/floating-point-hex-parser" "1.11.1"
"@webassemblyjs/helper-api-error" "1.11.1"
"@xtuc/long" "4.2.2"
"@webassemblyjs/[email protected]":
"integrity" "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz"
"version" "1.11.1"
"@webassemblyjs/[email protected]":
"integrity" "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz"
"version" "1.11.1"
dependencies:
"@webassemblyjs/ast" "1.11.1"
"@webassemblyjs/helper-buffer" "1.11.1"
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
"@webassemblyjs/wasm-gen" "1.11.1"
"@webassemblyjs/[email protected]":
"integrity" "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz"
"version" "1.11.1"
dependencies:
"@xtuc/ieee754" "^1.2.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/leb128/-/leb128-1.11.1.tgz"
"version" "1.11.1"
dependencies:
"@xtuc/long" "4.2.2"
"@webassemblyjs/[email protected]":
"integrity" "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/utf8/-/utf8-1.11.1.tgz"
"version" "1.11.1"
"@webassemblyjs/[email protected]":
"integrity" "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz"
"version" "1.11.1"
dependencies:
"@webassemblyjs/ast" "1.11.1"
"@webassemblyjs/helper-buffer" "1.11.1"
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
"@webassemblyjs/helper-wasm-section" "1.11.1"
"@webassemblyjs/wasm-gen" "1.11.1"
"@webassemblyjs/wasm-opt" "1.11.1"
"@webassemblyjs/wasm-parser" "1.11.1"
"@webassemblyjs/wast-printer" "1.11.1"
"@webassemblyjs/[email protected]":
"integrity" "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz"
"version" "1.11.1"
dependencies:
"@webassemblyjs/ast" "1.11.1"
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
"@webassemblyjs/ieee754" "1.11.1"
"@webassemblyjs/leb128" "1.11.1"
"@webassemblyjs/utf8" "1.11.1"
"@webassemblyjs/[email protected]":
"integrity" "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz"
"version" "1.11.1"
dependencies:
"@webassemblyjs/ast" "1.11.1"
"@webassemblyjs/helper-buffer" "1.11.1"
"@webassemblyjs/wasm-gen" "1.11.1"
"@webassemblyjs/wasm-parser" "1.11.1"
"@webassemblyjs/[email protected]":
"integrity" "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz"
"version" "1.11.1"
dependencies:
"@webassemblyjs/ast" "1.11.1"
"@webassemblyjs/helper-api-error" "1.11.1"
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
"@webassemblyjs/ieee754" "1.11.1"
"@webassemblyjs/leb128" "1.11.1"
"@webassemblyjs/utf8" "1.11.1"
"@webassemblyjs/[email protected]":
"integrity" "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz"
"version" "1.11.1"
dependencies:
"@webassemblyjs/ast" "1.11.1"
"@xtuc/long" "4.2.2"
"@xtuc/ieee754@^1.2.0":
"integrity" "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@xtuc/ieee754/-/ieee754-1.2.0.tgz"
"version" "1.2.0"
"@xtuc/[email protected]":
"integrity" "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/@xtuc/long/-/long-4.2.2.tgz"
"version" "4.2.2"
"acorn-import-assertions@^1.7.6":
"integrity" "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz"
"version" "1.8.0"
"acorn-jsx@^5.3.1":
"integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
"version" "5.3.2"
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^8", "acorn@^8.4.1":
"integrity" "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/acorn/-/acorn-8.5.0.tgz"
"version" "8.5.0"
"acorn@^7.4.0":
"integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/acorn/-/acorn-7.4.1.tgz"
"version" "7.4.1"
"ajv-keywords@^3.5.2":
"integrity" "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/ajv-keywords/-/ajv-keywords-3.5.2.tgz"
"version" "3.5.2"
"ajv@^6.10.0", "ajv@^6.10.2", "ajv@^6.12.4", "ajv@^6.12.5", "ajv@^6.9.1":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ansi-colors@^4.1.1":
"integrity" "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/ansi-colors/-/ansi-colors-4.1.1.tgz"
"version" "4.1.1"
"ansi-escapes@^4.2.1":
"integrity" "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/ansi-escapes/-/ansi-escapes-4.3.2.tgz"
"version" "4.3.2"
dependencies:
"type-fest" "^0.21.3"
"ansi-regex@^4.1.0":
"integrity" "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/ansi-regex/-/ansi-regex-4.1.0.tgz"
"version" "4.1.0"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-styles@^3.2.0":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0", "ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"argparse@^1.0.7":
"integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/argparse/-/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"arr-union@^3.1.0":
"integrity" "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/arr-union/-/arr-union-3.1.0.tgz"
"version" "3.1.0"
"array-includes@^3.1.3":
"integrity" "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/array-includes/-/array-includes-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"
"es-abstract" "^1.19.1"
"get-intrinsic" "^1.1.1"
"is-string" "^1.0.7"
"array-union@^2.1.0":
"integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/array-union/-/array-union-2.1.0.tgz"
"version" "2.1.0"
"array-union@^3.0.1":
"integrity" "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/array-union/-/array-union-3.0.1.tgz"
"version" "3.0.1"
"array.prototype.flat@^1.2.4":
"integrity" "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz"
"version" "1.2.5"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"
"es-abstract" "^1.19.0"
"astral-regex@^1.0.0":
"integrity" "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/astral-regex/-/astral-regex-1.0.0.tgz"
"version" "1.0.0"
"astral-regex@^2.0.0":
"integrity" "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/astral-regex/-/astral-regex-2.0.0.tgz"
"version" "2.0.0"
"asynckit@^0.4.0":
"integrity" "sha1-x57Zf380y48robyXkLzDZkdLS3k="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/asynckit/-/asynckit-0.4.0.tgz"
"version" "0.4.0"
"integrity" "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/auto-bind/-/auto-bind-4.0.0.tgz"
"version" "4.0.0"
"balanced-match@^1.0.0":
"integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/balanced-match/-/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"blacklist@^1.1.4":
"integrity" "sha1-st0J1hd2JbLKppg1o3somV+povI="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/blacklist/-/blacklist-1.1.4.tgz"
"version" "1.1.4"
"brace-expansion@^1.1.7":
"integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/brace-expansion/-/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"braces@^3.0.1":
"integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/braces/-/braces-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"fill-range" "^7.0.1"
"browserslist@^4.14.5", "browserslist@^4.17.5":
"integrity" "sha512-uPgz3vyRTlEiCv4ee9KlsKgo2V6qPk7Jsn0KAn2OBqbqKo3iNcPEC1Ti6J4dwnz+aIRfEEEuOzC9IBk8tXUomw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/browserslist/-/browserslist-4.17.6.tgz"
"version" "4.17.6"
dependencies:
"caniuse-lite" "^1.0.30001274"
"electron-to-chromium" "^1.3.886"
"escalade" "^3.1.1"
"node-releases" "^2.0.1"
"picocolors" "^1.0.0"
"buffer-from@^1.0.0":
"integrity" "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/buffer-from/-/buffer-from-1.1.2.tgz"
"version" "1.1.2"
"builtin-modules@^3.0.0":
"integrity" "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/builtin-modules/-/builtin-modules-3.2.0.tgz"
"version" "3.2.0"
"call-bind@^1.0.0", "call-bind@^1.0.2":
"integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/call-bind/-/call-bind-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"function-bind" "^1.1.1"
"get-intrinsic" "^1.0.2"
"callsites@^3.0.0":
"integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/callsites/-/callsites-3.1.0.tgz"
"version" "3.1.0"
"camel-case@^4.1.2":
"integrity" "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/camel-case/-/camel-case-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"pascal-case" "^3.1.2"
"tslib" "^2.0.3"
"caniuse-lite@^1.0.30001274":
"integrity" "sha512-kFXwYvHe5rix25uwueBxC569o53J6TpnGu0BEEn+6Lhl2vsnAumRFWEBhDft1fwyo6m1r4i+RqA4+163FpeFcA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/caniuse-lite/-/caniuse-lite-1.0.30001280.tgz"
"version" "1.0.30001280"
"capital-case@^1.0.4":
"integrity" "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/capital-case/-/capital-case-1.0.4.tgz"
"version" "1.0.4"
dependencies:
"no-case" "^3.0.4"
"tslib" "^2.0.3"
"upper-case-first" "^2.0.2"
"chalk@^2.0.0":
"integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/chalk/-/chalk-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"ansi-styles" "^3.2.1"
"escape-string-regexp" "^1.0.5"
"supports-color" "^5.3.0"
"chalk@^4.0.0", "chalk@^4.1.0", "chalk@^4.1.2":
"integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/chalk/-/chalk-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"change-case@^4.1.2":
"integrity" "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/change-case/-/change-case-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"camel-case" "^4.1.2"
"capital-case" "^1.0.4"
"constant-case" "^3.0.4"
"dot-case" "^3.0.4"
"header-case" "^2.0.4"
"no-case" "^3.0.4"
"param-case" "^3.0.4"
"pascal-case" "^3.1.2"
"path-case" "^3.0.4"
"sentence-case" "^3.0.4"
"snake-case" "^3.0.4"
"tslib" "^2.0.3"
"chrome-trace-event@^1.0.2":
"integrity" "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz"
"version" "1.0.3"
"ci-info@^2.0.0":
"integrity" "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="
"resolved" "https://nexus-dev.pcbltools.ru/repository/npm-group/ci-info/-/ci-info-2.0.0.tgz"
"version" "2.0.0"
"ci-info@^3.1.1":