This repository has been archived by the owner on May 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage_versions.txt
executable file
·1300 lines (1300 loc) · 123 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
@babel/code-frame 7.5.5 npm
@babel/highlight 7.5.0 npm
@colors/colors 1.5.0 npm
@gar/promisify 1.1.3 npm
@isaacs/cliui 8.0.2 npm
@isaacs/string-locale-compare 1.1.0 npm
@my-scope/package-a 0.0.0 npm
@my-scope/package-b 0.0.0 npm
@npmcli/arborist 6.2.9 npm
@npmcli/config 6.1.6 npm
@npmcli/disparity-colors 3.0.0 npm
@npmcli/fs 2.1.2 npm
@npmcli/fs 3.1.0 npm
@npmcli/git 4.0.4 npm
@npmcli/installed-package-contents 2.0.2 npm
@npmcli/map-workspaces 3.0.4 npm
@npmcli/metavuln-calculator 5.0.1 npm
@npmcli/move-file 2.0.1 npm
@npmcli/name-from-folder 2.0.0 npm
@npmcli/node-gyp 3.0.0 npm
@npmcli/package-json 3.0.0 npm
@npmcli/promise-spawn 6.0.2 npm
@npmcli/query 3.0.0 npm
@npmcli/run-script 6.0.1 npm
@pkgjs/parseargs 0.11.0 npm
@samverschueren/stream-to-observable 0.3.0 npm
@sigstore/protobuf-specs 0.1.0 npm
@tootallnate/once 2.0.0 npm
@tufjs/canonical-json 1.0.0 npm
@tufjs/models 1.0.4 npm
@types/color-name 1.1.1 npm
@types/mime-types 2.1.0 npm
abbrev 1.1.1 npm
abbrev 2.0.0 npm
abort-controller 3.0.0 npm
accepts 1.3.7 npm
acorn 5.7.3 npm
acorn 7.1.0 npm
acorn-jsx 5.1.0 npm
ada-libs 2.5.1-r0 apk
agent-base 5.1.1 npm
agent-base 6.0.2 npm
agentkeepalive 4.3.0 npm
aggregate-error 3.1.0 npm
ajv 6.10.2 npm
align-text 0.1.4 npm
alpine-baselayout 3.4.3-r1 apk
alpine-baselayout-data 3.4.3-r1 apk
alpine-keys 2.4-r1 apk
alpine-release 3.18.6-r0 apk
alsa-lib 1.2.9-r1 apk
alter 0.2.0 npm
amdefine 1.0.1 npm
angular 1.7.9 npm
angular-bootstrap 0.12.2 npm
ansi-colors 1.1.0 npm
ansi-escapes 3.2.0 npm
ansi-gray 0.1.1 npm
ansi-green 0.1.1 npm
ansi-regex 2.1.1 npm
ansi-regex 3.0.0 npm (+1 duplicate)
ansi-regex 4.1.0 npm (+1 duplicate)
ansi-regex 5.0.1 npm
ansi-regex 6.0.1 npm (+1 duplicate)
ansi-styles 2.2.1 npm
ansi-styles 3.2.1 npm (+3 duplicates)
ansi-styles 4.2.1 npm
ansi-styles 4.3.0 npm
ansi-styles 6.2.1 npm
ansi-wrap 0.1.0 npm
any-observable 0.3.0 npm
any-promise 1.3.0 npm
anymatch 1.3.2 npm
anymatch 3.1.1 npm
aom-libs 3.6.1-r0 apk
apk-tools 2.14.0-r2 apk
aproba 2.0.0 npm
archiver 1.3.0 npm
archiver-utils 1.3.0 npm
archy 1.0.0 npm
are-we-there-yet 3.0.1 npm
are-we-there-yet 4.0.0 npm
arg 4.1.2 npm
argparse 1.0.7 npm
arr-diff 2.0.0 npm
arr-diff 4.0.0 npm
arr-flatten 1.1.0 npm
arr-union 3.1.0 npm
array-differ 1.0.0 npm
array-flatten 1.1.1 npm
array-includes 3.0.3 npm
array-uniq 1.0.3 npm
array-unique 0.2.1 npm
array-unique 0.3.2 npm (+1 duplicate)
ascii2mathml 0.5.4 npm
asn1 0.1.11 npm
asn1 0.2.4 npm
assert-plus 0.1.5 npm
assert-plus 0.2.0 npm
assert-plus 1.0.0 npm
assign-symbols 1.0.0 npm
ast-traverse 0.1.1 npm
ast-types 0.8.12 npm
ast-types 0.9.6 npm
astral-regex 1.0.0 npm
async 0.2.10 npm
async 1.4.2 npm
async 1.5.2 npm
async 2.6.3 npm (+2 duplicates)
async-each 1.0.3 npm
async-limiter 1.0.1 npm
asynckit 0.4.0 npm
at-spi2-core 2.48.4-r0 apk
atob 2.1.2 npm
avahi-libs 0.8-r13 apk
aws-sign2 0.6.0 npm (+1 duplicate)
aws-sign2 0.7.0 npm
aws4 1.8.0 npm
babel 5.8.38 npm
babel-core 5.8.38 npm
babel-plugin-constant-folding 1.0.1 npm
babel-plugin-dead-code-elimination 1.0.2 npm
babel-plugin-eval 1.0.1 npm
babel-plugin-inline-environment-variables 1.0.1 npm
babel-plugin-jscript 1.0.4 npm
babel-plugin-member-expression-literals 1.0.1 npm
babel-plugin-property-literals 1.0.1 npm
babel-plugin-proto-to-assign 1.0.4 npm
babel-plugin-react-constant-elements 1.0.3 npm
babel-plugin-react-display-name 1.0.3 npm
babel-plugin-remove-console 1.0.1 npm
babel-plugin-remove-debugger 1.0.1 npm
babel-plugin-runtime 1.0.7 npm
babel-plugin-undeclared-variables-check 1.0.2 npm
babel-plugin-undefined-to-void 1.1.6 npm
babylon 5.8.38 npm
balanced-match 1.0.0 npm
balanced-match 1.0.2 npm
base 0.11.2 npm
base64-js 1.3.1 npm
base64-js 1.5.1 npm
base64url 0.0.6 npm
base64url 1.0.6 npm
bash 5.2.15-r5 apk
basic-auth 2.0.1 npm
bcrypt-pbkdf 1.0.2 npm
beeper 1.1.1 npm
bin-links 4.0.1 npm
binary-extensions 1.13.1 npm
binary-extensions 2.0.0 npm
binary-extensions 2.2.0 npm
bl 1.0.3 npm
bl 1.1.2 npm
bluebird 2.11.0 npm
body-parser 1.19.0 npm
body-scroll-lock 2.6.4 npm
boolbase 1.0.0 npm
boom 2.10.1 npm
bootstrap-sass 3.2.0 npm
brace 0.11.1 npm
brace-expansion 1.1.11 npm (+2 duplicates)
brace-expansion 2.0.1 npm (+1 duplicate)
braces 1.8.5 npm
braces 2.3.2 npm
braces 3.0.2 npm
breakable 1.0.0 npm
breakdance 0.1.7 npm
breakdance-util 0.1.5 npm
brotli-libs 1.0.9-r14 apk
buffer 5.4.3 npm
buffer 6.0.3 npm
buffer-alloc 1.2.0 npm
buffer-alloc-unsafe 1.1.0 npm
buffer-crc32 0.2.13 npm
buffer-equal-constant-time 1.0.1 npm
buffer-fill 1.0.0 npm
buffer-from 1.1.1 npm
builtins 5.0.1 npm
busybox 1.36.1-r5 apk
busybox-binsh 1.36.1-r5 apk
bytes 3.0.0 npm (+1 duplicate)
bytes 3.1.0 npm
c-ares 1.19.1-r0 apk
ca-certificates 20240226-r0 apk
ca-certificates-bundle 20240226-r0 apk
cacache 16.1.3 npm
cacache 17.1.0 npm
cache-base 1.0.1 npm
cairo 1.17.8-r1 apk
cairo-gobject 1.17.8-r1 apk
callsites 3.1.0 npm
camelcase 1.2.1 npm (+2 duplicates)
camelcase 3.0.0 npm
camelcase-keys 1.0.0 npm
caseless 0.11.0 npm (+1 duplicate)
caseless 0.12.0 npm
center-align 0.1.3 npm
chalk 1.1.3 npm
chalk 2.4.2 npm (+2 duplicates)
chalk 3.0.0 npm
chalk 4.1.2 npm
chardet 0.7.0 npm
cheerio 0.22.0 npm
chokidar 1.7.0 npm
chokidar 3.3.1 npm
chownr 2.0.0 npm
chromium 119.0.6045.159-r0 apk
ci-info 3.8.0 npm
cidr-regex 3.1.1 npm
cjson 1.7.17-r0 apk
class-utils 0.3.6 npm
clean-stack 2.2.0 npm
cli-columns 4.0.0 npm
cli-cursor 2.1.0 npm
cli-table3 0.6.3 npm
cli-truncate 0.2.1 npm
cli-width 2.2.0 npm
cliui 2.1.0 npm (+1 duplicate)
cliui 3.2.0 npm
clone 1.0.4 npm (+1 duplicate)
clone-stats 0.0.1 npm
cmd-shim 6.0.1 npm
code-point-at 1.1.0 npm
collection-visit 1.0.0 npm
color-convert 1.9.3 npm
color-convert 2.0.1 npm (+1 duplicate)
color-name 1.1.3 npm
color-name 1.1.4 npm (+1 duplicate)
color-support 1.1.3 npm (+1 duplicate)
colors 1.4.0 npm
columnify 1.6.0 npm
combined-stream 1.0.8 npm
commander 2.20.3 npm
common-ancestor-path 1.0.1 npm
commoner 0.10.8 npm
component-emitter 1.3.0 npm
compress-commons 1.2.2 npm
compressible 2.0.17 npm
compression 1.7.4 npm
concat-map 0.0.1 npm (+1 duplicate)
concat-stream 1.4.11 npm
concat-stream 1.6.2 npm
connect 3.7.0 npm
connect-assets 5.4.0 npm
console-control-strings 1.1.0 npm
contains-path 0.1.0 npm
content-disposition 0.5.2 npm
content-disposition 0.5.3 npm
content-type 1.0.4 npm
convert-source-map 1.6.0 npm
cookie 0.3.1 npm
cookie 0.4.0 npm
cookie-parser 1.4.4 npm
cookie-session 1.3.3 npm
cookie-signature 1.0.6 npm
cookies 0.7.3 npm
copy-descriptor 0.1.1 npm
core-js 1.2.7 npm
core-util-is 1.0.2 npm
corepack 0.20.0 npm
coreutils 9.3-r2 apk
crc 3.8.0 npm
crc32-stream 2.0.0 npm
cross-spawn 6.0.5 npm
cross-spawn 7.0.3 npm
cryptiles 2.0.5 npm
css-select 1.2.0 npm
css-what 2.1.3 npm
cssesc 3.0.0 npm
csswring 5.0.0 npm
ctype 0.5.3 npm
cups-libs 2.4.7-r0 apk
curl 8.5.0-r0 apk
dashdash 1.14.1 npm
date-fns 1.30.1 npm
dateformat 2.2.0 npm
dbus-libs 1.14.8-r0 apk
debug 2.6.9 npm
debug 4.1.1 npm (+2 duplicates)
debug 4.3.4 npm
debug-log 1.0.1 npm
decamelize 1.2.0 npm
decode-uri-component 0.2.0 npm
deep-extend 0.2.11 npm
deep-is 0.1.3 npm
defaults 1.0.4 npm
define-properties 1.1.3 npm
define-property 0.2.5 npm (+3 duplicates)
define-property 1.0.0 npm (+2 duplicates)
define-property 2.0.2 npm (+2 duplicates)
defined 1.0.0 npm
defs 1.1.1 npm
deglob 4.0.1 npm
delayed-stream 1.0.0 npm
delegates 1.0.0 npm
depd 1.1.2 npm
depd 2.0.0 npm
destroy 1.0.4 npm
detect-indent 3.0.1 npm
detect-indent 5.0.0 npm
detective 4.7.1 npm
diacritics-map 0.1.0 npm
diff 5.1.0 npm
dillinger 3.39.1 npm
doctrine 1.5.0 npm
doctrine 2.1.0 npm
doctrine 3.0.0 npm
dom-serializer 0.1.1 npm
domelementtype 1.3.1 npm
domhandler 2.4.2 npm
domutils 1.5.1 npm
dropbox 3.0.5 npm
duplexer2 0.0.2 npm
eastasianwidth 0.2.0 npm
ecc-jsbn 0.1.2 npm
ecdsa-sig-formatter 1.0.11 npm
ee-first 1.1.1 npm
ejs 2.7.2 npm
elegant-spinner 1.0.1 npm
emoji-regex 7.0.3 npm
emoji-regex 8.0.0 npm
emoji-regex 9.2.2 npm (+1 duplicate)
encodeurl 1.0.2 npm
encoding 0.1.12 npm
encoding 0.1.13 npm
encodings 1.0.7-r1 apk
end-of-stream 1.4.4 npm
entities 1.1.2 npm
env-paths 2.2.1 npm
err-code 2.0.3 npm
error-ex 1.3.2 npm
errorhandler 1.5.1 npm
es-abstract 1.16.0 npm
es-to-primitive 1.2.1 npm
es6-promise 3.3.1 npm
escape-html 1.0.3 npm
escape-string-regexp 1.0.5 npm
eslint 6.4.0 npm
eslint-config-standard 14.1.0 npm
eslint-config-standard-jsx 8.1.0 npm
eslint-import-resolver-node 0.3.2 npm
eslint-module-utils 2.4.1 npm
eslint-plugin-es 2.0.0 npm
eslint-plugin-import 2.18.2 npm
eslint-plugin-node 10.0.0 npm
eslint-plugin-promise 4.2.1 npm
eslint-plugin-react 7.14.3 npm
eslint-plugin-standard 4.0.1 npm
eslint-scope 5.0.0 npm
eslint-utils 1.4.3 npm
eslint-visitor-keys 1.1.0 npm
espree 6.1.2 npm
esprima 2.7.3 npm
esprima 3.1.3 npm
esprima 4.0.1 npm
esprima-fb 15001.1001.0-dev-harmony-fb npm
esquery 1.0.1 npm
esrecurse 4.2.1 npm
estraverse 4.3.0 npm
esutils 2.0.3 npm
etag 1.8.1 npm
eudev-libs 3.2.11-r8 apk
event-target-shim 5.0.1 npm
events 3.3.0 npm
expand-brackets 0.1.5 npm
expand-brackets 2.1.4 npm
expand-range 1.8.2 npm
export-files 2.1.1 npm
express 4.17.1 npm
extend 3.0.2 npm
extend-shallow 2.0.1 npm (+6 duplicates)
extend-shallow 3.0.2 npm (+5 duplicates)
external-editor 3.1.0 npm
extglob 0.3.2 npm
extglob 2.0.4 npm
extract-zip 1.6.7 npm
extsprintf 1.3.0 npm
fancy-log 1.3.3 npm
fast-deep-equal 2.0.1 npm
fast-json-stable-stringify 2.0.0 npm
fast-levenshtein 2.0.6 npm
fast-url-parser 1.1.3 npm
fastest-levenshtein 1.0.16 npm
fd-slicer 1.0.1 npm
ffmpeg-libavcodec 6.0.1-r0 apk
ffmpeg-libavformat 6.0.1-r0 apk
ffmpeg-libavutil 6.0.1-r0 apk
ffmpeg-libswresample 6.0.1-r0 apk
figures 1.7.0 npm
figures 2.0.0 npm (+1 duplicate)
file 5.45-r0 apk
file-entry-cache 5.0.1 npm
filename-regex 2.0.1 npm
fill-range 2.2.4 npm
fill-range 4.0.0 npm
fill-range 7.0.1 npm
finalhandler 1.1.2 npm
find-root 1.1.0 npm
find-up 1.1.2 npm
find-up 2.1.0 npm (+1 duplicate)
find-up 3.0.0 npm
flac-libs 1.4.3-r0 apk
flat-cache 2.0.1 npm
flatted 2.0.1 npm
font-freefont 20120503-r4 apk
font-opensans 0_git20210927-r1 apk
fontconfig 2.14.2-r3 apk
for-in 1.0.2 npm
for-own 0.1.5 npm
foreground-child 3.1.1 npm
forever-agent 0.6.1 npm
form-data 1.0.1 npm (+1 duplicate)
form-data 2.3.3 npm
forwarded 0.1.2 npm
fragment-cache 0.2.1 npm
freetype 2.13.0-r5 apk
fresh 0.5.2 npm
fribidi 1.0.13-r0 apk
fs-constants 1.0.0 npm
fs-minipass 2.1.0 npm (+1 duplicate)
fs-minipass 3.0.2 npm
fs-readdir-recursive 0.1.2 npm
fs.realpath 1.0.0 npm (+1 duplicate)
function-bind 1.1.1 npm (+1 duplicate)
functional-red-black-tree 1.0.1 npm
gapitoken 0.1.5 npm
gauge 4.0.4 npm
gauge 5.0.1 npm
gdk-pixbuf 2.42.10-r5 apk
generate-function 2.3.1 npm
generate-object-property 1.2.0 npm
get-caller-file 1.0.3 npm
get-port 5.1.1 npm
get-stdin 4.0.1 npm
get-stdin 7.0.0 npm (+1 duplicate)
get-value 2.0.6 npm
getpass 0.1.7 npm
glib 2.76.6-r0 apk
glob 10.2.2 npm (+1 duplicate)
glob 5.0.15 npm
glob 7.1.5 npm (+1 duplicate)
glob 7.1.6 npm (+3 duplicates)
glob 7.2.3 npm (+1 duplicate)
glob 8.1.0 npm
glob-base 0.3.0 npm
glob-parent 2.0.0 npm
glob-parent 5.1.0 npm (+1 duplicate)
globals 11.12.0 npm
globals 6.4.1 npm
glogg 1.0.2 npm
gmp 6.2.1-r3 apk
gnutls 3.8.3-r0 apk
google-auth-library 0.9.10 npm
google-p12-pem 0.1.2 npm
googleapis 2.1.7 npm
graceful-fs 4.2.11 npm
graceful-fs 4.2.6 npm (+7 duplicates)
graphite2 1.3.14-r5 apk
gray-matter 4.0.2 npm
gtk+3.0 3.24.38-r1 apk
gtk-update-icon-cache 3.24.38-r1 apk
gtoken 1.2.3 npm
gulp-gzip 1.4.2 npm
gulp-tar 1.9.0 npm
gulp-util 3.0.8 npm
gulplog 1.0.0 npm
har-schema 2.0.0 npm
har-validator 2.0.6 npm (+1 duplicate)
har-validator 5.1.3 npm
harfbuzz 7.3.0-r0 apk
harfbuzz-subset 7.3.0-r0 apk
has 1.0.3 npm (+1 duplicate)
has-ansi 2.0.0 npm
has-flag 1.0.0 npm
has-flag 3.0.0 npm (+2 duplicates)
has-flag 4.0.0 npm (+1 duplicate)
has-gulplog 0.1.0 npm
has-symbols 1.0.0 npm
has-unicode 2.0.1 npm
has-value 0.3.1 npm
has-value 1.0.0 npm
has-values 0.1.4 npm
has-values 1.0.0 npm
hawk 3.1.3 npm
hicolor-icon-theme 0.17-r2 apk
highlight.js 8.9.1 npm
highlight.js 9.18.0 npm
hijackresponse 2.0.1 npm
hike 1.0.2 npm
hoek 2.16.3 npm
home-or-tmp 1.0.0 npm
hosted-git-info 2.8.5 npm
hosted-git-info 6.1.1 npm
htmlparser2 3.10.1 npm
http-cache-semantics 4.1.1 npm
http-errors 1.7.2 npm
http-proxy-agent 5.0.0 npm
http-signature 0.11.0 npm
http-signature 1.1.1 npm
http-signature 1.2.0 npm
https-proxy-agent 4.0.0 npm
https-proxy-agent 5.0.1 npm
humanize-ms 1.2.1 npm
hwdata-pci 0.370-r0 apk
iconv-lite 0.4.24 npm
iconv-lite 0.5.1 npm
iconv-lite 0.6.3 npm
icu-data-full 73.2-r2 apk
icu-libs 73.2-r2 apk
ieee754 1.1.13 npm
ieee754 1.2.1 npm
ignore 4.0.6 npm
ignore 5.1.4 npm (+1 duplicate)
ignore-walk 6.0.3 npm
import-fresh 3.2.1 npm
imurmurhash 0.1.4 npm (+1 duplicate)
indent-string 1.2.2 npm
indent-string 3.2.0 npm
indent-string 4.0.0 npm
infer-owner 1.0.4 npm
inflight 1.0.6 npm (+1 duplicate)
inherits 2.0.3 npm
inherits 2.0.4 npm
ini 1.1.0 npm
ini 4.1.0 npm
init-package-json 5.0.0 npm
inquirer 6.5.2 npm
inverseresize 1.0.0 npm
invert-kv 1.0.0 npm
ip 2.0.0 npm
ip-regex 4.3.0 npm
ipaddr.js 1.9.0 npm
is-accessor-descriptor 0.1.6 npm (+1 duplicate)
is-accessor-descriptor 1.0.0 npm (+3 duplicates)
is-arrayish 0.2.1 npm
is-binary-path 1.0.1 npm
is-binary-path 2.1.0 npm
is-buffer 1.1.6 npm
is-callable 1.1.4 npm
is-cidr 4.0.2 npm
is-core-module 2.12.0 npm
is-data-descriptor 0.1.4 npm (+1 duplicate)
is-data-descriptor 1.0.0 npm (+3 duplicates)
is-date-object 1.0.1 npm
is-descriptor 0.1.6 npm (+1 duplicate)
is-descriptor 1.0.2 npm (+5 duplicates)
is-dotfile 1.0.3 npm
is-equal-shallow 0.1.3 npm
is-extendable 0.1.1 npm (+1 duplicate)
is-extendable 1.0.1 npm (+6 duplicates)
is-extglob 1.0.0 npm
is-extglob 2.1.1 npm (+1 duplicate)
is-finite 1.0.2 npm
is-fullwidth-code-point 1.0.0 npm
is-fullwidth-code-point 2.0.0 npm (+2 duplicates)
is-fullwidth-code-point 3.0.0 npm
is-glob 2.0.1 npm
is-glob 4.0.1 npm (+1 duplicate)
is-integer 1.0.7 npm
is-lambda 1.0.1 npm
is-my-ip-valid 1.0.0 npm
is-my-json-valid 2.20.0 npm
is-number 2.1.0 npm
is-number 3.0.0 npm
is-number 4.0.0 npm
is-number 7.0.0 npm
is-observable 1.1.0 npm
is-plain-object 2.0.4 npm
is-posix-bracket 0.1.1 npm
is-primitive 2.0.0 npm
is-promise 2.1.0 npm
is-property 1.0.2 npm
is-regex 1.0.4 npm
is-self-closing 1.0.1 npm
is-stream 1.1.0 npm
is-symbol 1.0.2 npm
is-typedarray 1.0.0 npm
is-utf8 0.2.1 npm
is-whitespace 0.3.0 npm
is-windows 1.0.2 npm
isarray 0.0.1 npm (+1 duplicate)
isarray 1.0.0 npm
isexe 2.0.0 npm (+1 duplicate)
isobject 2.1.0 npm (+2 duplicates)
isobject 3.0.1 npm
isomorphic-fetch 2.2.1 npm
isstream 0.1.2 npm
jackspeak 2.2.0 npm
jq 1.6-r4 apk
jquery 3.4.1 npm
jquery-ui-bundle 1.12.1 npm
js-base64 2.5.1 npm
js-tokens 1.0.1 npm
js-tokens 4.0.0 npm (+1 duplicate)
js-yaml 3.13.1 npm
jsbn 0.1.1 npm
jsesc 0.5.0 npm
json-parse-better-errors 1.0.2 npm
json-parse-even-better-errors 3.0.0 npm
json-schema 0.2.3 npm
json-schema-traverse 0.4.1 npm
json-stable-stringify-without-jsonify 1.0.1 npm
json-stringify-nice 1.1.4 npm
json-stringify-safe 5.0.1 npm
json5 0.4.0 npm
jsoncpp 1.9.5-r0 apk
jsonparse 1.3.1 npm
jsonpointer 4.0.1 npm
jsprim 1.4.1 npm
jsx-ast-utils 2.2.3 npm
just-diff 6.0.2 npm
just-diff-apply 5.5.0 npm
jwa 1.0.2 npm
jwa 1.4.1 npm
jws 3.0.0 npm (+1 duplicate)
jws 3.2.2 npm
katex 0.9.0 npm
keygrip 1.0.3 npm
keymaster 1.6.2 npm
kind-of 3.2.2 npm (+3 duplicates)
kind-of 4.0.0 npm
kind-of 5.1.0 npm (+1 duplicate)
kind-of 6.0.2 npm (+4 duplicates)
kind-of 6.0.3 npm (+1 duplicate)
lame-libs 3.100-r5 apk
lazy-cache 1.0.4 npm (+1 duplicate)
lazy-cache 2.0.2 npm
lazystream 1.0.0 npm
lcid 1.0.0 npm
lcms2 2.15-r2 apk
leven 1.0.2 npm
levn 0.3.0 npm
libacl 2.3.1-r3 apk
libasyncns 0.8-r1 apk
libatk-1.0 2.48.4-r0 apk
libatk-bridge-2.0 2.48.4-r0 apk
libatomic 12.2.1_git20220924-r10 apk
libattr 2.5.1-r4 apk
libblkid 2.38.1-r8 apk
libbluray 1.3.4-r0 apk
libbsd 0.11.7-r1 apk
libbz2 1.0.8-r5 apk
libc-utils 0.7.2-r5 apk
libcrypto3 3.1.4-r5 apk
libcurl 8.5.0-r0 apk
libdav1d 1.2.1-r0 apk
libdrm 2.4.115-r4 apk
libelf 0.189-r2 apk
libepoxy 1.5.10-r1 apk
libevent 2.1.12-r6 apk
libexpat 2.6.2-r0 apk
libffi 3.4.4-r2 apk
libfontenc 1.1.7-r2 apk
libgcc 12.2.1_git20220924-r10 apk
libgcrypt 1.10.2-r1 apk
libgomp 12.2.1_git20220924-r10 apk
libgpg-error 1.47-r1 apk
libhwy 1.0.4-r1 apk
libice 1.1.1-r2 apk
libidn2 2.3.4-r1 apk
libintl 0.21.1-r7 apk
libjpeg-turbo 2.1.5.1-r3 apk
libjxl 0.8.2-r0 apk
libltdl 2.4.7-r2 apk
libmagic 5.45-r0 apk
libmd 1.0.4-r2 apk
libmount 2.38.1-r8 apk
libncursesw 6.4_p20230506-r0 apk
libnpmaccess 7.0.2 npm
libnpmdiff 5.0.17 npm
libnpmexec 5.0.17 npm
libnpmfund 4.0.17 npm
libnpmhook 9.0.3 npm
libnpmorg 5.0.4 npm
libnpmpack 5.0.17 npm
libnpmpublish 7.1.4 npm
libnpmsearch 6.0.2 npm
libnpmteam 5.0.3 npm
libnpmversion 4.0.2 npm
libogg 1.3.5-r4 apk
libopenmpt 0.7.2-r0 apk
libpciaccess 0.17-r2 apk
libpng 1.6.39-r3 apk
libproc2 4.0.4-r0 apk
libpulse 16.1-r10 apk
librist 0.2.7-r0 apk
libsm 1.2.4-r1 apk
libsndfile 1.2.0-r2 apk
libsodium 1.0.18-r3 apk
libsrt 1.5.2-r0 apk
libssh 0.10.5-r0 apk
libssl3 3.1.4-r5 apk
libstdc++ 12.2.1_git20220924-r10 apk
libtasn1 4.19.0-r1 apk
libtheora 1.1.1-r17 apk
libunistring 1.1-r1 apk
libuuid 2.38.1-r8 apk
libuv 1.44.2-r2 apk
libva 2.18.0-r1 apk
libvdpau 1.5-r1 apk
libvorbis 1.3.7-r1 apk
libvpx 1.13.0-r2 apk
libwebp 1.3.2-r0 apk
libwoff2common 1.0.2-r2 apk
libwoff2enc 1.0.2-r2 apk
libx11 1.8.7-r0 apk
libxau 1.0.11-r2 apk
libxcb 1.15-r1 apk
libxcomposite 0.4.6-r3 apk
libxcursor 1.2.1-r2 apk
libxdamage 1.1.6-r2 apk
libxdmcp 1.1.4-r2 apk
libxext 1.3.5-r2 apk
libxfixes 6.0.1-r2 apk
libxft 2.3.8-r1 apk
libxi 1.8.1-r0 apk
libxinerama 1.1.5-r2 apk
libxkbcommon 1.5.0-r2 apk
libxml2 2.11.7-r0 apk
libxmu 1.1.4-r2 apk
libxrandr 1.5.3-r2 apk
libxrender 0.9.11-r3 apk
libxslt 1.1.38-r0 apk
libxt 1.3.0-r2 apk
libxtst 1.2.4-r2 apk
libzmq 4.3.4-r4 apk
linkify-it 1.2.4 npm
linux-pam 1.5.2-r10 apk
listr 0.14.3 npm
listr-silent-renderer 1.1.1 npm
listr-update-renderer 0.5.0 npm
listr-verbose-renderer 0.5.0 npm
llvm15-libs 15.0.7-r6 apk
load-json-file 1.1.0 npm
load-json-file 2.0.0 npm
load-json-file 5.3.0 npm
locate-path 2.0.0 npm
locate-path 3.0.0 npm
lodash 3.10.1 npm (+2 duplicates)
lodash 4.17.15 npm
lodash._basecopy 3.0.1 npm
lodash._basetostring 3.0.1 npm
lodash._basevalues 3.0.0 npm
lodash._getnative 3.9.1 npm
lodash._isiterateecall 3.0.9 npm
lodash._reescape 3.0.0 npm
lodash._reevaluate 3.0.0 npm
lodash._reinterpolate 3.0.0 npm
lodash._root 3.0.1 npm
lodash.assignin 4.2.0 npm
lodash.bind 4.2.1 npm
lodash.defaults 4.2.0 npm
lodash.escape 3.2.0 npm
lodash.filter 4.6.0 npm
lodash.flatten 4.4.0 npm
lodash.foreach 4.5.0 npm
lodash.isarguments 3.1.0 npm
lodash.isarray 3.0.4 npm
lodash.keys 3.1.2 npm
lodash.map 4.6.0 npm
lodash.merge 4.6.2 npm
lodash.noop 3.0.1 npm
lodash.pick 4.4.0 npm
lodash.reduce 4.6.0 npm
lodash.reject 4.6.0 npm
lodash.restparam 3.6.1 npm
lodash.some 4.6.0 npm
lodash.template 3.6.2 npm
lodash.templatesettings 3.1.1 npm
lodash.unescape 4.0.1 npm
log-ok 0.1.1 npm
log-symbols 1.0.2 npm
log-update 2.3.0 npm
longest 1.0.1 npm
loose-envify 1.4.0 npm
lru-cache 4.1.5 npm
lru-cache 6.0.0 npm
lru-cache 7.18.3 npm
lru-cache 9.1.1 npm
make-fetch-happen 10.2.1 npm
make-fetch-happen 11.1.1 npm
map-cache 0.2.2 npm
map-obj 1.0.1 npm
map-visit 1.0.0 npm
markdown-it 4.4.0 npm
markdown-it-abbr 1.0.4 npm
markdown-it-checkbox 1.1.0 npm
markdown-it-deflist 1.0.0 npm
markdown-it-footnote 1.0.0 npm
markdown-it-ins 1.0.0 npm
markdown-it-mark 1.0.0 npm
markdown-it-math 3.0.2 npm
markdown-it-sub 1.0.0 npm
markdown-it-sup 1.0.0 npm
markdown-it-toc 1.1.0 npm
marked 0.8.0 npm
match-at 0.1.1 npm
math-random 1.0.4 npm
mbedtls 2.28.7-r0 apk
md-to-pdf 3.0.0 npm
mdurl 1.0.1 npm
media-typer 0.3.0 npm
medium-sdk 0.0.4 npm
memo-parser 0.2.0 npm
meow 2.0.0 npm
merge-descriptors 1.0.1 npm
mesa 23.0.4-r0 apk
mesa-dri-gallium 23.0.4-r0 apk
mesa-gbm 23.0.4-r0 apk
mesa-glapi 23.0.4-r0 apk
method-override 2.3.10 npm
methods 1.1.2 npm
micromatch 2.3.11 npm
micromatch 3.1.10 npm
mime 1.3.4 npm
mime 1.6.0 npm
mime 2.4.4 npm
mime-db 1.33.0 npm
mime-db 1.40.0 npm
mime-db 1.43.0 npm
mime-types 2.1.18 npm
mime-types 2.1.24 npm
mime-types 2.1.26 npm
mimic-fn 1.2.0 npm
mimoza 1.0.0 npm
mincer 1.5.0 npm
minimatch 2.0.10 npm
minimatch 3.0.4 npm
minimatch 3.1.2 npm (+1 duplicate)
minimatch 5.1.6 npm
minimatch 9.0.0 npm
minimist 0.0.8 npm
minimist 1.2.0 npm (+5 duplicates)
minipass 3.3.6 npm (+7 duplicates)
minipass 5.0.0 npm
minipass-collect 1.0.2 npm
minipass-fetch 2.1.2 npm
minipass-fetch 3.0.3 npm
minipass-flush 1.0.5 npm
minipass-json-stream 1.0.1 npm
minipass-pipeline 1.2.4 npm
minipass-sized 1.0.3 npm
minizip 1.2.13-r1 apk
minizlib 2.1.2 npm
mixin-deep 1.3.2 npm
mkdirp 0.5.1 npm
mkdirp 1.0.4 npm
mkfontscale 1.2.2-r3 apk
monorepo-symlink-test 0.0.0 npm
morgan 1.9.1 npm
mpg123-libs 1.31.3-r1 apk
ms 2.0.0 npm
ms 2.1.1 npm (+1 duplicate)
ms 2.1.2 npm (+3 duplicates)
ms 2.1.3 npm
multipipe 0.1.2 npm
musl 1.2.4-r2 apk
musl-fts 1.2.7-r5 apk
musl-utils 1.2.4-r2 apk
mute-stream 0.0.7 npm
mute-stream 1.0.0 npm
mylib 0.0.0 npm
nanomatch 1.2.13 npm
natural-compare 1.4.0 npm
ncurses-terminfo-base 6.4_p20230506-r0 apk
negotiator 0.6.2 npm
negotiator 0.6.3 npm
netcat-openbsd 1.219-r1 apk
netjet 1.3.0 npm
nettle 3.8.1-r2 apk
nghttp2-libs 1.57.0-r0 apk
nice-try 1.0.5 npm
node-fetch 1.7.3 npm
node-forge 0.7.6 npm
node-gyp 9.3.1 npm
node-uuid 1.4.8 npm (+1 duplicate)
nodejs-current 20.8.1-r0 apk
nopt 6.0.0 npm
nopt 7.1.0 npm
normalize-package-data 2.5.0 npm
normalize-package-data 5.0.0 npm
normalize-path 2.1.1 npm
normalize-path 3.0.0 npm
npm 9.6.6 npm
npm 9.6.6-r0 apk
npm-audit-report 4.0.0 npm
npm-bundled 3.0.0 npm
npm-install-checks 6.1.1 npm
npm-normalize-package-bin 3.0.1 npm
npm-package-arg 10.1.0 npm
npm-packlist 7.0.4 npm
npm-pick-manifest 8.0.1 npm
npm-profile 7.0.1 npm
npm-registry-fetch 14.0.5 npm
npm-user-validate 2.0.0 npm
npmlog 6.0.2 npm
npmlog 7.0.1 npm
nspr 4.35-r2 apk
nss 3.94-r0 apk
nth-check 1.0.2 npm
numactl 2.0.16-r4 apk
number-is-nan 1.0.1 npm
oauth-sign 0.8.2 npm (+1 duplicate)
oauth-sign 0.9.0 npm
object-assign 1.0.0 npm
object-assign 3.0.0 npm
object-assign 4.1.1 npm (+3 duplicates)
object-copy 0.1.0 npm
object-inspect 1.7.0 npm
object-keys 1.1.1 npm (+2 duplicates)
object-visit 1.0.1 npm
object.assign 4.1.0 npm
object.entries 1.1.0 npm
object.fromentries 2.0.1 npm
object.omit 2.0.1 npm
object.pick 1.3.0 npm
object.values 1.1.0 npm
on-finished 2.3.0 npm
on-headers 1.0.2 npm
once 1.4.0 npm (+1 duplicate)
onecolor 2.5.0 npm
onetime 2.0.1 npm
onevpl-libs 2023.2.1-r0 apk
oniguruma 6.9.8-r1 apk
optimist 0.3.7 npm
optionator 0.8.3 npm
opus 1.4-r0 apk
orc 0.4.34-r0 apk
os-locale 1.4.0 npm
os-tmpdir 1.0.2 npm
output-file-sync 1.1.2 npm
p-limit 1.3.0 npm
p-limit 2.2.1 npm
p-locate 2.0.0 npm
p-locate 3.0.0 npm
p-map 2.1.0 npm
p-map 4.0.0 npm
p-try 1.0.0 npm
p-try 2.2.0 npm
p11-kit 0.24.1-r2 apk
pacote 15.1.3 npm
pako 1.0.10 npm
pango 1.50.14-r1 apk
parent-module 1.0.1 npm
parse-conflict-json 3.0.1 npm
parse-glob 3.0.4 npm
parse-json 2.2.0 npm
parse-json 4.0.0 npm
parse-link-header 0.4.1 npm
parse-node-version 1.0.1 npm
parseurl 1.3.3 npm
pascalcase 0.1.1 npm
path-exists 1.0.0 npm
path-exists 2.1.0 npm
path-exists 3.0.0 npm (+1 duplicate)
path-is-absolute 1.0.1 npm (+1 duplicate)
path-is-inside 1.0.2 npm
path-key 2.0.1 npm
path-key 3.1.1 npm
path-parse 1.0.6 npm
path-scurry 1.7.0 npm
path-to-regexp 0.1.7 npm
path-to-regexp 2.2.1 npm
path-type 1.1.0 npm
path-type 2.0.0 npm
pcre2 10.42-r1 apk
pend 1.2.0 npm
performance-now 2.1.0 npm
picomatch 2.2.1 npm
pify 2.3.0 npm
pify 4.0.1 npm
pinkie 2.0.4 npm
pinkie-promise 2.0.1 npm
pipewire-libs 0.3.70-r1 apk
pixman 0.42.2-r1 apk
pkg-conf 3.1.0 npm
pkg-config 1.1.1 npm
pkg-dir 2.0.0 npm
pkgconf 1.9.5-r0 apk
plugin-error 1.0.1 npm
posix-character-classes 0.1.1 npm
postcss 5.0.21 npm
postcss-selector-parser 6.0.12 npm
posthtml 0.9.2 npm
posthtml-parser 0.2.1 npm
posthtml-render 1.1.5 npm
prelude-ls 1.1.2 npm
preserve 0.2.0 npm
private 0.1.8 npm
proc-log 3.0.0 npm
process 0.11.10 npm
process-nextick-args 1.0.7 npm
process-nextick-args 2.0.1 npm (+9 duplicates)
procps-ng 4.0.4-r0 apk
progress 2.0.3 npm (+1 duplicate)
promise-all-reject-late 1.0.1 npm
promise-call-limit 1.0.2 npm
promise-inflight 1.0.1 npm
promise-retry 2.0.1 npm