-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pnp.cjs
executable file
·13490 lines (13392 loc) · 649 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 */
"use strict";
const RAW_RUNTIME_STATE =
'{\
"__info": [\
"This file is automatically generated. Do not touch it, or risk",\
"your modifications being lost."\
],\
"dependencyTreeRoots": [\
{\
"name": "@transcend-io/persisted-state",\
"reference": "workspace:."\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["@transcend-io/persisted-state", ["workspace:."]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@transcend-io/type-utils", "npm:1.2.2"],\
["@types/chai", "npm:4.3.11"],\
["@types/mkdirp", "npm:1.0.2"],\
["@types/mocha", "npm:10.0.6"],\
["@types/node", "npm:20.10.3"],\
["@typescript-eslint/eslint-plugin", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:6.13.2"],\
["@typescript-eslint/parser", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:6.13.2"],\
["@yarnpkg/sdks", "npm:3.1.0"],\
["chai", "npm:4.3.10"],\
["depcheck", "npm:1.4.7"],\
["eslint", "npm:8.55.0"],\
["eslint-config-airbnb-base", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:15.0.0"],\
["eslint-import-resolver-typescript", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:3.6.1"],\
["eslint-plugin-eslint-comments", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:3.2.0"],\
["eslint-plugin-import", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:2.29.0"],\
["eslint-plugin-jsdoc", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:46.9.0"],\
["fp-ts", "npm:2.16.1"],\
["io-ts", "virtual:a57afaf9d13087a7202de8c93ac4854c9e2828bad7709250829ec4c7bc9dc95ecc2858c25612aa1774c986aedc232c76957076a1da3156fd2ab63ae5551b086f#npm:2.2.21"],\
["mkdirp", "npm:1.0.4"],\
["mocha", "npm:10.2.0"],\
["prettier", "npm:2.8.8"],\
["ts-node", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:10.9.1"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@aashutoshrathi/word-wrap", [\
["npm:1.2.6", {\
"packageLocation": "../../.yarn/berry/cache/@aashutoshrathi-word-wrap-npm-1.2.6-5b1d95e487-10c0.zip/node_modules/@aashutoshrathi/word-wrap/",\
"packageDependencies": [\
["@aashutoshrathi/word-wrap", "npm:1.2.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@arcanis/slice-ansi", [\
["npm:1.1.1", {\
"packageLocation": "../../.yarn/berry/cache/@arcanis-slice-ansi-npm-1.1.1-a69aa37ccc-10c0.zip/node_modules/@arcanis/slice-ansi/",\
"packageDependencies": [\
["@arcanis/slice-ansi", "npm:1.1.1"],\
["grapheme-splitter", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/code-frame", [\
["npm:7.15.8", {\
"packageLocation": "../../.yarn/berry/cache/@babel-code-frame-npm-7.15.8-c1e84dfd13-10c0.zip/node_modules/@babel/code-frame/",\
"packageDependencies": [\
["@babel/code-frame", "npm:7.15.8"],\
["@babel/highlight", "npm:7.14.5"]\
],\
"linkType": "HARD"\
}],\
["npm:7.23.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-code-frame-npm-7.23.5-cb10d08de6-10c0.zip/node_modules/@babel/code-frame/",\
"packageDependencies": [\
["@babel/code-frame", "npm:7.23.5"],\
["@babel/highlight", "npm:7.23.4"],\
["chalk", "npm:2.4.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/generator", [\
["npm:7.23.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-generator-npm-7.23.5-6cb0af9aef-10c0.zip/node_modules/@babel/generator/",\
"packageDependencies": [\
["@babel/generator", "npm:7.23.5"],\
["@babel/types", "npm:7.23.5"],\
["@jridgewell/gen-mapping", "npm:0.3.3"],\
["@jridgewell/trace-mapping", "npm:0.3.20"],\
["jsesc", "npm:2.5.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-environment-visitor", [\
["npm:7.22.20", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-environment-visitor-npm-7.22.20-260909e014-10c0.zip/node_modules/@babel/helper-environment-visitor/",\
"packageDependencies": [\
["@babel/helper-environment-visitor", "npm:7.22.20"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-function-name", [\
["npm:7.23.0", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-function-name-npm-7.23.0-ce38271242-10c0.zip/node_modules/@babel/helper-function-name/",\
"packageDependencies": [\
["@babel/helper-function-name", "npm:7.23.0"],\
["@babel/template", "npm:7.22.15"],\
["@babel/types", "npm:7.23.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-hoist-variables", [\
["npm:7.22.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-hoist-variables-npm-7.22.5-6db3192347-10c0.zip/node_modules/@babel/helper-hoist-variables/",\
"packageDependencies": [\
["@babel/helper-hoist-variables", "npm:7.22.5"],\
["@babel/types", "npm:7.23.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-split-export-declaration", [\
["npm:7.22.6", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-split-export-declaration-npm-7.22.6-e723505aef-10c0.zip/node_modules/@babel/helper-split-export-declaration/",\
"packageDependencies": [\
["@babel/helper-split-export-declaration", "npm:7.22.6"],\
["@babel/types", "npm:7.23.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-string-parser", [\
["npm:7.23.4", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-string-parser-npm-7.23.4-b1f0d030c3-10c0.zip/node_modules/@babel/helper-string-parser/",\
"packageDependencies": [\
["@babel/helper-string-parser", "npm:7.23.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-identifier", [\
["npm:7.15.7", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-validator-identifier-npm-7.15.7-a8f354e738-10c0.zip/node_modules/@babel/helper-validator-identifier/",\
"packageDependencies": [\
["@babel/helper-validator-identifier", "npm:7.15.7"]\
],\
"linkType": "HARD"\
}],\
["npm:7.22.20", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-validator-identifier-npm-7.22.20-18305bb306-10c0.zip/node_modules/@babel/helper-validator-identifier/",\
"packageDependencies": [\
["@babel/helper-validator-identifier", "npm:7.22.20"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/highlight", [\
["npm:7.14.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-highlight-npm-7.14.5-4a18106cbc-10c0.zip/node_modules/@babel/highlight/",\
"packageDependencies": [\
["@babel/highlight", "npm:7.14.5"],\
["@babel/helper-validator-identifier", "npm:7.15.7"],\
["chalk", "npm:2.4.2"],\
["js-tokens", "npm:4.0.0"]\
],\
"linkType": "HARD"\
}],\
["npm:7.23.4", {\
"packageLocation": "../../.yarn/berry/cache/@babel-highlight-npm-7.23.4-2a9f2d2538-10c0.zip/node_modules/@babel/highlight/",\
"packageDependencies": [\
["@babel/highlight", "npm:7.23.4"],\
["@babel/helper-validator-identifier", "npm:7.22.20"],\
["chalk", "npm:2.4.2"],\
["js-tokens", "npm:4.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/parser", [\
["npm:7.23.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-parser-npm-7.23.5-6bd8ea402a-10c0.zip/node_modules/@babel/parser/",\
"packageDependencies": [\
["@babel/parser", "npm:7.23.5"],\
["@babel/types", "npm:7.15.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/template", [\
["npm:7.22.15", {\
"packageLocation": "../../.yarn/berry/cache/@babel-template-npm-7.22.15-0b464facb4-10c0.zip/node_modules/@babel/template/",\
"packageDependencies": [\
["@babel/template", "npm:7.22.15"],\
["@babel/code-frame", "npm:7.23.5"],\
["@babel/parser", "npm:7.23.5"],\
["@babel/types", "npm:7.23.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/traverse", [\
["npm:7.23.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-traverse-npm-7.23.5-a4d284491e-10c0.zip/node_modules/@babel/traverse/",\
"packageDependencies": [\
["@babel/traverse", "npm:7.23.5"],\
["@babel/code-frame", "npm:7.23.5"],\
["@babel/generator", "npm:7.23.5"],\
["@babel/helper-environment-visitor", "npm:7.22.20"],\
["@babel/helper-function-name", "npm:7.23.0"],\
["@babel/helper-hoist-variables", "npm:7.22.5"],\
["@babel/helper-split-export-declaration", "npm:7.22.6"],\
["@babel/parser", "npm:7.23.5"],\
["@babel/types", "npm:7.23.5"],\
["debug", "virtual:a4d284491e3edd5bd310dbcd3effd4bfe430bd776a40d8832be0de78dd10557702ecd8471eaf3ff78b607a08047f9a467a0d0977069d0b1c388c69f17cf7399d#npm:4.3.2"],\
["globals", "npm:11.12.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/types", [\
["npm:7.15.6", {\
"packageLocation": "../../.yarn/berry/cache/@babel-types-npm-7.15.6-330b07a916-10c0.zip/node_modules/@babel/types/",\
"packageDependencies": [\
["@babel/types", "npm:7.15.6"],\
["@babel/helper-validator-identifier", "npm:7.15.7"],\
["to-fast-properties", "npm:2.0.0"]\
],\
"linkType": "HARD"\
}],\
["npm:7.23.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-types-npm-7.23.5-17488c6408-10c0.zip/node_modules/@babel/types/",\
"packageDependencies": [\
["@babel/types", "npm:7.23.5"],\
["@babel/helper-string-parser", "npm:7.23.4"],\
["@babel/helper-validator-identifier", "npm:7.22.20"],\
["to-fast-properties", "npm:2.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@cspotcode/source-map-support", [\
["npm:0.8.1", {\
"packageLocation": "../../.yarn/berry/cache/@cspotcode-source-map-support-npm-0.8.1-964f2de99d-10c0.zip/node_modules/@cspotcode/source-map-support/",\
"packageDependencies": [\
["@cspotcode/source-map-support", "npm:0.8.1"],\
["@jridgewell/trace-mapping", "npm:0.3.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@es-joy/jsdoccomment", [\
["npm:0.41.0", {\
"packageLocation": "../../.yarn/berry/cache/@es-joy-jsdoccomment-npm-0.41.0-20acf8fb8c-10c0.zip/node_modules/@es-joy/jsdoccomment/",\
"packageDependencies": [\
["@es-joy/jsdoccomment", "npm:0.41.0"],\
["comment-parser", "npm:1.4.1"],\
["esquery", "npm:1.5.0"],\
["jsdoc-type-pratt-parser", "npm:4.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/eslint-utils", [\
["npm:4.4.0", {\
"packageLocation": "../../.yarn/berry/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-10c0.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "npm:4.4.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:7e84babe85e6b058f29b2789822aea4bf3e34b48391f8eba05629d50500f4f2dfbe6628418745cffc770a77f74f121288626b69dd676f57de93d3ca5c7553ce6#npm:4.4.0", {\
"packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-f7c44dfe79/3/.yarn/berry/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-10c0.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "virtual:7e84babe85e6b058f29b2789822aea4bf3e34b48391f8eba05629d50500f4f2dfbe6628418745cffc770a77f74f121288626b69dd676f57de93d3ca5c7553ce6#npm:4.4.0"],\
["@types/eslint", null],\
["eslint", "npm:8.55.0"],\
["eslint-visitor-keys", "npm:3.3.0"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/regexpp", [\
["npm:4.10.0", {\
"packageLocation": "../../.yarn/berry/cache/@eslint-community-regexpp-npm-4.10.0-6bfb984c81-10c0.zip/node_modules/@eslint-community/regexpp/",\
"packageDependencies": [\
["@eslint-community/regexpp", "npm:4.10.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/eslintrc", [\
["npm:2.1.4", {\
"packageLocation": "../../.yarn/berry/cache/@eslint-eslintrc-npm-2.1.4-1ff4b5f908-10c0.zip/node_modules/@eslint/eslintrc/",\
"packageDependencies": [\
["@eslint/eslintrc", "npm:2.1.4"],\
["ajv", "npm:6.12.6"],\
["debug", "virtual:a4d284491e3edd5bd310dbcd3effd4bfe430bd776a40d8832be0de78dd10557702ecd8471eaf3ff78b607a08047f9a467a0d0977069d0b1c388c69f17cf7399d#npm:4.3.2"],\
["espree", "npm:9.6.1"],\
["globals", "npm:13.23.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"\
}]\
]],\
["@eslint/js", [\
["npm:8.55.0", {\
"packageLocation": "../../.yarn/berry/cache/@eslint-js-npm-8.55.0-ec5eb0638e-10c0.zip/node_modules/@eslint/js/",\
"packageDependencies": [\
["@eslint/js", "npm:8.55.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@gar/promisify", [\
["npm:1.1.2", {\
"packageLocation": "../../.yarn/berry/cache/@gar-promisify-npm-1.1.2-2343f94380-10c0.zip/node_modules/@gar/promisify/",\
"packageDependencies": [\
["@gar/promisify", "npm:1.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/config-array", [\
["npm:0.11.13", {\
"packageLocation": "../../.yarn/berry/cache/@humanwhocodes-config-array-npm-0.11.13-12314014f2-10c0.zip/node_modules/@humanwhocodes/config-array/",\
"packageDependencies": [\
["@humanwhocodes/config-array", "npm:0.11.13"],\
["@humanwhocodes/object-schema", "npm:2.0.1"],\
["debug", "virtual:a4d284491e3edd5bd310dbcd3effd4bfe430bd776a40d8832be0de78dd10557702ecd8471eaf3ff78b607a08047f9a467a0d0977069d0b1c388c69f17cf7399d#npm:4.3.2"],\
["minimatch", "npm:3.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/module-importer", [\
["npm:1.0.1", {\
"packageLocation": "../../.yarn/berry/cache/@humanwhocodes-module-importer-npm-1.0.1-9d07ed2e4a-10c0.zip/node_modules/@humanwhocodes/module-importer/",\
"packageDependencies": [\
["@humanwhocodes/module-importer", "npm:1.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/object-schema", [\
["npm:2.0.1", {\
"packageLocation": "../../.yarn/berry/cache/@humanwhocodes-object-schema-npm-2.0.1-c23364bbfc-10c0.zip/node_modules/@humanwhocodes/object-schema/",\
"packageDependencies": [\
["@humanwhocodes/object-schema", "npm:2.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/gen-mapping", [\
["npm:0.3.3", {\
"packageLocation": "../../.yarn/berry/cache/@jridgewell-gen-mapping-npm-0.3.3-1815eba94c-10c0.zip/node_modules/@jridgewell/gen-mapping/",\
"packageDependencies": [\
["@jridgewell/gen-mapping", "npm:0.3.3"],\
["@jridgewell/set-array", "npm:1.1.2"],\
["@jridgewell/sourcemap-codec", "npm:1.4.15"],\
["@jridgewell/trace-mapping", "npm:0.3.20"]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/resolve-uri", [\
["npm:3.1.1", {\
"packageLocation": "../../.yarn/berry/cache/@jridgewell-resolve-uri-npm-3.1.1-aa2de3f210-10c0.zip/node_modules/@jridgewell/resolve-uri/",\
"packageDependencies": [\
["@jridgewell/resolve-uri", "npm:3.1.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/set-array", [\
["npm:1.1.2", {\
"packageLocation": "../../.yarn/berry/cache/@jridgewell-set-array-npm-1.1.2-45b82d7fb6-10c0.zip/node_modules/@jridgewell/set-array/",\
"packageDependencies": [\
["@jridgewell/set-array", "npm:1.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/sourcemap-codec", [\
["npm:1.4.15", {\
"packageLocation": "../../.yarn/berry/cache/@jridgewell-sourcemap-codec-npm-1.4.15-a055fb62cf-10c0.zip/node_modules/@jridgewell/sourcemap-codec/",\
"packageDependencies": [\
["@jridgewell/sourcemap-codec", "npm:1.4.15"]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/trace-mapping", [\
["npm:0.3.20", {\
"packageLocation": "../../.yarn/berry/cache/@jridgewell-trace-mapping-npm-0.3.20-d90f282910-10c0.zip/node_modules/@jridgewell/trace-mapping/",\
"packageDependencies": [\
["@jridgewell/trace-mapping", "npm:0.3.20"],\
["@jridgewell/resolve-uri", "npm:3.1.1"],\
["@jridgewell/sourcemap-codec", "npm:1.4.15"]\
],\
"linkType": "HARD"\
}],\
["npm:0.3.9", {\
"packageLocation": "../../.yarn/berry/cache/@jridgewell-trace-mapping-npm-0.3.9-91625cd7fb-10c0.zip/node_modules/@jridgewell/trace-mapping/",\
"packageDependencies": [\
["@jridgewell/trace-mapping", "npm:0.3.9"],\
["@jridgewell/resolve-uri", "npm:3.1.1"],\
["@jridgewell/sourcemap-codec", "npm:1.4.15"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nodelib/fs.scandir", [\
["npm:2.1.5", {\
"packageLocation": "../../.yarn/berry/cache/@nodelib-fs.scandir-npm-2.1.5-89c67370dd-10c0.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/berry/cache/@nodelib-fs.stat-npm-2.0.5-01f4dd3030-10c0.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/berry/cache/@nodelib-fs.walk-npm-1.2.8-b4a89da548-10c0.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"\
}]\
]],\
["@npmcli/fs", [\
["npm:1.0.0", {\
"packageLocation": "../../.yarn/berry/cache/@npmcli-fs-npm-1.0.0-92194475f3-10c0.zip/node_modules/@npmcli/fs/",\
"packageDependencies": [\
["@npmcli/fs", "npm:1.0.0"],\
["@gar/promisify", "npm:1.1.2"],\
["semver", "npm:7.3.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@npmcli/move-file", [\
["npm:1.1.2", {\
"packageLocation": "../../.yarn/berry/cache/@npmcli-move-file-npm-1.1.2-4f6c7b3354-10c0.zip/node_modules/@npmcli/move-file/",\
"packageDependencies": [\
["@npmcli/move-file", "npm:1.1.2"],\
["mkdirp", "npm:1.0.4"],\
["rimraf", "npm:3.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@sindresorhus/is", [\
["npm:4.2.0", {\
"packageLocation": "../../.yarn/berry/cache/@sindresorhus-is-npm-4.2.0-87ea1e5c27-10c0.zip/node_modules/@sindresorhus/is/",\
"packageDependencies": [\
["@sindresorhus/is", "npm:4.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@szmarczak/http-timer", [\
["npm:4.0.6", {\
"packageLocation": "../../.yarn/berry/cache/@szmarczak-http-timer-npm-4.0.6-6ace00d82d-10c0.zip/node_modules/@szmarczak/http-timer/",\
"packageDependencies": [\
["@szmarczak/http-timer", "npm:4.0.6"],\
["defer-to-connect", "npm:2.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@tootallnate/once", [\
["npm:1.1.2", {\
"packageLocation": "../../.yarn/berry/cache/@tootallnate-once-npm-1.1.2-0517220057-10c0.zip/node_modules/@tootallnate/once/",\
"packageDependencies": [\
["@tootallnate/once", "npm:1.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@transcend-io/persisted-state", [\
["workspace:.", {\
"packageLocation": "./",\
"packageDependencies": [\
["@transcend-io/persisted-state", "workspace:."],\
["@transcend-io/type-utils", "npm:1.2.2"],\
["@types/chai", "npm:4.3.11"],\
["@types/mkdirp", "npm:1.0.2"],\
["@types/mocha", "npm:10.0.6"],\
["@types/node", "npm:20.10.3"],\
["@typescript-eslint/eslint-plugin", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:6.13.2"],\
["@typescript-eslint/parser", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:6.13.2"],\
["@yarnpkg/sdks", "npm:3.1.0"],\
["chai", "npm:4.3.10"],\
["depcheck", "npm:1.4.7"],\
["eslint", "npm:8.55.0"],\
["eslint-config-airbnb-base", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:15.0.0"],\
["eslint-import-resolver-typescript", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:3.6.1"],\
["eslint-plugin-eslint-comments", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:3.2.0"],\
["eslint-plugin-import", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:2.29.0"],\
["eslint-plugin-jsdoc", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:46.9.0"],\
["fp-ts", "npm:2.16.1"],\
["io-ts", "virtual:a57afaf9d13087a7202de8c93ac4854c9e2828bad7709250829ec4c7bc9dc95ecc2858c25612aa1774c986aedc232c76957076a1da3156fd2ab63ae5551b086f#npm:2.2.21"],\
["mkdirp", "npm:1.0.4"],\
["mocha", "npm:10.2.0"],\
["prettier", "npm:2.8.8"],\
["ts-node", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:10.9.1"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@transcend-io/type-utils", [\
["npm:1.2.2", {\
"packageLocation": "../../.yarn/berry/cache/@transcend-io-type-utils-npm-1.2.2-a57afaf9d1-10c0.zip/node_modules/@transcend-io/type-utils/",\
"packageDependencies": [\
["@transcend-io/type-utils", "npm:1.2.2"],\
["fp-ts", "npm:2.16.1"],\
["io-ts", "virtual:a57afaf9d13087a7202de8c93ac4854c9e2828bad7709250829ec4c7bc9dc95ecc2858c25612aa1774c986aedc232c76957076a1da3156fd2ab63ae5551b086f#npm:2.2.21"]\
],\
"linkType": "HARD"\
}]\
]],\
["@tsconfig/node10", [\
["npm:1.0.8", {\
"packageLocation": "../../.yarn/berry/cache/@tsconfig-node10-npm-1.0.8-90a8cce25d-10c0.zip/node_modules/@tsconfig/node10/",\
"packageDependencies": [\
["@tsconfig/node10", "npm:1.0.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@tsconfig/node12", [\
["npm:1.0.9", {\
"packageLocation": "../../.yarn/berry/cache/@tsconfig-node12-npm-1.0.9-780563856d-10c0.zip/node_modules/@tsconfig/node12/",\
"packageDependencies": [\
["@tsconfig/node12", "npm:1.0.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@tsconfig/node14", [\
["npm:1.0.1", {\
"packageLocation": "../../.yarn/berry/cache/@tsconfig-node14-npm-1.0.1-3ecac58e68-10c0.zip/node_modules/@tsconfig/node14/",\
"packageDependencies": [\
["@tsconfig/node14", "npm:1.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@tsconfig/node16", [\
["npm:1.0.2", {\
"packageLocation": "../../.yarn/berry/cache/@tsconfig-node16-npm-1.0.2-1f43ab567a-10c0.zip/node_modules/@tsconfig/node16/",\
"packageDependencies": [\
["@tsconfig/node16", "npm:1.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/cacheable-request", [\
["npm:6.0.2", {\
"packageLocation": "../../.yarn/berry/cache/@types-cacheable-request-npm-6.0.2-894b6992d5-10c0.zip/node_modules/@types/cacheable-request/",\
"packageDependencies": [\
["@types/cacheable-request", "npm:6.0.2"],\
["@types/http-cache-semantics", "npm:4.0.1"],\
["@types/keyv", "npm:3.1.3"],\
["@types/node", "npm:16.11.4"],\
["@types/responselike", "npm:1.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/chai", [\
["npm:4.3.11", {\
"packageLocation": "../../.yarn/berry/cache/@types-chai-npm-4.3.11-db685c5f0e-10c0.zip/node_modules/@types/chai/",\
"packageDependencies": [\
["@types/chai", "npm:4.3.11"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/emscripten", [\
["npm:1.39.10", {\
"packageLocation": "../../.yarn/berry/cache/@types-emscripten-npm-1.39.10-3b81552c03-10c0.zip/node_modules/@types/emscripten/",\
"packageDependencies": [\
["@types/emscripten", "npm:1.39.10"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/http-cache-semantics", [\
["npm:4.0.1", {\
"packageLocation": "../../.yarn/berry/cache/@types-http-cache-semantics-npm-4.0.1-90863c7a3e-10c0.zip/node_modules/@types/http-cache-semantics/",\
"packageDependencies": [\
["@types/http-cache-semantics", "npm:4.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/json-schema", [\
["npm:7.0.15", {\
"packageLocation": "../../.yarn/berry/cache/@types-json-schema-npm-7.0.15-fd16381786-10c0.zip/node_modules/@types/json-schema/",\
"packageDependencies": [\
["@types/json-schema", "npm:7.0.15"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/json5", [\
["npm:0.0.29", {\
"packageLocation": "../../.yarn/berry/cache/@types-json5-npm-0.0.29-f63a7916bd-10c0.zip/node_modules/@types/json5/",\
"packageDependencies": [\
["@types/json5", "npm:0.0.29"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/keyv", [\
["npm:3.1.3", {\
"packageLocation": "../../.yarn/berry/cache/@types-keyv-npm-3.1.3-8864e3cbf3-10c0.zip/node_modules/@types/keyv/",\
"packageDependencies": [\
["@types/keyv", "npm:3.1.3"],\
["@types/node", "npm:16.11.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/minimatch", [\
["npm:3.0.5", {\
"packageLocation": "../../.yarn/berry/cache/@types-minimatch-npm-3.0.5-802bb0797f-10c0.zip/node_modules/@types/minimatch/",\
"packageDependencies": [\
["@types/minimatch", "npm:3.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/mkdirp", [\
["npm:1.0.2", {\
"packageLocation": "../../.yarn/berry/cache/@types-mkdirp-npm-1.0.2-cbbc835703-10c0.zip/node_modules/@types/mkdirp/",\
"packageDependencies": [\
["@types/mkdirp", "npm:1.0.2"],\
["@types/node", "npm:16.11.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/mocha", [\
["npm:10.0.6", {\
"packageLocation": "../../.yarn/berry/cache/@types-mocha-npm-10.0.6-a687c1962c-10c0.zip/node_modules/@types/mocha/",\
"packageDependencies": [\
["@types/mocha", "npm:10.0.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/node", [\
["npm:16.11.4", {\
"packageLocation": "../../.yarn/berry/cache/@types-node-npm-16.11.4-f4c998d94a-10c0.zip/node_modules/@types/node/",\
"packageDependencies": [\
["@types/node", "npm:16.11.4"]\
],\
"linkType": "HARD"\
}],\
["npm:20.10.3", {\
"packageLocation": "../../.yarn/berry/cache/@types-node-npm-20.10.3-d385a9ec0a-10c0.zip/node_modules/@types/node/",\
"packageDependencies": [\
["@types/node", "npm:20.10.3"],\
["undici-types", "npm:5.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/parse-json", [\
["npm:4.0.0", {\
"packageLocation": "../../.yarn/berry/cache/@types-parse-json-npm-4.0.0-298522afa6-10c0.zip/node_modules/@types/parse-json/",\
"packageDependencies": [\
["@types/parse-json", "npm:4.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/responselike", [\
["npm:1.0.0", {\
"packageLocation": "../../.yarn/berry/cache/@types-responselike-npm-1.0.0-85dd08af42-10c0.zip/node_modules/@types/responselike/",\
"packageDependencies": [\
["@types/responselike", "npm:1.0.0"],\
["@types/node", "npm:16.11.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/semver", [\
["npm:7.3.9", {\
"packageLocation": "../../.yarn/berry/cache/@types-semver-npm-7.3.9-eb0d8b7243-10c0.zip/node_modules/@types/semver/",\
"packageDependencies": [\
["@types/semver", "npm:7.3.9"]\
],\
"linkType": "HARD"\
}],\
["npm:7.5.6", {\
"packageLocation": "../../.yarn/berry/cache/@types-semver-npm-7.5.6-9d2637fc95-10c0.zip/node_modules/@types/semver/",\
"packageDependencies": [\
["@types/semver", "npm:7.5.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/treeify", [\
["npm:1.0.0", {\
"packageLocation": "../../.yarn/berry/cache/@types-treeify-npm-1.0.0-b5e04e9cd3-10c0.zip/node_modules/@types/treeify/",\
"packageDependencies": [\
["@types/treeify", "npm:1.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/eslint-plugin", [\
["npm:6.13.2", {\
"packageLocation": "../../.yarn/berry/cache/@typescript-eslint-eslint-plugin-npm-6.13.2-c060495a4b-10c0.zip/node_modules/@typescript-eslint/eslint-plugin/",\
"packageDependencies": [\
["@typescript-eslint/eslint-plugin", "npm:6.13.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:6.13.2", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-eslint-plugin-virtual-27dfec4ae4/3/.yarn/berry/cache/@typescript-eslint-eslint-plugin-npm-6.13.2-c060495a4b-10c0.zip/node_modules/@typescript-eslint/eslint-plugin/",\
"packageDependencies": [\
["@typescript-eslint/eslint-plugin", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:6.13.2"],\
["@eslint-community/regexpp", "npm:4.10.0"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@types/typescript-eslint__parser", null],\
["@typescript-eslint/parser", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:6.13.2"],\
["@typescript-eslint/scope-manager", "npm:6.13.2"],\
["@typescript-eslint/type-utils", "virtual:27dfec4ae4f09513f7460e057ac756bfa94e8e968f0741715bdbe2256e87d4aea0642c22c595eb330159de8068b21c19e4a8109bc10a655b58284564c3c3a2a0#npm:6.13.2"],\
["@typescript-eslint/utils", "virtual:27dfec4ae4f09513f7460e057ac756bfa94e8e968f0741715bdbe2256e87d4aea0642c22c595eb330159de8068b21c19e4a8109bc10a655b58284564c3c3a2a0#npm:6.13.2"],\
["@typescript-eslint/visitor-keys", "npm:6.13.2"],\
["debug", "virtual:d4cc813cc3a39ab0788ecd7a606b10bb08972b0759326e396ce2e5ac253b2eb061d568ae8655999dc7933f1f1a4d2555715e77e5ef9ad56ff3252fb7d1e31001#npm:4.3.4"],\
["eslint", "npm:8.55.0"],\
["graphemer", "npm:1.4.0"],\
["ignore", "npm:5.3.0"],\
["natural-compare", "npm:1.4.0"],\
["semver", "npm:7.5.4"],\
["ts-api-utils", "virtual:27dfec4ae4f09513f7460e057ac756bfa94e8e968f0741715bdbe2256e87d4aea0642c22c595eb330159de8068b21c19e4a8109bc10a655b58284564c3c3a2a0#npm:1.0.3"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript-eslint__parser",\
"@types/typescript",\
"@typescript-eslint/parser",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/parser", [\
["npm:6.13.2", {\
"packageLocation": "../../.yarn/berry/cache/@typescript-eslint-parser-npm-6.13.2-9c530a45b0-10c0.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "npm:6.13.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:6.13.2", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-66cb00d924/3/.yarn/berry/cache/@typescript-eslint-parser-npm-6.13.2-9c530a45b0-10c0.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "virtual:7e7cdb6c4234b7a3d134efbab3629f3a04dba1659f537a2759085a81f779874626080998a9ecd20f201e9b47705d8f8c3785fe6f62aa28617a8321d3fa926c6e#npm:6.13.2"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/scope-manager", "npm:6.13.2"],\
["@typescript-eslint/types", "npm:6.13.2"],\
["@typescript-eslint/typescript-estree", "virtual:4a1c6ad676c2206f0be39398371e530f3ebc46b398cffe68b0f1f9fc6df2054bf641c3dca7ecbfa4447e0f127286f8f73448e48231c30d9489754dd72c569369#npm:6.13.2"],\
["@typescript-eslint/visitor-keys", "npm:6.13.2"],\
["debug", "virtual:d4cc813cc3a39ab0788ecd7a606b10bb08972b0759326e396ce2e5ac253b2eb061d568ae8655999dc7933f1f1a4d2555715e77e5ef9ad56ff3252fb7d1e31001#npm:4.3.4"],\
["eslint", "npm:8.55.0"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/scope-manager", [\
["npm:6.13.2", {\
"packageLocation": "../../.yarn/berry/cache/@typescript-eslint-scope-manager-npm-6.13.2-55a7e50cba-10c0.zip/node_modules/@typescript-eslint/scope-manager/",\
"packageDependencies": [\
["@typescript-eslint/scope-manager", "npm:6.13.2"],\
["@typescript-eslint/types", "npm:6.13.2"],\
["@typescript-eslint/visitor-keys", "npm:6.13.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/type-utils", [\
["npm:6.13.2", {\
"packageLocation": "../../.yarn/berry/cache/@typescript-eslint-type-utils-npm-6.13.2-8f2d61b409-10c0.zip/node_modules/@typescript-eslint/type-utils/",\
"packageDependencies": [\
["@typescript-eslint/type-utils", "npm:6.13.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:27dfec4ae4f09513f7460e057ac756bfa94e8e968f0741715bdbe2256e87d4aea0642c22c595eb330159de8068b21c19e4a8109bc10a655b58284564c3c3a2a0#npm:6.13.2", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-type-utils-virtual-4a1c6ad676/3/.yarn/berry/cache/@typescript-eslint-type-utils-npm-6.13.2-8f2d61b409-10c0.zip/node_modules/@typescript-eslint/type-utils/",\
"packageDependencies": [\
["@typescript-eslint/type-utils", "virtual:27dfec4ae4f09513f7460e057ac756bfa94e8e968f0741715bdbe2256e87d4aea0642c22c595eb330159de8068b21c19e4a8109bc10a655b58284564c3c3a2a0#npm:6.13.2"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/typescript-estree", "virtual:4a1c6ad676c2206f0be39398371e530f3ebc46b398cffe68b0f1f9fc6df2054bf641c3dca7ecbfa4447e0f127286f8f73448e48231c30d9489754dd72c569369#npm:6.13.2"],\
["@typescript-eslint/utils", "virtual:27dfec4ae4f09513f7460e057ac756bfa94e8e968f0741715bdbe2256e87d4aea0642c22c595eb330159de8068b21c19e4a8109bc10a655b58284564c3c3a2a0#npm:6.13.2"],\
["debug", "virtual:d4cc813cc3a39ab0788ecd7a606b10bb08972b0759326e396ce2e5ac253b2eb061d568ae8655999dc7933f1f1a4d2555715e77e5ef9ad56ff3252fb7d1e31001#npm:4.3.4"],\
["eslint", "npm:8.55.0"],\
["ts-api-utils", "virtual:27dfec4ae4f09513f7460e057ac756bfa94e8e968f0741715bdbe2256e87d4aea0642c22c595eb330159de8068b21c19e4a8109bc10a655b58284564c3c3a2a0#npm:1.0.3"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/types", [\
["npm:6.13.2", {\
"packageLocation": "../../.yarn/berry/cache/@typescript-eslint-types-npm-6.13.2-a52f397aba-10c0.zip/node_modules/@typescript-eslint/types/",\
"packageDependencies": [\
["@typescript-eslint/types", "npm:6.13.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/typescript-estree", [\
["npm:6.13.2", {\
"packageLocation": "../../.yarn/berry/cache/@typescript-eslint-typescript-estree-npm-6.13.2-044930d241-10c0.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "npm:6.13.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:4a1c6ad676c2206f0be39398371e530f3ebc46b398cffe68b0f1f9fc6df2054bf641c3dca7ecbfa4447e0f127286f8f73448e48231c30d9489754dd72c569369#npm:6.13.2", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-ec8886751b/3/.yarn/berry/cache/@typescript-eslint-typescript-estree-npm-6.13.2-044930d241-10c0.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "virtual:4a1c6ad676c2206f0be39398371e530f3ebc46b398cffe68b0f1f9fc6df2054bf641c3dca7ecbfa4447e0f127286f8f73448e48231c30d9489754dd72c569369#npm:6.13.2"],\
["@types/typescript", null],\
["@typescript-eslint/types", "npm:6.13.2"],\
["@typescript-eslint/visitor-keys", "npm:6.13.2"],\
["debug", "virtual:d4cc813cc3a39ab0788ecd7a606b10bb08972b0759326e396ce2e5ac253b2eb061d568ae8655999dc7933f1f1a4d2555715e77e5ef9ad56ff3252fb7d1e31001#npm:4.3.4"],\
["globby", "npm:11.1.0"],\
["is-glob", "npm:4.0.3"],\
["semver", "npm:7.5.4"],\
["ts-api-utils", "virtual:27dfec4ae4f09513f7460e057ac756bfa94e8e968f0741715bdbe2256e87d4aea0642c22c595eb330159de8068b21c19e4a8109bc10a655b58284564c3c3a2a0#npm:1.0.3"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"packagePeers": [\
"@types/typescript",\
"typescript"\
],\
"linkType": "HARD"\
}],\
["virtual:ae6c57725cbc8e19311a7850b88aabd9902f5f83bfc37d5fc174d62c3e937c2a9cf421eafcc6d76dc8a0b1e44451021f77a7905bf27b118787804101aadd2d6e#npm:6.13.2", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-429ede344d/3/.yarn/berry/cache/@typescript-eslint-typescript-estree-npm-6.13.2-044930d241-10c0.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "virtual:ae6c57725cbc8e19311a7850b88aabd9902f5f83bfc37d5fc174d62c3e937c2a9cf421eafcc6d76dc8a0b1e44451021f77a7905bf27b118787804101aadd2d6e#npm:6.13.2"],\
["@types/typescript", null],\
["@typescript-eslint/types", "npm:6.13.2"],\
["@typescript-eslint/visitor-keys", "npm:6.13.2"],\
["debug", "virtual:d4cc813cc3a39ab0788ecd7a606b10bb08972b0759326e396ce2e5ac253b2eb061d568ae8655999dc7933f1f1a4d2555715e77e5ef9ad56ff3252fb7d1e31001#npm:4.3.4"],\
["globby", "npm:11.1.0"],\
["is-glob", "npm:4.0.3"],\
["semver", "npm:7.5.4"],\
["ts-api-utils", "virtual:429ede344d15ee644777aa3dcfab2fd8079fef74226cdf4a8e1de065de41cc1e957116b139bb5eebe54fa616d42bb8db1d75e55bf6afe3aa5c5d7be5a3f4e7a5#npm:1.0.3"],\
["typescript", null]\
],\
"packagePeers": [\
"@types/typescript",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/utils", [\
["npm:6.13.2", {\
"packageLocation": "../../.yarn/berry/cache/@typescript-eslint-utils-npm-6.13.2-246994db2d-10c0.zip/node_modules/@typescript-eslint/utils/",\
"packageDependencies": [\
["@typescript-eslint/utils", "npm:6.13.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:27dfec4ae4f09513f7460e057ac756bfa94e8e968f0741715bdbe2256e87d4aea0642c22c595eb330159de8068b21c19e4a8109bc10a655b58284564c3c3a2a0#npm:6.13.2", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-utils-virtual-ae6c57725c/3/.yarn/berry/cache/@typescript-eslint-utils-npm-6.13.2-246994db2d-10c0.zip/node_modules/@typescript-eslint/utils/",\
"packageDependencies": [\
["@typescript-eslint/utils", "virtual:27dfec4ae4f09513f7460e057ac756bfa94e8e968f0741715bdbe2256e87d4aea0642c22c595eb330159de8068b21c19e4a8109bc10a655b58284564c3c3a2a0#npm:6.13.2"],\
["@eslint-community/eslint-utils", "virtual:7e84babe85e6b058f29b2789822aea4bf3e34b48391f8eba05629d50500f4f2dfbe6628418745cffc770a77f74f121288626b69dd676f57de93d3ca5c7553ce6#npm:4.4.0"],\
["@types/eslint", null],\
["@types/json-schema", "npm:7.0.15"],\
["@types/semver", "npm:7.5.6"],\
["@typescript-eslint/scope-manager", "npm:6.13.2"],\
["@typescript-eslint/types", "npm:6.13.2"],\
["@typescript-eslint/typescript-estree", "virtual:ae6c57725cbc8e19311a7850b88aabd9902f5f83bfc37d5fc174d62c3e937c2a9cf421eafcc6d76dc8a0b1e44451021f77a7905bf27b118787804101aadd2d6e#npm:6.13.2"],\
["eslint", "npm:8.55.0"],\
["semver", "npm:7.5.4"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/visitor-keys", [\
["npm:6.13.2", {\
"packageLocation": "../../.yarn/berry/cache/@typescript-eslint-visitor-keys-npm-6.13.2-6c18cdb3be-10c0.zip/node_modules/@typescript-eslint/visitor-keys/",\
"packageDependencies": [\
["@typescript-eslint/visitor-keys", "npm:6.13.2"],\
["@typescript-eslint/types", "npm:6.13.2"],\
["eslint-visitor-keys", "npm:3.4.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@ungap/structured-clone", [\
["npm:1.2.0", {\
"packageLocation": "../../.yarn/berry/cache/@ungap-structured-clone-npm-1.2.0-648f0b82e0-10c0.zip/node_modules/@ungap/structured-clone/",\
"packageDependencies": [\
["@ungap/structured-clone", "npm:1.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@vue/compiler-core", [\
["npm:3.3.10", {\
"packageLocation": "../../.yarn/berry/cache/@vue-compiler-core-npm-3.3.10-2490bd6e70-10c0.zip/node_modules/@vue/compiler-core/",\
"packageDependencies": [\
["@vue/compiler-core", "npm:3.3.10"],\
["@babel/parser", "npm:7.23.5"],\
["@vue/shared", "npm:3.3.10"],\
["estree-walker", "npm:2.0.2"],\
["source-map-js", "npm:1.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@vue/compiler-dom", [\
["npm:3.3.10", {\
"packageLocation": "../../.yarn/berry/cache/@vue-compiler-dom-npm-3.3.10-a1e31e5db5-10c0.zip/node_modules/@vue/compiler-dom/",\
"packageDependencies": [\
["@vue/compiler-dom", "npm:3.3.10"],\
["@vue/compiler-core", "npm:3.3.10"],\
["@vue/shared", "npm:3.3.10"]\
],\
"linkType": "HARD"\
}]\
]],\
["@vue/compiler-sfc", [\
["npm:3.3.10", {\
"packageLocation": "../../.yarn/berry/cache/@vue-compiler-sfc-npm-3.3.10-a6edf1f70f-10c0.zip/node_modules/@vue/compiler-sfc/",\
"packageDependencies": [\
["@vue/compiler-sfc", "npm:3.3.10"],\