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

eslint-config-gorgon

v4.0.8

Published

> [!NOTE] > Stable and ready for use.

Readme

eslint-config-gorgon

[!NOTE] Stable and ready for use.

An opinionated ESLint configuration that integrates Prettier, TypeScript, React, and more. Designed for modern stacks.

Features

  • Auto-detection: Automatically enables React, TypeScript, and Node.js rules based on your project dependencies.
  • Performance: Uses dynamic imports to load only the necessary plugins, keeping startup fast.
  • Integrated Prettier: Runs Prettier as an ESLint rule with Tailwind CSS support built-in.
  • Modern: Built for ESLint Flat Config (eslint.config.mjs).

Install

pnpm i -D eslint-config-gorgon

Usage

Create eslint.config.mjs in your project root:

Minimal (Auto-detect)

import { init } from "eslint-config-gorgon";

export default init();

With Options

import { init } from "eslint-config-gorgon";

export default init({
  // Enable/disable specific features (defaults to auto-detect)
  react: true,
  typescript: true,
  node: false,
  
  // Other options
  a11y: true, // Enable accessibility rules (default: true)
  prettier: true, // Enable Prettier integration (default: true)
  ignores: ["**/temp/**"], // Add custom ignores
});

Options

| Option | Type | Default | Description | | :--- | :--- | :--- | :--- | | react | boolean | Auto-detect | Enable React and React Hooks rules. | | typescript | boolean | Auto-detect | Enable TypeScript rules. | | node | boolean | Auto-detect | Enable Node.js specific rules. | | a11y | boolean | true | Enable JSX accessibility rules. | | prettier | boolean | true | Enable Prettier integration (includes Tailwind CSS support). | | ignores | string[] | [] | Custom glob patterns to ignore. |

VS Code Setup

Update your .vscode/settings.json to ensure ESLint runs correctly:

{
  "prettier.enable": false,
  "editor.formatOnSave": false,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": "explicit",
    "source.organizeImports": "never"
  },
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact"
  ]
}

And install the VS Code ESLint extension.

License

MIT