-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyarn.lock
6183 lines (5546 loc) · 213 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@babel/runtime@npm:^7.7.2":
version: 7.24.7
resolution: "@babel/runtime@npm:7.24.7"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10c0/b6fa3ec61a53402f3c1d75f4d808f48b35e0dfae0ec8e2bb5c6fc79fb95935da75766e0ca534d0f1c84871f6ae0d2ebdd950727cfadb745a2cdbef13faef5513
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 10c0/05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.1.1":
version: 1.2.0
resolution: "@emnapi/runtime@npm:1.2.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/7005ff8b67724c9e61b6cd79a3decbdb2ce25d24abd4d3d187472f200ee6e573329c30264335125fb136bd813aa9cf9f4f7c9391d04b07dd1e63ce0a3427be57
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.10.1
resolution: "@eslint-community/regexpp@npm:4.10.1"
checksum: 10c0/f59376025d0c91dd9fdf18d33941df499292a3ecba3e9889c360f3f6590197d30755604588786cdca0f9030be315a26b206014af4b65c0ff85b4ec49043de780
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.17.0":
version: 0.17.0
resolution: "@eslint/config-array@npm:0.17.0"
dependencies:
"@eslint/object-schema": "npm:^2.1.4"
debug: "npm:^4.3.1"
minimatch: "npm:^3.1.2"
checksum: 10c0/97eb23ef0948dbc5f24884a3b75c537ca37ee2b1f27a864cd0d9189c089bc1a724dc6e1a4d9b7dd304d9f732ca02aa7916243a7715d6f1f17159d8a8c83f0c9e
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.1.0":
version: 3.1.0
resolution: "@eslint/eslintrc@npm:3.1.0"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^10.0.1"
globals: "npm:^14.0.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10c0/5b7332ed781edcfc98caa8dedbbb843abfb9bda2e86538529c843473f580e40c69eb894410eddc6702f487e9ee8f8cfa8df83213d43a8fdb549f23ce06699167
languageName: node
linkType: hard
"@eslint/js@npm:9.6.0, @eslint/js@npm:^9.6.0":
version: 9.6.0
resolution: "@eslint/js@npm:9.6.0"
checksum: 10c0/83967a7e59f2e958c9bbb3acd0929cad00d59d927ad786ed8e0d30b07f983c6bea3af6f4ad32da32145db40b7a741a816ba339bdd8960fc7fc8231716d943b7f
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/object-schema@npm:2.1.4"
checksum: 10c0/e9885532ea70e483fb007bf1275968b05bb15ebaa506d98560c41a41220d33d342e19023d5f2939fed6eb59676c1bda5c847c284b4b55fce521d282004da4dda
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.3.0":
version: 0.3.0
resolution: "@humanwhocodes/retry@npm:0.3.0"
checksum: 10c0/7111ec4e098b1a428459b4e3be5a5d2a13b02905f805a2468f4fa628d072f0de2da26a27d04f65ea2846f73ba51f4204661709f05bfccff645e3cedef8781bb6
languageName: node
linkType: hard
"@img/sharp-darwin-arm64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-darwin-arm64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-darwin-arm64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-darwin-arm64":
optional: true
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-darwin-x64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-darwin-x64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-darwin-x64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-darwin-x64":
optional: true
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-arm64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-x64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.2"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-arm@npm:1.0.2"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-s390x@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.2"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-x64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-x64@npm:1.0.2"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.2"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-x64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.2"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linux-arm64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linux-arm64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linux-arm64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linux-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-arm@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linux-arm@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linux-arm": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linux-arm":
optional: true
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-s390x@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linux-s390x@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linux-s390x": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linux-s390x":
optional: true
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-x64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linux-x64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linux-x64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linux-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linuxmusl-arm64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linuxmusl-x64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linuxmusl-x64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linuxmusl-x64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-wasm32@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-wasm32@npm:0.33.4"
dependencies:
"@emnapi/runtime": "npm:^1.1.1"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@img/sharp-win32-ia32@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-win32-ia32@npm:0.33.4"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@img/sharp-win32-x64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-win32-x64@npm:0.33.4"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@inquirer/checkbox@npm:^2.3.5":
version: 2.3.5
resolution: "@inquirer/checkbox@npm:2.3.5"
dependencies:
"@inquirer/core": "npm:^8.2.2"
"@inquirer/figures": "npm:^1.0.3"
"@inquirer/type": "npm:^1.3.3"
ansi-escapes: "npm:^4.3.2"
chalk: "npm:^4.1.2"
checksum: 10c0/42a1c3ca00f06d167297914bcefdbb74b3a9675c4cc65ae539c100dca3094364ed23810938f542060489b4aa031bccf91ef3beeee2594a2d72edb78fd6ac2f2a
languageName: node
linkType: hard
"@inquirer/checkbox@npm:^2.3.8":
version: 2.3.8
resolution: "@inquirer/checkbox@npm:2.3.8"
dependencies:
"@inquirer/core": "npm:^9.0.0"
"@inquirer/figures": "npm:^1.0.3"
"@inquirer/type": "npm:^1.4.0"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.1"
checksum: 10c0/02162ccf6773833c3677b7f1a6b9e608d4b55151bc3c2e3f1b4a373d6f1aaf67507688642812e068b0f7984a559b0d74b0a6f61cd62b3154a607a9ba0d88ca96
languageName: node
linkType: hard
"@inquirer/confirm@npm:^3.1.9":
version: 3.1.9
resolution: "@inquirer/confirm@npm:3.1.9"
dependencies:
"@inquirer/core": "npm:^8.2.2"
"@inquirer/type": "npm:^1.3.3"
checksum: 10c0/9fb63a052cbe3705bcab706b3e68d70aa75ac7c7bfc04cc4fee2319e4da9355150c99b205bc72b595844e1549705643049e71d14070a3ab3d6483941c1e6a239
languageName: node
linkType: hard
"@inquirer/core@npm:^8.2.2":
version: 8.2.2
resolution: "@inquirer/core@npm:8.2.2"
dependencies:
"@inquirer/figures": "npm:^1.0.3"
"@inquirer/type": "npm:^1.3.3"
"@types/mute-stream": "npm:^0.0.4"
"@types/node": "npm:^20.12.13"
"@types/wrap-ansi": "npm:^3.0.0"
ansi-escapes: "npm:^4.3.2"
chalk: "npm:^4.1.2"
cli-spinners: "npm:^2.9.2"
cli-width: "npm:^4.1.0"
mute-stream: "npm:^1.0.0"
signal-exit: "npm:^4.1.0"
strip-ansi: "npm:^6.0.1"
wrap-ansi: "npm:^6.2.0"
checksum: 10c0/6a04b42f856b31f892bd2195cbb214a38836f708f09925b36a50b11e3e84dca73ebf008ff7a42f2e7901350450a1cec8fe625c43cc1a90eda3c10ed7e4527cca
languageName: node
linkType: hard
"@inquirer/core@npm:^9.0.0":
version: 9.0.0
resolution: "@inquirer/core@npm:9.0.0"
dependencies:
"@inquirer/figures": "npm:^1.0.3"
"@inquirer/type": "npm:^1.4.0"
"@types/mute-stream": "npm:^0.0.4"
"@types/node": "npm:^20.14.9"
"@types/wrap-ansi": "npm:^3.0.0"
ansi-escapes: "npm:^4.3.2"
cli-spinners: "npm:^2.9.2"
cli-width: "npm:^4.1.0"
mute-stream: "npm:^1.0.0"
signal-exit: "npm:^4.1.0"
strip-ansi: "npm:^6.0.1"
wrap-ansi: "npm:^6.2.0"
yoctocolors-cjs: "npm:^2.1.1"
checksum: 10c0/c29f4ccb49ce5d7059c9c6285ccb7f0d726ea3366d0259670e65852831426ed10ebc13f0d312a12d34d1b570db1ffc4e9c00b9ee5a699834df2fa32fd2c82822
languageName: node
linkType: hard
"@inquirer/editor@npm:^2.1.9":
version: 2.1.9
resolution: "@inquirer/editor@npm:2.1.9"
dependencies:
"@inquirer/core": "npm:^8.2.2"
"@inquirer/type": "npm:^1.3.3"
external-editor: "npm:^3.1.0"
checksum: 10c0/7dccec19bdca93e179fb8700de26e9f2a8f518038be2a308c0b91456b9e34c1812d1642321061f409ab54cdd7fc6aa2082ff633ebc8a377c2712c1a6a99846cb
languageName: node
linkType: hard
"@inquirer/expand@npm:^2.1.9":
version: 2.1.9
resolution: "@inquirer/expand@npm:2.1.9"
dependencies:
"@inquirer/core": "npm:^8.2.2"
"@inquirer/type": "npm:^1.3.3"
chalk: "npm:^4.1.2"
checksum: 10c0/2d978bf7e8865f9a8b1052a266cd6fe6f0f1ec91681febb42689eaa4d933a4a04140b09bbead82785c081d27a2d751469d5975781de9899bf65faa6522704c41
languageName: node
linkType: hard
"@inquirer/figures@npm:^1.0.3":
version: 1.0.3
resolution: "@inquirer/figures@npm:1.0.3"
checksum: 10c0/099e062f000baafb4010014ece443d0cd211f562194854dc52a128bfe514611f8cc3da4cdb5092d75440956aff201dcd8e893b8a71feb104f97b0b00c6a696cf
languageName: node
linkType: hard
"@inquirer/input@npm:^2.1.9":
version: 2.1.9
resolution: "@inquirer/input@npm:2.1.9"
dependencies:
"@inquirer/core": "npm:^8.2.2"
"@inquirer/type": "npm:^1.3.3"
checksum: 10c0/8406a97dde141f92483c0b1ec944d940b5789ae49b88b4f9ad2020ee5a9dd278c493b47b0cf7d231b7c107edeec3cacb28a715e39113d10496d27ad671e560e5
languageName: node
linkType: hard
"@inquirer/password@npm:^2.1.9":
version: 2.1.9
resolution: "@inquirer/password@npm:2.1.9"
dependencies:
"@inquirer/core": "npm:^8.2.2"
"@inquirer/type": "npm:^1.3.3"
ansi-escapes: "npm:^4.3.2"
checksum: 10c0/affb83489ebd73a85cc1e9e30d221eef2df04bfaf50b18454e8e1a5aa0a45337c3cdf75be2e2a711ab5843b8859c47e398f52dac076130c0e91bf84d53838b49
languageName: node
linkType: hard
"@inquirer/prompts@npm:^5.0.4":
version: 5.0.5
resolution: "@inquirer/prompts@npm:5.0.5"
dependencies:
"@inquirer/checkbox": "npm:^2.3.5"
"@inquirer/confirm": "npm:^3.1.9"
"@inquirer/editor": "npm:^2.1.9"
"@inquirer/expand": "npm:^2.1.9"
"@inquirer/input": "npm:^2.1.9"
"@inquirer/password": "npm:^2.1.9"
"@inquirer/rawlist": "npm:^2.1.9"
"@inquirer/select": "npm:^2.3.5"
checksum: 10c0/5ecc69f4ffcd8fc2dea0b361ff9f47d8bc2132746eec83063d390832687f7d4cbd9b8d297e04fcff623018a2a4ba75bf303348bfb1705f3096f1fe2b374940a6
languageName: node
linkType: hard
"@inquirer/rawlist@npm:^2.1.9":
version: 2.1.9
resolution: "@inquirer/rawlist@npm:2.1.9"
dependencies:
"@inquirer/core": "npm:^8.2.2"
"@inquirer/type": "npm:^1.3.3"
chalk: "npm:^4.1.2"
checksum: 10c0/9823c3b470c9c3d380dbd93ad2f45acd492f0ffd55903aa116934ad22006cfcf69e5b2b8f98a8862938a68cb4fbf0fa7c950d8bd20f8b92d31bdee5c5097ac79
languageName: node
linkType: hard
"@inquirer/select@npm:^2.3.5":
version: 2.3.5
resolution: "@inquirer/select@npm:2.3.5"
dependencies:
"@inquirer/core": "npm:^8.2.2"
"@inquirer/figures": "npm:^1.0.3"
"@inquirer/type": "npm:^1.3.3"
ansi-escapes: "npm:^4.3.2"
chalk: "npm:^4.1.2"
checksum: 10c0/87ed16ff2ec4811ce26c03c4dc2a12a032c266809bfdddfb6ece0c4ebcda52120d0eabe5d43f18963cae540d515bff8401ae3d141fda4f170e1e472595424c39
languageName: node
linkType: hard
"@inquirer/select@npm:^2.3.8":
version: 2.3.8
resolution: "@inquirer/select@npm:2.3.8"
dependencies:
"@inquirer/core": "npm:^9.0.0"
"@inquirer/figures": "npm:^1.0.3"
"@inquirer/type": "npm:^1.4.0"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.1"
checksum: 10c0/14a418c2cab3d35fe83bc94ff04d10be76abc2e2fa6e343fabc20c763f7a48a03010553e39ef2185586f874b437bbfd50cea40ff46225c5e75448b14e4de1e1e
languageName: node
linkType: hard
"@inquirer/type@npm:^1.3.3":
version: 1.3.3
resolution: "@inquirer/type@npm:1.3.3"
checksum: 10c0/84048694410bb5b2c55dc4e48da6369ce942b9e8f8016d15ef63ab3f9873832a56cc12a50582b5b2b626821bfe29973dfcc19edc90f58490b51df1f4d9d0a074
languageName: node
linkType: hard
"@inquirer/type@npm:^1.4.0":
version: 1.4.0
resolution: "@inquirer/type@npm:1.4.0"
dependencies:
mute-stream: "npm:^1.0.0"
checksum: 10c0/927b46eef9195523a5c4d9467fa43dcd8fde6376131c777012dd899b96b5f5c0d7276e03379f61d3209206e65ef82dc45b129eb79fb4dfe61de29d7aed437cd4
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@jimp/bmp@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/bmp@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
bmp-js: "npm:^0.1.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/54021a937fa487e88defd4f7156f4f49396304384443b969e3d44e2572595e72509400d6d145b01883103a69aaf1a02e22ca1bddf5b8f7b52fa7bce66946ede3
languageName: node
linkType: hard
"@jimp/bmp@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/bmp@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
bmp-js: "npm:^0.1.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/f1c848f2347eca262d7a63c90909d32d7469db9d841a476184228ac9761c5fffe5c5f3ed55bbf77ed7c7467deb6b27a70b0bed6b1d98800489acd3cc94ca8379
languageName: node
linkType: hard
"@jimp/core@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/core@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
any-base: "npm:^1.1.0"
buffer: "npm:^5.2.0"
exif-parser: "npm:^0.1.12"
file-type: "npm:^9.0.0"
load-bmfont: "npm:^1.3.1"
mkdirp: "npm:^0.5.1"
phin: "npm:^2.9.1"
pixelmatch: "npm:^4.0.2"
tinycolor2: "npm:^1.4.1"
checksum: 10c0/77f3d309cdaad533f2f976b916cce6b01aa6235385668a0cd904a6bf16b4f11932fd4b8a99fd1db3cb0b588c408e4e3230e003b59f19c191654e3619fdc0b1ba
languageName: node
linkType: hard
"@jimp/core@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/core@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
any-base: "npm:^1.1.0"
buffer: "npm:^5.2.0"
exif-parser: "npm:^0.1.12"
file-type: "npm:^16.5.4"
load-bmfont: "npm:^1.3.1"
mkdirp: "npm:^0.5.1"
phin: "npm:^2.9.1"
pixelmatch: "npm:^4.0.2"
tinycolor2: "npm:^1.4.1"
checksum: 10c0/6554c98da909050164850bcc34b12d08cb156d16b5684bddb9cc97e51ca317b9ac310faf09a6d1813d8cbf7b8853365388acf1ee62be25134e9fc09afb573e9a
languageName: node
linkType: hard
"@jimp/custom@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/custom@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/core": "npm:^0.14.0"
checksum: 10c0/f181b8eb63e759a36f904ebdbeee674953d16f8613c0b6ee97116632bf5a2f753d7bbbbd6da9bac99b16acbf738f750aaa39bbdbb0d715a2014a387224203d97
languageName: node
linkType: hard
"@jimp/custom@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/custom@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/core": "npm:^0.16.13"
checksum: 10c0/b494873e9477e8baf709d24cfa90f9b4576c76d72e682229a2f64751677b43044528932df0c6af125c228929d1ddc2d13e8acec7048c91964da4addec4d3edd5
languageName: node
linkType: hard
"@jimp/gif@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/gif@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
gifwrap: "npm:^0.9.2"
omggif: "npm:^1.0.9"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/33b63ee7d44cca955d58e49a77a7d4275cef192c5c5376ed007959e286de3093f6fe705700a5dc9f0a78f85cbcbf777396f8fbb31cfc83b49d5924a5896d17be
languageName: node
linkType: hard
"@jimp/gif@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/gif@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
gifwrap: "npm:^0.9.2"
omggif: "npm:^1.0.9"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/eea13192429371fcd814f3321f8f236d15e4fdd1ae7ae3f28dbe6cde5d43adffcc7ee3459cf420a0b963581f8f9331f19cc10637b6f419900be10bf8a1679212
languageName: node
linkType: hard
"@jimp/jpeg@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/jpeg@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
jpeg-js: "npm:^0.4.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/2665b96a34e0a92120bdbb5dae947fe12a79d6102942659d983cb1a3cae13891e9fffb7d17ff979ce26030e9cddd03847ef72ecdf7c51f14191f9d34012e89b5
languageName: node
linkType: hard
"@jimp/jpeg@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/jpeg@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
jpeg-js: "npm:^0.4.2"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/2d0765fd996d5ebe376ab09ad225f25c6efe404fe10d658d07c48746b0e124a8e0b5a37145d0f464e1ad2b2a7aca329b04b59db624106a0e21566707630bb357
languageName: node
linkType: hard
"@jimp/plugin-blit@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-blit@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/0fe90b3b0549e6b35a6358701eae91d1237567a4b42302f317002c3fb6e62f5cd8f22f0695b81ff23e1eb7c6d4e489dcf35f84cacbfa61a093c9f60524751e96
languageName: node
linkType: hard
"@jimp/plugin-blit@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-blit@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/3093a89dd9869adb0fa35bab3d701d016f34acc040bd5ad39a1515db84187c5f507a77b2fa8070aeed248280653e5cf3a8b97e9ffaa5a1445eb10edb1843dfac
languageName: node
linkType: hard
"@jimp/plugin-blur@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-blur@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/7dcf4b4ff53946fa3879cd552e4e7a221c24bba8683ca389d283cfe78f14e1a799ba0f856939e8ddbad69076be5fc6da3f85b88c053a6772a5f58f232667512d
languageName: node
linkType: hard
"@jimp/plugin-blur@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-blur@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/c9b71941e767b525dd9ad4f6af796435561a1993a9c8030bbae17d25f1ae45542b7fbace0302e862a020bc4982001a0f17ab5f5b8a72afd2000838eb1107d2aa
languageName: node
linkType: hard
"@jimp/plugin-circle@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-circle@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/c9e0badaf830b584b650fdb99572d84744d93e5df3c346a237df75539f7d904e4814f1ea610a946e8db8fce934f9f229f5fcc7f7cfd39a98be5607d21e149e89
languageName: node
linkType: hard
"@jimp/plugin-circle@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-circle@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/a60e9815cb8ddc48910bd725c121e43b3ccf2bdf3e700d1137889346ab55f1f988ea9ebac89e6e35c7d8972d29a02fb0cbaa57805e7ae4ffd714b33d5284aebc
languageName: node
linkType: hard
"@jimp/plugin-color@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-color@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
tinycolor2: "npm:^1.4.1"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/096c5a114eafe5568be2bffac1f75a2fe89cc1c96c725ef8553015986dba36c2e27fab35587efd51d980e00c72a45ad830d00ae0e32d9a65b9e06a8d5e120853
languageName: node
linkType: hard
"@jimp/plugin-color@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-color@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
tinycolor2: "npm:^1.4.1"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/45774210868a90a05773e441234e1238d0a54cc906f3eac4dc11b919b73fb1eb7fe35939a8e821cc540ce039ccb93e1e9b2921f74e110ebefa101b2d74335d2b
languageName: node
linkType: hard
"@jimp/plugin-contain@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-contain@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
"@jimp/plugin-blit": ">=0.3.5"
"@jimp/plugin-resize": ">=0.3.5"
"@jimp/plugin-scale": ">=0.3.5"
checksum: 10c0/91b07f0de6b76d12f2c5a00aecb78755cb34c7b0f2f8045ab1058ac7bbc739b6f81f9d332aa6c6612d8743e7b79cf91033562bb508c05e2187a05e4ce68a99de
languageName: node
linkType: hard
"@jimp/plugin-contain@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-contain@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^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"
checksum: 10c0/cbde61ed91de8137a9a7b456e45fcec72152a86c5766304072b6d155179a7d93e6483ece86f162aa45f3e3b12c0de90efcd8264215cce05cdfb50b8c36107ad1
languageName: node
linkType: hard
"@jimp/plugin-cover@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-cover@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
"@jimp/plugin-crop": ">=0.3.5"
"@jimp/plugin-resize": ">=0.3.5"
"@jimp/plugin-scale": ">=0.3.5"
checksum: 10c0/3743c55fda276b7d3bf0dcd3abc811471bcbd0d7ea97007f2bf2f6e3465e1386372b8620eb592c7cd65ade3f909a9afef4d098c1876ff4c8be7b703bf6cec1f5
languageName: node
linkType: hard
"@jimp/plugin-cover@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-cover@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^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"
checksum: 10c0/8ba286d728530a9574d08864a071e8cb6e2622a58877310a130c69a88fde01e71357baf625ae5f0d1c2662530b73c78544cb22194cf927c6f9090d45ff3f38ad
languageName: node
linkType: hard
"@jimp/plugin-crop@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-crop@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/d5f1025c061512feab2dedc4dca94c37872b1be7900fabeb0acf507c2b6d03806031f194d504306cc42f1193ddb53679491950d1ffee6152ce185cb3efce4f2f
languageName: node
linkType: hard
"@jimp/plugin-crop@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-crop@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/83ba3169c25591376cb55e8f099315b6e83a778611d357af3bfbdd7b68389f99e127555c81326cff177e86e320fd88c547639e8d83b032c853766cc3eb916643
languageName: node
linkType: hard
"@jimp/plugin-displace@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-displace@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/73bdeb4dade40536ba500c755a55cad563f93dcaf6aa6fb43403f3e2e3512e9fe8d997ad8b4423fb53a04c0f1991dd85ddafac492888bc13b620186891227d18
languageName: node
linkType: hard
"@jimp/plugin-displace@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-displace@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/6ded4193dd6633f2d1bb46016c10bb017ded32aa5fd54d38424c51e0a5d85fec34e4f9d8bc30d93266a14e65506a9328e37d35043f662e5f9ed0777cccdfa213
languageName: node
linkType: hard
"@jimp/plugin-dither@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-dither@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/eea2131c063b6016dad2678b3f6d4fcee4031df7bdbb819b3e96f6014d94a9bb9b987de75fb4408e202c08ce4724d732c12a85bf970547cb7e322577a3b88bcc
languageName: node
linkType: hard
"@jimp/plugin-dither@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-dither@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/463fc30327f661a46d4acf3d0f9aa78b1c0dc4d06407ae1c375775c294b3b7bd28c010db2d334b7c5dc9edd402302edad4522c2d324554ec3f34ce94da44a956
languageName: node
linkType: hard
"@jimp/plugin-fisheye@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-fisheye@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/b62034d96ad51c573a1e3306d761c70fdcf73890eea4bffb59e6144ac585e163b17abde2ec8d89e8fbb03b4d022159815c2c573dd0304d0f8c1fa83a428f906f
languageName: node
linkType: hard
"@jimp/plugin-fisheye@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-fisheye@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/21c3600e289bc2e696ad5933dcbe885c9b42a02bd1afc6a3ab0b67728d96b8a09fd4db1ef757588039716801e49290016d7dea1d0e9e32ca43ca028d7c2cf132
languageName: node
linkType: hard
"@jimp/plugin-flip@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-flip@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
"@jimp/plugin-rotate": ">=0.3.5"
checksum: 10c0/88f38c9facd5102b228198996b9b909eae6d85902614e6fbcb21d66ceccf1af58820b696c0c8836d1ec7fb0af6f89ed11661a5c693a7c91310db483356441dbd
languageName: node
linkType: hard
"@jimp/plugin-flip@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-flip@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
peerDependencies:
"@jimp/custom": ">=0.3.5"
"@jimp/plugin-rotate": ">=0.3.5"
checksum: 10c0/6487156ad8fb94f51706506ff5f9418a1b804efc8cdb9dbf62a80bd72930d88aade881a606b7c1ee76ad610179e5d8ff09ed139a9bb43d42bf0319f09194418b
languageName: node
linkType: hard
"@jimp/plugin-gaussian@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-gaussian@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/8de5173b70424c8f43f5de4a41713f35d4f0a7495cd638a3c0e88867d8a009c7bcf80ed75b8cab69b80293390dc2764bfeb125d8161a61f9db7631ef36856c68
languageName: node
linkType: hard
"@jimp/plugin-gaussian@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-gaussian@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/9ea4fc2b6a4f03ebbfd545e1ec75fccd91e6a7d200bde84cfdaefcb0c5f945c138984accbdcb8ac326cacae395e3a22a8b05a742042d1f04b1b029bb793ca5ed
languageName: node
linkType: hard
"@jimp/plugin-invert@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-invert@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/5c9ab8884d1426930a426ee9de7503b7a03506c543d26dea3cda77c2f0b52318e9c0d72af72b67db124337ab74f2859616965021d0ef636f6898cb177f0ff92e
languageName: node
linkType: hard
"@jimp/plugin-invert@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-invert@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/fb606b5324aa16f2dd73c7bccc0d67b536235d726d53f0dd209ca54c8ce5cfee3932ace9876991f093a35a551105102a9abb0424dee37152d873f56cf3811b3f
languageName: node
linkType: hard
"@jimp/plugin-mask@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-mask@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/8e8b8b790267e39b89296dd793f4786a9661b232669215b9f331ed3b2dac2e1248ac192608f294b88471db5859eb65cabfa286e82ba485b7e189ac719856be6d
languageName: node
linkType: hard
"@jimp/plugin-mask@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-mask@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/fb14710a69dde875ce88d70549176bfa73fd46ce16960520e8328a00d31bcc2e9d73f0f9b125fca15f2e37963abe4be1880ba9d6c8d3c186d6ece36c03f51bf1
languageName: node
linkType: hard
"@jimp/plugin-normalize@npm:^0.14.0":
version: 0.14.0
resolution: "@jimp/plugin-normalize@npm:0.14.0"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.14.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/0c82f46c152ab7d5e211c30e6ea37110b96a3f851cf4b5ef1c964469a02d13abe51948e97bd3182e92542a89cf3706fc0b878eef937a99bc75a6e824903be645
languageName: node
linkType: hard
"@jimp/plugin-normalize@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-normalize@npm:0.16.13"
dependencies: