-
Notifications
You must be signed in to change notification settings - Fork 7
/
yarn.lock
13463 lines (12072 loc) · 462 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
"7zip-bin@npm:^5.1.1":
version: 5.2.0
resolution: "7zip-bin@npm:5.2.0"
checksum: 10c0/7f6c69b4cb10c4060fb8fda258ae2ab88d30516b5a52941efa0e2cbd9ce362ab7d8d568549cd85e9f125c1c68f95c7bb076cc314c2f3c0cb306d3b638080c2ce
languageName: node
linkType: hard
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10c0/53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@azure/abort-controller@npm:^1.0.0":
version: 1.1.0
resolution: "@azure/abort-controller@npm:1.1.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10c0/bb79f0faaa9e9c1ae3c4ec2523ea23ee0879cc491abb4b3ac2dd56c2cc2dfe4b7e8522ffa866d39c7145c0dd61387711368afe0d4eb6534daba7b67ed0a2a730
languageName: node
linkType: hard
"@azure/core-auth@npm:^1.3.0":
version: 1.5.0
resolution: "@azure/core-auth@npm:1.5.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-util": "npm:^1.1.0"
tslib: "npm:^2.2.0"
checksum: 10c0/b141a542cad2d36ebe8e151967bc3e425939c28ab41819268b5e0beef557fbf6425030ded6e89992f07cea87f609788985a1e6e97bb1c987f1010d53fcb123d5
languageName: node
linkType: hard
"@azure/core-http@npm:^3.0.0":
version: 3.0.3
resolution: "@azure/core-http@npm:3.0.3"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.3.0"
"@azure/core-tracing": "npm:1.0.0-preview.13"
"@azure/core-util": "npm:^1.1.1"
"@azure/logger": "npm:^1.0.0"
"@types/node-fetch": "npm:^2.5.0"
"@types/tunnel": "npm:^0.0.3"
form-data: "npm:^4.0.0"
node-fetch: "npm:^2.6.7"
process: "npm:^0.11.10"
tslib: "npm:^2.2.0"
tunnel: "npm:^0.0.6"
uuid: "npm:^8.3.0"
xml2js: "npm:^0.5.0"
checksum: 10c0/3dfd15369067bc221af2a7bd5fdd4031647f4f38aea4e4a5749cdbf623147bc80c7c5b6435f5d34eb735d35992e6c43ac491e9d5779f92fe25f739e1cb7a8316
languageName: node
linkType: hard
"@azure/core-lro@npm:^2.2.0":
version: 2.5.4
resolution: "@azure/core-lro@npm:2.5.4"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-util": "npm:^1.2.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 10c0/65d65aa5b90bbdd98bbee4093157618c7e3d8ac3d155f29f5d6b3ca9e2e3a8a49eb15b24d551dd8e51afd634410186b594fc2fcb24e982acd04ca16c279eca7c
languageName: node
linkType: hard
"@azure/core-paging@npm:^1.1.1":
version: 1.5.0
resolution: "@azure/core-paging@npm:1.5.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10c0/634a1c6540d16cf047035f19d8866b561e8036059aec2ce0304d77999404e95458f47c33a3f523d20cefa329bad33ccc6bf7450efa8f7d77ceb3419d519b1c48
languageName: node
linkType: hard
"@azure/core-tracing@npm:1.0.0-preview.13":
version: 1.0.0-preview.13
resolution: "@azure/core-tracing@npm:1.0.0-preview.13"
dependencies:
"@opentelemetry/api": "npm:^1.0.1"
tslib: "npm:^2.2.0"
checksum: 10c0/0977479165deefe1dcabbd68d18e44742ad18fa4bd0200b9d8b6647510c200800e8b47f8039a249086de9ff7eda37ea3f2beb85fa4878a08dd0251a71ea0cbe3
languageName: node
linkType: hard
"@azure/core-util@npm:^1.1.0, @azure/core-util@npm:^1.1.1, @azure/core-util@npm:^1.2.0":
version: 1.6.1
resolution: "@azure/core-util@npm:1.6.1"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 10c0/e0f6148dc02b3d722ee9030a774f9711dbd393a02e4a09b57bcb27a916ee47b08403b51b264008e66b016894b15041bfc0d9d8fdb3d4e2f0bfdc6c47c2bee107
languageName: node
linkType: hard
"@azure/logger@npm:^1.0.0":
version: 1.0.4
resolution: "@azure/logger@npm:1.0.4"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10c0/15af549d8dbf027e7520fc65432577d52c73b5a30bce2c218f97ab7104b037ae6c31d9a5bfa6bc9c7873c05693261ab8d7f5b95c65db6b1a7c8624c7b655afc6
languageName: node
linkType: hard
"@azure/storage-blob@npm:^12.14.0":
version: 12.17.0
resolution: "@azure/storage-blob@npm:12.17.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-http": "npm:^3.0.0"
"@azure/core-lro": "npm:^2.2.0"
"@azure/core-paging": "npm:^1.1.1"
"@azure/core-tracing": "npm:1.0.0-preview.13"
"@azure/logger": "npm:^1.0.0"
events: "npm:^3.0.0"
tslib: "npm:^2.2.0"
checksum: 10c0/462e04cdfcbc891a32522ba2c6cf922c2621996255b5d436411bc4c55f7bcd86ca2693881cad32df718187f574a2799cb118672ebf92f3842be02813735737ac
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.24.1":
version: 7.24.1
resolution: "@babel/helper-string-parser@npm:7.24.1"
checksum: 10c0/2f9bfcf8d2f9f083785df0501dbab92770111ece2f90d120352fda6dd2a7d47db11b807d111e6f32aa1ba6d763fe2dc6603d153068d672a5d0ad33ca802632b2
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.5":
version: 7.24.5
resolution: "@babel/helper-validator-identifier@npm:7.24.5"
checksum: 10c0/05f957229d89ce95a137d04e27f7d0680d84ae48b6ad830e399db0779341f7d30290f863a93351b4b3bde2166737f73a286ea42856bb07c8ddaa95600d38645c
languageName: node
linkType: hard
"@babel/parser@npm:^7.23.0":
version: 7.23.3
resolution: "@babel/parser@npm:7.23.3"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/0fe11eadd4146a9155305b5bfece0f8223a3b1b97357ffa163c0156940de92e76cd0e7a173de819b8692767147e62f33389b312d1537f84cede51092672df6ef
languageName: node
linkType: hard
"@babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.7.2":
version: 7.23.2
resolution: "@babel/runtime@npm:7.23.2"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10c0/271fcfad8574269d9967b8a1c03f2e1eab108a52ad7c96ed136eee0b11f46156f1186637bd5e79a4207163db9a00413cd70a6428e137b982d0ee8ab85eb9f438
languageName: node
linkType: hard
"@babel/types@npm:^7.8.3":
version: 7.24.5
resolution: "@babel/types@npm:7.24.5"
dependencies:
"@babel/helper-string-parser": "npm:^7.24.1"
"@babel/helper-validator-identifier": "npm:^7.24.5"
to-fast-properties: "npm:^2.0.0"
checksum: 10c0/e1284eb046c5e0451b80220d1200e2327e0a8544a2fe45bb62c952e5fdef7099c603d2336b17b6eac3cc046b7a69bfbce67fe56e1c0ea48cd37c65cb88638f2a
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 10c0/eb42729851adca56d19a08e48d5a1e95efd2a32c55ae0323de8119052be0510d4b7a1611f2abcbf28c044a6c11e6b7d38f99fccdad7429300c37a8ea5fb95b44
languageName: node
linkType: hard
"@cordisjs/core@npm:3.14.0":
version: 3.14.0
resolution: "@cordisjs/core@npm:3.14.0"
dependencies:
cosmokit: "npm:^1.6.2"
checksum: 10c0/3e8c6a5d2d7b12281e03f52d94a50979d6acb684960f4b6be69fd78f73b795539879a524a4f4c92e84055bebe0a264aadb0be49b574f520606c7d20440f0c3f7
languageName: node
linkType: hard
"@cordisjs/loader@npm:^0.9.0":
version: 0.9.0
resolution: "@cordisjs/loader@npm:0.9.0"
dependencies:
cosmokit: "npm:^1.6.2"
dotenv: "npm:^16.4.5"
js-yaml: "npm:^4.1.0"
peerDependencies:
"@cordisjs/core": ^3.14.0
checksum: 10c0/a624225cce9fe36415e4d217b49a194aee4b289ee61a619ecf71163a8fc2d2bbf74ee6e1a0046b50375939f3e26a42e9e8aa13f39bffb36923d35c5773340560
languageName: node
linkType: hard
"@cordisjs/logger@npm:^0.3.2":
version: 0.3.2
resolution: "@cordisjs/logger@npm:0.3.2"
dependencies:
reggol: "npm:^1.6.3"
peerDependencies:
"@cordisjs/core": ^3.12.0
checksum: 10c0/2dc6fa3296e32a82c52cef54f10b1178c3f1ab64dbfcafb86175c06914e9f31bc146d9ec1a4b132bd16e0ed6b1518a17827da3406ef67dd4b0a6f9e229db0387
languageName: node
linkType: hard
"@cordisjs/plugin-http@npm:^0.4.0":
version: 0.4.0
resolution: "@cordisjs/plugin-http@npm:0.4.0"
dependencies:
cosmokit: "npm:^1.6.2"
file-type: "npm:^16.5.4"
mime-db: "npm:^1.52.0"
ws: "npm:^8.16.0"
peerDependencies:
cordis: ^3.13.6
checksum: 10c0/a12e0bdf4853755a6a8e8a880166fa6f9d36969e78f6c88b6c14f232e20d207496fd454ac2a681c83717ac76f0b6b7821f9f1770ff911137a84f125816a303a4
languageName: node
linkType: hard
"@cordisjs/plugin-proxy-agent@npm:^0.3.0":
version: 0.3.0
resolution: "@cordisjs/plugin-proxy-agent@npm:0.3.0"
dependencies:
http-proxy-agent: "npm:^7.0.2"
https-proxy-agent: "npm:^7.0.4"
socks: "npm:^2.8.1"
socks-proxy-agent: "npm:^8.0.2"
undici: "npm:^6.10.1"
peerDependencies:
"@cordisjs/plugin-http": ^0.4.0
cordis: ^3.14.0
checksum: 10c0/9459f94572742edcfd21575ac4c78dffbd37b5b9d3bc39aaa6046f812c518d7adbca235733759803205cde703a5df80ed4767d60a7c2cc946600b2096527a849
languageName: node
linkType: hard
"@cordisjs/plugin-server@npm:^0.2.1":
version: 0.2.1
resolution: "@cordisjs/plugin-server@npm:0.2.1"
dependencies:
"@koa/router": "npm:^10.1.1"
"@types/koa": "npm:*"
"@types/koa__router": "npm:*"
"@types/ws": "npm:^8.5.10"
cosmokit: "npm:^1.6.2"
koa: "npm:^2.15.2"
koa-bodyparser: "npm:^4.4.1"
parseurl: "npm:^1.3.3"
path-to-regexp: "npm:^6.2.1"
reggol: "npm:^1.6.3"
schemastery: "npm:^3.14.6"
ws: "npm:^8.16.0"
peerDependencies:
cordis: ^3.14.0
checksum: 10c0/80ef290a9f5b2735699b02a9c7bfbb2517211a38513b10a99e9c9c09dc9df6ac6edeb3603acca20facc0364f6ae790e8cdf2dfc9053d67e1d8d157f17a85b232
languageName: node
linkType: hard
"@cordisjs/timer@npm:^0.3.2":
version: 0.3.2
resolution: "@cordisjs/timer@npm:0.3.2"
dependencies:
cosmokit: "npm:^1.5.2"
peerDependencies:
"@cordisjs/core": ^3.12.0
checksum: 10c0/1aeeb876a26e3b0bb14338a1b81931cc15a9efca64007feb357a28e48a8f60f4a6801afa2e6564fefce218b1c82165b678cea0309095adbc66acf85437d0660c
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
"@ctrl/tinycolor@npm:^3.4.1":
version: 3.6.1
resolution: "@ctrl/tinycolor@npm:3.6.1"
checksum: 10c0/444d81612cd8c5c802a3d1253df83d5f77d3db87f351861655683a4743990e6b38976bf2e4129591c5a258607b63574b3c7bed702cf6a0eb7912222edf4570e9
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^0.5.0":
version: 0.5.7
resolution: "@discoveryjs/json-ext@npm:0.5.7"
checksum: 10c0/e10f1b02b78e4812646ddf289b7d9f2cb567d336c363b266bd50cd223cf3de7c2c74018d91cd2613041568397ef3a4a2b500aba588c6e5bd78c38374ba68f38c
languageName: node
linkType: hard
"@element-plus/icons-vue@npm:^2.0.6":
version: 2.1.0
resolution: "@element-plus/icons-vue@npm:2.1.0"
peerDependencies:
vue: ^3.2.0
checksum: 10c0/307f76aee00788b117ce7c9f9d0738c7f15e8e69443c7267c4dddef3931ae6476e4590e9d0fd794a59c4285f9cb36359ddb9bbad72552462b2cdcb43c5e31954
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm64@npm:0.18.20"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm@npm:0.18.20"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-x64@npm:0.18.20"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-arm64@npm:0.18.20"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-x64@npm:0.18.20"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-arm64@npm:0.18.20"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-x64@npm:0.18.20"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm64@npm:0.18.20"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm@npm:0.18.20"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ia32@npm:0.18.20"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.14.54":
version: 0.14.54
resolution: "@esbuild/linux-loong64@npm:0.14.54"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-loong64@npm:0.18.20"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-mips64el@npm:0.18.20"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ppc64@npm:0.18.20"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-riscv64@npm:0.18.20"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-s390x@npm:0.18.20"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-x64@npm:0.18.20"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/netbsd-x64@npm:0.18.20"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/openbsd-x64@npm:0.18.20"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/sunos-x64@npm:0.18.20"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-arm64@npm:0.18.20"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-ia32@npm:0.18.20"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-x64@npm:0.18.20"
conditions: os=win32 & cpu=x64
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.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.10.0
resolution: "@eslint-community/regexpp@npm:4.10.0"
checksum: 10c0/c5f60ef1f1ea7649fa7af0e80a5a79f64b55a8a8fa5086de4727eb4c86c652aedee407a9c143b8995d2c0b2d75c1222bec9ba5d73dbfc1f314550554f0979ef4
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.3":
version: 2.1.3
resolution: "@eslint/eslintrc@npm:2.1.3"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.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/f4103f4346126292eb15581c5a1d12bef03410fd3719dedbdb92e1f7031d46a5a2d60de8566790445d5d4b70b75ba050876799a11f5fff8265a91ee3fa77dab0
languageName: node
linkType: hard
"@eslint/js@npm:8.53.0":
version: 8.53.0
resolution: "@eslint/js@npm:8.53.0"
checksum: 10c0/d29f6c207b2f6dc4ef174d16a3c07b0d3a17ca3d805680496ff267edd773e3bac41db4e7dcab622ca1970d892535bd19671e2a756d4eac75e96fd8c8dcdb619b
languageName: node
linkType: hard
"@fiahfy/icns@npm:^0.0.7":
version: 0.0.7
resolution: "@fiahfy/icns@npm:0.0.7"
dependencies:
"@fiahfy/packbits": "npm:^0.0.6"
pngjs: "npm:^6.0.0"
checksum: 10c0/21809e507bcaca0bf6286d4e09f4404e4224119820fb5bb17cb44ad3ebf9a5e845d9022948bb79e53872d82f25ffbeadc0000366b31c8b80f27adc4b9c7edc29
languageName: node
linkType: hard
"@fiahfy/packbits@npm:^0.0.6":
version: 0.0.6
resolution: "@fiahfy/packbits@npm:0.0.6"
checksum: 10c0/7c0e391944e7a71ef18d26c1ed7e54db47a279d9ebdf3db8a0a04a000d89c5e24425f37cb194e842d0fc7c97a337da6dd7469173f1ec76601ed456eaa1cb770c
languageName: node
linkType: hard
"@floating-ui/core@npm:^1.4.2":
version: 1.5.0
resolution: "@floating-ui/core@npm:1.5.0"
dependencies:
"@floating-ui/utils": "npm:^0.1.3"
checksum: 10c0/bca811cefd09c3f56c4cf58c3e94826c1ce4a0b40124e9030ddca2ef1cc68b4ddc5ba5b4d7cc94c9555aea6876d2428a77a2ae261fe5b39c79df247a9518b053
languageName: node
linkType: hard
"@floating-ui/dom@npm:^1.0.1":
version: 1.5.3
resolution: "@floating-ui/dom@npm:1.5.3"
dependencies:
"@floating-ui/core": "npm:^1.4.2"
"@floating-ui/utils": "npm:^0.1.3"
checksum: 10c0/e5f30b911f939e40003851077bba441f269ae689bdc43c674bee43aa98fc6b7a5f59be432d27b7be599b1e4ab7b15c752875ea777a89cff01d157e593b78b25b
languageName: node
linkType: hard
"@floating-ui/utils@npm:^0.1.3":
version: 0.1.6
resolution: "@floating-ui/utils@npm:0.1.6"
checksum: 10c0/0a089db0e0526b89e83cb0a773a903517db5c9067cd473febfd8fa91a3a2ccbc3a835234796c1bb528def21dbb67be50e28d9c473cb58a6d90679d7e549b9c0c
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.13":
version: 0.11.13
resolution: "@humanwhocodes/config-array@npm:0.11.13"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/d76ca802d853366094d0e98ff0d0994117fc8eff96649cd357b15e469e428228f597cd2e929d54ab089051684949955f16ee905bb19f7b2f0446fb377157be7a
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/object-schema@npm:^2.0.1":
version: 2.0.1
resolution: "@humanwhocodes/object-schema@npm:2.0.1"
checksum: 10c0/9dba24e59fdb4041829d92b693aacb778add3b6f612aaa9c0774f3b650c11a378cc64f042a59da85c11dae33df456580a3c36837b953541aed6ff94294f97fac
languageName: node
linkType: hard
"@intlify/core-base@npm:9.6.5":
version: 9.6.5
resolution: "@intlify/core-base@npm:9.6.5"
dependencies:
"@intlify/message-compiler": "npm:9.6.5"
"@intlify/shared": "npm:9.6.5"
checksum: 10c0/81e35f22e00aef1a376178b6ee14695bfe660bcbb03e280be71c4ff4b3a3402cfb1bbb9eabbd117bcb2fa57be2c848e4d80e17c389cb778dea447ccb7a33e596
languageName: node
linkType: hard
"@intlify/message-compiler@npm:9.6.5":
version: 9.6.5
resolution: "@intlify/message-compiler@npm:9.6.5"
dependencies:
"@intlify/shared": "npm:9.6.5"
source-map-js: "npm:^1.0.2"
checksum: 10c0/fbc419a53933aa83e8585df1065e4fe619b7e19f705722ae947960624c515f7dc29c7c36846dba4fbd1f315124476156f8aa54b505eea1393c094cdc969eba0d
languageName: node
linkType: hard
"@intlify/shared@npm:9.6.5":
version: 9.6.5
resolution: "@intlify/shared@npm:9.6.5"
checksum: 10c0/3419333f0eda44eb8cc65006b26bf7be7de006b54463b75fef0d08f938242b28172f4b2eb914b91a5316e0eb881b38116adad2cabee4552c48f177783341c76a
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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.16.13":
version: 0.16.13
resolution: "@jimp/plugin-normalize@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/0bb9436c3283f8140a7eca1e2816e3eed1ed7dc227a12d4c775889fdbda6fe419475a595eed3e31592e4f210a099c31483bb256be815de7d5e471c759850e61a
languageName: node
linkType: hard
"@jimp/plugin-print@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-print@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
load-bmfont: "npm:^1.4.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
"@jimp/plugin-blit": ">=0.3.5"
checksum: 10c0/dca1eee958e846708bc6304a01353fda2093146c91db47d5f650421d90828e979f127153b7ed13d857f643ba0367a761debaea31944c7a14d8fa4919f0278ccf
languageName: node
linkType: hard
"@jimp/plugin-resize@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-resize@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/4eb26ed6408e33d4ce380007669cfdaa4f88cf36685dffb63093c330f5d5860d46ed552cfffa366f3f3d38686b365d45c1051499a9688a57f51cebc3d9e5a4d4
languageName: node
linkType: hard
"@jimp/plugin-rotate@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-rotate@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-crop": ">=0.3.5"
"@jimp/plugin-resize": ">=0.3.5"
checksum: 10c0/2cd302a83ce20bcf8ee65f7d3bb68326fba44de16521f27df197df673c9076ad21a77d6d49922127f6a1a07b42a5bb00d7e95f9fbe220018d796df3df3417d92
languageName: node
linkType: hard
"@jimp/plugin-scale@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-scale@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-resize": ">=0.3.5"
checksum: 10c0/004df71ba5afa2e30f6ca3945f90b781adbe1e259b293ec40e3d0fabb1656d0dc61b47ec2985cf6f0400020a97e12a5e071dd48c827d5ebb6aee98df3883cb6a
languageName: node
linkType: hard
"@jimp/plugin-shadow@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-shadow@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-blur": ">=0.3.5"
"@jimp/plugin-resize": ">=0.3.5"
checksum: 10c0/d40eb56482b881564847d96ff39bf3abff560c252bca583ed2b7424537c1ce2d0b9d8ad832176570dbfe48245ba61e3049afcc7b51b629dfe791af6546342d17
languageName: node
linkType: hard
"@jimp/plugin-threshold@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugin-threshold@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-color": ">=0.8.0"
"@jimp/plugin-resize": ">=0.8.0"
checksum: 10c0/a06263e98284c5e22d729a0f75aaa4f0f0017dd98983006d77d55ac43641a9cc9840d327264e6cd8c60207c59d5023bf90324690d89cf4964be6812af0c0b8ac
languageName: node
linkType: hard
"@jimp/plugins@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/plugins@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/plugin-blit": "npm:^0.16.13"
"@jimp/plugin-blur": "npm:^0.16.13"
"@jimp/plugin-circle": "npm:^0.16.13"
"@jimp/plugin-color": "npm:^0.16.13"
"@jimp/plugin-contain": "npm:^0.16.13"
"@jimp/plugin-cover": "npm:^0.16.13"
"@jimp/plugin-crop": "npm:^0.16.13"
"@jimp/plugin-displace": "npm:^0.16.13"
"@jimp/plugin-dither": "npm:^0.16.13"
"@jimp/plugin-fisheye": "npm:^0.16.13"
"@jimp/plugin-flip": "npm:^0.16.13"
"@jimp/plugin-gaussian": "npm:^0.16.13"
"@jimp/plugin-invert": "npm:^0.16.13"
"@jimp/plugin-mask": "npm:^0.16.13"
"@jimp/plugin-normalize": "npm:^0.16.13"
"@jimp/plugin-print": "npm:^0.16.13"
"@jimp/plugin-resize": "npm:^0.16.13"
"@jimp/plugin-rotate": "npm:^0.16.13"
"@jimp/plugin-scale": "npm:^0.16.13"
"@jimp/plugin-shadow": "npm:^0.16.13"
"@jimp/plugin-threshold": "npm:^0.16.13"
timm: "npm:^1.6.1"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/ecf1a7e0d0d34b2930541fd491f75362cc3271d47976a051c1750c5edfd70f4e2cb912c1211384cee42af14c3975a4943d870f9076680c0b9a28dbb0bfd0b71c
languageName: node
linkType: hard
"@jimp/png@npm:^0.16.13":
version: 0.16.13
resolution: "@jimp/png@npm:0.16.13"
dependencies:
"@babel/runtime": "npm:^7.7.2"
"@jimp/utils": "npm:^0.16.13"
pngjs: "npm:^3.3.3"
peerDependencies:
"@jimp/custom": ">=0.3.5"