forked from Lullabot/drainpipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8290 lines (7435 loc) · 285 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@babel/code-frame@npm:^7.0.0":
version: 7.15.8
resolution: "@babel/code-frame@npm:7.15.8"
dependencies:
"@babel/highlight": "npm:^7.14.5"
checksum: 10c0/ba2427bf700fd8a263069e99839125c527f48c6566348416fadfc821a362260653dc3601f6bc9fb86852e4e31526a4f50d930e7a4af417feab72c3844263d2b6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.5":
version: 7.15.7
resolution: "@babel/helper-validator-identifier@npm:7.15.7"
checksum: 10c0/398bbf808232073504426d08fa6a5ee7b70a41eda3c7a02115d9f879fbd89c057bef27e8013df2084d59eed43587dac91c915074fa8385544fae0caf03791c2b
languageName: node
linkType: hard
"@babel/highlight@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/highlight@npm:7.14.5"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.14.5"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10c0/b9d16895e4bf780d69504c7cc8a9871dc668bcd1851c4a7a7f039f34ba5bb1f04efc4ad6b79112496c7896d541a4d38efa02e7d8be8fb0a1f352097cff8ba79d
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/aix-ppc64@npm:0.24.0"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm64@npm:0.24.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm@npm:0.24.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-x64@npm:0.24.0"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-arm64@npm:0.24.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-x64@npm:0.24.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/freebsd-arm64@npm:0.24.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/freebsd-x64@npm:0.24.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-arm64@npm:0.24.0"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-arm@npm:0.24.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-ia32@npm:0.24.0"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-loong64@npm:0.24.0"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-mips64el@npm:0.24.0"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-ppc64@npm:0.24.0"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-riscv64@npm:0.24.0"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-s390x@npm:0.24.0"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-x64@npm:0.24.0"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/netbsd-x64@npm:0.24.0"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/openbsd-arm64@npm:0.24.0"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/openbsd-x64@npm:0.24.0"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/sunos-x64@npm:0.24.0"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-arm64@npm:0.24.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-ia32@npm:0.24.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-x64@npm:0.24.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@gar/promisify@npm:^1.0.1":
version: 1.1.2
resolution: "@gar/promisify@npm:1.1.2"
checksum: 10c0/5272869fb1e0b765710f8aa522b4c1be9319a9be5b70510daccc570e2a0d69478e5b8a6a665040fdea78f4cf1a4f0e3d7eaaf862410493a201c9ddb961b74b80
languageName: node
linkType: hard
"@gulp-sourcemaps/identity-map@npm:^2.0.1":
version: 2.0.1
resolution: "@gulp-sourcemaps/identity-map@npm:2.0.1"
dependencies:
acorn: "npm:^6.4.1"
normalize-path: "npm:^3.0.0"
postcss: "npm:^7.0.16"
source-map: "npm:^0.6.0"
through2: "npm:^3.0.1"
checksum: 10c0/1102181f6a34eb569b8001a5c10c5583c4a52d6cfeadeee37fdee508fe6bb8966399d208596b56948c18b0c5e0c8dfa59de42e7645a2d22d171b322c4a8fe933
languageName: node
linkType: hard
"@gulp-sourcemaps/map-sources@npm:^1.0.0":
version: 1.0.0
resolution: "@gulp-sourcemaps/map-sources@npm:1.0.0"
dependencies:
normalize-path: "npm:^2.0.1"
through2: "npm:^2.0.3"
checksum: 10c0/7b5bf8b52aacf656b8e727f2f4e5f6b37de7abc2c679e9f19a94ee1bbd3a8116df49ca31b64fba9471131983ab953c6b8ffab100a7af4b73bd6fd46a058b5f54
languageName: node
linkType: hard
"@gulpjs/messages@npm:^1.1.0":
version: 1.1.0
resolution: "@gulpjs/messages@npm:1.1.0"
checksum: 10c0/3833c865a8a011938509863a6e92dca7b076823c0f2936547aad9170ad176c78174e200b087d3cd7dff98360ecfcaa6776650924e2c64399125d39ffb9ad885c
languageName: node
linkType: hard
"@gulpjs/to-absolute-glob@npm:^4.0.0":
version: 4.0.0
resolution: "@gulpjs/to-absolute-glob@npm:4.0.0"
dependencies:
is-negated-glob: "npm:^1.0.0"
checksum: 10c0/acddf10466bfff672e7d09d5b7d9fb2d9d50dff3bcf6d4cc3b3df364ea0ccad6e7a8d8ba0f474f880ff18a76ebbcc09b3f4d6d12d2913e3469361d5539a72110
languageName: node
linkType: hard
"@hutson/parse-repository-url@npm:^3.0.0":
version: 3.0.2
resolution: "@hutson/parse-repository-url@npm:3.0.2"
checksum: 10c0/d9197757ecad2df18d29d3e1d1fe0716d458fd88b849c71cbec9e78239f911074c97e8d764dfd8ed890431c1137e52dd7a337207fd65be20ce0784f7860ae4d1
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@isaacs/string-locale-compare@npm:^1.1.0":
version: 1.1.0
resolution: "@isaacs/string-locale-compare@npm:1.1.0"
checksum: 10c0/d67226ff7ac544a495c77df38187e69e0e3a0783724777f86caadafb306e2155dc3b5787d5927916ddd7fb4a53561ac8f705448ac3235d18ea60da5854829fdf
languageName: node
linkType: hard
"@jest/schemas@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/schemas@npm:29.6.3"
dependencies:
"@sinclair/typebox": "npm:^0.27.8"
checksum: 10c0/b329e89cd5f20b9278ae1233df74016ebf7b385e0d14b9f4c1ad18d096c4c19d1e687aa113a9c976b16ec07f021ae53dea811fb8c1248a50ac34fbe009fdf6be
languageName: node
linkType: hard
"@lerna/create@npm:8.1.7":
version: 8.1.7
resolution: "@lerna/create@npm:8.1.7"
dependencies:
"@npmcli/arborist": "npm:7.5.3"
"@npmcli/package-json": "npm:5.2.0"
"@npmcli/run-script": "npm:8.1.0"
"@nx/devkit": "npm:>=17.1.2 < 20"
"@octokit/plugin-enterprise-rest": "npm:6.0.1"
"@octokit/rest": "npm:19.0.11"
aproba: "npm:2.0.0"
byte-size: "npm:8.1.1"
chalk: "npm:4.1.0"
clone-deep: "npm:4.0.1"
cmd-shim: "npm:6.0.3"
color-support: "npm:1.1.3"
columnify: "npm:1.6.0"
console-control-strings: "npm:^1.1.0"
conventional-changelog-core: "npm:5.0.1"
conventional-recommended-bump: "npm:7.0.1"
cosmiconfig: "npm:^8.2.0"
dedent: "npm:1.5.3"
execa: "npm:5.0.0"
fs-extra: "npm:^11.2.0"
get-stream: "npm:6.0.0"
git-url-parse: "npm:14.0.0"
glob-parent: "npm:6.0.2"
globby: "npm:11.1.0"
graceful-fs: "npm:4.2.11"
has-unicode: "npm:2.0.1"
ini: "npm:^1.3.8"
init-package-json: "npm:6.0.3"
inquirer: "npm:^8.2.4"
is-ci: "npm:3.0.1"
is-stream: "npm:2.0.0"
js-yaml: "npm:4.1.0"
libnpmpublish: "npm:9.0.9"
load-json-file: "npm:6.2.0"
lodash: "npm:^4.17.21"
make-dir: "npm:4.0.0"
minimatch: "npm:3.0.5"
multimatch: "npm:5.0.0"
node-fetch: "npm:2.6.7"
npm-package-arg: "npm:11.0.2"
npm-packlist: "npm:8.0.2"
npm-registry-fetch: "npm:^17.1.0"
nx: "npm:>=17.1.2 < 20"
p-map: "npm:4.0.0"
p-map-series: "npm:2.1.0"
p-queue: "npm:6.6.2"
p-reduce: "npm:^2.1.0"
pacote: "npm:^18.0.6"
pify: "npm:5.0.0"
read-cmd-shim: "npm:4.0.0"
resolve-from: "npm:5.0.0"
rimraf: "npm:^4.4.1"
semver: "npm:^7.3.4"
set-blocking: "npm:^2.0.0"
signal-exit: "npm:3.0.7"
slash: "npm:^3.0.0"
ssri: "npm:^10.0.6"
string-width: "npm:^4.2.3"
strip-ansi: "npm:^6.0.1"
strong-log-transformer: "npm:2.1.0"
tar: "npm:6.2.1"
temp-dir: "npm:1.0.0"
upath: "npm:2.0.1"
uuid: "npm:^10.0.0"
validate-npm-package-license: "npm:^3.0.4"
validate-npm-package-name: "npm:5.0.1"
wide-align: "npm:1.1.5"
write-file-atomic: "npm:5.0.1"
write-pkg: "npm:4.0.0"
yargs: "npm:17.7.2"
yargs-parser: "npm:21.1.1"
checksum: 10c0/9f44f4bf7741b0b594b8bd10be60c7aed8aa5335fcc9ec75bcac40744fcf4cadad40ff37b8f85445c4b9d470388df6e0bbdfcd7d5de43b681e315dc288a2fc9d
languageName: node
linkType: hard
"@lullabot/drainpipe-javascript@workspace:metapackages/javascript":
version: 0.0.0-use.local
resolution: "@lullabot/drainpipe-javascript@workspace:metapackages/javascript"
dependencies:
"@yarnpkg/esbuild-plugin-pnp": "npm:^3.0.0-rc.15"
chokidar: "npm:^3.6.0"
esbuild: "npm:^0.24.0"
yargs: "npm:^17.7.2"
bin:
drainpipe-javascript: ./esbuild.js
languageName: unknown
linkType: soft
"@lullabot/drainpipe-sass@workspace:metapackages/sass":
version: 0.0.0-use.local
resolution: "@lullabot/drainpipe-sass@workspace:metapackages/sass"
dependencies:
autoprefixer: "npm:^10.4.20"
cssnano: "npm:^7.0.6"
gulp: "npm:^5.0.0"
gulp-postcss: "npm:^10.0.0"
gulp-sass: "npm:^5.1.0"
gulp-sass-glob: "npm:^1.1.0"
gulp-sourcemaps: "npm:^3.0.0"
modern-normalize: "npm:^3.0.1"
postcss: "npm:^8.4.40"
sass: "npm:^1.79.3"
yargs: "npm:^17.7.2"
bin:
drainpipe-sass: ./gulp.js
languageName: unknown
linkType: soft
"@lullabot/drainpipe@workspace:.":
version: 0.0.0-use.local
resolution: "@lullabot/drainpipe@workspace:."
dependencies:
lerna: "npm:^8.1.7"
languageName: unknown
linkType: soft
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@npmcli/agent@npm:^2.0.0":
version: 2.2.2
resolution: "@npmcli/agent@npm:2.2.2"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/325e0db7b287d4154ecd164c0815c08007abfb07653cc57bceded17bb7fd240998a3cbdbe87d700e30bef494885eccc725ab73b668020811d56623d145b524ae
languageName: node
linkType: hard
"@npmcli/arborist@npm:7.5.3":
version: 7.5.3
resolution: "@npmcli/arborist@npm:7.5.3"
dependencies:
"@isaacs/string-locale-compare": "npm:^1.1.0"
"@npmcli/fs": "npm:^3.1.1"
"@npmcli/installed-package-contents": "npm:^2.1.0"
"@npmcli/map-workspaces": "npm:^3.0.2"
"@npmcli/metavuln-calculator": "npm:^7.1.1"
"@npmcli/name-from-folder": "npm:^2.0.0"
"@npmcli/node-gyp": "npm:^3.0.0"
"@npmcli/package-json": "npm:^5.1.0"
"@npmcli/query": "npm:^3.1.0"
"@npmcli/redact": "npm:^2.0.0"
"@npmcli/run-script": "npm:^8.1.0"
bin-links: "npm:^4.0.4"
cacache: "npm:^18.0.3"
common-ancestor-path: "npm:^1.0.1"
hosted-git-info: "npm:^7.0.2"
json-parse-even-better-errors: "npm:^3.0.2"
json-stringify-nice: "npm:^1.1.4"
lru-cache: "npm:^10.2.2"
minimatch: "npm:^9.0.4"
nopt: "npm:^7.2.1"
npm-install-checks: "npm:^6.2.0"
npm-package-arg: "npm:^11.0.2"
npm-pick-manifest: "npm:^9.0.1"
npm-registry-fetch: "npm:^17.0.1"
pacote: "npm:^18.0.6"
parse-conflict-json: "npm:^3.0.0"
proc-log: "npm:^4.2.0"
proggy: "npm:^2.0.0"
promise-all-reject-late: "npm:^1.0.0"
promise-call-limit: "npm:^3.0.1"
read-package-json-fast: "npm:^3.0.2"
semver: "npm:^7.3.7"
ssri: "npm:^10.0.6"
treeverse: "npm:^3.0.0"
walk-up-path: "npm:^3.0.1"
bin:
arborist: bin/index.js
checksum: 10c0/61e8f73f687c5c62704de6d2a081490afe6ba5e5526b9b2da44c6cb137df30256d5650235d4ece73454ddc4c40a291e26881bbcaa83c03404177cb3e05e26721
languageName: node
linkType: hard
"@npmcli/fs@npm:^1.0.0":
version: 1.0.0
resolution: "@npmcli/fs@npm:1.0.0"
dependencies:
"@gar/promisify": "npm:^1.0.1"
semver: "npm:^7.3.5"
checksum: 10c0/7ad4ce895c2c803e3ceedddad39cb165cb8eb1052551af41b9572ebe3dec40263c02e9f2e04b53974c083344769ecd026cd59441a6fd12738036d9f5a844237f
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/fs@npm:3.1.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/162b4a0b8705cd6f5c2470b851d1dc6cd228c86d2170e1769d738c1fbb69a87160901411c3c035331e9e99db72f1f1099a8b734bf1637cc32b9a5be1660e4e1e
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.1":
version: 3.1.1
resolution: "@npmcli/fs@npm:3.1.1"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/c37a5b4842bfdece3d14dfdb054f73fe15ed2d3da61b34ff76629fb5b1731647c49166fd2a8bf8b56fcfa51200382385ea8909a3cbecdad612310c114d3f6c99
languageName: node
linkType: hard
"@npmcli/git@npm:^5.0.0":
version: 5.0.5
resolution: "@npmcli/git@npm:5.0.5"
dependencies:
"@npmcli/promise-spawn": "npm:^7.0.0"
lru-cache: "npm:^10.0.1"
npm-pick-manifest: "npm:^9.0.0"
proc-log: "npm:^3.0.0"
promise-inflight: "npm:^1.0.1"
promise-retry: "npm:^2.0.1"
semver: "npm:^7.3.5"
which: "npm:^4.0.0"
checksum: 10c0/adfc8bf139497f01930e579ba13869a5d8990910e232f24f722e80468384003990461620a00350a761a303f41c7cee43059d03f43907582704438ae2316e1c72
languageName: node
linkType: hard
"@npmcli/installed-package-contents@npm:^2.0.1":
version: 2.0.2
resolution: "@npmcli/installed-package-contents@npm:2.0.2"
dependencies:
npm-bundled: "npm:^3.0.0"
npm-normalize-package-bin: "npm:^3.0.0"
bin:
installed-package-contents: lib/index.js
checksum: 10c0/03efadb365997e3b54d1d1ea30ef3555729a68939ab2b7b7800a4a2750afb53da222f52be36bd7c44950434c3e26cbe7be28dac093efdf7b1bbe9e025ab62a07
languageName: node
linkType: hard
"@npmcli/installed-package-contents@npm:^2.1.0":
version: 2.1.0
resolution: "@npmcli/installed-package-contents@npm:2.1.0"
dependencies:
npm-bundled: "npm:^3.0.0"
npm-normalize-package-bin: "npm:^3.0.0"
bin:
installed-package-contents: bin/index.js
checksum: 10c0/f5ecba0d45fc762f3e0d5def29fbfabd5d55e8147b01ae0a101769245c2e0038bc82a167836513a98aaed0a15c3d81fcdb232056bb8a962972a432533e518fce
languageName: node
linkType: hard
"@npmcli/map-workspaces@npm:^3.0.2":
version: 3.0.6
resolution: "@npmcli/map-workspaces@npm:3.0.6"
dependencies:
"@npmcli/name-from-folder": "npm:^2.0.0"
glob: "npm:^10.2.2"
minimatch: "npm:^9.0.0"
read-package-json-fast: "npm:^3.0.0"
checksum: 10c0/6bfcf8ca05ab9ddc2bd19c0fd91e9982f03cc6e67b0c03f04ba4d2f29b7d83f96e759c0f8f1f4b6dbe3182272483643a0d1269788352edd0c883d6fbfa2f3f14
languageName: node
linkType: hard
"@npmcli/metavuln-calculator@npm:^7.1.1":
version: 7.1.1
resolution: "@npmcli/metavuln-calculator@npm:7.1.1"
dependencies:
cacache: "npm:^18.0.0"
json-parse-even-better-errors: "npm:^3.0.0"
pacote: "npm:^18.0.0"
proc-log: "npm:^4.1.0"
semver: "npm:^7.3.5"
checksum: 10c0/27402cab124bb1fca56af7549f730c38c0ab40de60cbef6264a4193c26c2d28cefb2adac29ed27f368031795704f9f8fe0c547c4c8cb0c0fa94d72330d56ac80
languageName: node
linkType: hard
"@npmcli/move-file@npm:^1.0.1":
version: 1.1.2
resolution: "@npmcli/move-file@npm:1.1.2"
dependencies:
mkdirp: "npm:^1.0.4"
rimraf: "npm:^3.0.2"
checksum: 10c0/02e946f3dafcc6743132fe2e0e2b585a96ca7265653a38df5a3e53fcf26c7c7a57fc0f861d7c689a23fdb6d6836c7eea5050c8086abf3c994feb2208d1514ff0
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: 10c0/1aa551771d98ab366d4cb06b33efd3bb62b609942f6d9c3bb667c10e5bb39a223d3e330022bc980a44402133e702ae67603862099ac8254dad11f90e77409827
languageName: node
linkType: hard
"@npmcli/node-gyp@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/node-gyp@npm:3.0.0"
checksum: 10c0/5d0ac17dacf2dd6e45312af2c1ae2749bb0730fcc82da101c37d3a4fd963a5e1c5d39781e5e1e5e5828df4ab1ad4e3fdbab1d69b7cd0abebad9983efb87df985
languageName: node
linkType: hard
"@npmcli/package-json@npm:5.2.0, @npmcli/package-json@npm:^5.1.0":
version: 5.2.0
resolution: "@npmcli/package-json@npm:5.2.0"
dependencies:
"@npmcli/git": "npm:^5.0.0"
glob: "npm:^10.2.2"
hosted-git-info: "npm:^7.0.0"
json-parse-even-better-errors: "npm:^3.0.0"
normalize-package-data: "npm:^6.0.0"
proc-log: "npm:^4.0.0"
semver: "npm:^7.5.3"
checksum: 10c0/bdce8c7eed0dee1d272bf8ba500c4bce6d8ed2b4dd2ce43075d3ba02ffd3bb70c46dbcf8b3a35e19d9492d039b720dc3a4b30d1a2ddc30b7918e1d5232faa1f7
languageName: node
linkType: hard
"@npmcli/package-json@npm:^5.0.0":
version: 5.0.2
resolution: "@npmcli/package-json@npm:5.0.2"
dependencies:
"@npmcli/git": "npm:^5.0.0"
glob: "npm:^10.2.2"
hosted-git-info: "npm:^7.0.0"
json-parse-even-better-errors: "npm:^3.0.0"
normalize-package-data: "npm:^6.0.0"
proc-log: "npm:^3.0.0"
semver: "npm:^7.5.3"
checksum: 10c0/03e3bc9e204759a2a89314bf977ba014be5e409f3ef06c53843cd6e9998cc33c1379bef548b89beefcddf53b925d8744f793f66b23e4681dd78122821e237638
languageName: node
linkType: hard
"@npmcli/promise-spawn@npm:^7.0.0":
version: 7.0.1
resolution: "@npmcli/promise-spawn@npm:7.0.1"
dependencies:
which: "npm:^4.0.0"
checksum: 10c0/441024049170fc9dd0c793fef7366fd1b2a36c06f1036c52ac4a5d0f2d46deced89f2a94fef20f51aa9934edb4d611ff76b060be2b82086d29d2094ee1b46122
languageName: node
linkType: hard
"@npmcli/query@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/query@npm:3.1.0"
dependencies:
postcss-selector-parser: "npm:^6.0.10"
checksum: 10c0/9a099677dd188a2d9eb7a49e32c69d315b09faea59e851b7c2013b5bda915a38434efa7295565c40a1098916c06ebfa1840f68d831180e36842f48c24f4c5186
languageName: node
linkType: hard
"@npmcli/redact@npm:^2.0.0":
version: 2.0.1
resolution: "@npmcli/redact@npm:2.0.1"
checksum: 10c0/5f346f7ef224b44c90009939f93c446a865a3d9e5a7ebe0246cdb0ebd03219de3962ee6c6e9197298d8c6127ea33535e8c44814276e4941394dc1cdf1f30f6bc
languageName: node
linkType: hard
"@npmcli/run-script@npm:8.1.0, @npmcli/run-script@npm:^8.0.0, @npmcli/run-script@npm:^8.1.0":
version: 8.1.0
resolution: "@npmcli/run-script@npm:8.1.0"
dependencies:
"@npmcli/node-gyp": "npm:^3.0.0"
"@npmcli/package-json": "npm:^5.0.0"
"@npmcli/promise-spawn": "npm:^7.0.0"
node-gyp: "npm:^10.0.0"
proc-log: "npm:^4.0.0"
which: "npm:^4.0.0"
checksum: 10c0/f9f40ecff0406a9ce1b77c9f714fc7c71b561289361efc6e2e0e48ca2d630aa98d277cbbf269750f9467a40eaaac79e78766d67c458046aa9507c8c354650fee
languageName: node
linkType: hard
"@nrwl/devkit@npm:19.0.2":
version: 19.0.2
resolution: "@nrwl/devkit@npm:19.0.2"
dependencies:
"@nx/devkit": "npm:19.0.2"
checksum: 10c0/ee5f062514a8b18416c308b5319ccdde02a449b3f33fc888d3386f3e675cf3fc639995076dea3f7eb256db8147a4f5f3f898d3c63cc1207fb872ac18029c4bf9
languageName: node
linkType: hard
"@nrwl/tao@npm:19.0.2":
version: 19.0.2
resolution: "@nrwl/tao@npm:19.0.2"
dependencies:
nx: "npm:19.0.2"
tslib: "npm:^2.3.0"
bin:
tao: index.js
checksum: 10c0/1d2a115c69f23daff984fc0783081a27bf84b2d60d0d6efd79d2a670263db923ecfc7c1a5b48a7d8c9b8da396ca3ef221ea42e9d2997c62c38880d89aa4e6d65
languageName: node
linkType: hard
"@nx/devkit@npm:19.0.2, @nx/devkit@npm:>=17.1.2 < 20":
version: 19.0.2
resolution: "@nx/devkit@npm:19.0.2"
dependencies:
"@nrwl/devkit": "npm:19.0.2"
ejs: "npm:^3.1.7"
enquirer: "npm:~2.3.6"
ignore: "npm:^5.0.4"
minimatch: "npm:9.0.3"
semver: "npm:^7.5.3"
tmp: "npm:~0.2.1"
tslib: "npm:^2.3.0"
yargs-parser: "npm:21.1.1"
peerDependencies:
nx: ">= 17 <= 20"
checksum: 10c0/909ff5e38f9a054170be44cf265c640490aff61dbc94f22d5e3bfe43706d7f2f665fdad69dc87eb756e5601b2df83f618e180dc14c46380a1b570ba9930922f4
languageName: node
linkType: hard
"@nx/nx-darwin-arm64@npm:19.0.2":
version: 19.0.2
resolution: "@nx/nx-darwin-arm64@npm:19.0.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@nx/nx-darwin-x64@npm:19.0.2":
version: 19.0.2
resolution: "@nx/nx-darwin-x64@npm:19.0.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@nx/nx-freebsd-x64@npm:19.0.2":
version: 19.0.2
resolution: "@nx/nx-freebsd-x64@npm:19.0.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@nx/nx-linux-arm-gnueabihf@npm:19.0.2":
version: 19.0.2
resolution: "@nx/nx-linux-arm-gnueabihf@npm:19.0.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@nx/nx-linux-arm64-gnu@npm:19.0.2":
version: 19.0.2
resolution: "@nx/nx-linux-arm64-gnu@npm:19.0.2"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@nx/nx-linux-arm64-musl@npm:19.0.2":
version: 19.0.2
resolution: "@nx/nx-linux-arm64-musl@npm:19.0.2"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@nx/nx-linux-x64-gnu@npm:19.0.2":
version: 19.0.2
resolution: "@nx/nx-linux-x64-gnu@npm:19.0.2"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@nx/nx-linux-x64-musl@npm:19.0.2":
version: 19.0.2
resolution: "@nx/nx-linux-x64-musl@npm:19.0.2"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@nx/nx-win32-arm64-msvc@npm:19.0.2":
version: 19.0.2
resolution: "@nx/nx-win32-arm64-msvc@npm:19.0.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@nx/nx-win32-x64-msvc@npm:19.0.2":
version: 19.0.2
resolution: "@nx/nx-win32-x64-msvc@npm:19.0.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@octokit/auth-token@npm:^3.0.0":
version: 3.0.4
resolution: "@octokit/auth-token@npm:3.0.4"
checksum: 10c0/abdf5e2da36344de9727c70ba782d58004f5ae1da0f65fa9bc9216af596ef23c0e4675f386df2f6886806612558091d603564051b693b0ad1986aa6160b7a231
languageName: node
linkType: hard
"@octokit/core@npm:^4.2.1":
version: 4.2.4
resolution: "@octokit/core@npm:4.2.4"
dependencies:
"@octokit/auth-token": "npm:^3.0.0"
"@octokit/graphql": "npm:^5.0.0"
"@octokit/request": "npm:^6.0.0"
"@octokit/request-error": "npm:^3.0.0"
"@octokit/types": "npm:^9.0.0"
before-after-hook: "npm:^2.2.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10c0/e54081a56884e628d1804837fddcd48c10d516117bb891551c8dc9d8e3dad449aeb9b4677ca71e8f0e76268c2b7656c953099506679aaa4666765228474a3ce6
languageName: node
linkType: hard
"@octokit/endpoint@npm:^7.0.0":
version: 7.0.6
resolution: "@octokit/endpoint@npm:7.0.6"
dependencies:
"@octokit/types": "npm:^9.0.0"
is-plain-object: "npm:^5.0.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10c0/fd147a55010b54af7567bf90791359f7096a1c9916a2b7c72f8afd0c53141338b3d78da3a4ab3e3bdfeb26218a1b73735432d8987ccc04996b1019219299f115
languageName: node
linkType: hard
"@octokit/graphql@npm:^5.0.0":
version: 5.0.6
resolution: "@octokit/graphql@npm:5.0.6"
dependencies:
"@octokit/request": "npm:^6.0.0"
"@octokit/types": "npm:^9.0.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10c0/de1d839d97fe6d96179925f6714bf96e7af6f77929892596bb4211adab14add3291fc5872b269a3d0e91a4dcf248d16096c82606c4a43538cf241b815c2e2a36
languageName: node
linkType: hard
"@octokit/openapi-types@npm:^18.0.0":
version: 18.1.1
resolution: "@octokit/openapi-types@npm:18.1.1"
checksum: 10c0/856d3bb9f8c666e837dd5e8b8c216ee4342b9ed63ff8da922ca4ce5883ed1dfbec73390eb13d69fbcb4703a4c8b8b6a586df3b0e675ff93bf3d46b5b4fe0968e
languageName: node
linkType: hard
"@octokit/plugin-enterprise-rest@npm:6.0.1":
version: 6.0.1
resolution: "@octokit/plugin-enterprise-rest@npm:6.0.1"
checksum: 10c0/26bd0a30582954efcd29b41e16698db79e9d20e3f88c4069b43b183223cee69862621f18b6a7a1c9257b1cd07c24477e403b75c74688660ecf31d467b9d8fd9e
languageName: node
linkType: hard
"@octokit/plugin-paginate-rest@npm:^6.1.2":
version: 6.1.2
resolution: "@octokit/plugin-paginate-rest@npm:6.1.2"
dependencies:
"@octokit/tsconfig": "npm:^1.0.2"
"@octokit/types": "npm:^9.2.3"
peerDependencies:
"@octokit/core": ">=4"
checksum: 10c0/def241c4f00b864822ab6414eaadd8679a6d332004c7e77467cfc1e6d5bdcc453c76bd185710ee942e4df201f9dd2170d960f46af5b14ef6f261a0068f656364
languageName: node
linkType: hard
"@octokit/plugin-request-log@npm:^1.0.4":
version: 1.0.4
resolution: "@octokit/plugin-request-log@npm:1.0.4"
peerDependencies:
"@octokit/core": ">=3"
checksum: 10c0/7238585445555db553912e0cdef82801c89c6e5cbc62c23ae086761c23cc4a403d6c3fddd20348bbd42fb7508e2c2fce370eb18fdbe3fbae2c0d2c8be974f4cc
languageName: node
linkType: hard
"@octokit/plugin-rest-endpoint-methods@npm:^7.1.2":
version: 7.2.3
resolution: "@octokit/plugin-rest-endpoint-methods@npm:7.2.3"
dependencies:
"@octokit/types": "npm:^10.0.0"
peerDependencies:
"@octokit/core": ">=3"
checksum: 10c0/8bffbc5852695dd08d65cc64b6ab7d2871ed9df1e791608f48b488a3908b5b655e3686b5dd72fc37c824e82bdd4dfc9d24e2e50205bbc324667def1d705bc9da
languageName: node
linkType: hard
"@octokit/request-error@npm:^3.0.0":
version: 3.0.3
resolution: "@octokit/request-error@npm:3.0.3"
dependencies:
"@octokit/types": "npm:^9.0.0"
deprecation: "npm:^2.0.0"
once: "npm:^1.4.0"
checksum: 10c0/1e252ac193c8af23b709909911aa327ed5372cbafcba09e4aff41e0f640a7c152579ab0a60311a92e37b4e7936392d59ee4c2feae5cdc387ee8587a33d8afa60
languageName: node
linkType: hard
"@octokit/request@npm:^6.0.0":
version: 6.2.8
resolution: "@octokit/request@npm:6.2.8"
dependencies:
"@octokit/endpoint": "npm:^7.0.0"
"@octokit/request-error": "npm:^3.0.0"
"@octokit/types": "npm:^9.0.0"
is-plain-object: "npm:^5.0.0"
node-fetch: "npm:^2.6.7"
universal-user-agent: "npm:^6.0.0"
checksum: 10c0/6b6079ed45bac44c4579b40990bfd1905b03d4bc4e5255f3d5a10cf5182171578ebe19abeab32ebb11a806f1131947f2a06b7a077bd7e77ade7b15fe2882174b
languageName: node
linkType: hard
"@octokit/rest@npm:19.0.11":
version: 19.0.11
resolution: "@octokit/rest@npm:19.0.11"
dependencies:
"@octokit/core": "npm:^4.2.1"
"@octokit/plugin-paginate-rest": "npm:^6.1.2"
"@octokit/plugin-request-log": "npm:^1.0.4"
"@octokit/plugin-rest-endpoint-methods": "npm:^7.1.2"
checksum: 10c0/a14ae31fc5e70e76d2492aae63d3453cbb71f44e7492400f885ab5ac6b2612bcb244bafa29e45a59461f3e5d99807ff9c88d48af8317ffa4f8ad3f8f11fdd035
languageName: node
linkType: hard
"@octokit/tsconfig@npm:^1.0.2":
version: 1.0.2
resolution: "@octokit/tsconfig@npm:1.0.2"
checksum: 10c0/84db70b495beeed69259dd4def14cdfb600edeb65ef32811558c99413ee2b414ed10bff9c4dcc7a43451d0fd36b4925ada9ef7d4272b5eae38cb005cc2f459ac
languageName: node
linkType: hard
"@octokit/types@npm:^10.0.0":
version: 10.0.0
resolution: "@octokit/types@npm:10.0.0"
dependencies:
"@octokit/openapi-types": "npm:^18.0.0"
checksum: 10c0/9bbbec1e452c271752e5ba735c161a558933f2e35f3004bb0b6e8d6ba574af48b68bab2f293112a8e68c595435a2fbcc76f3e7333f45ba1888bb5193777a943e
languageName: node
linkType: hard
"@octokit/types@npm:^9.0.0, @octokit/types@npm:^9.2.3":
version: 9.3.2
resolution: "@octokit/types@npm:9.3.2"
dependencies:
"@octokit/openapi-types": "npm:^18.0.0"
checksum: 10c0/2925479aa378a4491762b4fcf381bdc7daca39b4e0b2dd7062bce5d74a32ed7d79d20d3c65ceaca6d105cf4b1f7417fea634219bf90f79a57d03e2dac629ec45
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@sigstore/bundle@npm:^2.3.0, @sigstore/bundle@npm:^2.3.1":
version: 2.3.1
resolution: "@sigstore/bundle@npm:2.3.1"
dependencies:
"@sigstore/protobuf-specs": "npm:^0.3.1"
checksum: 10c0/f5cc08e6420055ca20c1fa458725cf3d090974c3650aacfb6ba0b09d9c59149e5f4d8c5bfe9f2253daf2c29548262e9e4ea83b4b2fc4abbaf93cf49ee2687f05
languageName: node
linkType: hard
"@sigstore/core@npm:^1.0.0, @sigstore/core@npm:^1.1.0":
version: 1.1.0
resolution: "@sigstore/core@npm:1.1.0"
checksum: 10c0/3b3420c1bd17de0371e1ac7c8f07a2cbcd24d6b49ace5bbf2b63f559ee08c4a80622a4d1c0ae42f2c9872166e9cb111f33f78bff763d47e5ef1efc62b8e457ea
languageName: node
linkType: hard
"@sigstore/protobuf-specs@npm:^0.3.0, @sigstore/protobuf-specs@npm:^0.3.1":
version: 0.3.1
resolution: "@sigstore/protobuf-specs@npm:0.3.1"
checksum: 10c0/bc926aeb472dcd1f99e887d54d9402e259e186ee2a15cdb395cdb565fdd3457f84a044ef355c96359c3c625127a93fb3c45c7e3bd2f16ac0912a58a6bf3fc137
languageName: node
linkType: hard
"@sigstore/sign@npm:^2.3.0":
version: 2.3.0
resolution: "@sigstore/sign@npm:2.3.0"
dependencies:
"@sigstore/bundle": "npm:^2.3.0"
"@sigstore/core": "npm:^1.0.0"
"@sigstore/protobuf-specs": "npm:^0.3.1"
make-fetch-happen: "npm:^13.0.0"
checksum: 10c0/e11b9318c283604747e0ff6084e17f9da210dd999e8c5c32a229db6b9a9faf54698994458c2a09dec0a1a43ac99eb0d278ca6d5d86045145a96c941aad969e1d
languageName: node
linkType: hard
"@sigstore/tuf@npm:^2.3.1":
version: 2.3.2
resolution: "@sigstore/tuf@npm:2.3.2"
dependencies:
"@sigstore/protobuf-specs": "npm:^0.3.0"
tuf-js: "npm:^2.2.0"
checksum: 10c0/c05008fa46efec1546cc2cdb46e54d6a4773cbd05efa3ad7272339b4f935d58634b9f8494b109197b506116fb894206bf1cdb1fc09351a00297c23ef3c2a1a01
languageName: node
linkType: hard
"@sigstore/verify@npm:^1.2.0":
version: 1.2.0
resolution: "@sigstore/verify@npm:1.2.0"
dependencies:
"@sigstore/bundle": "npm:^2.3.1"
"@sigstore/core": "npm:^1.1.0"
"@sigstore/protobuf-specs": "npm:^0.3.1"
checksum: 10c0/ed0d9cb8c71bde23bd48e40725e5b4bd3ff1595b6d9e4b1ed4f2dfd06f6bf76a3dc69d86f8b2e4488a9cb4ade0d9a41718bd33119b9afca66f90badd52a373fe
languageName: node
linkType: hard