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

@mizunashi_mana/eslint-config-refined

v1.0.0

Published

A refined, opinionated ESLint shared configuration

Readme

@mizunashi_mana/eslint-config-refined

npm version

A strict, opinionated ESLint shared configuration for TypeScript projects.

Features

  • Strict by default — always-useful rules are enabled out of the box
  • TypeScript-first — deep integration with typescript-eslint and type-aware linting
  • Customizable where it matters — style rules and opinionated trade-offs are configurable via rule sets
  • ESLint v10 native — designed for ESLint v10 flat config

Install

npm install --save-dev @mizunashi_mana/eslint-config-refined eslint typescript

Usage

// eslint.config.js
import { buildConfig } from '@mizunashi_mana/eslint-config-refined';

export default buildConfig({
  ruleSets: ['common', 'node'],
});

buildConfig(options?)

| Option | Type | Default | Description | |---|---|---|---| | ruleSets | RuleSet[] | ['common', 'node'] | Rule sets to enable | | entrypointFiles | string[] | ['src/index.ts'] | Entrypoint files for import/no-unused-modules etc. | | stylistic | StylisticOptions | See below | Code style options | | playwrightFiles | string[] | undefined | Glob patterns for Playwright test files | | disableFixedRules | boolean | false | Disable auto-fixable rules (useful for editor integration) |

Rule Sets

common

Core rules for all JavaScript/TypeScript projects. Includes:

  • js — ESLint core rules (@eslint/js recommended + strict additions)
  • ts — TypeScript rules (typescript-eslint recommendedTypeChecked + strict additions)
  • stylistic — Code style rules (@stylistic/eslint-plugin)
  • imports — Import ordering and validation (eslint-plugin-import-x, eslint-plugin-unused-imports)
  • promise — Promise best practices (@mizunashi_mana/eslint-plugin-promise)
  • comments — ESLint directive comment rules (@eslint-community/eslint-plugin-eslint-comments)

node

Node.js-specific rules (eslint-plugin-n). Recommended for server-side projects.

react

React rules (eslint-plugin-react-x from the @eslint-react ecosystem).

playwright

Playwright test rules (eslint-plugin-playwright). Use playwrightFiles to specify test file patterns.

storybook

Storybook rules (eslint-plugin-storybook).

Stylistic Options

The stylistic option configures code style rules:

| Option | Type | Default | Description | |---|---|---|---| | indent | number \| 'tab' | 2 | Indentation size or tab | | semi | boolean | true | Require semicolons | | quotes | 'single' \| 'double' \| 'backtick' | 'single' | Quote style | | braceStyle | '1tbs' \| 'stroustrup' \| 'allman' | '1tbs' | Brace style | | commaDangle | 'never' \| 'always' \| 'always-multiline' \| 'only-multiline' | 'always-multiline' | Trailing comma style |

Example:

export default buildConfig({
  ruleSets: ['common', 'node'],
  stylistic: {
    indent: 4,
    semi: false,
    quotes: 'double',
  },
});

License

This package is dual-licensed under Apache License 2.0 or Mozilla Public License 2.0, at your option.