-
Notifications
You must be signed in to change notification settings - Fork 11
/
yarn.lock
4621 lines (4130 loc) · 159 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
"@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
"@atproto/api@npm:0.13.25":
version: 0.13.25
resolution: "@atproto/api@npm:0.13.25"
dependencies:
"@atproto/common-web": "npm:^0.3.1"
"@atproto/lexicon": "npm:^0.4.4"
"@atproto/syntax": "npm:^0.3.1"
"@atproto/xrpc": "npm:^0.6.5"
await-lock: "npm:^2.2.2"
multiformats: "npm:^9.9.0"
tlds: "npm:^1.234.0"
zod: "npm:^3.23.8"
checksum: 10c0/d05a89d2adb8076a22cb9dd1ac61aaf5c65f5856c140020646905725db6953ce3b6c77011e767e8fff0392ffe55ef86f78e981e70f10773c1d76ad3bdf5e66b5
languageName: node
linkType: hard
"@atproto/common-web@npm:^0.3.1":
version: 0.3.1
resolution: "@atproto/common-web@npm:0.3.1"
dependencies:
graphemer: "npm:^1.4.0"
multiformats: "npm:^9.9.0"
uint8arrays: "npm:3.0.0"
zod: "npm:^3.23.8"
checksum: 10c0/9ae59b85a8cfa8d4cd3d29b56a6781136eb868f67a8eee4ffc239d85abb2d810ac5c3a1c95293051ff46383677cee0bc9343e2edfdd1cc906c0ce97865567829
languageName: node
linkType: hard
"@atproto/lexicon@npm:^0.4.4":
version: 0.4.4
resolution: "@atproto/lexicon@npm:0.4.4"
dependencies:
"@atproto/common-web": "npm:^0.3.1"
"@atproto/syntax": "npm:^0.3.1"
iso-datestring-validator: "npm:^2.2.2"
multiformats: "npm:^9.9.0"
zod: "npm:^3.23.8"
checksum: 10c0/c30c91d87b7095aa923ffc0cf74053e7a920414f8c9e85cccfffdb77245731610759a052d3113981c3e1627081d6060b3f2122c460a73ba9cb371d618c02a7b3
languageName: node
linkType: hard
"@atproto/syntax@npm:^0.3.1":
version: 0.3.1
resolution: "@atproto/syntax@npm:0.3.1"
checksum: 10c0/22139c4472559d8627017b7c3395346f35a240e09d01ec206fd06e4cbb54cd3348e007f26f1985a808bf7210b629e7cc0c9d149697db24e1a56be33143edec54
languageName: node
linkType: hard
"@atproto/xrpc@npm:0.6.5, @atproto/xrpc@npm:^0.6.5":
version: 0.6.5
resolution: "@atproto/xrpc@npm:0.6.5"
dependencies:
"@atproto/lexicon": "npm:^0.4.4"
zod: "npm:^3.23.8"
checksum: 10c0/d563c3db54ad1972e45224c782e20ddc718224b89f890cc7c435f1cd8909b6255deb3d7e09022736799dca68984f16a384f9b6cba0c17ec5e373c7109a8f5d54
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: 10c0/f4cc8ae1000265677daf4845083b72f88d00d311adb1a93c94eb4b07bf0ed6828a81ae4ac43ee7d476775000b93a28a9cddec18fbdc5796212d8dcccd5de72bd
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 10c0/dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.13":
version: 7.22.20
resolution: "@babel/highlight@npm:7.22.20"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 10c0/f3c3a193afad23434297d88e81d1d6c0c2cf02423de2139ada7ce0a7fc62d8559abf4cc996533c1a9beca7fc990010eb8d544097f75e818ac113bf39ed810aa2
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/aix-ppc64@npm:0.23.0"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/android-arm64@npm:0.23.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/android-arm@npm:0.23.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/android-x64@npm:0.23.0"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/darwin-arm64@npm:0.23.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/darwin-x64@npm:0.23.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/freebsd-arm64@npm:0.23.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/freebsd-x64@npm:0.23.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/linux-arm64@npm:0.23.0"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/linux-arm@npm:0.23.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/linux-ia32@npm:0.23.0"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/linux-loong64@npm:0.23.0"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/linux-mips64el@npm:0.23.0"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/linux-ppc64@npm:0.23.0"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/linux-riscv64@npm:0.23.0"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/linux-s390x@npm:0.23.0"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/linux-x64@npm:0.23.0"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/netbsd-x64@npm:0.23.0"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/openbsd-arm64@npm:0.23.0"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/openbsd-x64@npm:0.23.0"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/sunos-x64@npm:0.23.0"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/win32-arm64@npm:0.23.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/win32-ia32@npm:0.23.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.23.0":
version: 0.23.0
resolution: "@esbuild/win32-x64@npm:0.23.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.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.4.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.9.1
resolution: "@eslint-community/regexpp@npm:4.9.1"
checksum: 10c0/d0e1bd1a37cb2cb6bbac88dfe97b62b412d4b6ea3a4bb1c4e1e503be03125063db5d80999cef9728f57b19b49979aa902ac68182bcf5f80dfce6fa9a9d34eee1
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
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/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
languageName: node
linkType: hard
"@eslint/js@npm:8.57.1":
version: 8.57.1
resolution: "@eslint/js@npm:8.57.1"
checksum: 10c0/b489c474a3b5b54381c62e82b3f7f65f4b8a5eaaed126546520bf2fede5532a8ed53212919fed1e9048dcf7f37167c8561d58d0ba4492a4244004e7793805223
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.13.0":
version: 0.13.0
resolution: "@humanwhocodes/config-array@npm:0.13.0"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.3"
debug: "npm:^4.3.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/205c99e756b759f92e1f44a3dc6292b37db199beacba8f26c2165d4051fe73a4ae52fdcfd08ffa93e7e5cb63da7c88648f0e84e197d154bbbbe137b2e0dd332e
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.3":
version: 2.0.3
resolution: "@humanwhocodes/object-schema@npm:2.0.3"
checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c
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.22.12":
version: 0.22.12
resolution: "@jimp/bmp@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
bmp-js: "npm:^0.1.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/45739eb159bbb313a8c6610bf8389ececc6cc0892dae312dfcb9963b36c43d67e5570dcf959de0450c420570d51683d0685e0ec881f99c7125313b992be99aff
languageName: node
linkType: hard
"@jimp/core@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/core@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
any-base: "npm:^1.1.0"
buffer: "npm:^5.2.0"
exif-parser: "npm:^0.1.12"
file-type: "npm:^16.5.4"
isomorphic-fetch: "npm:^3.0.0"
pixelmatch: "npm:^4.0.2"
tinycolor2: "npm:^1.6.0"
checksum: 10c0/535d48403f7147e26adabb38fc8ae08831190c7c1e6fda54640adcfdfd5d3a3491d98bd030f7e22a9112404aec0614f865ebfcef68f0022e025bed60bf1da454
languageName: node
linkType: hard
"@jimp/custom@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/custom@npm:0.22.12"
dependencies:
"@jimp/core": "npm:^0.22.12"
checksum: 10c0/942254bfb22a40b0420d60fd14e20f2f5af0eee89133896f13c29adf6f1dcb90a836129710b14c5c2c3b72ea7c4b0a8d9a68b0a3806c6592fcfb3beb03c611b7
languageName: node
linkType: hard
"@jimp/gif@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/gif@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
gifwrap: "npm:^0.10.1"
omggif: "npm:^1.0.9"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/40a804449e888d3885946c11156a54681c26bac1dbd77a84dace8d2e9be9e54dd3cae7865d235296b072901034fd220b3caca7c136b13110eb4c3eead407958b
languageName: node
linkType: hard
"@jimp/jpeg@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/jpeg@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
jpeg-js: "npm:^0.4.4"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/3ff0e72d6cb86d2ae968b8e82a4a01b828f0c21b95b2b74c9c9d17ab2f3ededbdbb87590659a3bd4d62a0b3e759818080d47a09aa6fca82388eda68106ae1b70
languageName: node
linkType: hard
"@jimp/plugin-blit@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-blit@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/f6a4f299e21e7ce25e6de11ca00fbd3afe18f437cb6083fdc31c6d81c9c72f4f68858a807794aa192d7ecafbf9f0a3cca6424452448664041b88eab559ca34bc
languageName: node
linkType: hard
"@jimp/plugin-blur@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-blur@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/ea615a950d7425b965e7df36636cb82ba1c947b926110972a6861f45048bd92d328364911a4d2a42a7dc081b4d3f7a76fd66bafb250fed9ac5d3040652e690e9
languageName: node
linkType: hard
"@jimp/plugin-circle@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-circle@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/fd249aba896d1fb8b037f7f09759bedbc764e2b98c836c5c29967ba5a444e584a0d3da6a0ccaa34f0465b8a18662f5eb688ed17431744b4b96022afebd9d86b7
languageName: node
linkType: hard
"@jimp/plugin-color@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-color@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
tinycolor2: "npm:^1.6.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/330f5c90acd554b72672cd63af2ff236ea7aac76c604c693a17e5046621bcf787ae76d9d2b7531cf9ac7e983e9213bb9e4b130e2992f52be9541deda95dc3126
languageName: node
linkType: hard
"@jimp/plugin-contain@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-contain@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
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/1c8f9b9e0ca489947870f42b2640c89ceadd96293597e51ba2e23abbbb3f6115f0546d4105b0a31bef33457fd4758aa49d4b9e5dae687bda792dba1c84be2825
languageName: node
linkType: hard
"@jimp/plugin-cover@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-cover@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
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/5a8ff5d7ee1ebcf61af470650e4c14c1ce4f48382b46f8fe711a27a0cd450a2e5439c89aa0de5ce8170ec3d2268ff948510dc3c9d73741db268436be3a31f4bf
languageName: node
linkType: hard
"@jimp/plugin-crop@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-crop@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/82ff13703013aa5781dde03887f635b9e7b9c9bc24ff131bb70cdba0e38cf22170bcbbae12cc420fd469691ea00644c80f7992af9d23a126d1f5f99aae7a6104
languageName: node
linkType: hard
"@jimp/plugin-displace@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-displace@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/c4bbe701be66601ad7f25fde9b145d1b384a3c2ca3d4ddf5a41c640d4c7389eb015da1b040e9181a3df228a48fa65c6eed7ad550364aade6b689f81631a75279
languageName: node
linkType: hard
"@jimp/plugin-dither@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-dither@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/3cee98f418c5b9402d4acb9f1a4cc77cbeb56a572ab582ecaec3c89e899f5ef4443f0c63a041a6209aba355e596d5d32c59d096786b445a57d81ae2004271fc3
languageName: node
linkType: hard
"@jimp/plugin-fisheye@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-fisheye@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/2c4bf08bc94b9f32f44c03db3135c25c5a23c9bc4eab4c169a29c1423af1434807f097878b6206708475e872afde275fc1a66044b48fb10426ac1133f27f399b
languageName: node
linkType: hard
"@jimp/plugin-flip@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-flip@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
"@jimp/plugin-rotate": ">=0.3.5"
checksum: 10c0/9b49f306e9577617ff21ffbfd69622f4691745d1254bab6c649d0da6f67f375ba9b9393c021948c9602bc4edd6e07f590c78f2580dceaf8037db716c805b9354
languageName: node
linkType: hard
"@jimp/plugin-gaussian@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-gaussian@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/731cc9321af8e2d156ff590cc934b13b0c0ae22aac14480f6add54015e8e70266b2a6cdadb35ffe10ed28550d7f7c91197de5a0bfd7fe32f3d5a6fa7b695e0b9
languageName: node
linkType: hard
"@jimp/plugin-invert@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-invert@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/8173afd5f62526e0a626d20b43df2fc33f5a58e42ea2c1a510b911f83f6be9fe30b4d442ef37369d17c07019601e3ab82e4716d312285ea33cab5af3107ee553
languageName: node
linkType: hard
"@jimp/plugin-mask@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-mask@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/6bed599c2af25fc024f3568671fb1575059cd6e46186ada25b627ce511297d35adbfe9bdc7918981f4f5638b85490e29182d4b60370a62c64a28c9c0b6ce153b
languageName: node
linkType: hard
"@jimp/plugin-normalize@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-normalize@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/abf9840705e1e8fc793d6ff880a13e6996d256f3f8f330c72790d231b77143a2ba659e2e6e9fdafce685979c039da1edab8d311ed4a2680521c7631e83686df5
languageName: node
linkType: hard
"@jimp/plugin-print@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-print@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
load-bmfont: "npm:^1.4.1"
peerDependencies:
"@jimp/custom": ">=0.3.5"
"@jimp/plugin-blit": ">=0.3.5"
checksum: 10c0/e19e38c7762cf3a83b5b76af9079ca5f246f35bc73adabb7c8f4455555aa93b86cd719f194cabc4618f04f66110c48d2555c2035c9f86f00978d2f7fb3601ea2
languageName: node
linkType: hard
"@jimp/plugin-resize@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-resize@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/a43d6d1580d9b2eaf5c02713c141e3158f8f5c59c5e8796b9b79b5ce3db8892790fff92c828bada622324ad7648078646302013fcb971d538aa87b8b7faa3d0d
languageName: node
linkType: hard
"@jimp/plugin-rotate@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-rotate@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
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/0ad4383f3bf9916630141ac7371e81f1d6bbe5621de04ca632401c2eb749bf7faa59e4dedeb72d305f81a5510abacf5e060f2faf8ffa3a5b530a67f88cf70392
languageName: node
linkType: hard
"@jimp/plugin-scale@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-scale@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
"@jimp/plugin-resize": ">=0.3.5"
checksum: 10c0/1a901eb8a7f218aa7737a6a84dfecc8ea8a99830139a383180bb9ebd1d14a8bb07ec51f6b9fd0d213e129366c0c85abe9335b264ab818c62100c7216d46c9e9c
languageName: node
linkType: hard
"@jimp/plugin-shadow@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-shadow@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
"@jimp/plugin-blur": ">=0.3.5"
"@jimp/plugin-resize": ">=0.3.5"
checksum: 10c0/e0292808940fbebd9132db80df075c89ecc65375b73e99746ae5bd90931ac2d67457619b939b475f3713cd1ed991d79c961ba9485627384fd736fa3d2de2cde8
languageName: node
linkType: hard
"@jimp/plugin-threshold@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugin-threshold@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
peerDependencies:
"@jimp/custom": ">=0.3.5"
"@jimp/plugin-color": ">=0.8.0"
"@jimp/plugin-resize": ">=0.8.0"
checksum: 10c0/cb8ee511dfcd88c22a11894c13bf1258586adad43f3887bb2d403abe4526176f9a26d4e7a53c9a9e4599891cff2d4f117660a822df8b2680b66f472dc8ce24b4
languageName: node
linkType: hard
"@jimp/plugins@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/plugins@npm:0.22.12"
dependencies:
"@jimp/plugin-blit": "npm:^0.22.12"
"@jimp/plugin-blur": "npm:^0.22.12"
"@jimp/plugin-circle": "npm:^0.22.12"
"@jimp/plugin-color": "npm:^0.22.12"
"@jimp/plugin-contain": "npm:^0.22.12"
"@jimp/plugin-cover": "npm:^0.22.12"
"@jimp/plugin-crop": "npm:^0.22.12"
"@jimp/plugin-displace": "npm:^0.22.12"
"@jimp/plugin-dither": "npm:^0.22.12"
"@jimp/plugin-fisheye": "npm:^0.22.12"
"@jimp/plugin-flip": "npm:^0.22.12"
"@jimp/plugin-gaussian": "npm:^0.22.12"
"@jimp/plugin-invert": "npm:^0.22.12"
"@jimp/plugin-mask": "npm:^0.22.12"
"@jimp/plugin-normalize": "npm:^0.22.12"
"@jimp/plugin-print": "npm:^0.22.12"
"@jimp/plugin-resize": "npm:^0.22.12"
"@jimp/plugin-rotate": "npm:^0.22.12"
"@jimp/plugin-scale": "npm:^0.22.12"
"@jimp/plugin-shadow": "npm:^0.22.12"
"@jimp/plugin-threshold": "npm:^0.22.12"
timm: "npm:^1.6.1"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/db6f9b5886e8af53615638713732295e7fdce9397685da0282b9b9cc69839135e586948d4c9f9e459a8608ca9f659198b7b6ab25d6b1303a7b3a54f43f699a23
languageName: node
linkType: hard
"@jimp/png@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/png@npm:0.22.12"
dependencies:
"@jimp/utils": "npm:^0.22.12"
pngjs: "npm:^6.0.0"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/99a6fcf49d43c98c12fc26e017046b774d82453163662effa9a53dbf2a8aca5450f6b13bdef0292fdb326f1f18c4dbeeb8b1fe7bce096d07cd9f1af96e1b3fa3
languageName: node
linkType: hard
"@jimp/tiff@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/tiff@npm:0.22.12"
dependencies:
utif2: "npm:^4.0.1"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/14f545efef722254232fd44e5f837ca8f84ce8cdf0eb3156bba4938a81674848c75effba69cf2a484018da5a81ad2b80be29523b20e7103307a2ce67a8192539
languageName: node
linkType: hard
"@jimp/types@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/types@npm:0.22.12"
dependencies:
"@jimp/bmp": "npm:^0.22.12"
"@jimp/gif": "npm:^0.22.12"
"@jimp/jpeg": "npm:^0.22.12"
"@jimp/png": "npm:^0.22.12"
"@jimp/tiff": "npm:^0.22.12"
timm: "npm:^1.6.1"
peerDependencies:
"@jimp/custom": ">=0.3.5"
checksum: 10c0/62440b2ca490f7dca5943dde8b9c2f154240d1349563263faf299d476365b93bb94a7e892ce4685cc817ca087850ffc0914c27662164f5be90f4d4dad97fc46e
languageName: node
linkType: hard
"@jimp/utils@npm:^0.22.12":
version: 0.22.12
resolution: "@jimp/utils@npm:0.22.12"
dependencies:
regenerator-runtime: "npm:^0.13.3"
checksum: 10c0/c2ce050db71c5f98e8930ca6e48265edeac930afe98325e427a7b8c897e5f796538f7f75460e1ab26d0edaea0c9aea4bf7184f6a686db82f1d18cf6e5f890f99
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@npmcli/agent@npm:^2.0.0":
version: 2.2.0
resolution: "@npmcli/agent@npm:2.2.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.1"
checksum: 10c0/7b89590598476dda88e79c473766b67c682aae6e0ab0213491daa6083dcc0c171f86b3868f5506f22c09aa5ea69ad7dfb78f4bf39a8dca375d89a42f408645b3
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/fs@npm:3.1.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/162b4a0b8705cd6f5c2470b851d1dc6cd228c86d2170e1769d738c1fbb69a87160901411c3c035331e9e99db72f1f1099a8b734bf1637cc32b9a5be1660e4e1e
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@pkgr/core@npm:^0.1.0":
version: 0.1.1
resolution: "@pkgr/core@npm:0.1.1"
checksum: 10c0/3f7536bc7f57320ab2cf96f8973664bef624710c403357429fbf680a5c3b4843c1dbd389bb43daa6b1f6f1f007bb082f5abcb76bb2b5dc9f421647743b71d3d8
languageName: node
linkType: hard
"@tokenizer/token@npm:^0.3.0":
version: 0.3.0
resolution: "@tokenizer/token@npm:0.3.0"
checksum: 10c0/7ab9a822d4b5ff3f5bca7f7d14d46bdd8432528e028db4a52be7fbf90c7f495cc1af1324691dda2813c6af8dc4b8eb29de3107d4508165f9aa5b53e7d501f155
languageName: node
linkType: hard
"@types/json-schema@npm:^7.0.9":
version: 7.0.14
resolution: "@types/json-schema@npm:7.0.14"
checksum: 10c0/da68689ccd44cb93ca4c9a4af3b25c6091ecf45fb370d1ed0d0ac5b780e235bf0b9bdc1f7e28f19e6713b22567c3db11fefcbcc6d48ac6b356d035a8f9f4ea30
languageName: node
linkType: hard
"@types/minimist@npm:^1.2.0":
version: 1.2.4
resolution: "@types/minimist@npm:1.2.4"
checksum: 10c0/01403652c09de17b8c6d7d9959cb7a244deccf31e9e7a1a7011fba73fa2724c14fe935718e0fdc48dcd30403fd76a916cb991d4c0ddf229748ccc6c4920c3371
languageName: node
linkType: hard
"@types/node@npm:16.9.1":
version: 16.9.1
resolution: "@types/node@npm:16.9.1"
checksum: 10c0/17877153b2fe748e85dd85432c7d6776cfaced7fd69f1998d005812d4865ac02e192a3adde7869ba8f449550f0a80ea6e3369e449a07c587e71222c56478e7d4
languageName: node
linkType: hard
"@types/node@npm:22.10.5":
version: 22.10.5
resolution: "@types/node@npm:22.10.5"
dependencies:
undici-types: "npm:~6.20.0"
checksum: 10c0/6a0e7d1fe6a86ef6ee19c3c6af4c15542e61aea2f4cee655b6252efb356795f1f228bc8299921e82924e80ff8eca29b74d9dd0dd5cc1a90983f892f740b480df
languageName: node
linkType: hard
"@types/normalize-package-data@npm:^2.4.0":
version: 2.4.3
resolution: "@types/normalize-package-data@npm:2.4.3"
checksum: 10c0/9ad94568b53f65d0c7fffed61c74e4a7b8625b1ebbc549f1de25287c2d20e6bca9d9cdc5826e508c9d95e02a48ac69d0282121c300667071661f37090224416b
languageName: node
linkType: hard
"@types/semver@npm:^7.3.12":
version: 7.5.4
resolution: "@types/semver@npm:7.5.4"
checksum: 10c0/dee66a71d9f089c118be74b5937d4fef42864d68d9472a3f4f5399b9e3ad74d56a8e155020c846667b9ecf9de78fdb9ea55a53fff5067af28e06779b282b6c40
languageName: node
linkType: hard
"@typescript-eslint/eslint-plugin@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/eslint-plugin@npm:5.62.0"
dependencies:
"@eslint-community/regexpp": "npm:^4.4.0"
"@typescript-eslint/scope-manager": "npm:5.62.0"
"@typescript-eslint/type-utils": "npm:5.62.0"
"@typescript-eslint/utils": "npm:5.62.0"
debug: "npm:^4.3.4"
graphemer: "npm:^1.4.0"
ignore: "npm:^5.2.0"
natural-compare-lite: "npm:^1.4.0"
semver: "npm:^7.3.7"
tsutils: "npm:^3.21.0"
peerDependencies:
"@typescript-eslint/parser": ^5.0.0
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: 10c0/3f40cb6bab5a2833c3544e4621b9fdacd8ea53420cadc1c63fac3b89cdf5c62be1e6b7bcf56976dede5db4c43830de298ced3db60b5494a3b961ca1b4bff9f2a
languageName: node
linkType: hard
"@typescript-eslint/parser@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/parser@npm:5.62.0"
dependencies:
"@typescript-eslint/scope-manager": "npm:5.62.0"
"@typescript-eslint/types": "npm:5.62.0"
"@typescript-eslint/typescript-estree": "npm:5.62.0"
debug: "npm:^4.3.4"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: 10c0/315194b3bf39beb9bd16c190956c46beec64b8371e18d6bb72002108b250983eb1e186a01d34b77eb4045f4941acbb243b16155fbb46881105f65e37dc9e24d4
languageName: node
linkType: hard
"@typescript-eslint/scope-manager@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/scope-manager@npm:5.62.0"
dependencies:
"@typescript-eslint/types": "npm:5.62.0"
"@typescript-eslint/visitor-keys": "npm:5.62.0"
checksum: 10c0/861253235576c1c5c1772d23cdce1418c2da2618a479a7de4f6114a12a7ca853011a1e530525d0931c355a8fd237b9cd828fac560f85f9623e24054fd024726f
languageName: node
linkType: hard
"@typescript-eslint/type-utils@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/type-utils@npm:5.62.0"
dependencies:
"@typescript-eslint/typescript-estree": "npm:5.62.0"
"@typescript-eslint/utils": "npm:5.62.0"
debug: "npm:^4.3.4"
tsutils: "npm:^3.21.0"
peerDependencies:
eslint: "*"
peerDependenciesMeta:
typescript:
optional: true
checksum: 10c0/93112e34026069a48f0484b98caca1c89d9707842afe14e08e7390af51cdde87378df29d213d3bbd10a7cfe6f91b228031b56218515ce077bdb62ddea9d9f474
languageName: node
linkType: hard
"@typescript-eslint/types@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/types@npm:5.62.0"
checksum: 10c0/7febd3a7f0701c0b927e094f02e82d8ee2cada2b186fcb938bc2b94ff6fbad88237afc304cbaf33e82797078bbbb1baf91475f6400912f8b64c89be79bfa4ddf
languageName: node
linkType: hard
"@typescript-eslint/typescript-estree@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/typescript-estree@npm:5.62.0"
dependencies:
"@typescript-eslint/types": "npm:5.62.0"
"@typescript-eslint/visitor-keys": "npm:5.62.0"
debug: "npm:^4.3.4"
globby: "npm:^11.1.0"
is-glob: "npm:^4.0.3"
semver: "npm:^7.3.7"
tsutils: "npm:^3.21.0"
peerDependenciesMeta:
typescript:
optional: true
checksum: 10c0/d7984a3e9d56897b2481940ec803cb8e7ead03df8d9cfd9797350be82ff765dfcf3cfec04e7355e1779e948da8f02bc5e11719d07a596eb1cb995c48a95e38cf
languageName: node
linkType: hard
"@typescript-eslint/utils@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/utils@npm:5.62.0"
dependencies:
"@eslint-community/eslint-utils": "npm:^4.2.0"
"@types/json-schema": "npm:^7.0.9"
"@types/semver": "npm:^7.3.12"
"@typescript-eslint/scope-manager": "npm:5.62.0"
"@typescript-eslint/types": "npm:5.62.0"
"@typescript-eslint/typescript-estree": "npm:5.62.0"
eslint-scope: "npm:^5.1.1"
semver: "npm:^7.3.7"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
checksum: 10c0/f09b7d9952e4a205eb1ced31d7684dd55cee40bf8c2d78e923aa8a255318d97279825733902742c09d8690f37a50243f4c4d383ab16bd7aefaf9c4b438f785e1
languageName: node
linkType: hard
"@typescript-eslint/visitor-keys@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/visitor-keys@npm:5.62.0"
dependencies:
"@typescript-eslint/types": "npm:5.62.0"
eslint-visitor-keys: "npm:^3.3.0"
checksum: 10c0/7c3b8e4148e9b94d9b7162a596a1260d7a3efc4e65199693b8025c71c4652b8042501c0bc9f57654c1e2943c26da98c0f77884a746c6ae81389fcb0b513d995d
languageName: node
linkType: hard
"@ungap/structured-clone@npm:^1.2.0":
version: 1.2.0
resolution: "@ungap/structured-clone@npm:1.2.0"
checksum: 10c0/8209c937cb39119f44eb63cf90c0b73e7c754209a6411c707be08e50e29ee81356dca1a848a405c8bdeebfe2f5e4f831ad310ae1689eeef65e7445c090c6657d
languageName: node
linkType: hard
"JSONSelect@npm:*":
version: 0.4.0
resolution: "JSONSelect@npm:0.4.0"
checksum: 10c0/754f7fad0d6c6f193c67b59b0732e188cb5a48a4d39d25f501f3514c37cb66ef47e8b65bb3b7a7fcbbbda1c2b32bf2b2420d723897bc4135a9325ab1ffdcfeb8
languageName: node
linkType: hard
"abbrev@npm:^2.0.0":
version: 2.0.0
resolution: "abbrev@npm:2.0.0"
checksum: 10c0/f742a5a107473946f426c691c08daba61a1d15942616f300b5d32fd735be88fef5cba24201757b6c407fd564555fb48c751cfa33519b2605c8a7aadd22baf372
languageName: node
linkType: hard
"acorn-jsx@npm:^5.3.2":
version: 5.3.2
resolution: "acorn-jsx@npm:5.3.2"
peerDependencies: