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

@moccona/eslint-config

v1.0.6

Published

A simple eslint configuration

Readme

@moccona/eslint-config

The @moccona/eslint-config package provides a convenient way to configure ESLint rules. It allows you to extend the default configuration with custom rules tailored to your project's needs.

Installation

  1. Basic Installation:
npm install @moccona/eslint-config -D

Available Extras

The package provides additional configuration options through "extras" modules, which can be imported and customized. Currently supported extras include:

  • TypeScript: Extends the base configuration with TypeScript-specific rules.
  • React: Provides React-specific configurations for ESLint checks.
  • TailwindCSSv3: Offers Tailwind CSS utilities integration into ESLint reports.
  • Jest: Enhances ESLint with Jest-generated test files and fixtures.
  • Vitest: Adds Vitest test discovery options to your ESLint configuration.

Example Usage

Here's an example of how you might use the package in your project:

// eslint.config.js
import baseConfig from "@moccona/eslint-config/flat";
// if you use typescript.
import tsConfig from "@moccona/eslint-config/extra/typescript";
// if you use prettier
import prettierConfig from "@moccona/eslint-config/extra/prettier";

export default [
  ...baseConfig,
  ...tsConfig,
  ...prettierConfig,
  {
    // Add your custom here.
  },
];

Notes

The legacy configuration is marked as deprecated. Users are encouraged to use the new format instead.