-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8846 lines (7945 loc) · 294 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: 6
cacheKey: 8
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.10
resolution: "@babel/code-frame@npm:7.22.10"
dependencies:
"@babel/highlight": ^7.22.10
chalk: ^2.4.2
checksum: 89a06534ad19759da6203a71bad120b1d7b2ddc016c8e07d4c56b35dea25e7396c6da60a754e8532a86733092b131ae7f661dbe6ba5d165ea777555daa2ed3c9
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.21.4":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": ^7.22.13
chalk: ^2.4.2
checksum: 22e342c8077c8b77eeb11f554ecca2ba14153f707b85294fcf6070b6f6150aae88a7b7436dd88d8c9289970585f3fe5b9b941c5aa3aa26a6d5a8ef3f292da058
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-string-parser@npm:7.22.5"
checksum: 836851ca5ec813077bbb303acc992d75a360267aa3b5de7134d220411c852a6f17de7c0d0b8c8dcc0f567f67874c00f4528672b2a4f1bc978a3ada64c8c78467
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: 7f0f30113474a28298c12161763b49de5018732290ca4de13cdaefd4fd0d635a6fe3f6686c37a02905fb1e64f21a5ee2b55140cf7b070e729f1bd66866506aea
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.10":
version: 7.22.10
resolution: "@babel/highlight@npm:7.22.10"
dependencies:
"@babel/helper-validator-identifier": ^7.22.5
chalk: ^2.4.2
js-tokens: ^4.0.0
checksum: f714a1e1a72dd9d72f6383f4f30fd342e21a8df32d984a4ea8f5eab691bb6ba6db2f8823d4b4cf135d98869e7a98925b81306aa32ee3c429f8cfa52c75889e1b
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/highlight@npm:7.22.13"
dependencies:
"@babel/helper-validator-identifier": ^7.22.5
chalk: ^2.4.2
js-tokens: ^4.0.0
checksum: 7266d2bff8aa8fc78eb65b6e92a8211e12897a731126a282d2f9bb50d8fcaa4c1b02af2284f990ac7e3ab8d892d448a2cab8f5ed0ea8a90bce2c025b11ebe802
languageName: node
linkType: hard
"@babel/parser@npm:^7.21.3":
version: 7.22.14
resolution: "@babel/parser@npm:7.22.14"
bin:
parser: ./bin/babel-parser.js
checksum: a2293971f0889726a3d5a35fcceedc71d2fa4c8d97f438fc348fe0cf7e739affc6e2665e4c6ddd4900714772e19bfd5d6feb967ca1f623b894c0099ecb148b52
languageName: node
linkType: hard
"@babel/types@npm:^7.8.3":
version: 7.22.11
resolution: "@babel/types@npm:7.22.11"
dependencies:
"@babel/helper-string-parser": ^7.22.5
"@babel/helper-validator-identifier": ^7.22.5
to-fast-properties: ^2.0.0
checksum: 431a6446896adb62c876d0fe75263835735d3c974aae05356a87eb55f087c20a777028cf08eadcace7993e058bbafe3b21ce2119363222c6cef9eedd7a204810
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: d64d5260bed1d5012ae3fc617d38d1afc0329fec05342f4e6b838f46998855ba56e0a73833f4a80fa8378c84810da254f76a8a19c39d038260dc06dc4e007425
languageName: node
linkType: hard
"@commitlint/cli@npm:^17.7.1":
version: 17.7.1
resolution: "@commitlint/cli@npm:17.7.1"
dependencies:
"@commitlint/format": ^17.4.4
"@commitlint/lint": ^17.7.0
"@commitlint/load": ^17.7.1
"@commitlint/read": ^17.5.1
"@commitlint/types": ^17.4.4
execa: ^5.0.0
lodash.isfunction: ^3.0.9
resolve-from: 5.0.0
resolve-global: 1.0.0
yargs: ^17.0.0
bin:
commitlint: cli.js
checksum: 2500a50514ab0629d3661d74e6f759f0b9b56c1992fbc101bb78a67033c6ed02a6dad3ae728f91f1f9b3034ae17e3808835957f885ab7129a421085d31f6cb23
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:^17.7.0":
version: 17.7.0
resolution: "@commitlint/config-conventional@npm:17.7.0"
dependencies:
conventional-changelog-conventionalcommits: ^6.1.0
checksum: 932cf35c12855e360c750bc19ffedc0925f8658f316aaacdf5441ce775712934386643a9ac418f18e24e5bb1bf71ed721b8ae452a13d04908b0e55cd3d2d988f
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^17.6.7":
version: 17.6.7
resolution: "@commitlint/config-validator@npm:17.6.7"
dependencies:
"@commitlint/types": ^17.4.4
ajv: ^8.11.0
checksum: e13e512ce9dc788f7ce1c84faf4d2e2d4d3b7c4dc18a7982ecbfc33faa5fe977793efdb868e228061d34ea8825cbbed5fc9e8e69fd5e4f0c0c08f60e21a9214e
languageName: node
linkType: hard
"@commitlint/ensure@npm:^17.6.7":
version: 17.6.7
resolution: "@commitlint/ensure@npm:17.6.7"
dependencies:
"@commitlint/types": ^17.4.4
lodash.camelcase: ^4.3.0
lodash.kebabcase: ^4.1.1
lodash.snakecase: ^4.1.1
lodash.startcase: ^4.4.0
lodash.upperfirst: ^4.3.1
checksum: 1ffdce807dbb303e8fa215511a965375abeea2702f64b4f1c4d7823f1e231cb343e82c97633d12d3c89b4f71d2eaf28169db08b4f1d3b052c26c942f4b9d9380
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/execute-rule@npm:17.4.0"
checksum: 17d8e56ab00bd45fdecb0ed33186d2020ce261250d6a516204b6509610b75af8c930e7226b1111af3de298db32a7e4d0ba2c9cc7ed67db5ba5159eeed634f067
languageName: node
linkType: hard
"@commitlint/format@npm:^17.4.4":
version: 17.4.4
resolution: "@commitlint/format@npm:17.4.4"
dependencies:
"@commitlint/types": ^17.4.4
chalk: ^4.1.0
checksum: 832d9641129f2da8d32389b4a47db59d41eb1adfab742723972cad64b833c4af9e253f96757b27664fedae61644dd4c01d21f775773b45b604bd7f93b23a27d2
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^17.7.0":
version: 17.7.0
resolution: "@commitlint/is-ignored@npm:17.7.0"
dependencies:
"@commitlint/types": ^17.4.4
semver: 7.5.4
checksum: aa0b695d6e7bee5e732f96a2ff383347ff476eb48f9d3b4ed75b098cafa27e56da15563833d3cf4e1268fc26819180cd8b5bdc322b087073a63bc94f699944b2
languageName: node
linkType: hard
"@commitlint/lint@npm:^17.7.0":
version: 17.7.0
resolution: "@commitlint/lint@npm:17.7.0"
dependencies:
"@commitlint/is-ignored": ^17.7.0
"@commitlint/parse": ^17.7.0
"@commitlint/rules": ^17.7.0
"@commitlint/types": ^17.4.4
checksum: 72765e0f2c6b78faa1c7ceb1050ef624d505deb0f95c5ac2ce1959c3ee8c2ce579d4f5aaf9434adf244727a97653be4d7fbc0d75cda2d8915e563ebeb7b886ae
languageName: node
linkType: hard
"@commitlint/load@npm:^17.7.1":
version: 17.7.1
resolution: "@commitlint/load@npm:17.7.1"
dependencies:
"@commitlint/config-validator": ^17.6.7
"@commitlint/execute-rule": ^17.4.0
"@commitlint/resolve-extends": ^17.6.7
"@commitlint/types": ^17.4.4
"@types/node": 20.4.7
chalk: ^4.1.0
cosmiconfig: ^8.0.0
cosmiconfig-typescript-loader: ^4.0.0
lodash.isplainobject: ^4.0.6
lodash.merge: ^4.6.2
lodash.uniq: ^4.5.0
resolve-from: ^5.0.0
ts-node: ^10.8.1
typescript: ^4.6.4 || ^5.0.0
checksum: 8d0e56b49a0e4dec7e8e28a2c6bc7ce985e6b8e10274aa20d0e3f6c2465fc9082d18f91bbe5c336594ebabcc4dc9668fdeaa039ef5bbfaf26ca0be423461ef61
languageName: node
linkType: hard
"@commitlint/message@npm:^17.4.2":
version: 17.4.2
resolution: "@commitlint/message@npm:17.4.2"
checksum: 55b6cfeb57f7c9f913e18821aa4d972a6b6faa78c62741390996151f99554396f6df68ccfee86c163d24d8c27a4dbbcb50ef03c2972ab0a7a21d89daa2f9a519
languageName: node
linkType: hard
"@commitlint/parse@npm:^17.7.0":
version: 17.7.0
resolution: "@commitlint/parse@npm:17.7.0"
dependencies:
"@commitlint/types": ^17.4.4
conventional-changelog-angular: ^6.0.0
conventional-commits-parser: ^4.0.0
checksum: d70d53932576fa30c078099fe9ab00190298ed6aec696648633ab16eb80386e0c1b407c44eb7c548b598573c260ed1bfa890dd8134166d28811f66ed436efbea
languageName: node
linkType: hard
"@commitlint/read@npm:^17.5.1":
version: 17.5.1
resolution: "@commitlint/read@npm:17.5.1"
dependencies:
"@commitlint/top-level": ^17.4.0
"@commitlint/types": ^17.4.4
fs-extra: ^11.0.0
git-raw-commits: ^2.0.11
minimist: ^1.2.6
checksum: 62ee4f7a47b22a8571ae313bca36b418805a248f4986557f38f06317c44b6d18072889f95e7bc22bbb33a2f2b08236f74596ff28e3dbd0894249477a9df367c3
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^17.6.7":
version: 17.6.7
resolution: "@commitlint/resolve-extends@npm:17.6.7"
dependencies:
"@commitlint/config-validator": ^17.6.7
"@commitlint/types": ^17.4.4
import-fresh: ^3.0.0
lodash.mergewith: ^4.6.2
resolve-from: ^5.0.0
resolve-global: ^1.0.0
checksum: 3717b4ccef6e46136f8d4a4b8d78d57184b4331401db07e27f89acb049a3903035bb2b0dbd4c07e3cdcc402cbe693b365c244a0da3df47e0f74cbf3ba76be9ec
languageName: node
linkType: hard
"@commitlint/rules@npm:^17.7.0":
version: 17.7.0
resolution: "@commitlint/rules@npm:17.7.0"
dependencies:
"@commitlint/ensure": ^17.6.7
"@commitlint/message": ^17.4.2
"@commitlint/to-lines": ^17.4.0
"@commitlint/types": ^17.4.4
execa: ^5.0.0
checksum: bc6af55cb8fab82baac450f87e02fa51d91f44855aadced92d74d05f9af99ccfd90b08c67355b53ca6b4b45f386854bcf52e1a4e5bc003665f4873e785eb7c70
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/to-lines@npm:17.4.0"
checksum: 841f90f606238e145ab4ba02940662d511fc04fe553619900152a8542170fe664031b95d820ffaeb8864d4851344278e662ef29637d763fc19fd828e0f8d139b
languageName: node
linkType: hard
"@commitlint/top-level@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/top-level@npm:17.4.0"
dependencies:
find-up: ^5.0.0
checksum: 14cd77e982d2dd7989718dafdbf7a2168a5fb387005e0686c2dfa9ffc36bb9a749e5d80a151884459e4d8c88564339688dca26e9c711abe043beeb3f30c3dfd6
languageName: node
linkType: hard
"@commitlint/types@npm:^17.4.4":
version: 17.4.4
resolution: "@commitlint/types@npm:17.4.4"
dependencies:
chalk: ^4.1.0
checksum: 03c52429052d161710896d198000196bd2e60be0fd71459b22133dd83dee43e8d05ea8ee703c8369823bc40f77a54881b80d8aa4368ac52aea7f30fb234b73d2
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": 0.3.9
checksum: 5718f267085ed8edb3e7ef210137241775e607ee18b77d95aa5bd7514f47f5019aa2d82d96b3bf342ef7aa890a346fa1044532ff7cc3009e7d24fce3ce6200fa
languageName: node
linkType: hard
"@dillage/template-typescript-app@workspace:.":
version: 0.0.0-use.local
resolution: "@dillage/template-typescript-app@workspace:."
dependencies:
"@commitlint/cli": ^17.7.1
"@commitlint/config-conventional": ^17.7.0
"@semantic-release/changelog": ^6.0.3
"@semantic-release/git": ^10.0.1
"@types/node": ^20.5.7
"@typescript-eslint/eslint-plugin": ^6.0.0
"@typescript-eslint/parser": ^6.0.0
eslint: ^8.45.0
eslint-config-prettier: ^9.0.0
eslint-plugin-ts-export-naming-convention: ^1.0.1
husky: ^8.0.0
is-ci: ^3.0.1
lint-staged: ^14.0.1
plop: ^3.1.2
prettier: 3.0.2
semantic-release: ^21.1.1
semantic-release-yarn: ^2.0.1
typescript: ~5.1.0
vite: ^4.4.5
vite-plugin-dts: ^3.5.3
vite-tsconfig-paths: ^4.2.0
vitest: ^0.34.3
languageName: unknown
linkType: soft
"@esbuild/android-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm64@npm:0.18.20"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm@npm:0.18.20"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-x64@npm:0.18.20"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-arm64@npm:0.18.20"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-x64@npm:0.18.20"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-arm64@npm:0.18.20"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-x64@npm:0.18.20"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm64@npm:0.18.20"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm@npm:0.18.20"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ia32@npm:0.18.20"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-loong64@npm:0.18.20"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-mips64el@npm:0.18.20"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ppc64@npm:0.18.20"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-riscv64@npm:0.18.20"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-s390x@npm:0.18.20"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-x64@npm:0.18.20"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/netbsd-x64@npm:0.18.20"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/openbsd-x64@npm:0.18.20"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/sunos-x64@npm:0.18.20"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-arm64@npm:0.18.20"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-ia32@npm:0.18.20"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-x64@npm:0.18.20"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: ^3.3.0
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.8.0
resolution: "@eslint-community/regexpp@npm:4.8.0"
checksum: 601e6d033d556e98e8c929905bef335f20d7389762812df4d0f709d9b4d2631610dda975fb272e23b5b68e24a163b3851b114c8080a0a19fb4c141a1eff6305b
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.2":
version: 2.1.2
resolution: "@eslint/eslintrc@npm:2.1.2"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^9.6.0
globals: ^13.19.0
ignore: ^5.2.0
import-fresh: ^3.2.1
js-yaml: ^4.1.0
minimatch: ^3.1.2
strip-json-comments: ^3.1.1
checksum: bc742a1e3b361f06fedb4afb6bf32cbd27171292ef7924f61c62f2aed73048367bcc7ac68f98c06d4245cd3fabc43270f844e3c1699936d4734b3ac5398814a7
languageName: node
linkType: hard
"@eslint/js@npm:8.48.0":
version: 8.48.0
resolution: "@eslint/js@npm:8.48.0"
checksum: b2755f9c0ee810c886eba3c50dcacb184ba5a5cd1cbc01988ee506ad7340653cae0bd55f1d95c64b56dfc6d25c2caa7825335ffd2c50165bae9996fe0f396851
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.10":
version: 0.11.10
resolution: "@humanwhocodes/config-array@npm:0.11.10"
dependencies:
"@humanwhocodes/object-schema": ^1.2.1
debug: ^4.1.1
minimatch: ^3.0.5
checksum: 1b1302e2403d0e35bc43e66d67a2b36b0ad1119efc704b5faff68c41f791a052355b010fb2d27ef022670f550de24cd6d08d5ecf0821c16326b7dcd0ee5d5d8a
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.1":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: ^5.1.2
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: ^7.0.1
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: ^8.1.0
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb
languageName: node
linkType: hard
"@isaacs/string-locale-compare@npm:^1.1.0":
version: 1.1.0
resolution: "@isaacs/string-locale-compare@npm:1.1.0"
checksum: 7287da5d11497b82c542d3c2abe534808015be4f4883e71c26853277b5456f6bbe4108535db847a29f385ad6dc9318ffb0f55ee79bb5f39993233d7dccf8751d
languageName: node
linkType: hard
"@jest/schemas@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/schemas@npm:29.6.3"
dependencies:
"@sinclair/typebox": ^0.27.8
checksum: 910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: f5b441fe7900eab4f9155b3b93f9800a916257f4e8563afbcd3b5a5337b55e52bd8ae6735453b1b745457d9f6cdb16d74cd6220bbdd98cf153239e13f6cbb653
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.15":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:0.3.9":
version: 0.3.9
resolution: "@jridgewell/trace-mapping@npm:0.3.9"
dependencies:
"@jridgewell/resolve-uri": ^3.0.3
"@jridgewell/sourcemap-codec": ^1.4.10
checksum: d89597752fd88d3f3480845691a05a44bd21faac18e2185b6f436c3b0fd0c5a859fbbd9aaa92050c4052caf325ad3e10e2e1d1b64327517471b7d51babc0ddef
languageName: node
linkType: hard
"@microsoft/api-extractor-model@npm:7.27.6":
version: 7.27.6
resolution: "@microsoft/api-extractor-model@npm:7.27.6"
dependencies:
"@microsoft/tsdoc": 0.14.2
"@microsoft/tsdoc-config": ~0.16.1
"@rushstack/node-core-library": 3.59.7
checksum: 7867feaf3a0e5accfcce3a77681248a319952a266cffc644e4f8f7df1c9e1d55adb5124df901e8cca594bb3e12d361d1fcb2bffbdbb4b20fe3113928f6535975
languageName: node
linkType: hard
"@microsoft/api-extractor@npm:^7.36.4":
version: 7.36.4
resolution: "@microsoft/api-extractor@npm:7.36.4"
dependencies:
"@microsoft/api-extractor-model": 7.27.6
"@microsoft/tsdoc": 0.14.2
"@microsoft/tsdoc-config": ~0.16.1
"@rushstack/node-core-library": 3.59.7
"@rushstack/rig-package": 0.4.1
"@rushstack/ts-command-line": 4.15.2
colors: ~1.2.1
lodash: ~4.17.15
resolve: ~1.22.1
semver: ~7.5.4
source-map: ~0.6.1
typescript: ~5.0.4
bin:
api-extractor: bin/api-extractor
checksum: 92559325cf2407fa27cb9675772956511fa35005f295cdb4dc47abd7ef9c77ba61b0f684c2e952301a76dd2cfa9e398840c8f3d9117d621300e12b0ecfbf8147
languageName: node
linkType: hard
"@microsoft/tsdoc-config@npm:~0.16.1":
version: 0.16.2
resolution: "@microsoft/tsdoc-config@npm:0.16.2"
dependencies:
"@microsoft/tsdoc": 0.14.2
ajv: ~6.12.6
jju: ~1.4.0
resolve: ~1.19.0
checksum: 12b0d703154076bcaac75ca42e804e4fc292672396441e54346d7eadd0d6b57f90980eda2b1bab89b224af86da34a2389f9054002e282011e795ca5919a4386f
languageName: node
linkType: hard
"@microsoft/tsdoc@npm:0.14.2":
version: 0.14.2
resolution: "@microsoft/tsdoc@npm:0.14.2"
checksum: b167c89e916ba73ee20b9c9d5dba6aa3a0de25ed3d50050e8a344dca7cd43cb2e1059bd515c820369b6e708901dd3fda476a42bc643ca74a35671ce77f724a3a
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": 2.0.5
run-parallel: ^1.1.9
checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59
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: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
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": 2.1.5
fastq: ^1.6.0
checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53
languageName: node
linkType: hard
"@npmcli/agent@npm:^2.0.0":
version: 2.1.0
resolution: "@npmcli/agent@npm:2.1.0"
dependencies:
http-proxy-agent: ^7.0.0
https-proxy-agent: ^7.0.1
lru-cache: ^10.0.1
socks-proxy-agent: ^8.0.1
checksum: 10152b05cd627296c93f439a41f6f99eb3a0786894a03f1c81a8a56c4a44988fefd7593a9a6258524f1e4c902c6ca20aaf74c793eadfd3651a04ebd3e4c729b8
languageName: node
linkType: hard
"@npmcli/arborist@npm:^6.3.0":
version: 6.3.0
resolution: "@npmcli/arborist@npm:6.3.0"
dependencies:
"@isaacs/string-locale-compare": ^1.1.0
"@npmcli/fs": ^3.1.0
"@npmcli/installed-package-contents": ^2.0.2
"@npmcli/map-workspaces": ^3.0.2
"@npmcli/metavuln-calculator": ^5.0.0
"@npmcli/name-from-folder": ^2.0.0
"@npmcli/node-gyp": ^3.0.0
"@npmcli/package-json": ^4.0.0
"@npmcli/query": ^3.0.0
"@npmcli/run-script": ^6.0.0
bin-links: ^4.0.1
cacache: ^17.0.4
common-ancestor-path: ^1.0.1
hosted-git-info: ^6.1.1
json-parse-even-better-errors: ^3.0.0
json-stringify-nice: ^1.1.4
minimatch: ^9.0.0
nopt: ^7.0.0
npm-install-checks: ^6.0.0
npm-package-arg: ^10.1.0
npm-pick-manifest: ^8.0.1
npm-registry-fetch: ^14.0.3
npmlog: ^7.0.1
pacote: ^15.0.8
parse-conflict-json: ^3.0.0
proc-log: ^3.0.0
promise-all-reject-late: ^1.0.0
promise-call-limit: ^1.0.2
read-package-json-fast: ^3.0.2
semver: ^7.3.7
ssri: ^10.0.1
treeverse: ^3.0.0
walk-up-path: ^3.0.1
bin:
arborist: bin/index.js
checksum: 4f59d5408c0ab7aff4ec2848b7d0bbbd9ba0d5b9d940303f5c1c14d6965a71272566553a7e9977f62ff788838562abe65b45d7c0a300ea624268a8504b9a6f9a
languageName: node
linkType: hard
"@npmcli/arborist@npm:^7.0.0":
version: 7.0.0
resolution: "@npmcli/arborist@npm:7.0.0"
dependencies:
"@isaacs/string-locale-compare": ^1.1.0
"@npmcli/fs": ^3.1.0
"@npmcli/installed-package-contents": ^2.0.2
"@npmcli/map-workspaces": ^3.0.2
"@npmcli/metavuln-calculator": ^7.0.0
"@npmcli/name-from-folder": ^2.0.0
"@npmcli/node-gyp": ^3.0.0
"@npmcli/package-json": ^5.0.0
"@npmcli/query": ^3.0.0
"@npmcli/run-script": ^7.0.1
bin-links: ^4.0.1
cacache: ^18.0.0
common-ancestor-path: ^1.0.1
hosted-git-info: ^7.0.0
json-parse-even-better-errors: ^3.0.0
json-stringify-nice: ^1.1.4
minimatch: ^9.0.0
nopt: ^7.0.0
npm-install-checks: ^6.2.0
npm-package-arg: ^11.0.0
npm-pick-manifest: ^9.0.0
npm-registry-fetch: ^16.0.0
npmlog: ^7.0.1
pacote: ^17.0.4
parse-conflict-json: ^3.0.0
proc-log: ^3.0.0
promise-all-reject-late: ^1.0.0
promise-call-limit: ^1.0.2
read-package-json-fast: ^3.0.2
semver: ^7.3.7
ssri: ^10.0.5
treeverse: ^3.0.0
walk-up-path: ^3.0.1
bin:
arborist: bin/index.js
checksum: f424434d48a1108b1f8a349c6fc614fd5edd537331e2db02ea3e92701114f9eaf832f95a66bd00c3763a25a078a4f4fa0523b350744c4b9dacef41b71887fd7e
languageName: node
linkType: hard
"@npmcli/config@npm:^6.2.1":
version: 6.2.1
resolution: "@npmcli/config@npm:6.2.1"
dependencies:
"@npmcli/map-workspaces": ^3.0.2
ci-info: ^3.8.0
ini: ^4.1.0
nopt: ^7.0.0
proc-log: ^3.0.0
read-package-json-fast: ^3.0.2
semver: ^7.3.5
walk-up-path: ^3.0.1
checksum: 8c8d47f900cb4ecc5afea4f30d9556c8867913eca10fc2d6d2ad108d5b0e7d7356fd33b6a1c9b709b334c1ccf7fe15bb3147ece408436fcb2f4988507a388019
languageName: node
linkType: hard
"@npmcli/disparity-colors@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/disparity-colors@npm:3.0.0"
dependencies:
ansi-styles: ^4.3.0
checksum: 49320c6927b8e02a0eb006cfc9f5978370ae79ffa2b0da3b3d0ff2e9ef487501ebdec959dadc1e6f2725e16e27f9ea08f081a3af5126376f6f5b1caf6a1da0ce
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/fs@npm:3.1.0"
dependencies:
semver: ^7.3.5
checksum: a50a6818de5fc557d0b0e6f50ec780a7a02ab8ad07e5ac8b16bf519e0ad60a144ac64f97d05c443c3367235d337182e1d012bbac0eb8dbae8dc7b40b193efd0e
languageName: node
linkType: hard
"@npmcli/git@npm:^4.0.0, @npmcli/git@npm:^4.0.1, @npmcli/git@npm:^4.1.0":
version: 4.1.0
resolution: "@npmcli/git@npm:4.1.0"
dependencies:
"@npmcli/promise-spawn": ^6.0.0
lru-cache: ^7.4.4
npm-pick-manifest: ^8.0.0
proc-log: ^3.0.0
promise-inflight: ^1.0.1
promise-retry: ^2.0.1
semver: ^7.3.5
which: ^3.0.0
checksum: 37efb926593f294eb263297cdfffec9141234f977b89a7a6b95ff7a72576c1d7f053f4961bc4b5e79dea6476fe08e0f3c1ed9e4aeb84169e357ff757a6a70073
languageName: node
linkType: hard
"@npmcli/git@npm:^5.0.0":
version: 5.0.3
resolution: "@npmcli/git@npm:5.0.3"
dependencies:
"@npmcli/promise-spawn": ^7.0.0
lru-cache: ^10.0.1
npm-pick-manifest: ^9.0.0
proc-log: ^3.0.0
promise-inflight: ^1.0.1
promise-retry: ^2.0.1
semver: ^7.3.5
which: ^4.0.0
checksum: a906854ba59cf38231f310637a12c08665b53d3e846702f1c48f371d06de43535a8ab6f4af2c9853f1919e59e407981597e6cdae86a229095da20cd8af73cfe0
languageName: node
linkType: hard
"@npmcli/installed-package-contents@npm:^2.0.1, @npmcli/installed-package-contents@npm:^2.0.2":
version: 2.0.2
resolution: "@npmcli/installed-package-contents@npm:2.0.2"
dependencies:
npm-bundled: ^3.0.0
npm-normalize-package-bin: ^3.0.0
bin:
installed-package-contents: lib/index.js
checksum: 60789d5ed209ee5df479232f62d9d38ecec36e95701cae88320b828b8651351b32d7b47d16d4c36cc7ce5000db4bf1f3e6981bed6381bdc5687ff4bc0795682d
languageName: node
linkType: hard
"@npmcli/map-workspaces@npm:^3.0.2, @npmcli/map-workspaces@npm:^3.0.4":
version: 3.0.4
resolution: "@npmcli/map-workspaces@npm:3.0.4"
dependencies:
"@npmcli/name-from-folder": ^2.0.0
glob: ^10.2.2
minimatch: ^9.0.0
read-package-json-fast: ^3.0.0
checksum: 99607dbc502b16d0ce7a47a81ccc496b3f5ed10df4e61e61a505929de12c356092996044174ae0cfd6d8cc177ef3b597eef4987b674fc0c5a306d3a8cc1fe91a
languageName: node
linkType: hard
"@npmcli/metavuln-calculator@npm:^5.0.0":
version: 5.0.1
resolution: "@npmcli/metavuln-calculator@npm:5.0.1"
dependencies:
cacache: ^17.0.0
json-parse-even-better-errors: ^3.0.0
pacote: ^15.0.0
semver: ^7.3.5
checksum: cd08ad9cc4ede499b0be1e22104ee48e207d4e00e8f64ac610945879f41be720b7514a5247af395b61eda8e4461c6e7ef37e2d970b555e20c25ef4f21b515b92
languageName: node
linkType: hard
"@npmcli/metavuln-calculator@npm:^7.0.0":
version: 7.0.0
resolution: "@npmcli/metavuln-calculator@npm:7.0.0"
dependencies:
cacache: ^18.0.0
json-parse-even-better-errors: ^3.0.0
pacote: ^17.0.0
semver: ^7.3.5
checksum: 653448528b8d1a1f10314e3cf04ccb76c77ccbdf3afc61ca4b790e01788ebb552839082258149619c0aa7cf745660c40e21e7ca86123580819490082d0c762ed
languageName: node
linkType: hard
"@npmcli/name-from-folder@npm:^2.0.0":
version: 2.0.0
resolution: "@npmcli/name-from-folder@npm:2.0.0"
checksum: fb3ef891aa57315fb6171866847f298577c8bda98a028e93e458048477133e142b4eb45ce9f3b80454f7c257612cb01754ee782d608507698dd712164436f5bd
languageName: node
linkType: hard
"@npmcli/node-gyp@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/node-gyp@npm:3.0.0"
checksum: fe3802b813eecb4ade7ad77c9396cb56721664275faab027e3bd8a5e15adfbbe39e2ecc19f7885feb3cfa009b96632741cc81caf7850ba74440c6a2eee7b4ffc
languageName: node
linkType: hard
"@npmcli/package-json@npm:^4.0.0, @npmcli/package-json@npm:^4.0.1":
version: 4.0.1
resolution: "@npmcli/package-json@npm:4.0.1"
dependencies:
"@npmcli/git": ^4.1.0
glob: ^10.2.2
hosted-git-info: ^6.1.1
json-parse-even-better-errors: ^3.0.0
normalize-package-data: ^5.0.0
proc-log: ^3.0.0
semver: ^7.5.3
checksum: 699b80a72f1389b119d91131d312b514aa9ff6194377d90470dd91af95a63d497121db07cbc54d82a71d22c039edbc92b0666e7d699619550e1a6825391d756b
languageName: node
linkType: hard
"@npmcli/package-json@npm:^5.0.0":
version: 5.0.0
resolution: "@npmcli/package-json@npm:5.0.0"
dependencies:
"@npmcli/git": ^5.0.0
glob: ^10.2.2
hosted-git-info: ^7.0.0
json-parse-even-better-errors: ^3.0.0
normalize-package-data: ^6.0.0
proc-log: ^3.0.0
semver: ^7.5.3
checksum: 0d128e84e05e8a1771c8cc1f4232053fecf32e28f44e123ad16366ca3a7fd06f272f25f0b7d058f2763cab26bc479c8fc3c570af5de6324b05cb39868dcc6264
languageName: node
linkType: hard
"@npmcli/promise-spawn@npm:^6.0.0, @npmcli/promise-spawn@npm:^6.0.1, @npmcli/promise-spawn@npm:^6.0.2":
version: 6.0.2
resolution: "@npmcli/promise-spawn@npm:6.0.2"
dependencies:
which: ^3.0.0
checksum: aa725780c13e1f97ab32ed7bcb5a207a3fb988e1d7ecdc3d22a549a22c8034740366b351c4dde4b011bcffcd8c4a7be6083d9cf7bc7e897b88837150de018528
languageName: node
linkType: hard
"@npmcli/promise-spawn@npm:^7.0.0":
version: 7.0.0
resolution: "@npmcli/promise-spawn@npm:7.0.0"
dependencies:
which: ^4.0.0
checksum: 22a8c4fd4ef2729cf75d13b0b294e8c695e08bdb2143e951288056656091fc5281e8baf330c97a6bc803e6fc09489028bf80dcd787972597ef9fda9a9349fc0f
languageName: node
linkType: hard
"@npmcli/query@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/query@npm:3.0.0"
dependencies:
postcss-selector-parser: ^6.0.10
checksum: 90fca7edd5f3e59e875dd8729e6c3aa174292e5b66caa0d7db85841cc5eeb414c7eb7d7637d30f638605d05e1238e718d09b8c1a251f43cfc21d9ac6835c7b39
languageName: node
linkType: hard
"@npmcli/run-script@npm:^6.0.0, @npmcli/run-script@npm:^6.0.2":
version: 6.0.2
resolution: "@npmcli/run-script@npm:6.0.2"
dependencies:
"@npmcli/node-gyp": ^3.0.0
"@npmcli/promise-spawn": ^6.0.0
node-gyp: ^9.0.0
read-package-json-fast: ^3.0.0
which: ^3.0.0
checksum: 7a671d7dbeae376496e1c6242f02384928617dc66cd22881b2387272205c3668f8490ec2da4ad63e1abf979efdd2bdf4ea0926601d78578e07d83cfb233b3a1a
languageName: node
linkType: hard
"@npmcli/run-script@npm:^7.0.0, @npmcli/run-script@npm:^7.0.1":
version: 7.0.1
resolution: "@npmcli/run-script@npm:7.0.1"
dependencies:
"@npmcli/node-gyp": ^3.0.0
"@npmcli/promise-spawn": ^7.0.0
node-gyp: ^9.0.0
read-package-json-fast: ^3.0.0
which: ^4.0.0
checksum: 1713dda8bfe8e6ed0c82ca1f061d4deea5e87f4de5595e109d12d3fc1a0a9ada71d42ee5fc436d72c59d6ab3503ef8178a84a425edd355e4cc9c839d095554b8
languageName: node
linkType: hard
"@octokit/auth-token@npm:^4.0.0":
version: 4.0.0
resolution: "@octokit/auth-token@npm:4.0.0"
checksum: d78f4dc48b214d374aeb39caec4fdbf5c1e4fd8b9fcb18f630b1fe2cbd5a880fca05445f32b4561f41262cb551746aeb0b49e89c95c6dd99299706684d0cae2f
languageName: node