-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package_versions.txt
executable file
·1687 lines (1687 loc) · 221 KB
/
package_versions.txt
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
NAME VERSION TYPE
7zip 23.01-r0 apk
@achingbrain/node-fetch 2.6.7 npm
@ampproject/remapping 2.3.0 npm
@babel/code-frame 7.26.2 npm
@babel/compat-data 7.26.2 npm
@babel/core 7.26.0 npm
@babel/generator 7.26.2 npm
@babel/helper-compilation-targets 7.25.9 npm
@babel/helper-module-imports 7.25.9 npm
@babel/helper-module-transforms 7.26.0 npm
@babel/helper-string-parser 7.25.9 npm
@babel/helper-validator-identifier 7.25.9 npm
@babel/helper-validator-option 7.25.9 npm
@babel/helpers 7.26.0 npm
@babel/parser 7.18.13 npm
@babel/parser 7.26.2 npm
@babel/runtime 7.26.0 npm
@babel/template 7.25.9 npm
@babel/traverse 7.25.9 npm
@babel/types 7.26.0 npm
@cloudcmd/dropbox 4.0.6 npm
@cloudcmd/fileop 5.0.4 npm
@cloudcmd/formatify 1.0.4 npm
@cloudcmd/move-files 5.0.0 npm
@cloudcmd/read-files-sync 2.0.2 npm
@cloudcmd/rename-files 2.0.0 npm
@cloudcmd/sortify 2.0.1 npm
@csstools/css-parser-algorithms 3.0.4 npm
@csstools/css-tokenizer 3.0.3 npm
@csstools/media-query-list-parser 3.0.1 npm
@csstools/selector-specificity 2.2.0 npm
@csstools/selector-specificity 4.0.0 npm (+1 duplicate)
@dual-bundle/import-meta-resolve 4.1.0 npm
@eslint-community/eslint-utils 4.4.1 npm
@eslint-community/regexpp 4.12.1 npm
@eslint/config-array 0.18.0 npm
@eslint/core 0.7.0 npm
@eslint/eslintrc 3.1.0 npm
@eslint/js 9.14.0 npm
@eslint/object-schema 2.1.4 npm
@eslint/plugin-kit 0.2.2 npm
@humanfs/core 0.19.1 npm
@humanfs/node 0.16.6 npm
@humanwhocodes/module-importer 1.0.1 npm
@humanwhocodes/retry 0.3.1 npm
@humanwhocodes/retry 0.4.1 npm
@iocmd/hold-up 1.1.2 npm
@ipld/dag-cbor 6.0.15 npm
@ipld/dag-pb 2.1.18 npm
@jridgewell/gen-mapping 0.3.5 npm
@jridgewell/resolve-uri 3.1.2 npm
@jridgewell/set-array 1.2.1 npm
@jridgewell/sourcemap-codec 1.5.0 npm
@jridgewell/trace-mapping 0.3.25 npm
@keyv/serialize 1.0.1 npm
@my-scope/package-a 0.0.0 npm
@my-scope/package-b 0.0.0 npm
@nodelib/fs.scandir 2.1.5 npm
@nodelib/fs.stat 2.0.5 npm
@nodelib/fs.walk 1.2.8 npm
@protobufjs/aspromise 1.1.2 npm
@protobufjs/base64 1.1.2 npm
@protobufjs/codegen 2.0.4 npm
@protobufjs/eventemitter 1.1.0 npm
@protobufjs/fetch 1.1.0 npm
@protobufjs/float 1.0.2 npm
@protobufjs/inquire 1.1.0 npm
@protobufjs/path 1.1.2 npm
@protobufjs/pool 1.1.0 npm
@protobufjs/utf8 1.1.0 npm
@putout/babel 2.9.0 npm
@putout/cli-cache 1.1.0 npm
@putout/cli-cache 3.2.0 npm (+1 duplicate)
@putout/cli-choose 2.0.0 npm
@putout/cli-choose-formatter 4.0.0 npm
@putout/cli-filesystem 2.0.1 npm
@putout/cli-keypress 1.0.0 npm
@putout/cli-keypress 2.0.0 npm (+1 duplicate)
@putout/cli-match 1.0.1 npm
@putout/cli-match 2.2.0 npm (+1 duplicate)
@putout/cli-ruler 2.0.0 npm
@putout/cli-ruler 3.1.0 npm (+1 duplicate)
@putout/cli-staged 1.1.0 npm
@putout/cli-validate-args 1.1.1 npm
@putout/cli-validate-args 2.0.0 npm (+1 duplicate)
@putout/compare 15.0.2 npm (+1 duplicate)
@putout/compare 8.7.0 npm
@putout/engine-loader 15.0.1 npm (+1 duplicate)
@putout/engine-loader 5.1.0 npm
@putout/engine-parser 11.0.1 npm (+2 duplicates)
@putout/engine-parser 4.10.2 npm
@putout/engine-processor 13.0.0 npm (+1 duplicate)
@putout/engine-processor 4.1.0 npm
@putout/engine-reporter 3.0.0 npm
@putout/engine-runner 12.6.0 npm
@putout/engine-runner 22.0.4 npm (+1 duplicate)
@putout/eslint 3.6.0 npm
@putout/formatter-codeframe 3.0.1 npm
@putout/formatter-codeframe 7.0.0 npm (+1 duplicate)
@putout/formatter-dump 3.0.2 npm
@putout/formatter-dump 5.0.0 npm (+2 duplicates)
@putout/formatter-frame 2.0.0 npm
@putout/formatter-frame 6.0.0 npm (+1 duplicate)
@putout/formatter-json 2.0.0 npm
@putout/formatter-json-lines 2.0.0 npm
@putout/formatter-json-lines 3.0.0 npm (+1 duplicate)
@putout/formatter-memory 2.0.1 npm
@putout/formatter-memory 4.0.1 npm (+1 duplicate)
@putout/formatter-progress 3.0.1 npm
@putout/formatter-progress 5.0.0 npm (+1 duplicate)
@putout/formatter-progress-bar 2.0.3 npm
@putout/formatter-progress-bar 4.0.1 npm (+1 duplicate)
@putout/formatter-stream 3.0.0 npm
@putout/formatter-stream 5.0.0 npm (+1 duplicate)
@putout/formatter-time 3.0.1 npm (+1 duplicate)
@putout/git-status-porcelain 3.0.0 npm
@putout/operate 12.13.0 npm (+1 duplicate)
@putout/operate 7.1.0 npm
@putout/operator-add-args 2.0.1 npm
@putout/operator-add-args 9.0.0 npm (+1 duplicate)
@putout/operator-declare 10.0.1 npm (+1 duplicate)
@putout/operator-declare 3.2.0 npm
@putout/operator-filesystem 5.0.0 npm
@putout/operator-ignore 1.2.0 npm
@putout/operator-json 2.2.0 npm
@putout/operator-match-files 5.0.0 npm (+1 duplicate)
@putout/operator-regexp 1.0.0 npm
@putout/operator-rename-files 2.0.0 npm (+1 duplicate)
@putout/plugin-apply-at 2.0.0 npm (+1 duplicate)
@putout/plugin-apply-await-import 1.1.1 npm
@putout/plugin-apply-destructuring 5.3.0 npm
@putout/plugin-apply-destructuring 7.1.0 npm (+1 duplicate)
@putout/plugin-apply-dot-notation 2.0.0 npm (+1 duplicate)
@putout/plugin-apply-early-return 3.0.0 npm (+1 duplicate)
@putout/plugin-apply-flat-map 2.0.0 npm (+1 duplicate)
@putout/plugin-apply-if-condition 1.1.1 npm
@putout/plugin-apply-is-array 2.1.0 npm
@putout/plugin-apply-numeric-separators 1.2.2 npm
@putout/plugin-apply-optional-chaining 2.0.2 npm
@putout/plugin-apply-optional-chaining 6.0.0 npm (+1 duplicate)
@putout/plugin-apply-overrides 2.1.0 npm (+1 duplicate)
@putout/plugin-apply-starts-with 1.1.0 npm (+1 duplicate)
@putout/plugin-apply-template-literals 3.0.0 npm (+1 duplicate)
@putout/plugin-browserlist 1.0.1 npm
@putout/plugin-browserlist 2.0.0 npm (+1 duplicate)
@putout/plugin-cloudcmd 1.2.0 npm
@putout/plugin-conditions 5.0.0 npm (+1 duplicate)
@putout/plugin-convert-apply-to-spread 3.1.0 npm
@putout/plugin-convert-apply-to-spread 4.0.0 npm (+1 duplicate)
@putout/plugin-convert-arguments-to-rest 1.3.0 npm
@putout/plugin-convert-arguments-to-rest 3.1.0 npm (+1 duplicate)
@putout/plugin-convert-array-copy-to-slice 2.0.0 npm
@putout/plugin-convert-array-copy-to-slice 3.0.0 npm (+1 duplicate)
@putout/plugin-convert-assignment-to-arrow-function 1.2.0 npm
@putout/plugin-convert-assignment-to-comparison 1.0.0 npm
@putout/plugin-convert-assignment-to-comparison 2.0.0 npm (+1 duplicate)
@putout/plugin-convert-assignment-to-declaration 1.0.1 npm (+1 duplicate)
@putout/plugin-convert-bitwise-to-logical 1.0.1 npm
@putout/plugin-convert-commonjs-to-esm 8.0.0 npm
@putout/plugin-convert-comparison-to-boolean 2.0.0 npm
@putout/plugin-convert-concat-to-flat 1.0.0 npm
@putout/plugin-convert-const-to-let 3.0.0 npm (+1 duplicate)
@putout/plugin-convert-equal-to-strict-equal 1.1.1 npm
@putout/plugin-convert-esm-to-commonjs 4.0.0 npm
@putout/plugin-convert-for-each-to-for-of 7.1.2 npm
@putout/plugin-convert-for-in-to-for-of 2.0.1 npm
@putout/plugin-convert-for-to-for-of 3.0.0 npm
@putout/plugin-convert-index-of-to-includes 1.1.0 npm
@putout/plugin-convert-index-of-to-includes 2.0.1 npm (+1 duplicate)
@putout/plugin-convert-map-to-for-of 1.1.0 npm
@putout/plugin-convert-math-pow 4.0.0 npm
@putout/plugin-convert-mock-require-to-mock-import 2.0.0 npm
@putout/plugin-convert-object-assign-to-merge-spread 5.0.0 npm
@putout/plugin-convert-object-assign-to-merge-spread 6.0.0 npm (+1 duplicate)
@putout/plugin-convert-object-entries-to-array-entries 3.0.1 npm (+1 duplicate)
@putout/plugin-convert-optional-to-logical 4.0.0 npm (+1 duplicate)
@putout/plugin-convert-quotes-to-backticks 1.1.2 npm
@putout/plugin-convert-quotes-to-backticks 3.0.0 npm (+1 duplicate)
@putout/plugin-convert-template-to-string 1.0.0 npm
@putout/plugin-convert-template-to-string 2.0.0 npm (+1 duplicate)
@putout/plugin-convert-to-arrow-function 3.0.0 npm
@putout/plugin-convert-to-arrow-function 4.0.0 npm (+1 duplicate)
@putout/plugin-convert-typeof-to-is-type 2.0.1 npm
@putout/plugin-coverage 1.0.0 npm (+1 duplicate)
@putout/plugin-declare 4.0.0 npm
@putout/plugin-declare-before-reference 4.0.0 npm (+1 duplicate)
@putout/plugin-declare-imports-first 2.1.0 npm (+1 duplicate)
@putout/plugin-declare-undefined-variables 6.8.1 npm
@putout/plugin-eslint 2.1.0 npm
@putout/plugin-eslint 9.1.0 npm (+1 duplicate)
@putout/plugin-extract-object-properties 7.0.0 npm
@putout/plugin-extract-object-properties 9.0.0 npm (+1 duplicate)
@putout/plugin-extract-sequence-expressions 2.2.0 npm
@putout/plugin-extract-sequence-expressions 3.5.0 npm (+1 duplicate)
@putout/plugin-filesystem 6.0.0 npm
@putout/plugin-for-of 6.1.1 npm (+1 duplicate)
@putout/plugin-generators 1.0.0 npm (+1 duplicate)
@putout/plugin-github 13.0.0 npm (+1 duplicate)
@putout/plugin-github 2.1.1 npm
@putout/plugin-gitignore 3.1.0 npm
@putout/plugin-gitignore 6.0.0 npm (+1 duplicate)
@putout/plugin-group-imports-by-source 2.0.0 npm (+1 duplicate)
@putout/plugin-labels 1.0.0 npm (+1 duplicate)
@putout/plugin-logical-expressions 6.0.0 npm
@putout/plugin-madrun 13.0.0 npm
@putout/plugin-madrun 19.0.0 npm (+1 duplicate)
@putout/plugin-math 2.1.0 npm (+1 duplicate)
@putout/plugin-maybe 2.0.1 npm (+1 duplicate)
@putout/plugin-merge-destructuring-properties 10.0.0 npm (+1 duplicate)
@putout/plugin-merge-destructuring-properties 6.2.1 npm
@putout/plugin-merge-duplicate-functions 2.0.0 npm (+1 duplicate)
@putout/plugin-merge-duplicate-imports 11.0.0 npm (+1 duplicate)
@putout/plugin-merge-duplicate-imports 5.0.0 npm
@putout/plugin-merge-if-statements 3.1.1 npm
@putout/plugin-montag 2.0.0 npm (+1 duplicate)
@putout/plugin-new 3.0.1 npm (+1 duplicate)
@putout/plugin-nodejs 12.0.1 npm (+1 duplicate)
@putout/plugin-nodejs 2.0.1 npm
@putout/plugin-npmignore 2.0.1 npm
@putout/plugin-npmignore 5.0.0 npm (+1 duplicate)
@putout/plugin-package-json 3.0.0 npm
@putout/plugin-package-json 8.3.0 npm (+1 duplicate)
@putout/plugin-promises 15.2.0 npm (+1 duplicate)
@putout/plugin-promises 7.0.0 npm
@putout/plugin-putout 10.2.0 npm
@putout/plugin-putout 21.4.0 npm (+1 duplicate)
@putout/plugin-putout-config 2.0.0 npm
@putout/plugin-putout-config 6.9.3 npm (+1 duplicate)
@putout/plugin-regexp 4.1.0 npm
@putout/plugin-regexp 9.0.0 npm (+1 duplicate)
@putout/plugin-remove-boolean-from-assertions 1.1.1 npm
@putout/plugin-remove-boolean-from-logical-expressions 4.0.2 npm
@putout/plugin-remove-console 3.1.0 npm
@putout/plugin-remove-console 6.0.0 npm (+1 duplicate)
@putout/plugin-remove-constant-conditions 3.0.1 npm
@putout/plugin-remove-constant-conditions 4.0.2 npm (+1 duplicate)
@putout/plugin-remove-debugger 4.0.2 npm
@putout/plugin-remove-debugger 7.0.0 npm (+1 duplicate)
@putout/plugin-remove-double-negations 3.1.0 npm
@putout/plugin-remove-duplicate-case 1.0.0 npm
@putout/plugin-remove-duplicate-case 3.0.0 npm (+1 duplicate)
@putout/plugin-remove-duplicate-keys 2.1.0 npm
@putout/plugin-remove-duplicate-keys 5.1.0 npm (+1 duplicate)
@putout/plugin-remove-duplicates-from-logical-expressions 1.0.3 npm
@putout/plugin-remove-empty 12.1.0 npm (+1 duplicate)
@putout/plugin-remove-empty 7.1.0 npm
@putout/plugin-remove-iife 1.1.0 npm
@putout/plugin-remove-iife 4.1.0 npm (+1 duplicate)
@putout/plugin-remove-nested-blocks 5.0.1 npm
@putout/plugin-remove-nested-blocks 6.3.0 npm (+1 duplicate)
@putout/plugin-remove-quotes-from-import-assertions 1.0.0 npm (+1 duplicate)
@putout/plugin-remove-unreachable-code 1.2.0 npm
@putout/plugin-remove-unreferenced-variables 1.2.0 npm
@putout/plugin-remove-unreferenced-variables 4.0.0 npm (+1 duplicate)
@putout/plugin-remove-unused-expressions 4.2.0 npm
@putout/plugin-remove-unused-expressions 9.0.0 npm (+1 duplicate)
@putout/plugin-remove-unused-for-of-variables 2.0.0 npm
@putout/plugin-remove-unused-for-of-variables 3.0.1 npm (+1 duplicate)
@putout/plugin-remove-unused-labels 1.0.2 npm (+1 duplicate)
@putout/plugin-remove-unused-private-fields 1.2.1 npm
@putout/plugin-remove-unused-private-fields 2.1.0 npm (+1 duplicate)
@putout/plugin-remove-unused-variables 10.1.0 npm (+1 duplicate)
@putout/plugin-remove-useless-arguments 5.2.0 npm
@putout/plugin-remove-useless-arguments 9.0.0 npm (+1 duplicate)
@putout/plugin-remove-useless-array 1.1.0 npm (+1 duplicate)
@putout/plugin-remove-useless-array-constructor 1.1.0 npm
@putout/plugin-remove-useless-array-constructor 2.0.0 npm (+1 duplicate)
@putout/plugin-remove-useless-array-entries 1.0.0 npm
@putout/plugin-remove-useless-array-from 2.1.1 npm
@putout/plugin-remove-useless-assign 1.1.0 npm (+1 duplicate)
@putout/plugin-remove-useless-conditions 1.1.0 npm
@putout/plugin-remove-useless-constructor 1.0.1 npm
@putout/plugin-remove-useless-constructor 2.0.0 npm (+1 duplicate)
@putout/plugin-remove-useless-continue 1.0.1 npm
@putout/plugin-remove-useless-continue 2.0.0 npm (+1 duplicate)
@putout/plugin-remove-useless-delete 1.0.4 npm (+1 duplicate)
@putout/plugin-remove-useless-escape 2.1.0 npm
@putout/plugin-remove-useless-escape 6.0.0 npm (+1 duplicate)
@putout/plugin-remove-useless-for-of 2.0.1 npm
@putout/plugin-remove-useless-functions 2.0.0 npm
@putout/plugin-remove-useless-functions 3.0.0 npm (+1 duplicate)
@putout/plugin-remove-useless-map 1.1.0 npm
@putout/plugin-remove-useless-new 1.0.1 npm
@putout/plugin-remove-useless-operand 1.1.0 npm
@putout/plugin-remove-useless-operand 2.1.0 npm (+1 duplicate)
@putout/plugin-remove-useless-push 1.0.3 npm (+1 duplicate)
@putout/plugin-remove-useless-replace 1.0.4 npm (+1 duplicate)
@putout/plugin-remove-useless-return 4.2.0 npm
@putout/plugin-remove-useless-return 7.0.0 npm (+1 duplicate)
@putout/plugin-remove-useless-spread 11.1.0 npm (+1 duplicate)
@putout/plugin-remove-useless-spread 5.3.0 npm
@putout/plugin-remove-useless-template-expressions 1.2.0 npm
@putout/plugin-remove-useless-template-expressions 2.0.0 npm (+1 duplicate)
@putout/plugin-remove-useless-type-conversion 1.0.1 npm
@putout/plugin-remove-useless-typeof 1.0.1 npm
@putout/plugin-remove-useless-variables 12.6.1 npm (+1 duplicate)
@putout/plugin-remove-useless-variables 6.3.0 npm
@putout/plugin-reuse-duplicate-init 3.0.0 npm
@putout/plugin-reuse-duplicate-init 6.0.0 npm (+1 duplicate)
@putout/plugin-simplify-assignment 1.0.0 npm
@putout/plugin-simplify-assignment 3.1.0 npm (+1 duplicate)
@putout/plugin-simplify-boolean-return 2.0.0 npm (+1 duplicate)
@putout/plugin-simplify-logical-expressions 1.1.0 npm
@putout/plugin-simplify-ternary 2.6.0 npm
@putout/plugin-simplify-ternary 7.0.0 npm (+1 duplicate)
@putout/plugin-sort-imports-by-specifiers 1.1.0 npm (+1 duplicate)
@putout/plugin-split-assignment-expressions 1.2.0 npm (+1 duplicate)
@putout/plugin-split-nested-destructuring 1.1.0 npm
@putout/plugin-split-nested-destructuring 3.0.0 npm (+1 duplicate)
@putout/plugin-split-variable-declarations 2.1.1 npm
@putout/plugin-split-variable-declarations 3.0.0 npm (+1 duplicate)
@putout/plugin-strict-mode 3.0.0 npm
@putout/plugin-tape 15.1.0 npm (+1 duplicate)
@putout/plugin-tape 8.0.0 npm
@putout/plugin-try-catch 4.0.0 npm
@putout/plugin-types 5.1.0 npm (+1 duplicate)
@putout/plugin-typescript 1.0.1 npm
@putout/plugin-typescript 8.3.0 npm (+1 duplicate)
@putout/plugin-webpack 1.4.0 npm
@putout/plugin-webpack 3.0.0 npm (+1 duplicate)
@putout/printer 10.3.0 npm
@putout/processor-css 3.1.1 npm
@putout/processor-css 9.0.0 npm (+1 duplicate)
@putout/processor-filesystem 5.0.0 npm
@putout/processor-ignore 2.0.0 npm
@putout/processor-ignore 6.0.1 npm (+1 duplicate)
@putout/processor-javascript 3.0.0 npm
@putout/processor-javascript 5.0.0 npm (+1 duplicate)
@putout/processor-json 3.1.0 npm
@putout/processor-json 9.0.0 npm (+1 duplicate)
@putout/processor-markdown 12.1.0 npm (+1 duplicate)
@putout/processor-markdown 5.6.0 npm
@putout/processor-yaml 3.0.0 npm
@putout/processor-yaml 8.1.0 npm (+1 duplicate)
@putout/quick-lint 1.4.0 npm
@putout/recast 1.16.1 npm
@putout/traverse 11.0.0 npm (+1 duplicate)
@putout/traverse 4.0.0 npm
@sindresorhus/is 2.1.1 npm
@sindresorhus/is 4.6.0 npm
@socket.io/component-emitter 3.1.2 npm
@socket.io/component-emitter UNKNOWN npm (+1 duplicate)
@szmarczak/http-timer 4.0.6 npm
@tokenizer/token 0.3.0 npm
@types/cacheable-request 6.0.3 npm
@types/component-emitter 1.2.14 npm
@types/cookie 0.4.1 npm
@types/cors 2.8.17 npm
@types/debug 4.1.12 npm
@types/estree 1.0.6 npm
@types/estree-jsx 1.0.5 npm
@types/hast 2.3.10 npm
@types/hast 3.0.4 npm (+1 duplicate)
@types/http-cache-semantics 4.0.4 npm
@types/json-schema 7.0.15 npm
@types/keyv 3.1.4 npm
@types/linkify-it 3.0.2 npm
@types/long 4.0.2 npm
@types/markdown-it 12.2.3 npm
@types/mdast 3.0.15 npm
@types/mdast 4.0.4 npm (+1 duplicate)
@types/mdurl 1.0.2 npm
@types/minimatch 3.0.5 npm
@types/minimist 1.2.5 npm
@types/ms 0.7.34 npm
@types/node 22.9.0 npm
@types/normalize-package-data 2.4.4 npm
@types/parse-json 4.0.2 npm
@types/responselike 1.0.3 npm
@types/unist 2.0.11 npm
@types/unist 3.0.3 npm (+1 duplicate)
NES20Tool v0.0.0-20220328070142-7d5322663453 go-module
abort-controller 3.0.0 npm
accepts 1.3.8 npm
ace-builds 1.4.12 npm
acorn 7.4.1 npm
acorn 8.14.0 npm
acorn 8.8.0 npm
acorn-jsx 5.3.2 npm (+1 duplicate)
acorn-typescript 1.4.13 npm
ajv 6.12.6 npm (+1 duplicate)
ajv 8.17.1 npm
align-spaces 1.0.4 npm
alpine-baselayout 3.4.3-r2 apk
alpine-baselayout-data 3.4.3-r2 apk
alpine-keys 2.4-r1 apk
alpine-release 3.19.4-r0 apk
ansi-colors 4.1.3 npm
ansi-regex 5.0.1 npm
ansi-styles 4.3.0 npm
any-signal 2.1.2 npm
apache-crypt 1.2.6 npm
apache-md5 1.1.8 npm
apart 2.0.1 npm
apk-tools 2.14.4-r0 apk
argparse 2.0.1 npm (+1 duplicate)
array-flatten 1.1.1 npm
array-flatten 3.0.0 npm (+1 duplicate)
array-union 2.1.0 npm
arrify 1.0.1 npm
ashify 2.0.1 npm
ast-types 0.16.1 npm
astral-regex 2.0.0 npm
async-lock 1.4.1 npm
asynckit 0.4.0 npm
bail 2.0.2 npm
balanced-match 1.0.2 npm (+1 duplicate)
balanced-match 2.0.0 npm (+1 duplicate)
base64-arraybuffer 0.1.4 npm
base64-js 1.5.1 npm
base64id 2.0.0 npm
bash 5.2.21-r0 apk
baz UNKNOWN npm
bazil.org/fuse v0.0.0-20200117225306-7b5117fecadc go-module (+2 duplicates)
bcryptjs 2.4.3 npm
bizzy 3.0.3 npm
bl 4.1.0 npm
bl 5.1.0 npm
blob-to-it 1.0.4 npm
bluebird 3.7.2 npm
body-parser 1.20.3 npm
brace-expansion 1.1.11 npm (+1 duplicate)
braces 3.0.3 npm
brotli-libs 1.1.0-r1 apk
browser-readablestream-to-it 1.0.3 npm
browser_field UNKNOWN npm
browserify-zlib 0.1.4 npm
browserslist 4.24.2 npm
buffer 5.7.1 npm
buffer 6.0.3 npm (+4 duplicates)
buffer-crc32 0.2.13 npm
buffer-from 1.1.2 npm
busybox 1.36.1-r19 apk
busybox-binsh 1.36.1-r19 apk
bytes 3.1.2 npm
bzip2-maybe 1.0.0 npm
c-ares 1.27.0-r0 apk
ca-certificates 20240226-r0 apk
ca-certificates-bundle 20240226-r0 apk
cacheable 1.8.4 npm
cacheable-lookup 2.0.1 npm
cacheable-lookup 5.0.4 npm
cacheable-request 7.0.4 npm
call-bind 1.0.7 npm
callsites 3.1.0 npm
camelcase 5.3.1 npm
camelcase-keys 6.2.2 npm
caniuse-lite 1.0.30001680 npm
catatonit 0.2.0-r0 apk
catharsis 0.9.0 npm
cborg 1.10.2 npm
chalk 4.1.2 npm
chalk 5.3.0 npm (+9 duplicates)
character-entities 2.0.2 npm
checkup 1.3.0 npm
chownr 1.1.4 npm
ci-info 3.9.0 npm
ci-info 4.1.0 npm (+1 duplicate)
clean-git-ref 2.0.1 npm
cli-progress 3.12.0 npm
clone-response 1.0.3 npm
cloudcmd 15.9.15 npm
cm-searchbox 1.0.8 npm
cm-show-invisibles 3.1.0 npm
codemirror 5.63.3 npm
color-convert 2.0.1 npm
color-name 1.1.4 npm
colord 2.9.3 npm
combined-stream 1.0.8 npm
common-path-prefix 3.0.0 npm
commondir 1.0.1 npm
component-emitter 1.3.1 npm
compressible 2.0.18 npm
compression 1.7.5 npm
concat-map 0.0.1 npm (+1 duplicate)
console-io 13.0.2 npm
content-disposition 0.5.4 npm
content-type 1.0.5 npm
contrib.go.opencensus.io/exporter/prometheus v0.4.2 go-module
convert-source-map 2.0.0 npm
cookie 0.4.2 npm (+1 duplicate)
cookie 0.7.1 npm
cookie 0.7.2 npm
cookie-signature 1.0.6 npm
copy-symlink 2.0.0 npm
copymitter 6.0.4 npm
core-util-is 1.0.3 npm
coreutils 9.4-r2 apk
coreutils-env 9.4-r2 apk
coreutils-fmt 9.4-r2 apk
coreutils-sha512sum 9.4-r2 apk
cors 2.8.5 npm
cosmiconfig 7.1.0 npm
cosmiconfig 9.0.0 npm (+1 duplicate)
crc-32 1.2.2 npm
criton 2.0.0 npm
cross-spawn 7.0.5 npm
css-functions-list 3.2.3 npm
css-tree 3.0.1 npm
cssesc 3.0.0 npm
curl 8.9.1-r0 apk
currify 4.0.0 npm
daffy 1.0.3 npm
date-fns 2.30.0 npm
debug 2.6.9 npm
debug 4.3.7 npm (+24 duplicates)
decamelize 1.2.0 npm
decamelize-keys 1.1.1 npm
decode-named-character-reference 1.0.2 npm
decompress-response 5.0.0 npm
decompress-response 6.0.0 npm (+1 duplicate)
deep-extend 0.6.0 npm
deep-is 0.1.4 npm
deepmerge 4.3.1 npm
deepword 8.0.1 npm
defer-to-connect 2.0.1 npm
define-data-property 1.1.4 npm
define-lazy-prop 2.0.0 npm
delayed-stream 1.0.0 npm
depd 2.0.0 npm
dequal 2.0.3 npm
destroy 1.2.0 npm
devlop 1.1.0 npm
diff 5.2.0 npm
diff-match-patch 1.0.5 npm
diff3 0.0.3 npm
dir-glob 3.0.1 npm
dns-over-http-resolver 1.2.3 npm
dropbox 5.2.1 npm
dropbox-stream 3.2.0 npm
dropboxify 2.0.6 npm
duplexer3 0.1.5 npm
duplexify 3.7.1 npm
dword 13.0.6 npm
edward 13.0.3 npm
ee-first 1.1.1 npm
electron-fetch 1.9.1 npm
electron-to-chromium 1.5.58 npm
emmet-codemirror 1.1.0 npm
emoji-regex 10.4.0 npm (+1 duplicate)
emoji-regex 8.0.0 npm
emoji-regex 9.2.2 npm
emulatorjs 1.9.2 npm
encodeurl 1.0.2 npm
encodeurl 2.0.0 npm
encoding 0.1.13 npm
end-of-stream 1.4.4 npm
engine.io 4.1.2 npm (+1 duplicate)
engine.io 6.6.2 npm
engine.io-client 6.6.2 npm
engine.io-client UNKNOWN npm (+2 duplicates)
engine.io-parser 4.0.3 npm (+1 duplicate)
engine.io-parser 5.2.3 npm
engine.io-parser UNKNOWN npm (+1 duplicate)
enquirer 2.4.1 npm
entities 2.1.0 npm (+1 duplicate)
env-paths 2.2.1 npm
err-code 3.0.1 npm
error-ex 1.3.2 npm
es-define-property 1.0.0 npm
es-errors 1.3.0 npm
es6-promisify 6.1.1 npm
es6-promisify 7.0.0 npm
escalade 3.2.0 npm
escape-html 1.0.3 npm
escape-string-regexp 2.0.0 npm
escape-string-regexp 4.0.0 npm
escodegen 2.1.0 npm
eslint 9.14.0 npm
eslint-scope 8.2.0 npm
eslint-visitor-keys 1.3.0 npm
eslint-visitor-keys 3.4.3 npm
eslint-visitor-keys 4.2.0 npm
espree 10.3.0 npm
espree 7.3.1 npm
esprima 4.0.1 npm (+1 duplicate)
esquery 1.6.0 npm
esrecurse 4.3.0 npm
estraverse 5.3.0 npm (+1 duplicate)
estree-to-babel 10.0.1 npm (+1 duplicate)
estree-to-babel 4.9.0 npm
estree-util-attach-comments 3.0.0 npm
esutils 2.0.3 npm (+1 duplicate)
etag 1.8.1 npm
event-target-shim 5.0.1 npm
execon 1.2.9 npm
express 4.21.1 npm
extend 3.0.2 npm
false_main UNKNOWN npm
fast-deep-equal 3.1.3 npm
fast-diff 1.3.0 npm
fast-fifo 1.3.2 npm
fast-glob 3.3.2 npm
fast-json-stable-stringify 2.1.0 npm
fast-levenshtein 2.0.6 npm
fast-uri 3.0.3 npm
fastest-levenshtein 1.0.16 npm
fastq 1.17.1 npm
fd-slicer 1.1.0 npm
file 5.45-r1 apk
file-entry-cache 10.0.2 npm (+1 duplicate)
file-entry-cache 6.0.1 npm
file-entry-cache 8.0.0 npm
file-entry-cache 9.1.0 npm (+1 duplicate)
file-type 16.5.4 npm
files-io 4.0.1 npm
fill-range 7.1.1 npm
finalhandler 1.3.1 npm
find-cache-dir 3.3.2 npm
find-cache-dir 5.0.0 npm (+1 duplicate)
find-up 4.1.0 npm (+1 duplicate)
find-up 5.0.0 npm
find-up 6.3.0 npm
find-up 7.0.0 npm (+4 duplicates)
findit2 2.2.3 npm
findutils 4.9.0-r5 apk
flac 1.4.3-r1 apk
flat-cache 3.2.0 npm
flat-cache 4.0.1 npm
flat-cache 5.0.0 npm (+1 duplicate)
flat-cache 6.1.2 npm (+1 duplicate)
flatted 3.3.1 npm
flop 10.0.1 npm
for-each-key 2.0.0 npm
form-data 4.0.1 npm
format-io 2.0.0 npm
forwarded 0.2.0 npm
fresh 0.5.2 npm
fs-constants 1.0.0 npm
fs.realpath 1.0.0 npm (+1 duplicate)
fullstore 3.0.0 npm
function-bind 1.1.2 npm
gdbm 1.23-r1 apk
gensync 1.0.0-beta.2 npm
get-intrinsic 1.2.4 npm
get-iterator 1.0.2 npm
get-stream 5.2.0 npm
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 go-module (+2 duplicates)
github.com/Jorropo/jsync v1.0.1 go-module
github.com/Stebalien/go-bitfield v0.0.1 go-module (+1 duplicate)
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 go-module
github.com/benbjohnson/clock v1.0.3 go-module (+1 duplicate)
github.com/benbjohnson/clock v1.3.5 go-module
github.com/beorn7/perks v1.0.1 go-module
github.com/blang/semver/v4 v4.0.0 go-module (+1 duplicate)
github.com/bren2010/proquint v0.0.0-20160323162903-38337c27106d go-module (+1 duplicate)
github.com/btcsuite/btcd v0.20.1-beta go-module (+2 duplicates)
github.com/cenkalti/backoff v2.2.1+incompatible go-module (+1 duplicate)
github.com/cenkalti/backoff/v4 v4.2.1 go-module
github.com/ceramicnetwork/go-dag-jose v0.1.0 go-module
github.com/cespare/xxhash v1.1.0 go-module (+2 duplicates)
github.com/cespare/xxhash/v2 v2.2.0 go-module
github.com/cheekybits/genny v1.0.0 go-module (+1 duplicate)
github.com/cheggaaa/pb v1.0.29 go-module
github.com/containerd/cgroups v1.1.0 go-module
github.com/coreos/go-semver v0.3.0 go-module
github.com/coreos/go-systemd/v22 v22.5.0 go-module
github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3 go-module (+3 duplicates)
github.com/cskr/pubsub v1.0.2 go-module (+2 duplicates)
github.com/davecgh/go-spew v1.1.1 go-module
github.com/davidlazar/go-crypto v0.0.0-20170701192655-dcfb0a7ac018 go-module (+1 duplicate)
github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c go-module
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 go-module
github.com/dgraph-io/badger v1.6.2 go-module (+2 duplicates)
github.com/dgraph-io/ristretto v0.0.2 go-module (+2 duplicates)
github.com/docker/go-units v0.5.0 go-module
github.com/dustin/go-humanize v1.0.0 go-module (+1 duplicate)
github.com/dustin/go-humanize v1.0.1 go-module
github.com/elastic/gosigar v0.14.2 go-module
github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302 go-module
github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5 go-module (+2 duplicates)
github.com/felixge/httpsnoop v1.0.3 go-module
github.com/flynn/noise v0.0.0-20180327030543-2492fe189ae6 go-module (+1 duplicate)
github.com/flynn/noise v1.0.0 go-module
github.com/francoispqt/gojay v1.2.13 go-module (+2 duplicates)
github.com/fsnotify/fsnotify v1.6.0 go-module
github.com/gabriel-vasile/mimetype v1.4.1 go-module
github.com/go-kit/log v0.2.1 go-module
github.com/go-logfmt/logfmt v0.5.1 go-module
github.com/go-logr/logr v1.2.4 go-module
github.com/go-logr/stdr v1.2.2 go-module
github.com/godbus/dbus/v5 v5.1.0 go-module
github.com/gogo/protobuf v1.3.2 go-module (+3 duplicates)
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module
github.com/golang/protobuf v1.4.2 go-module (+1 duplicate)
github.com/golang/protobuf v1.5.3 go-module
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db go-module (+1 duplicate)
github.com/golang/snappy v0.0.4 go-module
github.com/google/gopacket v1.1.18 go-module (+1 duplicate)
github.com/google/gopacket v1.1.19 go-module
github.com/google/uuid v1.1.2 go-module (+1 duplicate)
github.com/google/uuid v1.3.1 go-module
github.com/gorilla/mux v1.8.0 go-module
github.com/gorilla/websocket v1.4.2 go-module (+1 duplicate)
github.com/gorilla/websocket v1.5.0 go-module
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 go-module
github.com/hannahhoward/go-pubsub v0.0.0-20200423002714-8d62886cc36e go-module (+2 duplicates)
github.com/hashicorp/errwrap v1.0.0 go-module (+1 duplicate)
github.com/hashicorp/errwrap v1.1.0 go-module
github.com/hashicorp/go-multierror v1.1.0 go-module (+1 duplicate)
github.com/hashicorp/go-multierror v1.1.1 go-module
github.com/hashicorp/golang-lru v0.5.4 go-module (+2 duplicates)
github.com/hashicorp/golang-lru/v2 v2.0.7 go-module
github.com/hsanjuan/ipfs-lite v1.1.19 go-module
github.com/huin/goupnp v1.0.0 go-module (+1 duplicate)
github.com/huin/goupnp v1.3.0 go-module
github.com/ipfs-shipyard/nopfs v0.0.12-0.20231027223058-cde3b5ba964c go-module
github.com/ipfs-shipyard/nopfs/ipfs v0.13.2-0.20231027223058-cde3b5ba964c go-module
github.com/ipfs/bbloom v0.0.4 go-module (+2 duplicates)
github.com/ipfs/boxo v0.15.0 go-module
github.com/ipfs/fs-repo-migrations/fs-repo-10-to-11 (devel) go-module
github.com/ipfs/fs-repo-migrations/fs-repo-11-to-12 (devel) go-module
github.com/ipfs/fs-repo-migrations/fs-repo-12-to-13 v0.0.0-20240823142531-fdedf2129802 go-module
github.com/ipfs/fs-repo-migrations/fs-repo-13-to-14 v0.0.0-20240823142531-fdedf2129802 go-module
github.com/ipfs/fs-repo-migrations/fs-repo-14-to-15 v0.0.0-20240823142531-fdedf2129802 go-module
github.com/ipfs/fs-repo-migrations/fs-repo-9-to-10 (devel) go-module
github.com/ipfs/fs-repo-migrations/fs-repo-migrations (devel) go-module
github.com/ipfs/fs-repo-migrations/tools v0.0.0-20210323144402-297a63449538 go-module (+1 duplicate)
github.com/ipfs/fs-repo-migrations/tools v0.0.0-20211209222258-754a2dcb82ea go-module (+3 duplicates)
github.com/ipfs/go-bitfield v1.1.0 go-module
github.com/ipfs/go-bitswap v0.3.3 go-module (+1 duplicate)
github.com/ipfs/go-block-format v0.0.2 go-module (+1 duplicate)
github.com/ipfs/go-block-format v0.2.0 go-module
github.com/ipfs/go-blockservice v0.1.4 go-module (+1 duplicate)
github.com/ipfs/go-blockservice v0.5.0 go-module
github.com/ipfs/go-cid v0.0.7 go-module (+2 duplicates)
github.com/ipfs/go-cid v0.4.1 go-module
github.com/ipfs/go-cidutil v0.0.2 go-module (+1 duplicate)
github.com/ipfs/go-cidutil v0.1.0 go-module
github.com/ipfs/go-datastore v0.4.5 go-module (+1 duplicate)
github.com/ipfs/go-datastore v0.6.0 go-module
github.com/ipfs/go-ds-badger v0.2.6 go-module
github.com/ipfs/go-ds-badger v0.2.7-0.20220117180822-159330558612 go-module
github.com/ipfs/go-ds-badger v0.3.0 go-module
github.com/ipfs/go-ds-flatfs v0.4.5 go-module (+1 duplicate)
github.com/ipfs/go-ds-flatfs v0.5.1 go-module
github.com/ipfs/go-ds-leveldb v0.4.2 go-module (+1 duplicate)
github.com/ipfs/go-ds-leveldb v0.5.0 go-module
github.com/ipfs/go-ds-measure v0.1.0 go-module (+1 duplicate)
github.com/ipfs/go-ds-measure v0.2.0 go-module
github.com/ipfs/go-filestore v0.0.3 go-module
github.com/ipfs/go-filestore v1.0.0 go-module
github.com/ipfs/go-fs-lock v0.0.6 go-module (+1 duplicate)
github.com/ipfs/go-fs-lock v0.0.7 go-module
github.com/ipfs/go-graphsync v0.16.0 go-module
github.com/ipfs/go-graphsync v0.6.0 go-module (+1 duplicate)
github.com/ipfs/go-ipfs v0.7.1-0.20210323141657-684b8b5bb7b0 go-module
github.com/ipfs/go-ipfs v0.8.0 go-module
github.com/ipfs/go-ipfs v0.8.1-0.20210331232424-4cdb67f37daa go-module
github.com/ipfs/go-ipfs-api v0.2.0 go-module
github.com/ipfs/go-ipfs-blockstore v0.1.4 go-module
github.com/ipfs/go-ipfs-blockstore v1.0.3 go-module
github.com/ipfs/go-ipfs-blockstore v1.3.0 go-module
github.com/ipfs/go-ipfs-chunker v0.0.5 go-module (+1 duplicate)
github.com/ipfs/go-ipfs-cmds v0.10.0 go-module
github.com/ipfs/go-ipfs-config v0.12.0 go-module (+1 duplicate)
github.com/ipfs/go-ipfs-delay v0.0.1 go-module (+2 duplicates)
github.com/ipfs/go-ipfs-ds-help v0.1.1 go-module
github.com/ipfs/go-ipfs-ds-help v1.0.0 go-module
github.com/ipfs/go-ipfs-ds-help v1.1.0 go-module
github.com/ipfs/go-ipfs-exchange-interface v0.0.1 go-module (+1 duplicate)
github.com/ipfs/go-ipfs-exchange-interface v0.2.0 go-module
github.com/ipfs/go-ipfs-exchange-offline v0.0.1 go-module (+1 duplicate)
github.com/ipfs/go-ipfs-files v0.0.8 go-module (+2 duplicates)
github.com/ipfs/go-ipfs-pinner v0.1.1 go-module (+1 duplicate)
github.com/ipfs/go-ipfs-posinfo v0.0.1 go-module (+1 duplicate)
github.com/ipfs/go-ipfs-pq v0.0.2 go-module (+1 duplicate)
github.com/ipfs/go-ipfs-pq v0.0.3 go-module
github.com/ipfs/go-ipfs-provider v0.4.3 go-module (+1 duplicate)
github.com/ipfs/go-ipfs-redirects-file v0.1.1 go-module
github.com/ipfs/go-ipfs-routing v0.1.0 go-module (+1 duplicate)
github.com/ipfs/go-ipfs-util v0.0.2 go-module (+1 duplicate)
github.com/ipfs/go-ipfs-util v0.0.3 go-module
github.com/ipfs/go-ipld-cbor v0.0.5 go-module (+1 duplicate)
github.com/ipfs/go-ipld-cbor v0.0.6 go-module
github.com/ipfs/go-ipld-format v0.2.0 go-module (+1 duplicate)
github.com/ipfs/go-ipld-format v0.6.0 go-module
github.com/ipfs/go-ipld-git v0.0.3 go-module (+1 duplicate)
github.com/ipfs/go-ipld-git v0.1.1 go-module
github.com/ipfs/go-ipld-legacy v0.2.1 go-module
github.com/ipfs/go-ipns v0.0.2 go-module (+1 duplicate)
github.com/ipfs/go-log v1.0.4 go-module (+1 duplicate)
github.com/ipfs/go-log v1.0.5 go-module
github.com/ipfs/go-log/v2 v2.1.1 go-module
github.com/ipfs/go-log/v2 v2.1.3 go-module
github.com/ipfs/go-log/v2 v2.5.1 go-module
github.com/ipfs/go-merkledag v0.11.0 go-module
github.com/ipfs/go-merkledag v0.3.2 go-module (+1 duplicate)
github.com/ipfs/go-metrics-interface v0.0.1 go-module (+2 duplicates)
github.com/ipfs/go-metrics-prometheus v0.0.2 go-module
github.com/ipfs/go-mfs v0.1.2 go-module (+1 duplicate)
github.com/ipfs/go-path v0.0.9 go-module (+1 duplicate)
github.com/ipfs/go-peertaskqueue v0.2.0 go-module (+1 duplicate)
github.com/ipfs/go-peertaskqueue v0.8.1 go-module
github.com/ipfs/go-unixfs v0.2.4 go-module (+1 duplicate)
github.com/ipfs/go-unixfsnode v1.8.1 go-module
github.com/ipfs/go-verifcid v0.0.1 go-module (+1 duplicate)
github.com/ipfs/go-verifcid v0.0.2 go-module
github.com/ipfs/interface-go-ipfs-core v0.4.0 go-module (+1 duplicate)
github.com/ipfs/kubo (devel) go-module
github.com/ipld/go-car v0.5.0 go-module
github.com/ipld/go-car/v2 v2.10.2-0.20230622090957-499d0c909d33 go-module
github.com/ipld/go-codec-dagpb v1.6.0 go-module
github.com/ipld/go-ipld-prime v0.21.0 go-module
github.com/ipld/go-ipld-prime v0.5.1-0.20201021195245-109253e8a018 go-module (+1 duplicate)
github.com/ipld/go-ipld-prime-proto v0.1.0 go-module (+1 duplicate)
github.com/jackpal/go-nat-pmp v1.0.2 go-module (+2 duplicates)
github.com/jbenet/go-is-domain v1.0.5 go-module (+1 duplicate)
github.com/jbenet/go-temp-err-catcher v0.1.0 go-module (+2 duplicates)
github.com/jbenet/goprocess v0.1.4 go-module (+2 duplicates)
github.com/klauspost/compress v1.17.2 go-module
github.com/klauspost/cpuid/v2 v2.0.4 go-module
github.com/klauspost/cpuid/v2 v2.2.5 go-module
github.com/koron/go-ssdp v0.0.0-20191105050749-2e1c40ed0b5d go-module (+1 duplicate)
github.com/koron/go-ssdp v0.0.4 go-module
github.com/libp2p/go-addr-util v0.0.2 go-module (+1 duplicate)
github.com/libp2p/go-buffer-pool v0.0.2 go-module (+2 duplicates)
github.com/libp2p/go-buffer-pool v0.1.0 go-module
github.com/libp2p/go-cidranger v1.1.0 go-module (+2 duplicates)
github.com/libp2p/go-conn-security-multistream v0.2.0 go-module (+1 duplicate)
github.com/libp2p/go-doh-resolver v0.4.0 go-module
github.com/libp2p/go-eventbus v0.2.1 go-module (+1 duplicate)
github.com/libp2p/go-flow-metrics v0.0.3 go-module (+2 duplicates)
github.com/libp2p/go-flow-metrics v0.1.0 go-module
github.com/libp2p/go-libp2p v0.13.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p v0.32.1 go-module
github.com/libp2p/go-libp2p-asn-util v0.0.0-20200825225859-85005c6cf052 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-asn-util v0.3.0 go-module
github.com/libp2p/go-libp2p-autonat v0.4.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-blankhost v0.2.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-circuit v0.4.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-connmgr v0.2.4 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-core v0.8.0 go-module
github.com/libp2p/go-libp2p-core v0.8.5 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-crypto v0.1.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-discovery v0.5.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-gostream v0.6.0 go-module
github.com/libp2p/go-libp2p-http v0.5.0 go-module
github.com/libp2p/go-libp2p-kad-dht v0.11.1 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-kad-dht v0.24.4 go-module
github.com/libp2p/go-libp2p-kbucket v0.4.7 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-kbucket v0.6.3 go-module
github.com/libp2p/go-libp2p-loggables v0.1.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-mplex v0.4.1 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-nat v0.0.6 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-noise v0.1.2 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-peer v0.2.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-peerstore v0.2.6 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-pnet v0.2.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-pubsub v0.10.0 go-module
github.com/libp2p/go-libp2p-pubsub v0.4.1 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-pubsub-router v0.4.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-pubsub-router v0.6.0 go-module
github.com/libp2p/go-libp2p-quic-transport v0.10.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-record v0.1.3 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-record v0.2.0 go-module
github.com/libp2p/go-libp2p-routing-helpers v0.2.3 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-routing-helpers v0.7.3 go-module
github.com/libp2p/go-libp2p-secio v0.2.2 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-swarm v0.4.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-tls v0.1.3 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-transport-upgrader v0.4.0 go-module (+1 duplicate)
github.com/libp2p/go-libp2p-xor v0.1.0 go-module
github.com/libp2p/go-libp2p-yamux v0.5.1 go-module (+1 duplicate)
github.com/libp2p/go-mplex v0.3.0 go-module (+1 duplicate)
github.com/libp2p/go-mplex v0.7.0 go-module
github.com/libp2p/go-msgio v0.0.6 go-module (+1 duplicate)
github.com/libp2p/go-msgio v0.3.0 go-module
github.com/libp2p/go-nat v0.0.5 go-module (+1 duplicate)
github.com/libp2p/go-nat v0.2.0 go-module
github.com/libp2p/go-netroute v0.1.3 go-module (+1 duplicate)
github.com/libp2p/go-netroute v0.2.1 go-module
github.com/libp2p/go-reuseport v0.0.2 go-module (+1 duplicate)
github.com/libp2p/go-reuseport v0.4.0 go-module
github.com/libp2p/go-reuseport-transport v0.0.4 go-module (+1 duplicate)
github.com/libp2p/go-socket-activation v0.1.0 go-module
github.com/libp2p/go-stream-muxer-multistream v0.3.0 go-module (+1 duplicate)
github.com/libp2p/go-tcp-transport v0.2.1 go-module (+1 duplicate)
github.com/libp2p/go-ws-transport v0.4.0 go-module (+1 duplicate)
github.com/libp2p/go-yamux/v2 v2.0.0 go-module (+1 duplicate)
github.com/libp2p/go-yamux/v4 v4.0.1 go-module
github.com/libp2p/zeroconf/v2 v2.2.0 go-module
github.com/lucas-clemente/quic-go v0.19.3 go-module (+1 duplicate)
github.com/marten-seemann/qtls-go1-15 v0.1.1 go-module (+1 duplicate)
github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd go-module
github.com/mattn/go-colorable v0.1.6 go-module
github.com/mattn/go-isatty v0.0.20 go-module
github.com/mattn/go-runewidth v0.0.4 go-module
github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module
github.com/miekg/dns v1.1.31 go-module (+1 duplicate)
github.com/miekg/dns v1.1.56 go-module
github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b go-module
github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc go-module
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 go-module (+2 duplicates)
github.com/minio/sha256-simd v0.1.1 go-module (+1 duplicate)
github.com/minio/sha256-simd v1.0.0 go-module
github.com/minio/sha256-simd v1.0.1 go-module
github.com/mitchellh/go-homedir v1.1.0 go-module (+3 duplicates)
github.com/mr-tron/base58 v1.2.0 go-module (+3 duplicates)
github.com/multiformats/go-base32 v0.0.3 go-module (+2 duplicates)
github.com/multiformats/go-base32 v0.1.0 go-module
github.com/multiformats/go-base36 v0.1.0 go-module (+2 duplicates)
github.com/multiformats/go-base36 v0.2.0 go-module
github.com/multiformats/go-multiaddr v0.12.0 go-module
github.com/multiformats/go-multiaddr v0.3.1 go-module (+2 duplicates)
github.com/multiformats/go-multiaddr-dns v0.2.0 go-module (+1 duplicate)
github.com/multiformats/go-multiaddr-dns v0.3.1 go-module
github.com/multiformats/go-multiaddr-fmt v0.1.0 go-module (+2 duplicates)
github.com/multiformats/go-multiaddr-net v0.2.0 go-module (+2 duplicates)
github.com/multiformats/go-multibase v0.0.3 go-module (+2 duplicates)
github.com/multiformats/go-multibase v0.2.0 go-module
github.com/multiformats/go-multicodec v0.9.0 go-module
github.com/multiformats/go-multihash v0.0.14 go-module (+1 duplicate)
github.com/multiformats/go-multihash v0.0.15 go-module
github.com/multiformats/go-multihash v0.2.3 go-module
github.com/multiformats/go-multistream v0.2.0 go-module (+1 duplicate)
github.com/multiformats/go-multistream v0.5.0 go-module
github.com/multiformats/go-varint v0.0.6 go-module (+2 duplicates)
github.com/multiformats/go-varint v0.0.7 go-module
github.com/opencontainers/runtime-spec v1.1.0 go-module
github.com/opentracing/opentracing-go v1.2.0 go-module (+2 duplicates)
github.com/openzipkin/zipkin-go v0.4.1 go-module
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 go-module
github.com/petar/GoLLRB v0.0.0-20210522233825-ae3b015fd3e9 go-module
github.com/pion/datachannel v1.5.5 go-module
github.com/pion/dtls/v2 v2.2.7 go-module
github.com/pion/ice/v2 v2.3.6 go-module
github.com/pion/interceptor v0.1.17 go-module
github.com/pion/logging v0.2.2 go-module
github.com/pion/mdns v0.0.7 go-module
github.com/pion/randutil v0.1.0 go-module
github.com/pion/rtcp v1.2.10 go-module
github.com/pion/rtp v1.7.13 go-module
github.com/pion/sctp v1.8.7 go-module
github.com/pion/sdp/v3 v3.0.6 go-module
github.com/pion/srtp/v2 v2.0.15 go-module
github.com/pion/stun v0.6.0 go-module
github.com/pion/transport/v2 v2.2.1 go-module
github.com/pion/turn/v2 v2.1.0 go-module
github.com/pion/webrtc/v3 v3.2.9 go-module
github.com/pkg/errors v0.9.1 go-module (+2 duplicates)
github.com/pmezard/go-difflib v1.0.0 go-module
github.com/polydawn/refmt v0.0.0-20190809202753-05966cbd336a go-module (+1 duplicate)
github.com/polydawn/refmt v0.89.0 go-module
github.com/prometheus/client_golang v1.17.0 go-module
github.com/prometheus/client_model v0.5.0 go-module
github.com/prometheus/common v0.44.0 go-module
github.com/prometheus/procfs v0.12.0 go-module
github.com/prometheus/statsd_exporter v0.22.7 go-module
github.com/quic-go/qpack v0.4.0 go-module
github.com/quic-go/quic-go v0.39.3 go-module
github.com/quic-go/webtransport-go v0.6.0 go-module
github.com/raulk/go-watchdog v1.3.0 go-module
github.com/rs/cors v1.7.0 go-module
github.com/samber/lo v1.36.0 go-module
github.com/spaolacci/murmur3 v1.1.0 go-module (+3 duplicates)
github.com/stretchr/testify v1.8.4 go-module
github.com/syndtr/goleveldb v1.0.0 go-module (+1 duplicate)
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 go-module
github.com/texttheater/golang-levenshtein v0.0.0-20180516184445-d188e65d659e go-module
github.com/ucarion/urlpath v0.0.0-20200424170820-7ccc79b76bbb go-module
github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc go-module (+2 duplicates)
github.com/whyrusleeping/cbor v0.0.0-20171005072247-63513f603b11 go-module
github.com/whyrusleeping/cbor-gen v0.0.0-20200710004633-5379fc63235d go-module (+1 duplicate)
github.com/whyrusleeping/cbor-gen v0.0.0-20230126041949-52956bd4c9aa go-module
github.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f go-module (+2 duplicates)
github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1 go-module (+2 duplicates)
github.com/whyrusleeping/go-sysinfo v0.0.0-20190219211824-4a357d4b90b1 go-module
github.com/whyrusleeping/mdns v0.0.0-20190826153040-b9b60ed33aa9 go-module (+1 duplicate)
github.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7 go-module (+2 duplicates)
github.com/whyrusleeping/tar-utils v0.0.0-20201201191210-20a61371de5b go-module
github.com/whyrusleeping/timecache v0.0.0-20160911033111-cfcb2f1abfee go-module (+1 duplicate)
glob 7.2.3 npm (+1 duplicate)
glob-parent 5.1.2 npm
glob-parent 6.0.2 npm
global-modules 2.0.0 npm
global-prefix 3.0.0 npm
globals 11.12.0 npm
globals 14.0.0 npm
globby 11.1.0 npm
globjoin 0.1.4 npm
go.opencensus.io v0.22.5 go-module (+1 duplicate)
go.opencensus.io v0.23.0 go-module
go.opencensus.io v0.24.0 go-module
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0 go-module
go.opentelemetry.io/contrib/propagators/autoprop v0.42.0 go-module
go.opentelemetry.io/contrib/propagators/aws v1.17.0 go-module
go.opentelemetry.io/contrib/propagators/b3 v1.17.0 go-module
go.opentelemetry.io/contrib/propagators/jaeger v1.17.0 go-module
go.opentelemetry.io/contrib/propagators/ot v1.17.0 go-module
go.opentelemetry.io/otel v1.17.0 go-module
go.opentelemetry.io/otel/exporters/jaeger v1.14.0 go-module
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.16.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.16.0 go-module
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.14.0 go-module
go.opentelemetry.io/otel/exporters/zipkin v1.14.0 go-module