-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package_versions.txt
executable file
·1232 lines (1232 loc) · 153 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
@ampproject/remapping 2.2.0 npm
@babel/code-frame 7.18.6 npm
@babel/code-frame 7.23.5 npm
@babel/compat-data 7.18.8 npm
@babel/core 7.17.10 npm
@babel/core 7.18.9 npm (+1 duplicate)
@babel/generator 7.18.9 npm
@babel/generator 7.23.6 npm
@babel/helper-annotate-as-pure 7.18.6 npm
@babel/helper-builder-binary-assignment-operator-visitor 7.18.9 npm
@babel/helper-compilation-targets 7.18.9 npm
@babel/helper-create-class-features-plugin 7.18.9 npm
@babel/helper-create-regexp-features-plugin 7.18.6 npm
@babel/helper-define-polyfill-provider 0.3.2 npm
@babel/helper-environment-visitor 7.18.9 npm
@babel/helper-environment-visitor 7.22.20 npm
@babel/helper-explode-assignable-expression 7.18.6 npm
@babel/helper-function-name 7.18.9 npm
@babel/helper-function-name 7.23.0 npm
@babel/helper-hoist-variables 7.18.6 npm
@babel/helper-hoist-variables 7.22.5 npm
@babel/helper-member-expression-to-functions 7.18.9 npm
@babel/helper-module-imports 7.18.6 npm
@babel/helper-module-transforms 7.18.9 npm
@babel/helper-optimise-call-expression 7.18.6 npm
@babel/helper-plugin-utils 7.18.9 npm
@babel/helper-remap-async-to-generator 7.18.9 npm
@babel/helper-replace-supers 7.18.9 npm
@babel/helper-simple-access 7.18.6 npm
@babel/helper-skip-transparent-expression-wrappers 7.18.9 npm
@babel/helper-split-export-declaration 7.18.6 npm
@babel/helper-split-export-declaration 7.22.6 npm
@babel/helper-string-parser 7.23.4 npm
@babel/helper-validator-identifier 7.18.6 npm
@babel/helper-validator-identifier 7.22.20 npm
@babel/helper-validator-option 7.18.6 npm
@babel/helper-wrap-function 7.18.9 npm
@babel/helpers 7.18.9 npm
@babel/highlight 7.18.6 npm
@babel/highlight 7.23.4 npm
@babel/parser 7.18.9 npm
@babel/parser 7.23.6 npm
@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression 7.18.6 npm
@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining 7.18.9 npm
@babel/plugin-proposal-async-generator-functions 7.18.6 npm
@babel/plugin-proposal-class-properties 7.18.6 npm
@babel/plugin-proposal-class-static-block 7.18.6 npm
@babel/plugin-proposal-dynamic-import 7.18.6 npm
@babel/plugin-proposal-export-namespace-from 7.18.9 npm
@babel/plugin-proposal-json-strings 7.18.6 npm
@babel/plugin-proposal-logical-assignment-operators 7.18.9 npm
@babel/plugin-proposal-nullish-coalescing-operator 7.18.6 npm
@babel/plugin-proposal-numeric-separator 7.18.6 npm
@babel/plugin-proposal-object-rest-spread 7.18.9 npm
@babel/plugin-proposal-optional-catch-binding 7.18.6 npm
@babel/plugin-proposal-optional-chaining 7.18.9 npm
@babel/plugin-proposal-private-methods 7.18.6 npm
@babel/plugin-proposal-private-property-in-object 7.18.6 npm
@babel/plugin-proposal-unicode-property-regex 7.18.6 npm
@babel/plugin-syntax-async-generators 7.8.4 npm
@babel/plugin-syntax-class-properties 7.12.13 npm
@babel/plugin-syntax-class-static-block 7.14.5 npm
@babel/plugin-syntax-dynamic-import 7.8.3 npm
@babel/plugin-syntax-export-namespace-from 7.8.3 npm
@babel/plugin-syntax-json-strings 7.8.3 npm
@babel/plugin-syntax-logical-assignment-operators 7.10.4 npm
@babel/plugin-syntax-nullish-coalescing-operator 7.8.3 npm
@babel/plugin-syntax-numeric-separator 7.10.4 npm
@babel/plugin-syntax-object-rest-spread 7.8.3 npm
@babel/plugin-syntax-optional-catch-binding 7.8.3 npm
@babel/plugin-syntax-optional-chaining 7.8.3 npm
@babel/plugin-syntax-private-property-in-object 7.14.5 npm
@babel/plugin-syntax-top-level-await 7.14.5 npm
@babel/plugin-syntax-typescript 7.18.6 npm
@babel/plugin-transform-arrow-functions 7.18.6 npm
@babel/plugin-transform-async-to-generator 7.18.6 npm
@babel/plugin-transform-block-scoped-functions 7.18.6 npm
@babel/plugin-transform-block-scoping 7.18.9 npm
@babel/plugin-transform-classes 7.18.9 npm
@babel/plugin-transform-computed-properties 7.18.9 npm
@babel/plugin-transform-destructuring 7.18.9 npm
@babel/plugin-transform-dotall-regex 7.18.6 npm
@babel/plugin-transform-duplicate-keys 7.18.9 npm
@babel/plugin-transform-exponentiation-operator 7.18.6 npm
@babel/plugin-transform-for-of 7.18.8 npm
@babel/plugin-transform-function-name 7.18.9 npm
@babel/plugin-transform-literals 7.18.9 npm
@babel/plugin-transform-member-expression-literals 7.18.6 npm
@babel/plugin-transform-modules-amd 7.18.6 npm
@babel/plugin-transform-modules-commonjs 7.18.6 npm
@babel/plugin-transform-modules-systemjs 7.18.9 npm
@babel/plugin-transform-modules-umd 7.18.6 npm
@babel/plugin-transform-named-capturing-groups-regex 7.18.6 npm
@babel/plugin-transform-new-target 7.18.6 npm
@babel/plugin-transform-object-super 7.18.6 npm
@babel/plugin-transform-parameters 7.18.8 npm
@babel/plugin-transform-property-literals 7.18.6 npm
@babel/plugin-transform-regenerator 7.18.6 npm
@babel/plugin-transform-reserved-words 7.18.6 npm
@babel/plugin-transform-runtime 7.18.2 npm
@babel/plugin-transform-shorthand-properties 7.18.6 npm
@babel/plugin-transform-spread 7.18.9 npm
@babel/plugin-transform-sticky-regex 7.18.6 npm
@babel/plugin-transform-template-literals 7.18.9 npm
@babel/plugin-transform-typeof-symbol 7.18.9 npm
@babel/plugin-transform-typescript 7.18.8 npm
@babel/plugin-transform-unicode-escapes 7.18.6 npm
@babel/plugin-transform-unicode-regex 7.18.6 npm
@babel/preset-env 7.17.10 npm
@babel/preset-modules 0.1.5 npm
@babel/preset-typescript 7.18.6 npm
@babel/runtime 7.18.9 npm
@babel/template 7.18.6 npm
@babel/template 7.22.15 npm
@babel/traverse 7.23.6 npm
@babel/types 7.18.9 npm
@babel/types 7.23.6 npm
@cspotcode/source-map-consumer 0.8.0 npm
@cspotcode/source-map-support 0.7.0 npm
@csstools/postcss-font-format-keywords 1.0.1 npm
@csstools/postcss-hwb-function 1.0.2 npm
@csstools/postcss-is-pseudo-class 2.0.7 npm
@csstools/postcss-normalize-display-values 1.0.1 npm
@csstools/postcss-progressive-custom-properties 1.3.0 npm
@csstools/selector-specificity 2.0.2 npm
@discoveryjs/json-ext 0.5.7 npm
@eslint/eslintrc 1.3.0 npm
@fastify/busboy 1.0.0 npm
@fortawesome/fontawesome-free 5.15.4 npm
@gar/promisify 1.1.3 npm
@humanwhocodes/config-array 0.9.5 npm
@humanwhocodes/object-schema 1.2.1 npm
@istanbuljs/load-nyc-config 1.1.0 npm
@istanbuljs/nyc-config-typescript 1.0.2 npm
@istanbuljs/schema 0.1.3 npm
@jridgewell/gen-mapping 0.1.1 npm
@jridgewell/gen-mapping 0.3.2 npm
@jridgewell/resolve-uri 3.1.0 npm
@jridgewell/resolve-uri 3.1.1 npm
@jridgewell/set-array 1.1.2 npm
@jridgewell/source-map 0.3.2 npm
@jridgewell/sourcemap-codec 1.4.14 npm
@jridgewell/sourcemap-codec 1.4.15 npm
@jridgewell/trace-mapping 0.3.14 npm
@jridgewell/trace-mapping 0.3.20 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
@npmcli/fs 1.1.1 npm
@npmcli/move-file 1.1.2 npm
@sindresorhus/is 4.6.0 npm
@sinonjs/commons 1.8.3 npm
@sinonjs/commons 2.0.0 npm
@sinonjs/fake-timers 10.0.2 npm
@sinonjs/fake-timers 6.0.1 npm
@sinonjs/fake-timers 9.1.2 npm
@sinonjs/samsam 5.3.1 npm
@sinonjs/samsam 6.1.1 npm
@sinonjs/text-encoding 0.7.1 npm
@socket.io/component-emitter 3.1.0 npm
@szmarczak/http-timer 4.0.6 npm
@textcomplete/core 0.1.10 npm
@textcomplete/textarea 0.1.13 npm
@textcomplete/utils 0.1.13 npm
@tokenizer/token 0.3.0 npm
@tootallnate/once 1.1.2 npm
@trysound/sax 0.2.0 npm
@tsconfig/node10 1.0.9 npm
@tsconfig/node12 1.0.11 npm
@tsconfig/node14 1.0.3 npm
@tsconfig/node16 1.0.3 npm
@types/bcryptjs 2.4.6 npm
@types/body-parser 1.19.2 npm
@types/cacheable-request 6.0.2 npm
@types/chai 4.3.1 npm
@types/chai 4.3.5 npm
@types/cheerio 0.22.35 npm
@types/connect 3.4.35 npm
@types/content-disposition 0.5.8 npm
@types/cookie 0.4.1 npm
@types/cors 2.8.12 npm
@types/eslint 8.4.5 npm
@types/eslint-scope 3.7.4 npm
@types/estree 0.0.51 npm
@types/estree 1.0.0 npm (+1 duplicate)
@types/express 4.17.13 npm
@types/express-serve-static-core 4.17.29 npm
@types/http-cache-semantics 4.0.1 npm
@types/is-utf8 0.2.3 npm
@types/json-buffer 3.0.0 npm
@types/json-schema 7.0.11 npm
@types/keyv 3.1.4 npm
@types/ldapjs 2.2.2 npm
@types/linkify-it 3.0.5 npm
@types/lodash 4.14.202 npm
@types/mime 1.3.2 npm
@types/mime-types 2.1.1 npm
@types/minimatch 3.0.5 npm
@types/minimist 1.2.2 npm
@types/mocha 9.1.1 npm
@types/mousetrap 1.6.15 npm
@types/node 14.18.22 npm
@types/node 17.0.45 npm
@types/node 18.11.9 npm (+14 duplicates)
@types/normalize-package-data 2.4.1 npm
@types/parse-json 4.0.0 npm
@types/qs 6.9.7 npm
@types/range-parser 1.2.4 npm
@types/read 0.0.29 npm
@types/responselike 1.0.0 npm
@types/semver 7.3.9 npm
@types/serve-static 1.13.10 npm
@types/sinon 10.0.13 npm
@types/sinon 9.0.11 npm
@types/sinon-chai 3.2.8 npm
@types/sinonjs__fake-timers 8.1.2 npm
@types/sortablejs 1.13.0 npm
@types/sqlite3 3.1.8 npm
@types/ua-parser-js 0.7.36 npm
@types/uuid 8.3.4 npm
@types/web-push 3.3.2 npm
@types/webpack-env 1.16.4 npm
@types/webpack-hot-middleware 2.25.6 npm
@types/ws 8.5.4 npm
@typescript-eslint/eslint-plugin 5.22.0 npm
@typescript-eslint/parser 5.22.0 npm
@typescript-eslint/scope-manager 5.22.0 npm
@typescript-eslint/type-utils 5.22.0 npm
@typescript-eslint/types 5.22.0 npm
@typescript-eslint/typescript-estree 5.22.0 npm
@typescript-eslint/utils 5.22.0 npm
@typescript-eslint/visitor-keys 5.22.0 npm
@ungap/promise-all-settled 1.1.2 npm
@vue/compiler-core 3.2.35 npm
@vue/compiler-core 3.2.37 npm
@vue/compiler-dom 3.2.35 npm
@vue/compiler-dom 3.2.37 npm
@vue/compiler-sfc 3.2.35 npm
@vue/compiler-sfc 3.2.37 npm
@vue/compiler-ssr 3.2.35 npm
@vue/compiler-ssr 3.2.37 npm
@vue/devtools-api 6.2.1 npm
@vue/reactivity 3.2.33 npm
@vue/reactivity 3.2.35 npm
@vue/reactivity-transform 3.2.35 npm
@vue/reactivity-transform 3.2.37 npm
@vue/runtime-core 3.2.33 npm
@vue/runtime-core 3.2.35 npm
@vue/runtime-dom 3.2.33 npm
@vue/runtime-dom 3.2.35 npm
@vue/server-renderer 3.2.35 npm
@vue/shared 3.2.33 npm (+2 duplicates)
@vue/shared 3.2.35 npm
@vue/shared 3.2.37 npm
@vue/test-utils 2.4.0 npm
@webassemblyjs/ast 1.11.1 npm
@webassemblyjs/floating-point-hex-parser 1.11.1 npm
@webassemblyjs/helper-api-error 1.11.1 npm
@webassemblyjs/helper-buffer 1.11.1 npm
@webassemblyjs/helper-numbers 1.11.1 npm
@webassemblyjs/helper-wasm-bytecode 1.11.1 npm
@webassemblyjs/helper-wasm-section 1.11.1 npm
@webassemblyjs/ieee754 1.11.1 npm
@webassemblyjs/leb128 1.11.1 npm
@webassemblyjs/utf8 1.11.1 npm
@webassemblyjs/wasm-edit 1.11.1 npm
@webassemblyjs/wasm-gen 1.11.1 npm
@webassemblyjs/wasm-opt 1.11.1 npm
@webassemblyjs/wasm-parser 1.11.1 npm
@webassemblyjs/wast-printer 1.11.1 npm
@webpack-cli/configtest 1.2.0 npm
@webpack-cli/info 1.5.0 npm
@webpack-cli/serve 1.7.0 npm
@xtuc/ieee754 1.2.0 npm
@xtuc/long 4.2.2 npm
abbrev 1.1.1 npm
abstract-logging 2.0.1 npm
accepts 1.3.8 npm
acorn 8.8.0 npm
acorn-import-assertions 1.8.0 npm
acorn-jsx 5.3.2 npm
acorn-walk 8.2.0 npm
ada-libs 2.7.8-r0 apk
agent-base 6.0.2 npm
agentkeepalive 4.2.1 npm
aggregate-error 3.1.0 npm
ajv 6.12.6 npm
ajv 8.11.0 npm (+3 duplicates)
ajv-formats 2.1.1 npm (+2 duplicates)
ajv-keywords 3.5.2 npm
ajv-keywords 5.1.0 npm (+2 duplicates)
alpine-baselayout 3.6.5-r0 apk
alpine-baselayout-data 3.6.5-r0 apk
alpine-keys 2.4-r1 apk
alpine-release 3.20.3-r0 apk
ansi-colors 4.1.1 npm
ansi-html-community 0.0.8 npm
ansi-regex 5.0.1 npm
ansi-styles 3.2.1 npm (+2 duplicates)
ansi-styles 4.3.0 npm
anymatch 3.1.2 npm
apk-tools 2.14.4-r1 apk
append-transform 2.0.0 npm
aproba 2.0.0 npm
archy 1.0.0 npm
are-we-there-yet 3.0.0 npm
arg 4.1.3 npm
argparse 1.0.10 npm
argparse 2.0.1 npm
array-differ 3.0.0 npm
array-flatten 1.1.1 npm
array-union 2.1.0 npm
array-union 3.0.1 npm
arrify 1.0.1 npm
arrify 2.0.1 npm
asn1 0.2.6 npm
asn1.js 5.4.1 npm
assert-plus 1.0.0 npm
assertion-error 1.1.0 npm
astral-regex 2.0.0 npm
autoprefixer 10.4.7 npm
available-typed-arrays 1.0.5 npm
babel-loader 8.2.5 npm
babel-plugin-dynamic-import-node 2.3.3 npm
babel-plugin-istanbul 6.1.1 npm
babel-plugin-polyfill-corejs2 0.3.2 npm
babel-plugin-polyfill-corejs3 0.5.3 npm
babel-plugin-polyfill-regenerator 0.3.1 npm
babel-preset-typescript-vue3 2.0.17 npm
backoff 2.5.0 npm
balanced-match 1.0.2 npm
balanced-match 2.0.0 npm
base64-js 1.5.1 npm
base64id 2.0.0 npm
bash 5.2.26-r0 apk
baz UNKNOWN npm
bcryptjs 2.4.3 npm
beep-boop 1.2.3 npm
big.js 5.2.2 npm
bin 1.0.0 npm
binary-extensions 2.2.0 npm
bindings 1.5.0 npm
bl 4.1.0 npm
bn.js 4.12.0 npm
body-parser 1.19.2 npm
boolbase 1.0.0 npm
brace-expansion 1.1.11 npm
brace-expansion 2.0.1 npm
braces 3.0.2 npm
brotli-libs 1.1.0-r2 apk
browser-stdout 1.3.1 npm
browser_field UNKNOWN npm
browserslist 4.21.2 npm
buffer 5.7.1 npm
buffer 6.0.3 npm
buffer-equal-constant-time 1.0.1 npm
buffer-from 1.1.2 npm
busybox 1.36.1-r29 apk
busybox-binsh 1.36.1-r29 apk
bytes 3.1.2 npm
c-ares 1.33.1-r0 apk
ca-certificates 20240705-r0 apk
ca-certificates-bundle 20240705-r0 apk
cacache 15.3.0 npm
cacheable-lookup 5.0.4 npm
cacheable-request 7.0.2 npm
caching-transform 4.0.0 npm
call-bind 1.0.2 npm
callsites 3.1.0 npm
camelcase 5.3.1 npm
camelcase 6.3.0 npm
camelcase-keys 6.2.2 npm
caniuse-api 3.0.0 npm
caniuse-lite 1.0.30001561 npm
catatonit 0.2.0-r0 apk
chai 4.3.7 npm
chalk 2.4.2 npm (+2 duplicates)
chalk 3.0.0 npm
chalk 4.1.2 npm
check-error 1.0.2 npm
cheerio 1.0.0-rc.12 npm
cheerio-select 2.1.0 npm
chokidar 3.5.3 npm
chownr 1.1.4 npm
chownr 2.0.0 npm
chrome-trace-event 1.0.3 npm
clean-stack 2.2.0 npm
cliui 6.0.0 npm
cliui 7.0.4 npm
clone-deep 4.0.1 npm
clone-regexp 2.2.0 npm
clone-response 1.0.3 npm
color-convert 1.9.3 npm (+2 duplicates)
color-convert 2.0.1 npm
color-name 1.1.3 npm (+2 duplicates)
color-name 1.1.4 npm
color-support 1.1.3 npm
colord 2.9.2 npm
colorette 2.0.19 npm
commander 2.20.3 npm (+1 duplicate)
commander 7.2.0 npm (+1 duplicate)
commander 9.0.0 npm
commondir 1.0.1 npm
compress-brotli 1.3.8 npm
concat-map 0.0.1 npm
config-chain 1.1.13 npm
console-control-strings 1.1.0 npm
content-disposition 0.5.4 npm
content-type 1.0.4 npm
convert-source-map 1.8.0 npm
cookie 0.4.2 npm
cookie-signature 1.0.6 npm
copy-webpack-plugin 10.2.4 npm
core-js 3.27.2 npm
core-js-compat 3.23.5 npm
core-util-is 1.0.2 npm
coreutils 9.5-r1 apk
coreutils-env 9.5-r1 apk
coreutils-fmt 9.5-r1 apk
coreutils-sha512sum 9.5-r1 apk
cors 2.8.5 npm
cosmiconfig 7.0.1 npm
create-require 1.1.1 npm
cross-env 7.0.3 npm
cross-spawn 6.0.5 npm
cross-spawn 7.0.3 npm
css-blank-pseudo 3.0.3 npm
css-declaration-sorter 6.3.0 npm
css-has-pseudo 3.0.4 npm
css-loader 6.5.1 npm
css-prefers-color-scheme 6.0.3 npm
css-select 4.3.0 npm
css-select 5.1.0 npm
css-tree 1.1.3 npm
css-what 6.1.0 npm
cssdb 6.6.3 npm
cssesc 3.0.0 npm
cssnano 5.0.17 npm
cssnano-preset-default 5.2.12 npm
cssnano-utils 3.1.0 npm
csso 4.2.0 npm
csstype 2.6.20 npm
curl 8.11.1-r0 apk
dayjs 1.10.8 npm
debug 2.6.9 npm (+3 duplicates)
debug 4.3.3 npm
debug 4.3.4 npm
decamelize 1.2.0 npm
decamelize 4.0.0 npm
decamelize-keys 1.1.0 npm
decompress-response 6.0.0 npm
deep-eql 4.1.2 npm
deep-extend 0.6.0 npm
deep-is 0.1.4 npm
deepmerge 4.2.2 npm
default-require-extensions 3.0.0 npm
defer-to-connect 2.0.1 npm
define-properties 1.1.4 npm
delegates 1.0.0 npm
depd 1.1.2 npm
destroy 1.0.4 npm
detect-libc 2.0.1 npm
diff 4.0.2 npm
diff 5.0.0 npm
diff 5.1.0 npm
dir-glob 3.0.1 npm
dist 1.0.0 npm
doctrine 3.0.0 npm
dom-serializer 1.4.1 npm
dom-serializer 2.0.0 npm
domelementtype 2.3.0 npm
domhandler 4.3.1 npm
domhandler 5.0.3 npm
domutils 2.8.0 npm
domutils 3.1.0 npm
ecdsa-sig-formatter 1.0.11 npm
editorconfig 0.15.3 npm
ee-first 1.1.1 npm
electron-to-chromium 1.4.199 npm
emoji-regex 10.2.1 npm
emoji-regex 8.0.0 npm
emojis-list 3.0.0 npm
encodeurl 1.0.2 npm
encoding 0.1.13 npm
end-of-stream 1.4.4 npm
engine.io 6.4.2 npm
engine.io-client 6.2.3 npm
engine.io-client UNKNOWN npm (+2 duplicates)
engine.io-parser 5.0.4 npm
engine.io-parser UNKNOWN npm (+1 duplicate)
enhanced-resolve 5.10.0 npm
enhanced-resolve 5.12.0 npm
entities 2.2.0 npm
entities 4.5.0 npm
env-paths 2.2.1 npm
envinfo 7.8.1 npm
err-code 2.0.3 npm
error-ex 1.3.2 npm
es-abstract 1.20.1 npm
es-module-lexer 0.9.3 npm
es-to-primitive 1.2.1 npm
es6-error 4.1.1 npm
escalade 3.1.1 npm
escape-html 1.0.3 npm
escape-string-regexp 1.0.5 npm
escape-string-regexp 4.0.0 npm (+1 duplicate)
eslint 8.16.0 npm
eslint-config-prettier 8.3.0 npm
eslint-define-config 1.5.1 npm
eslint-plugin-vue 9.0.1 npm
eslint-scope 5.1.1 npm
eslint-scope 7.1.1 npm (+2 duplicates)
eslint-utils 3.0.0 npm
eslint-visitor-keys 2.1.0 npm
eslint-visitor-keys 3.3.0 npm
espree 9.3.2 npm
esprima 4.0.1 npm
esquery 1.4.0 npm
esrecurse 4.3.0 npm
estraverse 4.3.0 npm
estraverse 5.3.0 npm
estree-walker 2.0.2 npm
esutils 2.0.3 npm
etag 1.8.1 npm
eventemitter3 4.0.7 npm
eventemitter3 5.0.0 npm
events 3.3.0 npm
execa 4.1.0 npm
execa 5.1.1 npm
execall 2.0.0 npm
expand-template 2.0.3 npm
express 4.17.3 npm
extsprintf 1.4.1 npm
false_main UNKNOWN npm
fast-deep-equal 3.1.3 npm
fast-glob 3.2.11 npm
fast-json-stable-stringify 2.1.0 npm
fast-levenshtein 2.0.6 npm
fast-text-encoding 1.0.4 npm
fastest-levenshtein 1.0.14 npm
fastq 1.13.0 npm
file-entry-cache 6.0.1 npm
file-type 16.5.4 npm
file-uri-to-path 1.0.0 npm
filename-reserved-regex 2.0.0 npm
filenamify 4.3.0 npm
fill-range 7.0.1 npm
finalhandler 1.1.2 npm
find-cache-dir 3.3.2 npm
find-up 4.1.0 npm
find-up 5.0.0 npm
findutils 4.9.0-r5 apk
flat 5.0.2 npm
flat-cache 3.0.4 npm
flatted 3.2.6 npm
for-each 0.3.3 npm
foreground-child 2.0.0 npm
fork-ts-checker-webpack-plugin 7.2.13 npm
forwarded 0.2.0 npm
fraction.js 4.2.0 npm
fresh 0.5.2 npm
fromentries 1.3.2 npm
fs-constants 1.0.0 npm
fs-extra 10.1.0 npm
fs-minipass 2.1.0 npm
fs-monkey 1.0.3 npm
fs.realpath 1.0.0 npm
function-bind 1.1.1 npm
function.prototype.name 1.1.5 npm
functional-red-black-tree 1.0.1 npm
functions-have-names 1.2.3 npm
fuzzy 0.1.3 npm
gauge 4.0.4 npm
gensync 1.0.0-beta.2 npm
get-caller-file 2.0.5 npm
get-func-name 2.0.2 npm
get-intrinsic 1.1.2 npm
get-package-type 0.1.0 npm
get-stdin 8.0.0 npm
get-stream 5.2.0 npm
get-stream 6.0.1 npm
get-symbol-description 1.0.0 npm
github-from-package 0.0.0 npm
glob 7.2.0 npm
glob 7.2.3 npm
glob 8.1.0 npm
glob-parent 5.1.2 npm
glob-parent 6.0.2 npm (+1 duplicate)
glob-to-regexp 0.4.1 npm
global-modules 2.0.0 npm
global-prefix 3.0.0 npm
globals 11.12.0 npm
globals 13.17.0 npm (+1 duplicate)
globby 11.1.0 npm
globby 12.2.0 npm
globjoin 0.1.4 npm
got 11.8.5 npm
graceful-fs 4.2.10 npm
grapheme-splitter 1.0.4 npm
growl 1.10.5 npm
hard-rejection 2.1.0 npm
has 1.0.3 npm
has-bigints 1.0.2 npm
has-flag 3.0.0 npm (+2 duplicates)
has-flag 4.0.0 npm
has-property-descriptors 1.0.0 npm
has-symbols 1.0.3 npm
has-tostringtag 1.0.0 npm
has-unicode 2.0.1 npm
hash-sum 2.0.0 npm
hasha 5.2.2 npm
he 1.2.0 npm
hosted-git-info 2.8.9 npm
hosted-git-info 4.1.0 npm
html-entities 2.3.3 npm
html-escaper 2.0.2 npm
html-tags 3.2.0 npm
htmlparser2 8.0.2 npm
http-cache-semantics 4.1.1 npm
http-errors 1.8.1 npm
http-proxy-agent 4.0.1 npm
http2-wrapper 1.0.3 npm
http_ece 1.1.0 npm
https-proxy-agent 5.0.1 npm
human-signals 1.1.1 npm
human-signals 2.1.0 npm
humanize-ms 1.2.1 npm
iconv-lite 0.4.24 npm
iconv-lite 0.6.3 npm (+1 duplicate)
icss-utils 5.1.0 npm
icu-data-en 74.2-r0 apk
icu-libs 74.2-r0 apk
ieee754 1.2.1 npm
ignore 5.2.0 npm
import-fresh 3.3.0 npm
import-lazy 4.0.0 npm
import-local 3.1.0 npm
imurmurhash 0.1.4 npm
indent-string 4.0.0 npm
infer-owner 1.0.4 npm
inflight 1.0.6 npm
inherits 2.0.4 npm
ini 1.3.8 npm
internal-slot 1.0.3 npm
interpret 2.2.0 npm
invalid_main UNKNOWN npm
ip 2.0.0 npm
ipaddr.js 1.9.1 npm
irc-framework 4.13.1 npm
is-arguments 1.1.1 npm
is-arrayish 0.2.1 npm
is-bigint 1.0.4 npm
is-binary-path 2.1.0 npm
is-boolean-object 1.1.2 npm
is-callable 1.2.4 npm
is-core-module 2.9.0 npm
is-date-object 1.0.5 npm
is-extglob 2.1.1 npm
is-fullwidth-code-point 3.0.0 npm
is-generator-function 1.0.10 npm
is-glob 4.0.3 npm
is-lambda 1.0.1 npm
is-negative-zero 2.0.2 npm
is-number 7.0.0 npm
is-number-object 1.0.7 npm
is-plain-obj 1.1.0 npm
is-plain-obj 2.1.0 npm
is-plain-object 2.0.4 npm
is-plain-object 5.0.0 npm
is-regex 1.1.4 npm
is-regexp 2.1.0 npm
is-shared-array-buffer 1.0.2 npm
is-stream 2.0.1 npm
is-string 1.0.7 npm
is-symbol 1.0.4 npm
is-typed-array 1.1.9 npm
is-typedarray 1.0.0 npm
is-unicode-supported 0.1.0 npm
is-utf8 0.2.1 npm
is-weakref 1.0.2 npm
is-windows 1.0.2 npm
isarray 0.0.1 npm
isexe 2.0.0 npm
isobject 3.0.1 npm
isomorphic-textencoder 1.0.1 npm
istanbul-lib-coverage 3.2.0 npm
istanbul-lib-hook 3.0.0 npm
istanbul-lib-instrument 4.0.3 npm
istanbul-lib-instrument 5.2.0 npm
istanbul-lib-processinfo 2.0.3 npm
istanbul-lib-report 3.0.0 npm
istanbul-lib-source-maps 4.0.1 npm
istanbul-reports 3.1.5 npm
jest-worker 27.5.1 npm
jq 1.7.1-r0 apk
js-beautify 1.14.6 npm
js-tokens 4.0.0 npm
js-yaml 3.14.1 npm
js-yaml 4.1.0 npm
jsesc 0.5.0 npm
jsesc 2.5.2 npm
json-buffer 3.0.1 npm
json-parse-better-errors 1.0.2 npm
json-parse-even-better-errors 2.3.1 npm
json-schema-traverse 0.4.1 npm
json-schema-traverse 1.0.0 npm (+3 duplicates)
json-stable-stringify-without-jsonify 1.0.1 npm
json5 2.2.3 npm
jsonfile 6.1.0 npm
just-extend 4.2.1 npm
jwa 2.0.0 npm
jws 4.0.0 npm
keyv 4.3.3 npm
kind-of 6.0.3 npm
klona 2.0.5 npm
known-css-properties 0.24.0 npm
ldap-filter 0.3.3 npm
ldapjs 2.3.1 npm
levn 0.4.1 npm
libacl 2.3.2-r0 apk
libattr 2.5.2-r0 apk
libbase64 0.5.2-r0 apk
libbsd 0.12.2-r0 apk
libcrypto3 3.3.2-r1 apk
libcurl 8.11.1-r0 apk
libgcc 13.2.1_git20240309-r0 apk
libidn2 2.3.7-r0 apk
libintl 0.22.5-r0 apk
libmd 1.1.0-r0 apk
libncursesw 6.4_p20240420-r2 apk
libproc2 4.0.4-r0 apk
libpsl 0.21.5-r1 apk
libssl3 3.3.2-r1 apk
libstdc++ 13.2.1_git20240309-r0 apk
libunistring 1.2-r0 apk
lilconfig 2.0.6 npm
lines-and-columns 1.2.4 npm
linkify-it 3.0.3 npm
linux-pam 1.6.0-r0 apk
load-json-file 4.0.0 npm
loader-runner 4.3.0 npm
loader-utils 2.0.4 npm
locate-path 5.0.0 npm
locate-path 6.0.0 npm
lodash 4.17.21 npm
lodash.debounce 4.0.8 npm
lodash.flattendeep 4.4.0 npm
lodash.get 4.4.2 npm
lodash.memoize 4.1.2 npm
lodash.merge 4.6.2 npm
lodash.truncate 4.4.2 npm
lodash.uniq 4.5.0 npm
log-symbols 4.1.0 npm
loupe 2.3.4 npm
lowercase-keys 2.0.0 npm
lru-cache 4.1.5 npm
lru-cache 6.0.0 npm
magic-string 0.25.9 npm
make-dir 3.1.0 npm
make-error 1.3.6 npm
make-fetch-happen 9.1.0 npm
map-obj 1.0.1 npm
map-obj 4.3.0 npm
mathml-tag-names 2.1.3 npm
mdn-data 2.0.14 npm
media-typer 0.3.0 npm
memfs 3.4.13 npm
memfs 3.4.7 npm
memorystream 0.3.1 npm
meow 9.0.0 npm
merge-descriptors 1.0.1 npm
merge-stream 2.0.0 npm
merge2 1.4.1 npm
methods 1.1.2 npm
micromatch 4.0.5 npm
middleware-handler 0.2.0 npm
mime 1.6.0 npm
mime-db 1.51.0 npm
mime-db 1.52.0 npm (+4 duplicates)
mime-types 2.1.34 npm
mime-types 2.1.35 npm (+4 duplicates)
mimic-fn 2.1.0 npm
mimic-response 1.0.1 npm
mimic-response 3.1.0 npm
min-indent 1.0.1 npm
mini-css-extract-plugin 2.5.3 npm
minimalistic-assert 1.0.1 npm
minimatch 3.1.2 npm (+1 duplicate)
minimatch 4.2.1 npm
minimatch 5.1.6 npm
minimist 1.2.6 npm
minimist 1.2.8 npm
minimist-options 4.1.0 npm
minipass 3.3.4 npm
minipass-collect 1.0.2 npm
minipass-fetch 1.4.1 npm
minipass-flush 1.0.5 npm
minipass-pipeline 1.2.4 npm
minipass-sized 1.0.3 npm
minizlib 2.1.2 npm
mkdirp 1.0.4 npm
mkdirp-classic 0.5.3 npm
mocha 9.2.2 npm
monorepo-symlink-test 0.0.0 npm
mousetrap 1.6.5 npm
mri 1.2.0 npm
ms 2.0.0 npm (+3 duplicates)
ms 2.1.2 npm (+1 duplicate)
ms 2.1.3 npm
multimatch 4.0.0 npm
musl 1.2.5-r0 apk
musl-utils 1.2.5-r0 apk
mute-stream 0.0.8 npm
mylib 0.0.0 npm
nanoid 3.3.1 npm
nanoid 3.3.4 npm (+3 duplicates)
nanoid 3.3.6 npm
napi-build-utils 1.0.2 npm
natural-compare 1.4.0 npm
ncurses-terminfo-base 6.4_p20240420-r2 apk
negotiator 0.6.3 npm
neo-async 2.6.2 npm
netcat-openbsd 1.226-r0 apk
nghttp2-libs 1.62.1-r0 apk
nice-try 1.0.5 npm
nise 4.1.0 npm
nise 5.1.4 npm
node-abi 3.54.0 npm
node-abort-controller 3.0.1 npm
node-addon-api 7.0.0 npm
node-forge 1.3.0 npm
node-forge-flash 0.0.0 npm
node-gyp 8.4.1 npm
node-preload 0.2.1 npm
node-releases 2.0.6 npm
nodejs 20.15.1-r0 apk
nopt 5.0.0 npm
nopt 6.0.0 npm
normalize-package-data 2.5.0 npm
normalize-package-data 3.0.3 npm
normalize-path 3.0.0 npm
normalize-range 0.1.2 npm
normalize-selector 0.2.0 npm
normalize-url 6.1.0 npm
normalize.css 8.0.1 npm
npm-run-all 4.1.5 npm
npm-run-path 4.0.1 npm
npmlog 6.0.2 npm
nth-check 2.1.1 npm
nyc 15.1.0 npm
object-assign 4.1.1 npm
object-inspect 1.12.2 npm
object-keys 1.1.1 npm
object.assign 4.1.2 npm
on-finished 2.3.0 npm
once 1.4.0 npm
onetime 5.1.2 npm
oniguruma 6.9.9-r0 apk
optionator 0.9.1 npm
p-cancelable 2.1.1 npm
p-finally 1.0.0 npm
p-limit 2.3.0 npm
p-limit 3.1.0 npm
p-locate 4.1.0 npm
p-locate 5.0.0 npm
p-map 3.0.0 npm
p-map 4.0.0 npm
p-try 2.2.0 npm
package-hash 4.0.0 npm
package-json 7.0.0 npm
parent-module 1.0.1 npm
parse-json 4.0.0 npm
parse-json 5.2.0 npm
parse5 7.1.2 npm
parse5-htmlparser2-tree-adapter 7.0.0 npm
parseurl 1.3.3 npm
path-exists 4.0.0 npm
path-is-absolute 1.0.1 npm
path-key 2.0.1 npm
path-key 3.1.1 npm
path-parse 1.0.7 npm
path-to-regexp 0.1.7 npm
path-to-regexp 1.8.0 npm
path-type 3.0.0 npm
path-type 4.0.0 npm
pathval 1.1.1 npm
peek-readable 4.1.0 npm
picocolors 1.0.0 npm
picomatch 2.3.1 npm
pidtree 0.3.1 npm
pify 2.3.0 npm
pify 3.0.0 npm
pify 4.0.1 npm (+1 duplicate)
pkg-dir 4.2.0 npm
postcss 8.4.14 npm (+3 duplicates)
postcss 8.4.31 npm
postcss-attribute-case-insensitive 5.0.2 npm
postcss-calc 8.2.4 npm
postcss-clamp 3.0.0 npm
postcss-color-functional-notation 4.2.4 npm
postcss-color-hex-alpha 8.0.4 npm
postcss-color-rebeccapurple 7.1.1 npm
postcss-colormin 5.3.0 npm
postcss-convert-values 5.1.2 npm
postcss-custom-media 8.0.2 npm
postcss-custom-properties 12.1.8 npm
postcss-custom-selectors 6.0.3 npm
postcss-dir-pseudo-class 6.0.5 npm
postcss-discard-comments 5.1.2 npm
postcss-discard-duplicates 5.1.0 npm
postcss-discard-empty 5.1.1 npm
postcss-discard-overridden 5.1.0 npm
postcss-double-position-gradients 3.1.2 npm
postcss-env-function 4.0.6 npm
postcss-focus-visible 6.0.4 npm
postcss-focus-within 5.0.4 npm
postcss-font-variant 5.0.0 npm
postcss-gap-properties 3.0.5 npm
postcss-image-set-function 4.0.7 npm
postcss-import 14.0.2 npm
postcss-initial 4.0.1 npm
postcss-lab-function 4.2.1 npm
postcss-loader 6.2.1 npm
postcss-logical 5.0.4 npm
postcss-media-minmax 5.0.0 npm
postcss-media-query-parser 0.2.3 npm
postcss-merge-longhand 5.1.6 npm
postcss-merge-rules 5.1.2 npm
postcss-minify-font-values 5.1.0 npm
postcss-minify-gradients 5.1.1 npm
postcss-minify-params 5.1.3 npm
postcss-minify-selectors 5.2.1 npm
postcss-modules-extract-imports 3.0.0 npm
postcss-modules-local-by-default 4.0.0 npm
postcss-modules-scope 3.0.0 npm
postcss-modules-values 4.0.0 npm
postcss-nesting 10.1.10 npm
postcss-normalize-charset 5.1.0 npm
postcss-normalize-display-values 5.1.0 npm
postcss-normalize-positions 5.1.1 npm
postcss-normalize-repeat-style 5.1.1 npm
postcss-normalize-string 5.1.0 npm
postcss-normalize-timing-functions 5.1.0 npm
postcss-normalize-unicode 5.1.0 npm
postcss-normalize-url 5.1.0 npm
postcss-normalize-whitespace 5.1.1 npm
postcss-opacity-percentage 1.1.2 npm
postcss-ordered-values 5.1.3 npm
postcss-overflow-shorthand 3.0.4 npm
postcss-page-break 3.0.4 npm
postcss-place 7.0.5 npm
postcss-preset-env 7.3.0 npm
postcss-pseudo-class-any-link 7.1.6 npm
postcss-reduce-initial 5.1.0 npm
postcss-reduce-transforms 5.1.0 npm
postcss-replace-overflow-wrap 4.0.0 npm
postcss-resolve-nested-selector 0.1.1 npm
postcss-safe-parser 6.0.0 npm
postcss-selector-not 5.0.0 npm
postcss-selector-parser 6.0.10 npm
postcss-svgo 5.1.0 npm
postcss-unique-selectors 5.1.1 npm
postcss-value-parser 4.2.0 npm
prebuild-install 7.1.1 npm
precond 0.2.3 npm
prelude-ls 1.2.1 npm
prettier 2.5.1 npm
pretty-quick 3.1.3 npm
primer-support 5.0.0 npm
primer-tooltips 2.0.0 npm
process-on-spawn 1.0.0 npm
procps-ng 4.0.4-r0 apk
promise-inflight 1.0.1 npm
promise-retry 2.0.1 npm
proto-list 1.2.4 npm
proxy-addr 2.0.7 npm
pseudomap 1.0.2 npm
pump 3.0.0 npm
punycode 2.1.1 npm
qs 6.9.7 npm
queue-microtask 1.2.3 npm
quick-lru 4.0.1 npm
quick-lru 5.1.1 npm
randombytes 2.1.0 npm
range-parser 1.2.1 npm
raw-body 2.4.3 npm
rc 1.2.8 npm
read 1.0.7 npm
read-cache 1.0.0 npm
read-chunk 3.2.0 npm
read-pkg 3.0.0 npm
read-pkg 5.2.0 npm
read-pkg-up 7.0.1 npm
readable-stream 3.6.0 npm
readable-stream 3.6.2 npm (+1 duplicate)
readable-web-to-node-stream 3.0.2 npm
readdirp 3.6.0 npm