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
|
typescript,840161
eslint,666922
@types/node,498774
prettier,323998
jest,311654
@types/react,297953
mocha,277612
@types/react-dom,232686
@babel/core,225101
webpack,224365
@types/jest,222367
react,211125
rimraf,194804
eslint-plugin-import,191027
@typescript-eslint/eslint-plugin,189922
@babel/preset-env,188395
@typescript-eslint/parser,186959
babel-loader,183474
chai,179549
rollup,168278
eslint-config-prettier,167992
react-dom,167425
ts-node,164871
postcss,161558
ts-jest,155259
husky,148084
babel-eslint,144730
babel-core,139942
eslint-plugin-prettier,137328
tailwindcss,136807
webpack-cli,133522
eslint-config-next,116080
eslint-plugin-react,114589
css-loader,110771
cross-env,106172
babel-cli,97555
lint-staged,97080
vite,95260
@babel/cli,89061
style-loader,88386
webpack-dev-server,87505
autoprefixer,86714
babel-preset-es2015,86369
tslint,85792
babel-preset-env,84820
@babel/preset-react,80549
@rollup/plugin-node-resolve,76857
gulp,76704
sinon,76325
babel-jest,73687
vue-template-compiler,70792
tslib,70080
eslint-plugin-promise,69733
nyc,69053
sass-loader,68672
@rollup/plugin-commonjs,66428
eslint-plugin-node,65951
node-sass,64558
@types/mocha,61676
html-webpack-plugin,58911
npm-run-all,57389
ts-loader,57236
sass,56297
@babel/preset-typescript,54990
coveralls,53942
eslint-plugin-jsx-a11y,53848
eslint-plugin-vue,53759
tsup,53709
vitest,53519
file-loader,52665
eslint-config-standard,52546
karma,51290
rollup-plugin-terser,50930
eslint-plugin-react-hooks,50175
eslint-plugin-standard,48566
@commitlint/config-conventional,48261
@testing-library/react,47777
@storybook/react,47625
@types/chai,46573
babel-preset-react,46442
istanbul,46134
@types/lodash,46012
@types/inquirer,45930
@vue/cli-service,45868
eslint-config-airbnb,45636
rollup-plugin-node-resolve,45401
@vue/cli-plugin-babel,44277
@babel/plugin-proposal-class-properties,44233
rollup-plugin-babel,44058
@rollup/plugin-typescript,43077
eslint-config-airbnb-base,43073
@commitlint/cli,42620
karma-chrome-launcher,42188
typedoc,42108
@storybook/addon-links,41639
semantic-release,41497
vue,41350
nodemon,41146
rollup-plugin-commonjs,40924
@babel/plugin-transform-runtime,40631
rollup-plugin-typescript2,40534
postcss-loader,40439
@storybook/addon-essentials,38409
url-loader,38053
tape,38023
grunt,37894
@testing-library/jest-dom,37846
eslint-plugin-jest,36434
@vue/cli-plugin-eslint,35960
ava,35058
react-test-renderer,34214
babel-preset-stage-0,34100
express,34035
standard,34002
vue-loader,33902
extract-text-webpack-plugin,33256
babel-plugin-transform-runtime,33173
rollup-plugin-postcss,32869
@rollup/plugin-babel,32812
chalk,32497
jsdom,32452
less,31972
gh-pages,31774
rollup-plugin-peer-deps-external,30448
@types/express,30422
@storybook/addon-actions,30229
webpack-merge,30152
lodash,29774
enzyme,29444
browserify,29355
karma-jasmine,29342
should,28938
esbuild,28822
cz-conventional-changelog,27753
dotenv,27598
jasmine-core,27358
vite-plugin-dts,27356
eslint-loader,27333
copy-webpack-plugin,27225
concurrently,27183
fs-extra,26857
babel-register,26355
less-loader,25586
@vitejs/plugin-vue,25163
react-scripts,25044
babel-plugin-transform-object-rest-spread,24704
mini-css-extract-plugin,24555
babel-preset-stage-2,24266
@babel/runtime,24239
del-cli,24041
gulp-rename,24038
@types/jasmine,24001
sinon-chai,23974
tslint-config-prettier,23812
standard-version,23730
prop-types,23650
@types/fs-extra,23315
glob,23192
@vitejs/plugin-react,23038
babel-polyfill,22924
@rollup/plugin-json,22822
rollup-plugin-dts,22761
uglify-js,22693
react-native,22665
@storybook/addon-interactions,22659
core-js,22415
supertest,22236
commitizen,22110
del,22022
@types/uuid,21851
release-it,21818
jest-environment-jsdom,21654
@angular/compiler-cli,21468
stylelint,21412
clean-webpack-plugin,21198
webpack-bundle-analyzer,21052
tsdx,20842
karma-mocha,20820
uglifyjs-webpack-plugin,20603
karma-coverage,20594
grunt-contrib-jshint,20568
codecov,20452
axios,19803
@testing-library/user-event,19687
gulp-uglify,19367
enzyme-adapter-react-16,19216
jshint,19180
terser-webpack-plugin,19151
shelljs,19057
@eslint/js,18715
@babel/register,18544
storybook,18488
karma-webpack,18414
@babel/eslint-parser,18186
babel,18119
@babel/plugin-proposal-object-rest-spread,17945
semver,17935
chai-as-promised,17909
babel-plugin-add-module-exports,17787
optimize-css-assets-webpack-plugin,17787
@types/lodash-es,17608
@rollup/plugin-terser,17573
vue-tsc,17323
rollup-plugin-uglify,17290
typescript-eslint,17272
rxjs,16976
@semantic-release/git,16870
babel-plugin-transform-class-properties,16811
@types/react-native,16639
babel-runtime,16596
@rollup/plugin-replace,16487
@vue/test-utils,16197
styled-components,15988
globals,15939
grunt-contrib-watch,15862
antd,15780
gulp-babel,15773
karma-jasmine-html-reporter,15564
@storybook/testing-library,15358
jsdoc,15338
source-map-support,15252
@storybook/blocks,15171
@angular/cli,15120
eslint-plugin-flowtype,15080
grunt-contrib-clean,14907
gulp-sourcemaps,14848
@types/styled-components,14796
jest-cli,14738
tsx,14462
codelyzer,14402
eslint-plugin-react-refresh,14394
flow-bin,14268
pre-commit,14234
karma-sourcemap-loader,14190
@semantic-release/changelog,14079
karma-phantomjs-launcher,14046
@types/sinon,14041
jasmine,13957
vue-style-loader,13955
raw-loader,13937
webpack-node-externals,13828
size-limit,13812
father,13770
nock,13652
jasmine-spec-reporter,13636
react-router-dom,13527
eslint-config-standard-react,13398
copyfiles,13386
eslint-import-resolver-typescript,13196
vue-router,13084
protractor,12874
xo,12825
postcss-import,12818
karma-coverage-istanbul-reporter,12783
gulp-concat,12675
rollup-plugin-vue,12673
json-loader,12574
pretty-quick,12568
grunt-contrib-uglify,12520
gulp-sass,12464
babel-plugin-istanbul,12421
babel-preset-stage-3,12353
np,12230
@size-limit/preset-small-lib,12225
@storybook/addons,12166
@types/node-fetch,12150
eslint-plugin-babel,12147
puppeteer,12130
@babel/plugin-proposal-decorators,12104
mkdirp,12092
eslint-plugin-storybook,12078
c8,12033
tsconfig-paths,11973
gulp-mocha,11874
karma-firefox-launcher,11874
@swc/core,11844
babel-plugin-external-helpers,11811
@release-it/conventional-changelog,11732
@vitest/coverage-v8,11714
@babel/plugin-syntax-dynamic-import,11644
html-loader,11620
ora,11597
eslint-plugin-html,11527
@vue/compiler-sfc,11523
commitlint,11512
coffee-script,11447
cssnano,11422
gulp-util,11416
case-sensitive-paths-webpack-plugin,11339
rollup-plugin-replace,11328
microbundle,11318
shx,11311
minimist,11269
tap,11261
eslint-plugin-n,11237
babel-plugin-module-resolver,11044
babelify,10798
@babel/node,10768
@angular/compiler,10741
@angular/core,10732
react-addons-test-utils,10631
@angular-devkit/build-angular,10626
rollup-plugin-json,10559
@types/debug,10557
identity-obj-proxy,10505
yargs,10440
@types/yargs,10416
undici,10409
ng-packagr,10407
babel-plugin-inline-react-svg,10346
expect.js,10332
eslint-plugin-jsdoc,10273
@vue/eslint-config-prettier,10266
@babel/polyfill,10259
http-server,10251
child_process,10190
@changesets/cli,10137
moment,10093
stylelint-config-standard,10026
zone.js,9968
gulp-eslint,9833
@angular/common,9792
karma-spec-reporter,9792
babel-plugin-add-import-extension,9778
friendly-errors-webpack-plugin,9771
babel-plugin-syntax-jsx,9728
tap-spec,9711
path,9664
@babel/plugin-proposal-optional-chaining,9654
@react-native-community/eslint-config,9616
grunt-cli,9604
random-words,9589
svelte,9579
babel-plugin-import,9566
rollup-plugin-copy,9520
react-native-builder-bob,9515
@storybook/addon-onboarding,9497
@ant-design/web3-common,9475
@ant-design/web3-icons,9475
@vue/eslint-config-typescript,9467
@rollup/plugin-alias,9424
node-fetch,9419
regenerator-runtime,9416
source-map-loader,9400
reflect-metadata,9398
eslint-plugin-simple-import-sort,9384
webpack-dev-middleware,9349
@babel/plugin-transform-modules-commonjs,9332
gulp-typescript,9307
@storybook/test,9291
next,9259
terser,9243
jquery,9193
@storybook/react-vite,9163
@types/jasminewd2,9148
@angular/language-service,9071
eslint-config-airbnb-typescript,9058
gulp-autoprefixer,9046
rollup-plugin-sourcemaps,8985
@angular/platform-browser,8978
proxyquire,8940
awesome-typescript-loader,8922
babel-plugin-transform-vue-jsx,8920
@types/eslint,8807
conventional-changelog-cli,8804
microbundle-crl,8793
karma-mocha-reporter,8782
babel-plugin-transform-es2015-modules-commonjs,8639
redux,8621
@types/ws,8609
eslint-plugin-mocha,8580
css-split-webpack-plugin,8544
request,8537
eslint-friendly-formatter,8508
webpack-hot-middleware,8484
eslint-config-react-app,8448
@types/react-router-dom,8430
commander,8388
babel-plugin-transform-decorators-legacy,8370
@semantic-release/npm,8364
run-sequence,8359
@types/supertest,8315
fast-sass-loader,8305
eslint-plugin-unicorn,8300
@testing-library/react-hooks,8298
@types/react-test-renderer,8278
jest-junit,8239
less-plugin-sass2less,8201
@alifd/babel-preset-next,8185
karma-cli,8105
lerna,8052
jshint-stylish,8013
@types/glob,8012
@types/webpack,8004
@jest/globals,7951
gulp-plumber,7894
browser-sync,7818
@angular/platform-browser-dynamic,7767
phantomjs-prebuilt,7755
@types/semver,7628
@biomejs/biome,7614
react-hot-loader,7582
@babel/plugin-proposal-export-default-from,7581
colors,7561
grunt-contrib-copy,7514
@vue/cli-plugin-router,7502
karma-chai,7478
mocha-lcov-reporter,7384
expect,7299
load-grunt-tasks,7286
@vue/cli-plugin-typescript,7274
@types/classnames,7251
grunt-contrib-nodeunit,7204
react-is,7201
grunt-contrib-concat,7193
karma-sinon-chai,7182
@types/prettier,7140
postcss-cli,7135
gulp-jshint,7094
body-parser,7078
cypress,7071
classnames,7049
ember-cli,7027
babel-preset-react-app,6990
execa,6971
@testing-library/dom,6943
ember-cli-inject-live-reload,6838
eslint-config-google,6827
postcss-url,6785
broccoli-asset-rev,6764
react-redux,6758
vinyl-source-stream,6752
uuid,6729
@types/enzyme,6715
@vue/eslint-config-standard,6689
@chromatic-com/storybook,6683
babel-helper-vue-jsx-merge-props,6680
ember-cli-dependency-checker,6677
unbuild,6662
typedoc-plugin-markdown,6645
highlight.js,6595
ts-node-dev,6587
hardhat,6575
watchify,6514
inquirer,6492
ember-export-application-global,6485
chokidar,6480
babel-preset-stage-1,6471
es6-promise,6447
rollup-plugin-visualizer,6443
graphql,6442
@vitejs/plugin-react-swc,6441
metro-react-native-babel-preset,6400
@playwright/test,6389
@storybook/addon-a11y,6371
@storybook/addon-docs,6347
bootstrap,6322
@types/chai-as-promised,6319
@storybook/addon-info,6318
@storybook/addon-knobs,6306
gulp-replace,6298
@types/jsdom,6297
benchmark,6277
ethers,6277
pod-install,6252
node-notifier,6248
enzyme-to-json,6239
stylus,6231
tslint-config-standard,6211
grunt-mocha-test,6202
svelte-check,6189
@storybook/builder-webpack5,6185
esm,6163
postcss-preset-env,6150
@storybook/react-webpack5,6149
@storybook/preset-create-react-app,6148
eslint-config-standard-with-typescript,6134
parcel,6118
@types/jsonwebtoken,6094
@storybook/manager-webpack5,6082
babel-preset-latest,6075
rollup-plugin-buble,6072
@svgr/rollup,6063
through2,6051
async,6040
assert,6015
@vue/cli-plugin-unit-jest,6008
@types/js-yaml,6006
portfinder,5996
ember-cli-uglify,5989
gulp-less,5976
@vue/cli-plugin-vuex,5963
globby,5951
ember-disable-prototype-extensions,5942
gulp-clean,5939
babel-plugin-transform-react-jsx,5928
@types/bun,5918
jsdoc-to-markdown,5877
parcel-bundler,5852
rollup-plugin-url,5848
rollup-plugin-filesize,5832
vite-tsconfig-paths,5819
@semantic-release/release-notes-generator,5797
@types/cors,5772
@semantic-release/commit-analyzer,5766
@semantic-release/github,5734
@rollup/plugin-image,5732
@types/big.js,5723
bumpp,5722
gulp-istanbul,5711
@nestjs/testing,5619
ember-cli-sri,5615
@babel/plugin-proposal-export-namespace-from,5524
cheerio,5523
@babel/plugin-proposal-nullish-coalescing-operator,5520
@angular/forms,5513
gulp-load-plugins,5485
cross-spawn,5481
gulp-clean-css,5471
@types/chalk,5441
@emotion/react,5412
eslint-plugin-unused-imports,5408
tsc-alias,5400
ember-cli-qunit,5393
@emotion/styled,5384
babel-plugin-styled-components,5365
eslint-plugin-json,5362
bluebird,5357
npm-check-updates,5339
vue-jest,5330
@babel/preset-flow,5324
@microsoft/api-extractor,5275
@sveltejs/kit,5273
ember-resolver,5246
@types/qs,5209
tsconfig,5199
loader.js,5190
@types/testing-library__jest-dom,5180
eslint-plugin-eslint-comments,5170
ember-load-initializers,5147
stylus-loader,5145
postcss-scss,5141
@ethersproject/providers,5050
markdown-it,5016
marked,4956
vuepress,4932
ember-cli-htmlbars-inline-precompile,4928
http-proxy-middleware,4889
@babel/plugin-transform-react-jsx,4886
rollup-plugin-esbuild,4863
yeoman-assert,4852
debug,4834
@tsconfig/recommended,4825
react-router,4811
compression-webpack-plugin,4807
jsdom-global,4801
serve,4801
@vitejs/plugin-vue-jsx,4800
gulp-if,4788
@vue/tsconfig,4785
dumi,4759
istanbul-instrumenter-loader,4750
css-minimizer-webpack-plugin,4719
yeoman-test,4705
@types/rimraf,4683
co,4671
@vitest/ui,4641
ember-try,4620
gulp-header,4611
@antfu/eslint-config,4601
rollup-plugin-scss,4597
@istanbuljs/nyc-config-typescript,4595
publint,4563
@evilmartians/lefthook,4548
connect-history-api-fallback,4548
electron,4533
eventsource-polyfill,4533
rollup-plugin-delete,4523
ajv,4508
vuex,4495
prettier-plugin-svelte,4479
@nestjs/common,4470
@storybook/theming,4440
jscs,4419
eslint-import-resolver-webpack,4415
babel-preset-minify,4413
@types/crypto-js,4412
babel-plugin-transform-react-remove-prop-types,4403
babel-plugin-transform-flow-strip-types,4377
tsd,4373
chromatic,4371
prettier-eslint,4371
postcss-custom-properties,4354
gulp-postcss,4351
opn,4351
documentation,4342
faker,4339
@sveltejs/adapter-auto,4336
ember-cli-htmlbars,4336
koa,4333
rollup-plugin-typescript,4329
rollup-plugin-serve,4322
@ethersproject/address,4306
jest-extended,4301
@rollup/plugin-url,4287
ts-mocha,4263
rollup-plugin-livereload,4234
replace-in-file,4232
@types/prompts,4214
gulp-watch,4207
@types/webpack-env,4203
@storybook/node-logger,4194
jest-styled-components,4190
tap-min,4188
vinyl-buffer,4185
@angular/router,4176
@sveltejs/package,4173
typechain,4151
prettier-plugin-organize-imports,4149
ember-source,4134
@stencil/core,4131
babel-plugin-dynamic-import-node,4123
babel-preset-flow,4116
watch,4113
typings,4108
@nomiclabs/hardhat-ethers,4064
@swc/jest,4038
@react-native/eslint-config,4024
@babel/plugin-external-helpers,3994
phantomjs,3992
nodeunit,3986
@babel/plugin-proposal-numeric-separator,3970
@babel/types,3969
babel-plugin-lodash,3957
uglify-es,3956
@ethersproject/contracts,3952
babel-plugin-component,3928
babel-plugin-transform-object-assign,3928
fast-glob,3909
msw,3907
isparta,3903
js-yaml,3899
cpx,3888
stylelint-config-prettier,3885
power-assert,3877
prompt,3877
ember-data,3869
auto-changelog,3861
@ethersproject/solidity,3851
@angular/http,3845
postcss-nested,3841
@types/react-redux,3829
@types/minimist,3827
progress-bar-webpack-plugin,3820
vue-html-loader,3816
@storybook/addon-storysource,3810
@rushstack/eslint-patch,3805
@nestjs/core,3801
babel-plugin-transform-jsbi-to-bigint,3791
aws-sdk,3790
karma-browserify,3778
postcss-calc,3776
grunt-contrib-connect,3770
zod,3763
@babel/plugin-syntax-import-meta,3759
@svgr/webpack,3758
stylelint-order,3757
@types/jquery,3755
tslint-eslint-rules,3746
rewire,3736
@vitest/coverage-c8,3735
chromedriver,3723
ember-cli-app-version,3713
vitepress,3712
@types/babel__core,3698
svelte-preprocess,3698
@types/shelljs,3694
rollup-plugin-sass,3691
@ethersproject/networks,3684
rollup-plugin-node-builtins,3678
@types/react-transition-group,3677
tslint-react,3674
ethereum-waffle,3662
turbo,3651
@types/sinon-chai,3650
nsp,3648
travis-deploy-once,3646
@types/request,3643
nuxt,3637
type-fest,3612
ember-ajax,3604
@babel/plugin-proposal-throw-expressions,3599
npm-run-all2,3595
@oclif/test,3587
@swc/cli,3569
@open-wc/testing,3565
gulp-cssmin,3563
fork-ts-checker-webpack-plugin,3562
cpy-cli,3557
postcss-flexbugs-fixes,3552
@types/puppeteer,3515
yorkie,3511
open,3510
@material-ui/core,3507
prismjs,3507
rollup-watch,3505
@angular/animations,3502
prettier-plugin-packagejson,3500
rollup-plugin-eslint,3496
@types/axios,3495
@oclif/dev-cli,3489
web-vitals,3481
happy-dom,3477
vue-hot-reload-api,3443
@babel/plugin-proposal-json-strings,3440
babel-plugin-transform-async-to-generator,3428
eslint-plugin-markdown,3428
underscore,3424
jasmine-node,3416
@capacitor/android,3399
rollup-plugin-css-only,3387
npm,3382
@types/ramda,3379
stylelint-scss,3378
simple-git-hooks,3368
svgo,3368
dotenv-webpack,3363
karma-safari-launcher,3363
process,3358
jest-fetch-mock,3354
@typechain/ethers-v5,3345
esno,3344
ttypescript,3344
markdown-it-container,3331
ncp,3327
ember-cli-release,3325
tslint-loader,3325
@capacitor/ios,3324
@sveltejs/vite-plugin-svelte,3308
@stdlib/bench,3307
babel-preset-react-native,3305
@webcomponents/webcomponentsjs,3304
eslint-config-xo,3304
whatwg-fetch,3297
@faker-js/faker,3290
@types/body-parser,3283
ghooks,3282
tsc-watch,3265
eslint-config-egg,3261
handlebars,3255
validate-commit-msg,3236
tslint-config-airbnb,3233
eslint-config-custom,3232
eslint-plugin-security,3223
snazzy,3204
webpack-stream,3190
babel-preset-es2015-rollup,3179
@trivago/prettier-plugin-sort-imports,3173
ember-cli-eslint,3171
mock-fs,3170
@web/test-runner,3168
dayjs,3168
bower,3159
merge2,3157
gulp-minify-css,3145
@babel/plugin-proposal-function-sent,3139
@nestjs/cli,3135
lodash.camelcase,3131
@web/dev-server,3129
acorn,3123
pg,3122
grunt-karma,3106
element-ui,3102
playwright,3097
ws,3097
eslint-plugin-ember,3096
nwb,3096
@types/bluebird,3094
resolve-url-loader,3094
buffer,3082
@mui/material,3081
rollup-plugin-svelte,3081
@storybook/storybook-deployer,3079
karma-sauce-launcher,3079
tsconfig-paths-webpack-plugin,3078
mongoose,3077
eslint-config-oclif,3075
lolex,3074
deepmerge,3071
time-grunt,3071
dts-bundle-generator,3063
fs,3056
@ckeditor/ckeditor5-dev-utils,3037
tsickle,3030
@eslint/eslintrc,3029
@ckeditor/ckeditor5-theme-lark,3025
ejs,3022
@stdlib/bench-harness,3019
grunt-browserify,3016
@babel/plugin-proposal-function-bind,3008
nightwatch,3003
rollup-plugin-cleanup,3002
sqlite3,2990
@tsconfig/node18,2986
eslint-plugin-cypress,2972
pug,2972
babel-plugin-syntax-dynamic-import,2966
@types/figlet,2964
eslint-import-resolver-node,2959
eslint-plugin-prefer-arrow,2959
@types/koa,2952
grunt-contrib-coffee,2952
@commitlint/config-angular,2918
gulp-bump,2918
@babel/plugin-transform-typescript,2910
jest-watch-typeahead,2908
tslint-plugin-prettier,2907
@storybook/addon-viewport,2905
jest-serializer-vue,2905
markdown-it-anchor,2905
redux-thunk,2903
@types/bn.js,2902
chai-spies,2897
eslint-plugin-tsdoc,2895
@nestjs/schematics,2892
@capacitor/core,2891
date-fns,2880
@types/enzyme-adapter-react-16,2875
grunt-eslint,2873
prettier-plugin-java,2873
@babel/plugin-proposal-pipeline-operator,2851
@types/chalk-animation,2844
jest-config,2840
webpack-manifest-plugin,2837
@vue/component-compiler-utils,2833
karma-ie-launcher,2833
requirejs,2830
pinst,2826
prettier-plugin-solidity,2823
uppercamelcase,2811
cspell,2807
selenium-server,2803
raf,2786
@ionic/prettier-config,2781
eslint-plugin-sonarjs,2780
unplugin-vue-components,2780
@types/core-js,2775
react-dev-utils,2765
@types/mkdirp,2764
@types/prop-types,2761
prettier-eslint-cli,2760
@types/luxon,2754
prettier-plugin-tailwindcss,2745
mocha-junit-reporter,2734
gts,2733
tmp,2728
ember-source-channel-url,2726
inject-loader,2725
father-build,2711
egg-bin,2710
onchange,2701
@babel/plugin-proposal-do-expressions,2699
esdoc,2689
grunt-contrib-cssmin,2689
grunt-release,2680
@babel/plugin-syntax-jsx,2674
rollup-plugin-node-globals,2670
jest-canvas-mock,2669
react-docgen-typescript-loader,2665
autod,2662
solidity-coverage,2660
grunt-bump,2656
vinyl,2653
ember-cli-shims,2652
gulp-shell,2649
postcss-cssnext,2649
lodash-es,2640
swiftlint,2639
@storybook/builder-vite,2635
@ionic/swiftlint-config,2632
eslint-plugin-eslint-plugin,2626
@babel/plugin-proposal-logical-assignment-operators,2625
open-cli,2606
remark-cli,2597
@types/pg,2588
qunit,2585
@alib/build-scripts,2562
babel-plugin-transform-es2015-modules-umd,2559
bun-types,2552
@types/gulp,2545
svg-sprite-loader,2542
@nomiclabs/hardhat-waffle,2538
conventional-changelog-conventionalcommits,2536
immutable,2532
connect,2531
eslint-watch,2517
dtslint,2513
ember-maybe-import-regenerator,2510
imports-loader,2509
mockjs,2506
vows,2503
grunt-shell,2493
@vitest/coverage-istanbul,2491
codeclimate-test-reporter,2489
vue-eslint-parser,2489
eslint-plugin-react-native,2486
@types/eslint__js,2476
gulp-notify,2475
gulp-tslint,2470
@babel/plugin-transform-object-assign,2462
@types/aws-lambda,2448
@angular-devkit/build-ng-packagr,2446
object-assign,2442
eslint-webpack-plugin,2440
lab,2440
@types/three,2436
normalize.css,2432
@ionic/eslint-config,2429
@storybook/builder-webpack4,2424
qs,2424
@storybook/manager-webpack4,2420
eslint-plugin-svelte,2412
camelcase,2410
unplugin-auto-import,2407
axios-mock-adapter,2406
@angular/platform-server,2398
cp-cli,2397
stylelint-config-recommended,2392
@capacitor/docgen,2381
history,2381
@umijs/test,2380
madge,2380
@types/dotenv,2377
eslint-plugin-compat,2375
font-awesome,2371
@ckeditor/ckeditor5-paragraph,2368
isomorphic-fetch,2364
clsx,2363
webpackbar,2358
eslint-config-xo-space,2357
eslint-config-oclif-typescript,2355
eslint-plugin-svelte3,2354
qunit-dom,2344
preact,2338
@storybook/addon-postcss,2335
solhint,2333
start-server-and-test,2331
merge-stream,2328
mongodb,2327
tsc,2326
karma-typescript,2324
require-dir,2324
egg-ci,2323
gulp-connect,2323
@types/commander,2319
json-templater,2318
@ckeditor/ckeditor5-basic-styles,2317
downlevel-dts,2314
karma-sinon,2311
eslint-import-resolver-alias,2305
@storybook/preset-scss,2299
rollup-plugin-license,2297
faucet,2296
vite-plugin-css-injected-by-js,2296
brfs,2294
fetch-mock,2291
chokidar-cli,2287
matchdep,2283
transliteration,2271
depcheck,2263
@types/tape,2262
@types/js-cookie,2252
changelogen,2252
flow-copy-source,2247
@ckeditor/ckeditor5-essentials,2244
semistandard,2241
@tsconfig/node20,2238
@ckeditor/ckeditor5-list,2234
@types/cross-spawn,2227
@ckeditor/ckeditor5-dev-webpack-plugin,2226
egg-mock,2225
git-cz,2224
react-styleguidist,2224
karma-babel-preprocessor,2223
@ckeditor/ckeditor5-heading,2222
@types/ejs,2220
@ember/optional-features,2219
prompts,2219
cors,2212
strip-ansi,2211
babel-preset-es2017,2210
@nuxt/module-builder,2209
@tsconfig/node16,2209
typescript-transform-paths,2205
babel-plugin-react-transform,2204
@types/faker,2196
code,2193
codecov.io,2186
@ckeditor/ckeditor5-link,2185
install,2185
|