npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@andrskr/eslint-config

v0.0.8

Published

Personal ESLint configuration

Readme

ESLint Setup

These are my settings for ESLint.

You might like them - or you might not. Don't worry; you can always change them to match your coding preferences.

Usage

Install the package using pnpm (or npm, or yarn):

pnpm add -D @andrskr/eslint-config

To use a shareable config, include the config name in the extends field of a configuration file. For the value, use your module name. For example:

{
  "extends": "@andrskr/eslint-config"
}

If you're using TypeScript:

module.exports = {
  extends: '@andrskr/eslint-config',
  overrides: [
    {
      files: ['*.ts', '*.tsx'],
      parserOptions: {
        project: ['./tsconfig.json', './tsconfig.node.json'],
        tsconfigRootDir: __dirname,
      },
    },
  ],
};

Check out the eslint documentation for more info on configurations and how to use sharable config.

Plugins

The following plugins/configurations are included in the ESLint configuration:

  1. @rushstack/eslint-patch: A patch that improves how ESLint loads plugins when working in a monorepo with a reusable toolchain.

  2. @typescript-eslint/eslint-plugin: An ESLint plugin which provides lint rules for TypeScript codebases.

  3. @typescript-eslint/parser: An ESLint parser which leverages TypeScript ESTree to allow for ESLint to lint TypeScript source code.

  4. eslint-config-airbnb: Package provides Airbnb's .eslintrc as an extensible shared config.

  5. eslint-config-airbnb-typescript: Enhances Airbnb's ESLint config with TypeScript support.

  6. eslint-config-prettier: Turns off all rules that are unnecessary or might conflict with Prettier.

  7. eslint-plugin-jsdoc: JSDoc specific linting rules for ESLint.

  8. eslint-plugin-jsonc: ESLint plugin for JSON(C|5)? files.

  9. eslint-plugin-jsx-a11y: Static AST checker for a11y rules on JSX elements.

  10. eslint-plugin-markdown: Lint JavaScript code blocks in Markdown documents.

  11. eslint-plugin-promise: Enforce best practices for JavaScript promises.

  12. eslint-plugin-react: React-specific linting rules for ESLint.

  13. eslint-plugin-react-hooks: This ESLint plugin enforces the Rules of Hooks.

  14. eslint-plugin-react-refresh: Validate that your components can safely be updated with fast refresh.

  15. eslint-plugin-sonarjs: SonarJS rules for ESLint.

  16. eslint-plugin-tailwindcss: ESLint plugin for Tailwind CSS usage.

  17. eslint-plugin-testing-library: EESLint plugin to follow best practices and anticipate common mistakes when writing tests with Testing Library.

  18. eslint-plugin-unicorn: Various awesome ESLint rules.

  19. eslint-plugin-vitest: ESLint rules for Vitest.

  20. eslint-plugin-yml: ESLint plugin provides linting rules for YAML.

  21. jsonc-eslint-parser: JSON, JSONC and JSON5 parser for use with ESLint plugins.

  22. yaml-eslint-parser: A YAML parser that produces output compatible with ESLint.