-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pnp.cjs
executable file
·11894 lines (11828 loc) · 635 KB
/
.pnp.cjs
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
#!/usr/bin/env node
/* eslint-disable */
try {
Object.freeze({}).detectStrictMode = true;
} catch (error) {
throw new Error(`The whole PnP file got strict-mode-ified, which is known to break (Emscripten libraries aren't strict mode). This usually happens when the file goes through Babel.`);
}
function $$SETUP_STATE(hydrateRuntimeState, basePath) {
return hydrateRuntimeState(JSON.parse('{\
"__info": [\
"This file is automatically generated. Do not touch it, or risk",\
"your modifications being lost. We also recommend you not to read",\
"it either without using the @yarnpkg/pnp package, as the data layout",\
"is entirely unspecified and WILL change from a version to another."\
],\
"dependencyTreeRoots": [\
{\
"name": "berry",\
"reference": "workspace:."\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["berry", ["workspace:."]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@types/lodash", "npm:4.14.182"],\
["@types/node", "npm:18.0.1"],\
["@typescript-eslint/eslint-plugin", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:5.30.4"],\
["@typescript-eslint/parser", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:5.30.4"],\
["eslint", "npm:8.19.0"],\
["eslint-import-resolver-node", "npm:0.3.6"],\
["eslint-import-resolver-typescript", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:3.2.4"],\
["eslint-plugin-import", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:2.26.0"],\
["lodash", "npm:4.17.21"],\
["typescript", "patch:typescript@npm%3A4.7.4#~builtin<compat/typescript>::version=4.7.4&hash=7ad353"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@eslint/eslintrc", [\
["npm:1.3.0", {\
"packageLocation": "./.yarn/cache/@eslint-eslintrc-npm-1.3.0-1f3c51be25-a1e734ad31.zip/node_modules/@eslint/eslintrc/",\
"packageDependencies": [\
["@eslint/eslintrc", "npm:1.3.0"],\
["ajv", "npm:6.12.6"],\
["debug", "virtual:1f3c51be25fef20e854261431be23d317093b3b463e81e911f4f45a636ff582620db066c9d2a5922a428e07e10fe4788eee8196c796ce2c9bd49d22743fec207#npm:4.3.4"],\
["espree", "npm:9.3.2"],\
["globals", "npm:13.15.0"],\
["ignore", "npm:5.2.0"],\
["import-fresh", "npm:3.3.0"],\
["js-yaml", "npm:4.1.0"],\
["minimatch", "npm:3.1.2"],\
["strip-json-comments", "npm:3.1.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/config-array", [\
["npm:0.9.5", {\
"packageLocation": "./.yarn/cache/@humanwhocodes-config-array-npm-0.9.5-030a025eae-8ba6281bc0.zip/node_modules/@humanwhocodes/config-array/",\
"packageDependencies": [\
["@humanwhocodes/config-array", "npm:0.9.5"],\
["@humanwhocodes/object-schema", "npm:1.2.1"],\
["debug", "virtual:1f3c51be25fef20e854261431be23d317093b3b463e81e911f4f45a636ff582620db066c9d2a5922a428e07e10fe4788eee8196c796ce2c9bd49d22743fec207#npm:4.3.4"],\
["minimatch", "npm:3.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/object-schema", [\
["npm:1.2.1", {\
"packageLocation": "./.yarn/cache/@humanwhocodes-object-schema-npm-1.2.1-eb622b5d0e-a824a1ec31.zip/node_modules/@humanwhocodes/object-schema/",\
"packageDependencies": [\
["@humanwhocodes/object-schema", "npm:1.2.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nodelib/fs.scandir", [\
["npm:2.1.5", {\
"packageLocation": "./.yarn/cache/@nodelib-fs.scandir-npm-2.1.5-89c67370dd-a970d595bd.zip/node_modules/@nodelib/fs.scandir/",\
"packageDependencies": [\
["@nodelib/fs.scandir", "npm:2.1.5"],\
["@nodelib/fs.stat", "npm:2.0.5"],\
["run-parallel", "npm:1.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nodelib/fs.stat", [\
["npm:2.0.5", {\
"packageLocation": "./.yarn/cache/@nodelib-fs.stat-npm-2.0.5-01f4dd3030-012480b5ca.zip/node_modules/@nodelib/fs.stat/",\
"packageDependencies": [\
["@nodelib/fs.stat", "npm:2.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nodelib/fs.walk", [\
["npm:1.2.8", {\
"packageLocation": "./.yarn/cache/@nodelib-fs.walk-npm-1.2.8-b4a89da548-190c643f15.zip/node_modules/@nodelib/fs.walk/",\
"packageDependencies": [\
["@nodelib/fs.walk", "npm:1.2.8"],\
["@nodelib/fs.scandir", "npm:2.1.5"],\
["fastq", "npm:1.13.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@pkgr/utils", [\
["npm:2.2.0", {\
"packageLocation": "./.yarn/cache/@pkgr-utils-npm-2.2.0-cc51e1617c-0ae76a6b92.zip/node_modules/@pkgr/utils/",\
"packageDependencies": [\
["@pkgr/utils", "npm:2.2.0"],\
["cross-spawn", "npm:7.0.3"],\
["is-glob", "npm:4.0.3"],\
["open", "npm:8.4.0"],\
["picocolors", "npm:1.0.0"],\
["tiny-glob", "npm:0.2.9"],\
["tslib", "npm:2.4.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/json-schema", [\
["npm:7.0.11", {\
"packageLocation": "./.yarn/cache/@types-json-schema-npm-7.0.11-79462ae5ca-527bddfe62.zip/node_modules/@types/json-schema/",\
"packageDependencies": [\
["@types/json-schema", "npm:7.0.11"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/json5", [\
["npm:0.0.29", {\
"packageLocation": "./.yarn/cache/@types-json5-npm-0.0.29-f63a7916bd-e60b153664.zip/node_modules/@types/json5/",\
"packageDependencies": [\
["@types/json5", "npm:0.0.29"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/lodash", [\
["npm:4.14.182", {\
"packageLocation": "./.yarn/cache/@types-lodash-npm-4.14.182-1073aac722-7dd137aa9d.zip/node_modules/@types/lodash/",\
"packageDependencies": [\
["@types/lodash", "npm:4.14.182"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/node", [\
["npm:18.0.1", {\
"packageLocation": "./.yarn/cache/@types-node-npm-18.0.1-35e22b3e26-be14b251c5.zip/node_modules/@types/node/",\
"packageDependencies": [\
["@types/node", "npm:18.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/eslint-plugin", [\
["npm:5.30.4", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-eslint-plugin-npm-5.30.4-08f53c0ede-9b9290448b.zip/node_modules/@typescript-eslint/eslint-plugin/",\
"packageDependencies": [\
["@typescript-eslint/eslint-plugin", "npm:5.30.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:5.30.4", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-eslint-plugin-virtual-cc9be5a5cf/0/cache/@typescript-eslint-eslint-plugin-npm-5.30.4-08f53c0ede-9b9290448b.zip/node_modules/@typescript-eslint/eslint-plugin/",\
"packageDependencies": [\
["@typescript-eslint/eslint-plugin", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:5.30.4"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@types/typescript-eslint__parser", null],\
["@typescript-eslint/parser", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:5.30.4"],\
["@typescript-eslint/scope-manager", "npm:5.30.4"],\
["@typescript-eslint/type-utils", "virtual:cc9be5a5cf9b3a30f84b507da2cf37af0e98350ba72a373934e759d7598b099bcb60d1ba9c854210e3261faafe06910a5a2047934baca1ac29244d08bff390bc#npm:5.30.4"],\
["@typescript-eslint/utils", "virtual:cc9be5a5cf9b3a30f84b507da2cf37af0e98350ba72a373934e759d7598b099bcb60d1ba9c854210e3261faafe06910a5a2047934baca1ac29244d08bff390bc#npm:5.30.4"],\
["debug", "virtual:1f3c51be25fef20e854261431be23d317093b3b463e81e911f4f45a636ff582620db066c9d2a5922a428e07e10fe4788eee8196c796ce2c9bd49d22743fec207#npm:4.3.4"],\
["eslint", "npm:8.19.0"],\
["functional-red-black-tree", "npm:1.0.1"],\
["ignore", "npm:5.2.0"],\
["regexpp", "npm:3.2.0"],\
["semver", "npm:7.3.7"],\
["tsutils", "virtual:cc9be5a5cf9b3a30f84b507da2cf37af0e98350ba72a373934e759d7598b099bcb60d1ba9c854210e3261faafe06910a5a2047934baca1ac29244d08bff390bc#npm:3.21.0"],\
["typescript", "patch:typescript@npm%3A4.7.4#~builtin<compat/typescript>::version=4.7.4&hash=7ad353"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript-eslint__parser",\
"@types/typescript",\
"@typescript-eslint/parser",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/parser", [\
["npm:5.30.4", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-parser-npm-5.30.4-84cccd38a0-e13ffd0cbb.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "npm:5.30.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:5.30.4", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-203d4f6e75/0/cache/@typescript-eslint-parser-npm-5.30.4-84cccd38a0-e13ffd0cbb.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:5.30.4"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/scope-manager", "npm:5.30.4"],\
["@typescript-eslint/types", "npm:5.30.4"],\
["@typescript-eslint/typescript-estree", "virtual:203d4f6e75e9b76434ec158a19a87db55cb56c3b7f2e5019a4a74df2f919c957f173796af6bb75410a9e08164ceb051f4d8bb0a63dd92aa4f3073ac50d965d1e#npm:5.30.4"],\
["debug", "virtual:1f3c51be25fef20e854261431be23d317093b3b463e81e911f4f45a636ff582620db066c9d2a5922a428e07e10fe4788eee8196c796ce2c9bd49d22743fec207#npm:4.3.4"],\
["eslint", "npm:8.19.0"],\
["typescript", "patch:typescript@npm%3A4.7.4#~builtin<compat/typescript>::version=4.7.4&hash=7ad353"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/scope-manager", [\
["npm:5.30.4", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-scope-manager-npm-5.30.4-8b6cf23765-3da442dc11.zip/node_modules/@typescript-eslint/scope-manager/",\
"packageDependencies": [\
["@typescript-eslint/scope-manager", "npm:5.30.4"],\
["@typescript-eslint/types", "npm:5.30.4"],\
["@typescript-eslint/visitor-keys", "npm:5.30.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/type-utils", [\
["npm:5.30.4", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-type-utils-npm-5.30.4-f2696bf1f1-552eb1a5b1.zip/node_modules/@typescript-eslint/type-utils/",\
"packageDependencies": [\
["@typescript-eslint/type-utils", "npm:5.30.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:cc9be5a5cf9b3a30f84b507da2cf37af0e98350ba72a373934e759d7598b099bcb60d1ba9c854210e3261faafe06910a5a2047934baca1ac29244d08bff390bc#npm:5.30.4", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-type-utils-virtual-5bfa6cbeff/0/cache/@typescript-eslint-type-utils-npm-5.30.4-f2696bf1f1-552eb1a5b1.zip/node_modules/@typescript-eslint/type-utils/",\
"packageDependencies": [\
["@typescript-eslint/type-utils", "virtual:cc9be5a5cf9b3a30f84b507da2cf37af0e98350ba72a373934e759d7598b099bcb60d1ba9c854210e3261faafe06910a5a2047934baca1ac29244d08bff390bc#npm:5.30.4"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/utils", "virtual:cc9be5a5cf9b3a30f84b507da2cf37af0e98350ba72a373934e759d7598b099bcb60d1ba9c854210e3261faafe06910a5a2047934baca1ac29244d08bff390bc#npm:5.30.4"],\
["debug", "virtual:1f3c51be25fef20e854261431be23d317093b3b463e81e911f4f45a636ff582620db066c9d2a5922a428e07e10fe4788eee8196c796ce2c9bd49d22743fec207#npm:4.3.4"],\
["eslint", "npm:8.19.0"],\
["tsutils", "virtual:cc9be5a5cf9b3a30f84b507da2cf37af0e98350ba72a373934e759d7598b099bcb60d1ba9c854210e3261faafe06910a5a2047934baca1ac29244d08bff390bc#npm:3.21.0"],\
["typescript", "patch:typescript@npm%3A4.7.4#~builtin<compat/typescript>::version=4.7.4&hash=7ad353"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/types", [\
["npm:5.30.4", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-types-npm-5.30.4-c748bd84f1-06181c3355.zip/node_modules/@typescript-eslint/types/",\
"packageDependencies": [\
["@typescript-eslint/types", "npm:5.30.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/typescript-estree", [\
["npm:5.30.4", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-typescript-estree-npm-5.30.4-7c97ea55f3-1aaa414993.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "npm:5.30.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:203d4f6e75e9b76434ec158a19a87db55cb56c3b7f2e5019a4a74df2f919c957f173796af6bb75410a9e08164ceb051f4d8bb0a63dd92aa4f3073ac50d965d1e#npm:5.30.4", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-6c1517314a/0/cache/@typescript-eslint-typescript-estree-npm-5.30.4-7c97ea55f3-1aaa414993.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "virtual:203d4f6e75e9b76434ec158a19a87db55cb56c3b7f2e5019a4a74df2f919c957f173796af6bb75410a9e08164ceb051f4d8bb0a63dd92aa4f3073ac50d965d1e#npm:5.30.4"],\
["@types/typescript", null],\
["@typescript-eslint/types", "npm:5.30.4"],\
["@typescript-eslint/visitor-keys", "npm:5.30.4"],\
["debug", "virtual:1f3c51be25fef20e854261431be23d317093b3b463e81e911f4f45a636ff582620db066c9d2a5922a428e07e10fe4788eee8196c796ce2c9bd49d22743fec207#npm:4.3.4"],\
["globby", "npm:11.1.0"],\
["is-glob", "npm:4.0.3"],\
["semver", "npm:7.3.7"],\
["tsutils", "virtual:cc9be5a5cf9b3a30f84b507da2cf37af0e98350ba72a373934e759d7598b099bcb60d1ba9c854210e3261faafe06910a5a2047934baca1ac29244d08bff390bc#npm:3.21.0"],\
["typescript", "patch:typescript@npm%3A4.7.4#~builtin<compat/typescript>::version=4.7.4&hash=7ad353"]\
],\
"packagePeers": [\
"@types/typescript",\
"typescript"\
],\
"linkType": "HARD"\
}],\
["virtual:e2d2fac9541ca6358601d3c9ab97830e415a6b1ec6ed9de5aafaffbaf80c4aeee6f01d7fbd271121d4e080e8376b9868f5a274b6b52e20c7ff46d700290e1123#npm:5.30.4", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-fb12cf45f6/0/cache/@typescript-eslint-typescript-estree-npm-5.30.4-7c97ea55f3-1aaa414993.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "virtual:e2d2fac9541ca6358601d3c9ab97830e415a6b1ec6ed9de5aafaffbaf80c4aeee6f01d7fbd271121d4e080e8376b9868f5a274b6b52e20c7ff46d700290e1123#npm:5.30.4"],\
["@types/typescript", null],\
["@typescript-eslint/types", "npm:5.30.4"],\
["@typescript-eslint/visitor-keys", "npm:5.30.4"],\
["debug", "virtual:1f3c51be25fef20e854261431be23d317093b3b463e81e911f4f45a636ff582620db066c9d2a5922a428e07e10fe4788eee8196c796ce2c9bd49d22743fec207#npm:4.3.4"],\
["globby", "npm:11.1.0"],\
["is-glob", "npm:4.0.3"],\
["semver", "npm:7.3.7"],\
["tsutils", "virtual:fb12cf45f6880420ea4f6a792ce966709f5c6f45f51fc9cabd42876a0788161dfa79502984fd7cc44ff80cf3f4948f28cb3a292cca7551fcc574601510dfbcd7#npm:3.21.0"],\
["typescript", null]\
],\
"packagePeers": [\
"@types/typescript",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/utils", [\
["npm:5.30.4", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-utils-npm-5.30.4-6bd4c125c1-0f680d3667.zip/node_modules/@typescript-eslint/utils/",\
"packageDependencies": [\
["@typescript-eslint/utils", "npm:5.30.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:cc9be5a5cf9b3a30f84b507da2cf37af0e98350ba72a373934e759d7598b099bcb60d1ba9c854210e3261faafe06910a5a2047934baca1ac29244d08bff390bc#npm:5.30.4", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-utils-virtual-e2d2fac954/0/cache/@typescript-eslint-utils-npm-5.30.4-6bd4c125c1-0f680d3667.zip/node_modules/@typescript-eslint/utils/",\
"packageDependencies": [\
["@typescript-eslint/utils", "virtual:cc9be5a5cf9b3a30f84b507da2cf37af0e98350ba72a373934e759d7598b099bcb60d1ba9c854210e3261faafe06910a5a2047934baca1ac29244d08bff390bc#npm:5.30.4"],\
["@types/eslint", null],\
["@types/json-schema", "npm:7.0.11"],\
["@typescript-eslint/scope-manager", "npm:5.30.4"],\
["@typescript-eslint/types", "npm:5.30.4"],\
["@typescript-eslint/typescript-estree", "virtual:e2d2fac9541ca6358601d3c9ab97830e415a6b1ec6ed9de5aafaffbaf80c4aeee6f01d7fbd271121d4e080e8376b9868f5a274b6b52e20c7ff46d700290e1123#npm:5.30.4"],\
["eslint", "npm:8.19.0"],\
["eslint-scope", "npm:5.1.1"],\
["eslint-utils", "virtual:147f1e0c86a84d48481240b8e403f896c0a34824f0fc1ec5f4df888495cb5f88fc2038bd76184debe0641b1891aeae2a4c3b5d4709f3d70958d507af9ee17e38#npm:3.0.0"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/visitor-keys", [\
["npm:5.30.4", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-visitor-keys-npm-5.30.4-19f4a2caf4-ec39680a89.zip/node_modules/@typescript-eslint/visitor-keys/",\
"packageDependencies": [\
["@typescript-eslint/visitor-keys", "npm:5.30.4"],\
["@typescript-eslint/types", "npm:5.30.4"],\
["eslint-visitor-keys", "npm:3.3.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@unts/get-tsconfig", [\
["npm:4.1.1", {\
"packageLocation": "./.yarn/cache/@unts-get-tsconfig-npm-4.1.1-cd923b7adf-dff677518c.zip/node_modules/@unts/get-tsconfig/",\
"packageDependencies": [\
["@unts/get-tsconfig", "npm:4.1.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["acorn", [\
["npm:8.7.1", {\
"packageLocation": "./.yarn/cache/acorn-npm-8.7.1-7c7a019990-aca0aabf98.zip/node_modules/acorn/",\
"packageDependencies": [\
["acorn", "npm:8.7.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["acorn-jsx", [\
["npm:5.3.2", {\
"packageLocation": "./.yarn/cache/acorn-jsx-npm-5.3.2-d7594599ea-c3d3b2a89c.zip/node_modules/acorn-jsx/",\
"packageDependencies": [\
["acorn-jsx", "npm:5.3.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:c70fa2a91dcbd99b022aeff42b1b7671b1079fb9945248dc00dedd7520f879dc07058703f4626782de94f97692f30d5b18138d744c1e1ed1913a7610755d40e3#npm:5.3.2", {\
"packageLocation": "./.yarn/__virtual__/acorn-jsx-virtual-068582d542/0/cache/acorn-jsx-npm-5.3.2-d7594599ea-c3d3b2a89c.zip/node_modules/acorn-jsx/",\
"packageDependencies": [\
["acorn-jsx", "virtual:c70fa2a91dcbd99b022aeff42b1b7671b1079fb9945248dc00dedd7520f879dc07058703f4626782de94f97692f30d5b18138d744c1e1ed1913a7610755d40e3#npm:5.3.2"],\
["@types/acorn", null],\
["acorn", "npm:8.7.1"]\
],\
"packagePeers": [\
"@types/acorn",\
"acorn"\
],\
"linkType": "HARD"\
}]\
]],\
["ajv", [\
["npm:6.12.6", {\
"packageLocation": "./.yarn/cache/ajv-npm-6.12.6-4b5105e2b2-874972efe5.zip/node_modules/ajv/",\
"packageDependencies": [\
["ajv", "npm:6.12.6"],\
["fast-deep-equal", "npm:3.1.3"],\
["fast-json-stable-stringify", "npm:2.1.0"],\
["json-schema-traverse", "npm:0.4.1"],\
["uri-js", "npm:4.4.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["ansi-regex", [\
["npm:5.0.1", {\
"packageLocation": "./.yarn/cache/ansi-regex-npm-5.0.1-c963a48615-2aa4bb54ca.zip/node_modules/ansi-regex/",\
"packageDependencies": [\
["ansi-regex", "npm:5.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["ansi-styles", [\
["npm:4.3.0", {\
"packageLocation": "./.yarn/cache/ansi-styles-npm-4.3.0-245c7d42c7-513b44c3b2.zip/node_modules/ansi-styles/",\
"packageDependencies": [\
["ansi-styles", "npm:4.3.0"],\
["color-convert", "npm:2.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["argparse", [\
["npm:2.0.1", {\
"packageLocation": "./.yarn/cache/argparse-npm-2.0.1-faff7999e6-83644b5649.zip/node_modules/argparse/",\
"packageDependencies": [\
["argparse", "npm:2.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["array-includes", [\
["npm:3.1.5", {\
"packageLocation": "./.yarn/cache/array-includes-npm-3.1.5-6b8e152f4f-f6f24d8341.zip/node_modules/array-includes/",\
"packageDependencies": [\
["array-includes", "npm:3.1.5"],\
["call-bind", "npm:1.0.2"],\
["define-properties", "npm:1.1.4"],\
["es-abstract", "npm:1.20.1"],\
["get-intrinsic", "npm:1.1.2"],\
["is-string", "npm:1.0.7"]\
],\
"linkType": "HARD"\
}]\
]],\
["array-union", [\
["npm:2.1.0", {\
"packageLocation": "./.yarn/cache/array-union-npm-2.1.0-4e4852b221-5bee12395c.zip/node_modules/array-union/",\
"packageDependencies": [\
["array-union", "npm:2.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["array.prototype.flat", [\
["npm:1.3.0", {\
"packageLocation": "./.yarn/cache/array.prototype.flat-npm-1.3.0-6c5c4292bd-2a652b3e8d.zip/node_modules/array.prototype.flat/",\
"packageDependencies": [\
["array.prototype.flat", "npm:1.3.0"],\
["call-bind", "npm:1.0.2"],\
["define-properties", "npm:1.1.4"],\
["es-abstract", "npm:1.20.1"],\
["es-shim-unscopables", "npm:1.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["balanced-match", [\
["npm:1.0.2", {\
"packageLocation": "./.yarn/cache/balanced-match-npm-1.0.2-a53c126459-9706c088a2.zip/node_modules/balanced-match/",\
"packageDependencies": [\
["balanced-match", "npm:1.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["berry", [\
["workspace:.", {\
"packageLocation": "./",\
"packageDependencies": [\
["berry", "workspace:."],\
["@types/lodash", "npm:4.14.182"],\
["@types/node", "npm:18.0.1"],\
["@typescript-eslint/eslint-plugin", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:5.30.4"],\
["@typescript-eslint/parser", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:5.30.4"],\
["eslint", "npm:8.19.0"],\
["eslint-import-resolver-node", "npm:0.3.6"],\
["eslint-import-resolver-typescript", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:3.2.4"],\
["eslint-plugin-import", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:2.26.0"],\
["lodash", "npm:4.17.21"],\
["typescript", "patch:typescript@npm%3A4.7.4#~builtin<compat/typescript>::version=4.7.4&hash=7ad353"]\
],\
"linkType": "SOFT"\
}]\
]],\
["brace-expansion", [\
["npm:1.1.11", {\
"packageLocation": "./.yarn/cache/brace-expansion-npm-1.1.11-fb95eb05ad-faf34a7bb0.zip/node_modules/brace-expansion/",\
"packageDependencies": [\
["brace-expansion", "npm:1.1.11"],\
["balanced-match", "npm:1.0.2"],\
["concat-map", "npm:0.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["braces", [\
["npm:3.0.2", {\
"packageLocation": "./.yarn/cache/braces-npm-3.0.2-782240b28a-e2a8e769a8.zip/node_modules/braces/",\
"packageDependencies": [\
["braces", "npm:3.0.2"],\
["fill-range", "npm:7.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["call-bind", [\
["npm:1.0.2", {\
"packageLocation": "./.yarn/cache/call-bind-npm-1.0.2-c957124861-f8e31de9d1.zip/node_modules/call-bind/",\
"packageDependencies": [\
["call-bind", "npm:1.0.2"],\
["function-bind", "npm:1.1.1"],\
["get-intrinsic", "npm:1.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["callsites", [\
["npm:3.1.0", {\
"packageLocation": "./.yarn/cache/callsites-npm-3.1.0-268f989910-072d17b6ab.zip/node_modules/callsites/",\
"packageDependencies": [\
["callsites", "npm:3.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["chalk", [\
["npm:4.1.2", {\
"packageLocation": "./.yarn/cache/chalk-npm-4.1.2-ba8b67ab80-fe75c9d5c7.zip/node_modules/chalk/",\
"packageDependencies": [\
["chalk", "npm:4.1.2"],\
["ansi-styles", "npm:4.3.0"],\
["supports-color", "npm:7.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["color-convert", [\
["npm:2.0.1", {\
"packageLocation": "./.yarn/cache/color-convert-npm-2.0.1-79730e935b-79e6bdb9fd.zip/node_modules/color-convert/",\
"packageDependencies": [\
["color-convert", "npm:2.0.1"],\
["color-name", "npm:1.1.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["color-name", [\
["npm:1.1.4", {\
"packageLocation": "./.yarn/cache/color-name-npm-1.1.4-025792b0ea-b044585952.zip/node_modules/color-name/",\
"packageDependencies": [\
["color-name", "npm:1.1.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["concat-map", [\
["npm:0.0.1", {\
"packageLocation": "./.yarn/cache/concat-map-npm-0.0.1-85a921b7ee-902a9f5d89.zip/node_modules/concat-map/",\
"packageDependencies": [\
["concat-map", "npm:0.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["cross-spawn", [\
["npm:7.0.3", {\
"packageLocation": "./.yarn/cache/cross-spawn-npm-7.0.3-e4ff3e65b3-671cc7c728.zip/node_modules/cross-spawn/",\
"packageDependencies": [\
["cross-spawn", "npm:7.0.3"],\
["path-key", "npm:3.1.1"],\
["shebang-command", "npm:2.0.0"],\
["which", "npm:2.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["debug", [\
["npm:2.6.9", {\
"packageLocation": "./.yarn/cache/debug-npm-2.6.9-7d4cb597dc-d2f51589ca.zip/node_modules/debug/",\
"packageDependencies": [\
["debug", "npm:2.6.9"]\
],\
"linkType": "SOFT"\
}],\
["npm:3.2.7", {\
"packageLocation": "./.yarn/cache/debug-npm-3.2.7-754e818c7a-b3d8c59407.zip/node_modules/debug/",\
"packageDependencies": [\
["debug", "npm:3.2.7"]\
],\
"linkType": "SOFT"\
}],\
["npm:4.3.4", {\
"packageLocation": "./.yarn/cache/debug-npm-4.3.4-4513954577-3dbad3f94e.zip/node_modules/debug/",\
"packageDependencies": [\
["debug", "npm:4.3.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:1f3c51be25fef20e854261431be23d317093b3b463e81e911f4f45a636ff582620db066c9d2a5922a428e07e10fe4788eee8196c796ce2c9bd49d22743fec207#npm:4.3.4", {\
"packageLocation": "./.yarn/__virtual__/debug-virtual-6891af4fab/0/cache/debug-npm-4.3.4-4513954577-3dbad3f94e.zip/node_modules/debug/",\
"packageDependencies": [\
["debug", "virtual:1f3c51be25fef20e854261431be23d317093b3b463e81e911f4f45a636ff582620db066c9d2a5922a428e07e10fe4788eee8196c796ce2c9bd49d22743fec207#npm:4.3.4"],\
["@types/supports-color", null],\
["ms", "npm:2.1.2"],\
["supports-color", null]\
],\
"packagePeers": [\
"@types/supports-color",\
"supports-color"\
],\
"linkType": "HARD"\
}],\
["virtual:7e9e065bcc54d7d6f8aba584b17a8521f07018c0953fd2c69a68b9d08297d30572811a6d82ffdbdff8e6335cf1ec2ff22dad407588252ecd2b30fd1a1c32e380#npm:2.6.9", {\
"packageLocation": "./.yarn/__virtual__/debug-virtual-e4e0642544/0/cache/debug-npm-2.6.9-7d4cb597dc-d2f51589ca.zip/node_modules/debug/",\
"packageDependencies": [\
["debug", "virtual:7e9e065bcc54d7d6f8aba584b17a8521f07018c0953fd2c69a68b9d08297d30572811a6d82ffdbdff8e6335cf1ec2ff22dad407588252ecd2b30fd1a1c32e380#npm:2.6.9"],\
["@types/supports-color", null],\
["ms", "npm:2.0.0"],\
["supports-color", null]\
],\
"packagePeers": [\
"@types/supports-color",\
"supports-color"\
],\
"linkType": "HARD"\
}],\
["virtual:d9426786c635bc4b52511d6cc4b56156f50d780a698c0e20fc6caf10d3be51cbf176e79cff882f4d42a23ff4d0f89fe94222849578214e7fbae0f2754c82af02#npm:3.2.7", {\
"packageLocation": "./.yarn/__virtual__/debug-virtual-b810fb6338/0/cache/debug-npm-3.2.7-754e818c7a-b3d8c59407.zip/node_modules/debug/",\
"packageDependencies": [\
["debug", "virtual:d9426786c635bc4b52511d6cc4b56156f50d780a698c0e20fc6caf10d3be51cbf176e79cff882f4d42a23ff4d0f89fe94222849578214e7fbae0f2754c82af02#npm:3.2.7"],\
["@types/supports-color", null],\
["ms", "npm:2.1.3"],\
["supports-color", null]\
],\
"packagePeers": [\
"@types/supports-color",\
"supports-color"\
],\
"linkType": "HARD"\
}]\
]],\
["deep-is", [\
["npm:0.1.4", {\
"packageLocation": "./.yarn/cache/deep-is-npm-0.1.4-88938b5a67-edb65dd0d7.zip/node_modules/deep-is/",\
"packageDependencies": [\
["deep-is", "npm:0.1.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["define-lazy-prop", [\
["npm:2.0.0", {\
"packageLocation": "./.yarn/cache/define-lazy-prop-npm-2.0.0-bba0cd91a7-0115fdb065.zip/node_modules/define-lazy-prop/",\
"packageDependencies": [\
["define-lazy-prop", "npm:2.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["define-properties", [\
["npm:1.1.4", {\
"packageLocation": "./.yarn/cache/define-properties-npm-1.1.4-85ee575655-ce0aef3f9e.zip/node_modules/define-properties/",\
"packageDependencies": [\
["define-properties", "npm:1.1.4"],\
["has-property-descriptors", "npm:1.0.0"],\
["object-keys", "npm:1.1.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["dir-glob", [\
["npm:3.0.1", {\
"packageLocation": "./.yarn/cache/dir-glob-npm-3.0.1-1aea628b1b-fa05e18324.zip/node_modules/dir-glob/",\
"packageDependencies": [\
["dir-glob", "npm:3.0.1"],\
["path-type", "npm:4.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["doctrine", [\
["npm:2.1.0", {\
"packageLocation": "./.yarn/cache/doctrine-npm-2.1.0-ac15d049b7-a45e277f7f.zip/node_modules/doctrine/",\
"packageDependencies": [\
["doctrine", "npm:2.1.0"],\
["esutils", "npm:2.0.3"]\
],\
"linkType": "HARD"\
}],\
["npm:3.0.0", {\
"packageLocation": "./.yarn/cache/doctrine-npm-3.0.0-c6f1615f04-fd7673ca77.zip/node_modules/doctrine/",\
"packageDependencies": [\
["doctrine", "npm:3.0.0"],\
["esutils", "npm:2.0.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["enhanced-resolve", [\
["npm:5.10.0", {\
"packageLocation": "./.yarn/cache/enhanced-resolve-npm-5.10.0-7941304306-0bb9830704.zip/node_modules/enhanced-resolve/",\
"packageDependencies": [\
["enhanced-resolve", "npm:5.10.0"],\
["graceful-fs", "npm:4.2.10"],\
["tapable", "npm:2.2.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["es-abstract", [\
["npm:1.20.1", {\
"packageLocation": "./.yarn/cache/es-abstract-npm-1.20.1-83d41a4d88-28da27ae0e.zip/node_modules/es-abstract/",\
"packageDependencies": [\
["es-abstract", "npm:1.20.1"],\
["call-bind", "npm:1.0.2"],\
["es-to-primitive", "npm:1.2.1"],\
["function-bind", "npm:1.1.1"],\
["function.prototype.name", "npm:1.1.5"],\
["get-intrinsic", "npm:1.1.2"],\
["get-symbol-description", "npm:1.0.0"],\
["has", "npm:1.0.3"],\
["has-property-descriptors", "npm:1.0.0"],\
["has-symbols", "npm:1.0.3"],\
["internal-slot", "npm:1.0.3"],\
["is-callable", "npm:1.2.4"],\
["is-negative-zero", "npm:2.0.2"],\
["is-regex", "npm:1.1.4"],\
["is-shared-array-buffer", "npm:1.0.2"],\
["is-string", "npm:1.0.7"],\
["is-weakref", "npm:1.0.2"],\
["object-inspect", "npm:1.12.2"],\
["object-keys", "npm:1.1.1"],\
["object.assign", "npm:4.1.2"],\
["regexp.prototype.flags", "npm:1.4.3"],\
["string.prototype.trimend", "npm:1.0.5"],\
["string.prototype.trimstart", "npm:1.0.5"],\
["unbox-primitive", "npm:1.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["es-shim-unscopables", [\
["npm:1.0.0", {\
"packageLocation": "./.yarn/cache/es-shim-unscopables-npm-1.0.0-06186593f1-83e95cadbb.zip/node_modules/es-shim-unscopables/",\
"packageDependencies": [\
["es-shim-unscopables", "npm:1.0.0"],\
["has", "npm:1.0.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["es-to-primitive", [\
["npm:1.2.1", {\
"packageLocation": "./.yarn/cache/es-to-primitive-npm-1.2.1-b7a7eac6c5-4ead6671a2.zip/node_modules/es-to-primitive/",\
"packageDependencies": [\
["es-to-primitive", "npm:1.2.1"],\
["is-callable", "npm:1.2.4"],\
["is-date-object", "npm:1.0.5"],\
["is-symbol", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["escape-string-regexp", [\
["npm:4.0.0", {\
"packageLocation": "./.yarn/cache/escape-string-regexp-npm-4.0.0-4b531d8d59-98b48897d9.zip/node_modules/escape-string-regexp/",\
"packageDependencies": [\
["escape-string-regexp", "npm:4.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["eslint", [\
["npm:8.19.0", {\
"packageLocation": "./.yarn/cache/eslint-npm-8.19.0-147f1e0c86-0bc9df1a3a.zip/node_modules/eslint/",\
"packageDependencies": [\
["eslint", "npm:8.19.0"],\
["@eslint/eslintrc", "npm:1.3.0"],\
["@humanwhocodes/config-array", "npm:0.9.5"],\
["ajv", "npm:6.12.6"],\
["chalk", "npm:4.1.2"],\
["cross-spawn", "npm:7.0.3"],\
["debug", "virtual:1f3c51be25fef20e854261431be23d317093b3b463e81e911f4f45a636ff582620db066c9d2a5922a428e07e10fe4788eee8196c796ce2c9bd49d22743fec207#npm:4.3.4"],\
["doctrine", "npm:3.0.0"],\
["escape-string-regexp", "npm:4.0.0"],\
["eslint-scope", "npm:7.1.1"],\
["eslint-utils", "virtual:147f1e0c86a84d48481240b8e403f896c0a34824f0fc1ec5f4df888495cb5f88fc2038bd76184debe0641b1891aeae2a4c3b5d4709f3d70958d507af9ee17e38#npm:3.0.0"],\
["eslint-visitor-keys", "npm:3.3.0"],\
["espree", "npm:9.3.2"],\
["esquery", "npm:1.4.0"],\
["esutils", "npm:2.0.3"],\
["fast-deep-equal", "npm:3.1.3"],\
["file-entry-cache", "npm:6.0.1"],\
["functional-red-black-tree", "npm:1.0.1"],\
["glob-parent", "npm:6.0.2"],\
["globals", "npm:13.15.0"],\
["ignore", "npm:5.2.0"],\
["import-fresh", "npm:3.3.0"],\
["imurmurhash", "npm:0.1.4"],\
["is-glob", "npm:4.0.3"],\
["js-yaml", "npm:4.1.0"],\
["json-stable-stringify-without-jsonify", "npm:1.0.1"],\
["levn", "npm:0.4.1"],\
["lodash.merge", "npm:4.6.2"],\
["minimatch", "npm:3.1.2"],\
["natural-compare", "npm:1.4.0"],\
["optionator", "npm:0.9.1"],\
["regexpp", "npm:3.2.0"],\
["strip-ansi", "npm:6.0.1"],\
["strip-json-comments", "npm:3.1.1"],\
["text-table", "npm:0.2.0"],\
["v8-compile-cache", "npm:2.3.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["eslint-import-resolver-node", [\
["npm:0.3.6", {\
"packageLocation": "./.yarn/cache/eslint-import-resolver-node-npm-0.3.6-d9426786c6-6266733af1.zip/node_modules/eslint-import-resolver-node/",\
"packageDependencies": [\
["eslint-import-resolver-node", "npm:0.3.6"],\
["debug", "virtual:d9426786c635bc4b52511d6cc4b56156f50d780a698c0e20fc6caf10d3be51cbf176e79cff882f4d42a23ff4d0f89fe94222849578214e7fbae0f2754c82af02#npm:3.2.7"],\
["resolve", "patch:resolve@npm%3A1.22.1#~builtin<compat/resolve>::version=1.22.1&hash=07638b"]\
],\
"linkType": "HARD"\
}]\
]],\
["eslint-import-resolver-typescript", [\
["npm:3.2.4", {\
"packageLocation": "./.yarn/cache/eslint-import-resolver-typescript-npm-3.2.4-6926af644b-3417dabb0e.zip/node_modules/eslint-import-resolver-typescript/",\
"packageDependencies": [\
["eslint-import-resolver-typescript", "npm:3.2.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:3.2.4", {\
"packageLocation": "./.yarn/__virtual__/eslint-import-resolver-typescript-virtual-e8d0dfa104/0/cache/eslint-import-resolver-typescript-npm-3.2.4-6926af644b-3417dabb0e.zip/node_modules/eslint-import-resolver-typescript/",\
"packageDependencies": [\
["eslint-import-resolver-typescript", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:3.2.4"],\
["@types/eslint", null],\
["@types/eslint-plugin-import", null],\
["debug", "virtual:1f3c51be25fef20e854261431be23d317093b3b463e81e911f4f45a636ff582620db066c9d2a5922a428e07e10fe4788eee8196c796ce2c9bd49d22743fec207#npm:4.3.4"],\
["enhanced-resolve", "npm:5.10.0"],\
["eslint", "npm:8.19.0"],\
["eslint-plugin-import", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:2.26.0"],\
["get-tsconfig", [\
"@unts/get-tsconfig",\
"npm:4.1.1"\
]],\
["globby", "npm:13.1.2"],\
["is-core-module", "npm:2.9.0"],\
["is-glob", "npm:4.0.3"],\
["synckit", "npm:0.7.2"]\
],\
"packagePeers": [\
"@types/eslint-plugin-import",\
"@types/eslint",\
"eslint-plugin-import",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["eslint-module-utils", [\
["npm:2.7.3", {\
"packageLocation": "./.yarn/cache/eslint-module-utils-npm-2.7.3-ccd32fe6fd-77048263f3.zip/node_modules/eslint-module-utils/",\
"packageDependencies": [\
["eslint-module-utils", "npm:2.7.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:7e9e065bcc54d7d6f8aba584b17a8521f07018c0953fd2c69a68b9d08297d30572811a6d82ffdbdff8e6335cf1ec2ff22dad407588252ecd2b30fd1a1c32e380#npm:2.7.3", {\
"packageLocation": "./.yarn/__virtual__/eslint-module-utils-virtual-91cee6f833/0/cache/eslint-module-utils-npm-2.7.3-ccd32fe6fd-77048263f3.zip/node_modules/eslint-module-utils/",\
"packageDependencies": [\
["eslint-module-utils", "virtual:7e9e065bcc54d7d6f8aba584b17a8521f07018c0953fd2c69a68b9d08297d30572811a6d82ffdbdff8e6335cf1ec2ff22dad407588252ecd2b30fd1a1c32e380#npm:2.7.3"],\
["@types/eslint-import-resolver-node", null],\
["@types/eslint-import-resolver-typescript", null],\
["@types/eslint-import-resolver-webpack", null],\
["@types/typescript-eslint__parser", null],\
["@typescript-eslint/parser", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:5.30.4"],\
["debug", "virtual:d9426786c635bc4b52511d6cc4b56156f50d780a698c0e20fc6caf10d3be51cbf176e79cff882f4d42a23ff4d0f89fe94222849578214e7fbae0f2754c82af02#npm:3.2.7"],\
["eslint-import-resolver-node", "npm:0.3.6"],\
["eslint-import-resolver-typescript", null],\
["eslint-import-resolver-webpack", null],\
["find-up", "npm:2.1.0"]\
],\
"packagePeers": [\
"@types/eslint-import-resolver-node",\
"@types/eslint-import-resolver-typescript",\
"@types/eslint-import-resolver-webpack",\
"@types/typescript-eslint__parser",\
"@typescript-eslint/parser",\
"eslint-import-resolver-node",\
"eslint-import-resolver-typescript",\
"eslint-import-resolver-webpack"\
],\
"linkType": "HARD"\
}]\
]],\
["eslint-plugin-import", [\
["npm:2.26.0", {\
"packageLocation": "./.yarn/cache/eslint-plugin-import-npm-2.26.0-959fe14a01-0bf77ad803.zip/node_modules/eslint-plugin-import/",\
"packageDependencies": [\
["eslint-plugin-import", "npm:2.26.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:2.26.0", {\
"packageLocation": "./.yarn/__virtual__/eslint-plugin-import-virtual-7e9e065bcc/0/cache/eslint-plugin-import-npm-2.26.0-959fe14a01-0bf77ad803.zip/node_modules/eslint-plugin-import/",\
"packageDependencies": [\
["eslint-plugin-import", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:2.26.0"],\
["@types/eslint", null],\
["@types/typescript-eslint__parser", null],\
["@typescript-eslint/parser", "virtual:34069774f764f6c076c76cefb79f9c00ee35c2ecc2faeec6f1f046eac9e499da19f7441a38c80f3dc82287abf91ba64b7783b2e2d997751e40d1ad563ff4f78d#npm:5.30.4"],\
["array-includes", "npm:3.1.5"],\
["array.prototype.flat", "npm:1.3.0"],\
["debug", "virtual:7e9e065bcc54d7d6f8aba584b17a8521f07018c0953fd2c69a68b9d08297d30572811a6d82ffdbdff8e6335cf1ec2ff22dad407588252ecd2b30fd1a1c32e380#npm:2.6.9"],\
["doctrine", "npm:2.1.0"],\
["eslint", "npm:8.19.0"],\
["eslint-import-resolver-node", "npm:0.3.6"],\
["eslint-module-utils", "virtual:7e9e065bcc54d7d6f8aba584b17a8521f07018c0953fd2c69a68b9d08297d30572811a6d82ffdbdff8e6335cf1ec2ff22dad407588252ecd2b30fd1a1c32e380#npm:2.7.3"],\
["has", "npm:1.0.3"],\
["is-core-module", "npm:2.9.0"],\
["is-glob", "npm:4.0.3"],\
["minimatch", "npm:3.1.2"],\
["object.values", "npm:1.1.5"],\
["resolve", "patch:resolve@npm%3A1.22.1#~builtin<compat/resolve>::version=1.22.1&hash=07638b"],\
["tsconfig-paths", "npm:3.14.1"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript-eslint__parser",\
"@typescript-eslint/parser",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["eslint-scope", [\
["npm:5.1.1", {\
"packageLocation": "./.yarn/cache/eslint-scope-npm-5.1.1-71fe59b18a-47e4b6a3f0.zip/node_modules/eslint-scope/",\
"packageDependencies": [\
["eslint-scope", "npm:5.1.1"],\
["esrecurse", "npm:4.3.0"],\
["estraverse", "npm:4.3.0"]\
],\
"linkType": "HARD"\
}],\
["npm:7.1.1", {\
"packageLocation": "./.yarn/cache/eslint-scope-npm-7.1.1-23935eb377-9f6e974ab2.zip/node_modules/eslint-scope/",\
"packageDependencies": [\
["eslint-scope", "npm:7.1.1"],\
["esrecurse", "npm:4.3.0"],\
["estraverse", "npm:5.3.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["eslint-utils", [\
["npm:3.0.0", {\
"packageLocation": "./.yarn/cache/eslint-utils-npm-3.0.0-630b3a4013-0668fe02f5.zip/node_modules/eslint-utils/",\
"packageDependencies": [\
["eslint-utils", "npm:3.0.0"]\