-
Notifications
You must be signed in to change notification settings - Fork 0
/
pnpm-lock.yaml
4003 lines (3596 loc) · 213 KB
/
pnpm-lock.yaml
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
lockfileVersion: 5.3
specifiers:
'@antfu/eslint-config': ^0.42.0
eslint: ^8.49.0
express: ^4.17.3
jimp: ^0.16.1
socket.io: ^4.4.1
socket.io-client: ^4.4.1
dependencies:
express: registry.npmmirror.com/express/4.18.2
jimp: registry.npmmirror.com/jimp/0.16.13
socket.io: registry.npmmirror.com/socket.io/4.7.2
socket.io-client: registry.npmmirror.com/socket.io-client/4.7.2
devDependencies:
'@antfu/eslint-config': registry.npmmirror.com/@antfu/eslint-config/0.42.0_eslint@8.49.0
eslint: registry.npmmirror.com/eslint/8.49.0
packages:
registry.npmmirror.com/@aashutoshrathi/word-wrap/1.2.6:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz}
name: '@aashutoshrathi/word-wrap'
version: 1.2.6
engines: {node: '>=0.10.0'}
dev: true
registry.npmmirror.com/@antfu/eslint-config-basic/0.42.0_213efc07227cd805b95526d39d8ba959:
resolution: {integrity: sha512-vPy2qYCc8G8nd7RuHV4z05RUhvFOwtulcBwzEYPQTbd4IqbqJ9UA8ISgp1qYcJvbz74eR3mUl8r4b0OzxngPkg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/eslint-config-basic/-/eslint-config-basic-0.42.0.tgz}
id: registry.npmmirror.com/@antfu/eslint-config-basic/0.42.0
name: '@antfu/eslint-config-basic'
version: 0.42.0
peerDependencies:
eslint: '>=7.4.0'
dependencies:
eslint: registry.npmmirror.com/eslint/8.49.0
eslint-plugin-antfu: registry.npmmirror.com/eslint-plugin-antfu/0.42.0_eslint@8.49.0
eslint-plugin-eslint-comments: registry.npmmirror.com/eslint-plugin-eslint-comments/3.2.0_eslint@8.49.0
eslint-plugin-html: registry.npmmirror.com/eslint-plugin-html/7.1.0
eslint-plugin-import: registry.npmmirror.com/eslint-plugin-i/2.28.1_eede37cee10804735db8bce490a29da2
eslint-plugin-jsdoc: registry.npmmirror.com/eslint-plugin-jsdoc/46.8.0_eslint@8.49.0
eslint-plugin-jsonc: registry.npmmirror.com/eslint-plugin-jsonc/2.9.0_eslint@8.49.0
eslint-plugin-markdown: registry.npmmirror.com/eslint-plugin-markdown/3.0.1_eslint@8.49.0
eslint-plugin-n: registry.npmmirror.com/eslint-plugin-n/16.1.0_eslint@8.49.0
eslint-plugin-no-only-tests: registry.npmmirror.com/eslint-plugin-no-only-tests/3.1.0
eslint-plugin-promise: registry.npmmirror.com/eslint-plugin-promise/6.1.1_eslint@8.49.0
eslint-plugin-unicorn: registry.npmmirror.com/eslint-plugin-unicorn/48.0.1_eslint@8.49.0
eslint-plugin-unused-imports: registry.npmmirror.com/eslint-plugin-unused-imports/3.0.0_702818c57e941145df403634dea45eff
eslint-plugin-yml: registry.npmmirror.com/eslint-plugin-yml/1.9.0_eslint@8.49.0
jsonc-eslint-parser: registry.npmmirror.com/jsonc-eslint-parser/2.3.0
yaml-eslint-parser: registry.npmmirror.com/yaml-eslint-parser/1.2.2
transitivePeerDependencies:
- '@typescript-eslint/eslint-plugin'
- '@typescript-eslint/parser'
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- typescript
dev: true
registry.npmmirror.com/@antfu/eslint-config-ts/0.42.0_eslint@8.49.0:
resolution: {integrity: sha512-XYnWaNYhGeSgXZLpgPUsn0qHaBCJoNJVPD712fwLEGTJ5a5QctT5v04TRERJmeqfk67EaVMlsuDveLx3fqVuyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/eslint-config-ts/-/eslint-config-ts-0.42.0.tgz}
id: registry.npmmirror.com/@antfu/eslint-config-ts/0.42.0
name: '@antfu/eslint-config-ts'
version: 0.42.0
peerDependencies:
eslint: '>=7.4.0'
typescript: '>=3.9'
dependencies:
'@antfu/eslint-config-basic': registry.npmmirror.com/@antfu/eslint-config-basic/0.42.0_213efc07227cd805b95526d39d8ba959
'@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/6.7.0_eede37cee10804735db8bce490a29da2
'@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/6.7.0_eslint@8.49.0
eslint: registry.npmmirror.com/eslint/8.49.0
eslint-plugin-jest: registry.npmmirror.com/eslint-plugin-jest/27.2.3_702818c57e941145df403634dea45eff
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- jest
- supports-color
dev: true
registry.npmmirror.com/@antfu/eslint-config-vue/0.42.0_213efc07227cd805b95526d39d8ba959:
resolution: {integrity: sha512-QiD16D5bk99EImRc/z0mnO4TeP0cMMPIOMO8RamJ1ChD/lIluEZFjBTRykTesRyc7+YsdJYit4M/t6hu8YeSww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/eslint-config-vue/-/eslint-config-vue-0.42.0.tgz}
id: registry.npmmirror.com/@antfu/eslint-config-vue/0.42.0
name: '@antfu/eslint-config-vue'
version: 0.42.0
peerDependencies:
eslint: '>=7.4.0'
dependencies:
'@antfu/eslint-config-basic': registry.npmmirror.com/@antfu/eslint-config-basic/0.42.0_213efc07227cd805b95526d39d8ba959
'@antfu/eslint-config-ts': registry.npmmirror.com/@antfu/eslint-config-ts/0.42.0_eslint@8.49.0
eslint: registry.npmmirror.com/eslint/8.49.0
eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue/9.17.0_eslint@8.49.0
local-pkg: registry.npmmirror.com/local-pkg/0.4.3
transitivePeerDependencies:
- '@typescript-eslint/eslint-plugin'
- '@typescript-eslint/parser'
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- jest
- supports-color
- typescript
dev: true
registry.npmmirror.com/@antfu/eslint-config/0.42.0_eslint@8.49.0:
resolution: {integrity: sha512-RdTn+ggGF/mctHjnzLvImx/+RV18HwVTvC/jeHSF4bKBTA3eTftq+FrxWuCpmrEQRIb+J/tn2gmNpzizUo1PLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/eslint-config/-/eslint-config-0.42.0.tgz}
id: registry.npmmirror.com/@antfu/eslint-config/0.42.0
name: '@antfu/eslint-config'
version: 0.42.0
peerDependencies:
eslint: '>=7.4.0'
dependencies:
'@antfu/eslint-config-vue': registry.npmmirror.com/@antfu/eslint-config-vue/0.42.0_213efc07227cd805b95526d39d8ba959
'@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/6.7.0_eede37cee10804735db8bce490a29da2
'@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/6.7.0_eslint@8.49.0
eslint: registry.npmmirror.com/eslint/8.49.0
eslint-plugin-eslint-comments: registry.npmmirror.com/eslint-plugin-eslint-comments/3.2.0_eslint@8.49.0
eslint-plugin-html: registry.npmmirror.com/eslint-plugin-html/7.1.0
eslint-plugin-import: registry.npmmirror.com/eslint-plugin-i/2.28.1_eede37cee10804735db8bce490a29da2
eslint-plugin-jsonc: registry.npmmirror.com/eslint-plugin-jsonc/2.9.0_eslint@8.49.0
eslint-plugin-n: registry.npmmirror.com/eslint-plugin-n/16.1.0_eslint@8.49.0
eslint-plugin-promise: registry.npmmirror.com/eslint-plugin-promise/6.1.1_eslint@8.49.0
eslint-plugin-unicorn: registry.npmmirror.com/eslint-plugin-unicorn/48.0.1_eslint@8.49.0
eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue/9.17.0_eslint@8.49.0
eslint-plugin-yml: registry.npmmirror.com/eslint-plugin-yml/1.9.0_eslint@8.49.0
jsonc-eslint-parser: registry.npmmirror.com/jsonc-eslint-parser/2.3.0
yaml-eslint-parser: registry.npmmirror.com/yaml-eslint-parser/1.2.2
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- jest
- supports-color
- typescript
dev: true
registry.npmmirror.com/@babel/code-frame/7.22.13:
resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.13.tgz}
name: '@babel/code-frame'
version: 7.22.13
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight/7.22.13
chalk: registry.npmmirror.com/chalk/2.4.2
dev: true
registry.npmmirror.com/@babel/helper-validator-identifier/7.22.19:
resolution: {integrity: sha512-Tinq7ybnEPFFXhlYOYFiSjespWQk0dq2dRNAiMdRTOYQzEGqnnNyrTxPYHP5r6wGjlF1rFgABdDV0g8EwD6Qbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.19.tgz}
name: '@babel/helper-validator-identifier'
version: 7.22.19
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/highlight/7.22.13:
resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.13.tgz}
name: '@babel/highlight'
version: 7.22.13
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.19
chalk: registry.npmmirror.com/chalk/2.4.2
js-tokens: registry.npmmirror.com/js-tokens/4.0.0
dev: true
registry.npmmirror.com/@babel/runtime/7.22.15:
resolution: {integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.15.tgz}
name: '@babel/runtime'
version: 7.22.15
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.14.0
dev: false
registry.npmmirror.com/@es-joy/jsdoccomment/0.40.1:
resolution: {integrity: sha512-YORCdZSusAlBrFpZ77pJjc5r1bQs5caPWtAu+WWmiSo+8XaUzseapVrfAtiRFbQWnrBxxLLEwF6f6ZG/UgCQCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@es-joy/jsdoccomment/-/jsdoccomment-0.40.1.tgz}
name: '@es-joy/jsdoccomment'
version: 0.40.1
engines: {node: '>=16'}
dependencies:
comment-parser: registry.npmmirror.com/comment-parser/1.4.0
esquery: registry.npmmirror.com/esquery/1.5.0
jsdoc-type-pratt-parser: registry.npmmirror.com/jsdoc-type-pratt-parser/4.0.0
dev: true
registry.npmmirror.com/@eslint-community/eslint-utils/4.4.0_eslint@8.49.0:
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz}
id: registry.npmmirror.com/@eslint-community/eslint-utils/4.4.0
name: '@eslint-community/eslint-utils'
version: 4.4.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
eslint: registry.npmmirror.com/eslint/8.49.0
eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.4.3
dev: true
registry.npmmirror.com/@eslint-community/regexpp/4.8.1:
resolution: {integrity: sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.8.1.tgz}
name: '@eslint-community/regexpp'
version: 4.8.1
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: true
registry.npmmirror.com/@eslint/eslintrc/2.1.2:
resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-2.1.2.tgz}
name: '@eslint/eslintrc'
version: 2.1.2
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: registry.npmmirror.com/ajv/6.12.6
debug: registry.npmmirror.com/debug/4.3.4
espree: registry.npmmirror.com/espree/9.6.1
globals: registry.npmmirror.com/globals/13.21.0
ignore: registry.npmmirror.com/ignore/5.2.4
import-fresh: registry.npmmirror.com/import-fresh/3.3.0
js-yaml: registry.npmmirror.com/js-yaml/4.1.0
minimatch: registry.npmmirror.com/minimatch/3.1.2
strip-json-comments: registry.npmmirror.com/strip-json-comments/3.1.1
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@eslint/js/8.49.0:
resolution: {integrity: sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint/js/-/js-8.49.0.tgz}
name: '@eslint/js'
version: 8.49.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
registry.npmmirror.com/@humanwhocodes/config-array/0.11.11:
resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.11.11.tgz}
name: '@humanwhocodes/config-array'
version: 0.11.11
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': registry.npmmirror.com/@humanwhocodes/object-schema/1.2.1
debug: registry.npmmirror.com/debug/4.3.4
minimatch: registry.npmmirror.com/minimatch/3.1.2
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@humanwhocodes/module-importer/1.0.1:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz}
name: '@humanwhocodes/module-importer'
version: 1.0.1
engines: {node: '>=12.22'}
dev: true
registry.npmmirror.com/@humanwhocodes/object-schema/1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz}
name: '@humanwhocodes/object-schema'
version: 1.2.1
dev: true
registry.npmmirror.com/@jimp/bmp/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-9edAxu7N2FX7vzkdl5Jo1BbACfycUtBQX+XBMcHA2bk62P8R0otgkHg798frgAk/WxQIzwxqOH6wMiCwrlAzdQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/bmp/-/bmp-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/bmp/0.16.13
name: '@jimp/bmp'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
bmp-js: registry.npmmirror.com/bmp-js/0.1.0
dev: false
registry.npmmirror.com/@jimp/core/0.16.13:
resolution: {integrity: sha512-qXpA1tzTnlkTku9yqtuRtS/wVntvE6f3m3GNxdTdtmc+O+Wcg9Xo2ABPMh7Nc0AHbMKzwvwgB2JnjZmlmJEObg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/core/-/core-0.16.13.tgz}
name: '@jimp/core'
version: 0.16.13
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
any-base: registry.npmmirror.com/any-base/1.1.0
buffer: registry.npmmirror.com/buffer/5.7.1
exif-parser: registry.npmmirror.com/exif-parser/0.1.12
file-type: registry.npmmirror.com/file-type/16.5.4
load-bmfont: registry.npmmirror.com/load-bmfont/1.4.1
mkdirp: registry.npmmirror.com/mkdirp/0.5.6
phin: registry.npmmirror.com/phin/2.9.3
pixelmatch: registry.npmmirror.com/pixelmatch/4.0.2
tinycolor2: registry.npmmirror.com/tinycolor2/1.6.0
dev: false
registry.npmmirror.com/@jimp/custom/0.16.13:
resolution: {integrity: sha512-LTATglVUPGkPf15zX1wTMlZ0+AU7cGEGF6ekVF1crA8eHUWsGjrYTB+Ht4E3HTrCok8weQG+K01rJndCp/l4XA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/custom/-/custom-0.16.13.tgz}
name: '@jimp/custom'
version: 0.16.13
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/core': registry.npmmirror.com/@jimp/core/0.16.13
dev: false
registry.npmmirror.com/@jimp/gif/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-yFAMZGv3o+YcjXilMWWwS/bv1iSqykFahFMSO169uVMtfQVfa90kt4/kDwrXNR6Q9i6VHpFiGZMlF2UnHClBvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/gif/-/gif-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/gif/0.16.13
name: '@jimp/gif'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
gifwrap: registry.npmmirror.com/gifwrap/0.9.4
omggif: registry.npmmirror.com/omggif/1.0.10
dev: false
registry.npmmirror.com/@jimp/jpeg/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-BJHlDxzTlCqP2ThqP8J0eDrbBfod7npWCbJAcfkKqdQuFk0zBPaZ6KKaQKyKxmWJ87Z6ohANZoMKEbtvrwz1AA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/jpeg/-/jpeg-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/jpeg/0.16.13
name: '@jimp/jpeg'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
jpeg-js: registry.npmmirror.com/jpeg-js/0.4.4
dev: false
registry.npmmirror.com/@jimp/plugin-blit/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-8Z1k96ZFxlhK2bgrY1JNWNwvaBeI/bciLM0yDOni2+aZwfIIiC7Y6PeWHTAvjHNjphz+XCt01WQmOYWCn0ML6g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-blit/-/plugin-blit-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-blit/0.16.13
name: '@jimp/plugin-blit'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-blur/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-PvLrfa8vkej3qinlebyhLpksJgCF5aiysDMSVhOZqwH5nQLLtDE9WYbnsofGw4r0VVpyw3H/ANCIzYTyCtP9Cg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-blur/-/plugin-blur-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-blur/0.16.13
name: '@jimp/plugin-blur'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-circle/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-RNave7EFgZrb5V5EpdvJGAEHMnDAJuwv05hKscNfIYxf0kR3KhViBTDy+MoTnMlIvaKFULfwIgaZWzyhuINMzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-circle/-/plugin-circle-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-circle/0.16.13
name: '@jimp/plugin-circle'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-color/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-xW+9BtEvoIkkH/Wde9ql4nAFbYLkVINhpgAE7VcBUsuuB34WUbcBl/taOuUYQrPEFQJ4jfXiAJZ2H/rvKjCVnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-color/-/plugin-color-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-color/0.16.13
name: '@jimp/plugin-color'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
tinycolor2: registry.npmmirror.com/tinycolor2/1.6.0
dev: false
registry.npmmirror.com/@jimp/plugin-contain/0.16.13_c4c7768ba0ca42c90fb0e28e0fe8c0b5:
resolution: {integrity: sha512-QayTXw4tXMwU6q6acNTQrTTFTXpNRBe+MgTGMDU0lk+23PjlFCO/9sacflelG8lsp7vNHhAxFeHptDMAksEYzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-contain/-/plugin-contain-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-contain/0.16.13
name: '@jimp/plugin-contain'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
'@jimp/plugin-blit': '>=0.3.5'
'@jimp/plugin-resize': '>=0.3.5'
'@jimp/plugin-scale': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/plugin-blit': registry.npmmirror.com/@jimp/plugin-blit/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-scale': registry.npmmirror.com/@jimp/plugin-scale/0.16.13_192ec64857fdadca6ea253234346aff2
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-cover/0.16.13_5a73597f987131c5f816b4f31195a12d:
resolution: {integrity: sha512-BSsP71GTNaqWRcvkbWuIVH+zK7b3TSNebbhDkFK0fVaUTzHuKMS/mgY4hDZIEVt7Rf5FjadAYtsujHN9w0iSYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-cover/-/plugin-cover-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-cover/0.16.13
name: '@jimp/plugin-cover'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
'@jimp/plugin-crop': '>=0.3.5'
'@jimp/plugin-resize': '>=0.3.5'
'@jimp/plugin-scale': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/plugin-crop': registry.npmmirror.com/@jimp/plugin-crop/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-scale': registry.npmmirror.com/@jimp/plugin-scale/0.16.13_192ec64857fdadca6ea253234346aff2
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-crop/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-WEl2tPVYwzYL8OKme6Go2xqiWgKsgxlMwyHabdAU4tXaRwOCnOI7v4021gCcBb9zn/oWwguHuKHmK30Fw2Z/PA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-crop/-/plugin-crop-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-crop/0.16.13
name: '@jimp/plugin-crop'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-displace/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-qt9WKq8vWrcjySa9DyQ0x/RBMHQeiVjdVSY1SJsMjssPUf0pS74qorcuAkGi89biN3YoGUgPkpqECnAWnYwgGA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-displace/-/plugin-displace-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-displace/0.16.13
name: '@jimp/plugin-displace'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-dither/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-5/N3yJggbWQTlGZHQYJPmQXEwR52qaXjEzkp1yRBbtdaekXE3BG/suo0fqeoV/csf8ooI78sJzYmIrxNoWVtgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-dither/-/plugin-dither-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-dither/0.16.13
name: '@jimp/plugin-dither'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-fisheye/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-2rZmTdFbT/cF9lEZIkXCYO0TsT114Q27AX5IAo0Sju6jVQbvIk1dFUTnwLDadTo8wkJlFzGqMQ24Cs8cHWOliA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-fisheye/0.16.13
name: '@jimp/plugin-fisheye'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-flip/0.16.13_1a1b066d0fde2f40b2995ca7f497706d:
resolution: {integrity: sha512-EmcgAA74FTc5u7Z+hUO/sRjWwfPPLuOQP5O64x5g4j0T12Bd29IgsYZxoutZo/rb3579+JNa/3wsSEmyVv1EpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-flip/-/plugin-flip-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-flip/0.16.13
name: '@jimp/plugin-flip'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
'@jimp/plugin-rotate': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/plugin-rotate': registry.npmmirror.com/@jimp/plugin-rotate/0.16.13_4195f7bf0f8b72a7fa1157dbfec1f290
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-gaussian/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-A1XKfGQD0iDdIiKqFYi8nZMv4dDVYdxbrmgR7y/CzUHhSYdcmoljLIIsZZM3Iks/Wa353W3vtvkWLuDbQbch1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-gaussian/0.16.13
name: '@jimp/plugin-gaussian'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-invert/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-xFMrIn7czEZbdbMzZWuaZFnlLGJDVJ82y5vlsKsXRTG2kcxRsMPXvZRWHV57nSs1YFsNqXSbrC8B98n0E32njQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-invert/-/plugin-invert-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-invert/0.16.13
name: '@jimp/plugin-invert'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-mask/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-wLRYKVBXql2GAYgt6FkTnCfE+q5NomM7Dlh0oIPGAoMBWDyTx0eYutRK6PlUrRK2yMHuroAJCglICTbxqGzowQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-mask/-/plugin-mask-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-mask/0.16.13
name: '@jimp/plugin-mask'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-normalize/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-3tfad0n9soRna4IfW9NzQdQ2Z3ijkmo21DREHbE6CGcMIxOSvfRdSvf1qQPApxjTSo8LTU4MCi/fidx/NZ0GqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-normalize/-/plugin-normalize-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-normalize/0.16.13
name: '@jimp/plugin-normalize'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-print/0.16.13_27b2b7e6e35d304d22ecc9362e253627:
resolution: {integrity: sha512-0m6i3p01PGRkGAK9r53hDYrkyMq+tlhLOIbsSTmZyh6HLshUKlTB7eXskF5OpVd5ZUHoltlNc6R+ggvKIzxRFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-print/-/plugin-print-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-print/0.16.13
name: '@jimp/plugin-print'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
'@jimp/plugin-blit': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/plugin-blit': registry.npmmirror.com/@jimp/plugin-blit/0.16.13_@jimp+custom@0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
load-bmfont: registry.npmmirror.com/load-bmfont/1.4.1
dev: false
registry.npmmirror.com/@jimp/plugin-resize/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-qoqtN8LDknm3fJm9nuPygJv30O3vGhSBD2TxrsCnhtOsxKAqVPJtFVdGd/qVuZ8nqQANQmTlfqTiK9mVWQ7MiQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-resize/-/plugin-resize-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-resize/0.16.13
name: '@jimp/plugin-resize'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-rotate/0.16.13_4195f7bf0f8b72a7fa1157dbfec1f290:
resolution: {integrity: sha512-Ev+Jjmj1nHYw897z9C3R9dYsPv7S2/nxdgfFb/h8hOwK0Ovd1k/+yYS46A0uj/JCKK0pQk8wOslYBkPwdnLorw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-rotate/-/plugin-rotate-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-rotate/0.16.13
name: '@jimp/plugin-rotate'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
'@jimp/plugin-blit': '>=0.3.5'
'@jimp/plugin-crop': '>=0.3.5'
'@jimp/plugin-resize': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/plugin-blit': registry.npmmirror.com/@jimp/plugin-blit/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-crop': registry.npmmirror.com/@jimp/plugin-crop/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize/0.16.13_@jimp+custom@0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-scale/0.16.13_192ec64857fdadca6ea253234346aff2:
resolution: {integrity: sha512-05POQaEJVucjTiSGMoH68ZiELc7QqpIpuQlZ2JBbhCV+WCbPFUBcGSmE7w4Jd0E2GvCho/NoMODLwgcVGQA97A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-scale/-/plugin-scale-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-scale/0.16.13
name: '@jimp/plugin-scale'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
'@jimp/plugin-resize': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize/0.16.13_@jimp+custom@0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-shadow/0.16.13_a3fec024b4c5752fe4dd756eb46c2c0c:
resolution: {integrity: sha512-nmu5VSZ9hsB1JchTKhnnCY+paRBnwzSyK5fhkhtQHHoFD5ArBQ/5wU8y6tCr7k/GQhhGq1OrixsECeMjPoc8Zw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-shadow/-/plugin-shadow-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-shadow/0.16.13
name: '@jimp/plugin-shadow'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
'@jimp/plugin-blur': '>=0.3.5'
'@jimp/plugin-resize': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/plugin-blur': registry.npmmirror.com/@jimp/plugin-blur/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize/0.16.13_@jimp+custom@0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugin-threshold/0.16.13_b27e8a1dba1eeb17e0016175f26f625e:
resolution: {integrity: sha512-+3zArBH0OE3Rhjm4HyAokMsZlIq5gpQec33CncyoSwxtRBM2WAhUVmCUKuBo+Lr/2/4ISoY4BWpHKhMLDix6cA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugin-threshold/-/plugin-threshold-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugin-threshold/0.16.13
name: '@jimp/plugin-threshold'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
'@jimp/plugin-color': '>=0.8.0'
'@jimp/plugin-resize': '>=0.8.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/plugin-color': registry.npmmirror.com/@jimp/plugin-color/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize/0.16.13_@jimp+custom@0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
dev: false
registry.npmmirror.com/@jimp/plugins/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-CJLdqODEhEVs4MgWCxpWL5l95sCBlkuSLz65cxEm56X5akIsn4LOlwnKoSEZioYcZUBvHhCheH67AyPTudfnQQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/plugins/-/plugins-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/plugins/0.16.13
name: '@jimp/plugins'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/plugin-blit': registry.npmmirror.com/@jimp/plugin-blit/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-blur': registry.npmmirror.com/@jimp/plugin-blur/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-circle': registry.npmmirror.com/@jimp/plugin-circle/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-color': registry.npmmirror.com/@jimp/plugin-color/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-contain': registry.npmmirror.com/@jimp/plugin-contain/0.16.13_c4c7768ba0ca42c90fb0e28e0fe8c0b5
'@jimp/plugin-cover': registry.npmmirror.com/@jimp/plugin-cover/0.16.13_5a73597f987131c5f816b4f31195a12d
'@jimp/plugin-crop': registry.npmmirror.com/@jimp/plugin-crop/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-displace': registry.npmmirror.com/@jimp/plugin-displace/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-dither': registry.npmmirror.com/@jimp/plugin-dither/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-fisheye': registry.npmmirror.com/@jimp/plugin-fisheye/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-flip': registry.npmmirror.com/@jimp/plugin-flip/0.16.13_1a1b066d0fde2f40b2995ca7f497706d
'@jimp/plugin-gaussian': registry.npmmirror.com/@jimp/plugin-gaussian/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-invert': registry.npmmirror.com/@jimp/plugin-invert/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-mask': registry.npmmirror.com/@jimp/plugin-mask/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-normalize': registry.npmmirror.com/@jimp/plugin-normalize/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-print': registry.npmmirror.com/@jimp/plugin-print/0.16.13_27b2b7e6e35d304d22ecc9362e253627
'@jimp/plugin-resize': registry.npmmirror.com/@jimp/plugin-resize/0.16.13_@jimp+custom@0.16.13
'@jimp/plugin-rotate': registry.npmmirror.com/@jimp/plugin-rotate/0.16.13_4195f7bf0f8b72a7fa1157dbfec1f290
'@jimp/plugin-scale': registry.npmmirror.com/@jimp/plugin-scale/0.16.13_192ec64857fdadca6ea253234346aff2
'@jimp/plugin-shadow': registry.npmmirror.com/@jimp/plugin-shadow/0.16.13_a3fec024b4c5752fe4dd756eb46c2c0c
'@jimp/plugin-threshold': registry.npmmirror.com/@jimp/plugin-threshold/0.16.13_b27e8a1dba1eeb17e0016175f26f625e
timm: registry.npmmirror.com/timm/1.7.1
dev: false
registry.npmmirror.com/@jimp/png/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-8cGqINvbWJf1G0Her9zbq9I80roEX0A+U45xFby3tDWfzn+Zz8XKDF1Nv9VUwVx0N3zpcG1RPs9hfheG4Cq2kg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/png/-/png-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/png/0.16.13
name: '@jimp/png'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/utils': registry.npmmirror.com/@jimp/utils/0.16.13
pngjs: registry.npmmirror.com/pngjs/3.4.0
dev: false
registry.npmmirror.com/@jimp/tiff/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-oJY8d9u95SwW00VPHuCNxPap6Q1+E/xM5QThb9Hu+P6EGuu6lIeLaNBMmFZyblwFbwrH+WBOZlvIzDhi4Dm/6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/tiff/-/tiff-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/tiff/0.16.13
name: '@jimp/tiff'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
utif: registry.npmmirror.com/utif/2.0.1
dev: false
registry.npmmirror.com/@jimp/types/0.16.13_@jimp+custom@0.16.13:
resolution: {integrity: sha512-mC0yVNUobFDjoYLg4hoUwzMKgNlxynzwt3cDXzumGvRJ7Kb8qQGOWJQjQFo5OxmGExqzPphkirdbBF88RVLBCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/types/-/types-0.16.13.tgz}
id: registry.npmmirror.com/@jimp/types/0.16.13
name: '@jimp/types'
version: 0.16.13
peerDependencies:
'@jimp/custom': '>=0.3.5'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
'@jimp/bmp': registry.npmmirror.com/@jimp/bmp/0.16.13_@jimp+custom@0.16.13
'@jimp/custom': registry.npmmirror.com/@jimp/custom/0.16.13
'@jimp/gif': registry.npmmirror.com/@jimp/gif/0.16.13_@jimp+custom@0.16.13
'@jimp/jpeg': registry.npmmirror.com/@jimp/jpeg/0.16.13_@jimp+custom@0.16.13
'@jimp/png': registry.npmmirror.com/@jimp/png/0.16.13_@jimp+custom@0.16.13
'@jimp/tiff': registry.npmmirror.com/@jimp/tiff/0.16.13_@jimp+custom@0.16.13
timm: registry.npmmirror.com/timm/1.7.1
dev: false
registry.npmmirror.com/@jimp/utils/0.16.13:
resolution: {integrity: sha512-VyCpkZzFTHXtKgVO35iKN0sYR10psGpV6SkcSeV4oF7eSYlR8Bl6aQLCzVeFjvESF7mxTmIiI3/XrMobVrtxDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jimp/utils/-/utils-0.16.13.tgz}
name: '@jimp/utils'
version: 0.16.13
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.22.15
regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.13.11
dev: false
registry.npmmirror.com/@nodelib/fs.scandir/2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz}
name: '@nodelib/fs.scandir'
version: 2.1.5
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
run-parallel: registry.npmmirror.com/run-parallel/1.2.0
dev: true
registry.npmmirror.com/@nodelib/fs.stat/2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz}
name: '@nodelib/fs.stat'
version: 2.0.5
engines: {node: '>= 8'}
dev: true
registry.npmmirror.com/@nodelib/fs.walk/1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz}
name: '@nodelib/fs.walk'
version: 1.2.8
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir/2.1.5
fastq: registry.npmmirror.com/fastq/1.15.0
dev: true
registry.npmmirror.com/@socket.io/component-emitter/3.1.0:
resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz}
name: '@socket.io/component-emitter'
version: 3.1.0
dev: false
registry.npmmirror.com/@tokenizer/token/0.3.0:
resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@tokenizer/token/-/token-0.3.0.tgz}
name: '@tokenizer/token'
version: 0.3.0
dev: false
registry.npmmirror.com/@types/cookie/0.4.1:
resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/cookie/-/cookie-0.4.1.tgz}
name: '@types/cookie'
version: 0.4.1
dev: false
registry.npmmirror.com/@types/cors/2.8.14:
resolution: {integrity: sha512-RXHUvNWYICtbP6s18PnOCaqToK8y14DnLd75c6HfyKf228dxy7pHNOQkxPtvXKp/hINFMDjbYzsj63nnpPMSRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/cors/-/cors-2.8.14.tgz}
name: '@types/cors'
version: 2.8.14
dependencies:
'@types/node': registry.npmmirror.com/@types/node/20.6.0
dev: false
registry.npmmirror.com/@types/json-schema/7.0.12:
resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.12.tgz}
name: '@types/json-schema'
version: 7.0.12
dev: true
registry.npmmirror.com/@types/mdast/3.0.12:
resolution: {integrity: sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/mdast/-/mdast-3.0.12.tgz}
name: '@types/mdast'
version: 3.0.12
dependencies:
'@types/unist': registry.npmmirror.com/@types/unist/2.0.8
dev: true
registry.npmmirror.com/@types/node/16.9.1:
resolution: {integrity: sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/-/node-16.9.1.tgz}
name: '@types/node'
version: 16.9.1
dev: false
registry.npmmirror.com/@types/node/20.6.0:
resolution: {integrity: sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/-/node-20.6.0.tgz}
name: '@types/node'
version: 20.6.0
dev: false
registry.npmmirror.com/@types/normalize-package-data/2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz}
name: '@types/normalize-package-data'
version: 2.4.1
dev: true
registry.npmmirror.com/@types/semver/7.5.2:
resolution: {integrity: sha512-7aqorHYgdNO4DM36stTiGO3DvKoex9TQRwsJU6vMaFGyqpBA1MNZkz+PG3gaNUPpTAOYhT1WR7M1JyA3fbS9Cw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/semver/-/semver-7.5.2.tgz}
name: '@types/semver'
version: 7.5.2
dev: true
registry.npmmirror.com/@types/unist/2.0.8:
resolution: {integrity: sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/unist/-/unist-2.0.8.tgz}
name: '@types/unist'
version: 2.0.8
dev: true
registry.npmmirror.com/@typescript-eslint/eslint-plugin/6.7.0_eede37cee10804735db8bce490a29da2:
resolution: {integrity: sha512-gUqtknHm0TDs1LhY12K2NA3Rmlmp88jK9Tx8vGZMfHeNMLE3GH2e9TRub+y+SOjuYgtOmok+wt1AyDPZqxbNag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.0.tgz}
id: registry.npmmirror.com/@typescript-eslint/eslint-plugin/6.7.0
name: '@typescript-eslint/eslint-plugin'
version: 6.7.0
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
eslint: ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@eslint-community/regexpp': registry.npmmirror.com/@eslint-community/regexpp/4.8.1
'@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/6.7.0_eslint@8.49.0
'@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/6.7.0
'@typescript-eslint/type-utils': registry.npmmirror.com/@typescript-eslint/type-utils/6.7.0_eslint@8.49.0
'@typescript-eslint/utils': registry.npmmirror.com/@typescript-eslint/utils/6.7.0_eslint@8.49.0
'@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/6.7.0
debug: registry.npmmirror.com/debug/4.3.4
eslint: registry.npmmirror.com/eslint/8.49.0
graphemer: registry.npmmirror.com/graphemer/1.4.0
ignore: registry.npmmirror.com/ignore/5.2.4
natural-compare: registry.npmmirror.com/natural-compare/1.4.0
semver: registry.npmmirror.com/semver/7.5.4
ts-api-utils: registry.npmmirror.com/ts-api-utils/1.0.3
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@typescript-eslint/parser/6.7.0_eslint@8.49.0:
resolution: {integrity: sha512-jZKYwqNpNm5kzPVP5z1JXAuxjtl2uG+5NpaMocFPTNC2EdYIgbXIPImObOkhbONxtFTTdoZstLZefbaK+wXZng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-6.7.0.tgz}
id: registry.npmmirror.com/@typescript-eslint/parser/6.7.0
name: '@typescript-eslint/parser'
version: 6.7.0
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/6.7.0
'@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/6.7.0
'@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/6.7.0
'@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/6.7.0
debug: registry.npmmirror.com/debug/4.3.4
eslint: registry.npmmirror.com/eslint/8.49.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@typescript-eslint/scope-manager/5.62.0:
resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz}
name: '@typescript-eslint/scope-manager'
version: 5.62.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
'@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.62.0
'@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.62.0
dev: true
registry.npmmirror.com/@typescript-eslint/scope-manager/6.7.0:
resolution: {integrity: sha512-lAT1Uau20lQyjoLUQ5FUMSX/dS07qux9rYd5FGzKz/Kf8W8ccuvMyldb8hadHdK/qOI7aikvQWqulnEq2nCEYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-6.7.0.tgz}
name: '@typescript-eslint/scope-manager'
version: 6.7.0
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
'@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/6.7.0
'@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/6.7.0
dev: true
registry.npmmirror.com/@typescript-eslint/type-utils/6.7.0_eslint@8.49.0:
resolution: {integrity: sha512-f/QabJgDAlpSz3qduCyQT0Fw7hHpmhOzY/Rv6zO3yO+HVIdPfIWhrQoAyG+uZVtWAIS85zAyzgAFfyEr+MgBpg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-6.7.0.tgz}
id: registry.npmmirror.com/@typescript-eslint/type-utils/6.7.0
name: '@typescript-eslint/type-utils'
version: 6.7.0
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/6.7.0
'@typescript-eslint/utils': registry.npmmirror.com/@typescript-eslint/utils/6.7.0_eslint@8.49.0
debug: registry.npmmirror.com/debug/4.3.4
eslint: registry.npmmirror.com/eslint/8.49.0
ts-api-utils: registry.npmmirror.com/ts-api-utils/1.0.3
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@typescript-eslint/types/5.62.0:
resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.62.0.tgz}
name: '@typescript-eslint/types'
version: 5.62.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
registry.npmmirror.com/@typescript-eslint/types/6.7.0:
resolution: {integrity: sha512-ihPfvOp7pOcN/ysoj0RpBPOx3HQTJTrIN8UZK+WFd3/iDeFHHqeyYxa4hQk4rMhsz9H9mXpR61IzwlBVGXtl9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/types/-/types-6.7.0.tgz}
name: '@typescript-eslint/types'
version: 6.7.0
engines: {node: ^16.0.0 || >=18.0.0}
dev: true
registry.npmmirror.com/@typescript-eslint/typescript-estree/5.62.0:
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz}
name: '@typescript-eslint/typescript-estree'
version: 5.62.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.62.0
'@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.62.0
debug: registry.npmmirror.com/debug/4.3.4
globby: registry.npmmirror.com/globby/11.1.0
is-glob: registry.npmmirror.com/is-glob/4.0.3
semver: registry.npmmirror.com/semver/7.5.4
tsutils: registry.npmmirror.com/tsutils/3.21.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@typescript-eslint/typescript-estree/6.7.0:
resolution: {integrity: sha512-dPvkXj3n6e9yd/0LfojNU8VMUGHWiLuBZvbM6V6QYD+2qxqInE7J+J/ieY2iGwR9ivf/R/haWGkIj04WVUeiSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.0.tgz}
name: '@typescript-eslint/typescript-estree'
version: 6.7.0
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/6.7.0
'@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/6.7.0
debug: registry.npmmirror.com/debug/4.3.4
globby: registry.npmmirror.com/globby/11.1.0
is-glob: registry.npmmirror.com/is-glob/4.0.3
semver: registry.npmmirror.com/semver/7.5.4
ts-api-utils: registry.npmmirror.com/ts-api-utils/1.0.3
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@typescript-eslint/utils/5.62.0_eslint@8.49.0:
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.62.0.tgz}
id: registry.npmmirror.com/@typescript-eslint/utils/5.62.0
name: '@typescript-eslint/utils'
version: 5.62.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@eslint-community/eslint-utils': registry.npmmirror.com/@eslint-community/eslint-utils/4.4.0_eslint@8.49.0
'@types/json-schema': registry.npmmirror.com/@types/json-schema/7.0.12
'@types/semver': registry.npmmirror.com/@types/semver/7.5.2
'@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.62.0
'@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.62.0
'@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.62.0
eslint: registry.npmmirror.com/eslint/8.49.0
eslint-scope: registry.npmmirror.com/eslint-scope/5.1.1
semver: registry.npmmirror.com/semver/7.5.4
transitivePeerDependencies:
- supports-color
- typescript
dev: true
registry.npmmirror.com/@typescript-eslint/utils/6.7.0_eslint@8.49.0:
resolution: {integrity: sha512-MfCq3cM0vh2slSikQYqK2Gq52gvOhe57vD2RM3V4gQRZYX4rDPnKLu5p6cm89+LJiGlwEXU8hkYxhqqEC/V3qA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-6.7.0.tgz}
id: registry.npmmirror.com/@typescript-eslint/utils/6.7.0
name: '@typescript-eslint/utils'