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

@wzo/eslint-config

v0.0.3

Published

Shared ESLint flat config (antfu-based) for @wzo projects

Readme

@wzo/eslint-config

Shared ESLint flat config for @wzo projects — @antfu/eslint-config with our house style (4-space indent, single quotes, no semicolons) plus a few rule and Vue-template tweaks.

Install

pnpm add -D @wzo/eslint-config eslint

Usage

eslint.config.js:

import defineConfig from '@wzo/eslint-config'

export default defineConfig()

defineConfig takes the exact same arguments as antfu(...) — an options object followed by any number of extra flat-config objects:

import defineConfig from '@wzo/eslint-config'

export default defineConfig(
    { vue: true, ignores: ['**/.nuxt/**', '**/.output/**'] },
    { rules: { 'no-console': 'off' } },
)

All options (vue, react, typescript, formatters, unocss, …) and every named export (GLOB_*, combine, parserPlain, …) are re-exported from antfu unchanged — see the antfu/eslint-config docs for the full reference.

Extending other configs

Append any third-party flat config — extra arguments are merged after ours:

import defineConfig from '@wzo/eslint-config'
import somePlugin from 'eslint-plugin-xxx'

export default defineConfig(
    { vue: true },
    somePlugin.configs.recommended,
    { rules: { 'no-console': 'off' } },
)

Inherit a legacy .eslintrc extends via @eslint/eslintrc (pnpm add -D @eslint/eslintrc):

import { FlatCompat } from '@eslint/eslintrc'
import defineConfig from '@wzo/eslint-config'

const compat = new FlatCompat()

export default defineConfig(
    {},
    ...compat.config({ extends: ['eslint:recommended'] }),
)

defineConfig() returns antfu's FlatConfigComposer, so you can chain .prepend() / .append() / .override() / .renamePlugins() / .removeRules():

import defineConfig from '@wzo/eslint-config'

export default defineConfig({ vue: true })
    .override('antfu/stylistic/rules', {
        rules: { 'style/generator-star-spacing': ['error', { after: true, before: false }] },
    })
    .removeRules('no-console')

Run npx eslint --inspect-config to see every named config block and its rules. Note antfu renames plugin prefixes, so inline disables use the new names — ts/*, style/*, node/*, yaml/* (not @typescript-eslint/* etc.).

House defaults

Everything follows antfu except these baked-in differences:

  • Stylistic: 4-space indent, single quotes, no semicolons; lessOpinionated, typescript: true
  • no-console: warn (allows console.error / console.warn)
  • curly / style/brace-style: allow single-line bodies
  • yaml/indent: off
  • Vue template tweaks (4-space html-indent, closing bracket on same line, no-multiple-template-root off)

Releasing

Maintainers only. Publishing runs in GitHub Actions via npm trusted publishing (OIDC) — no npm token required.

pnpm release   # changelogen bumps the version, creates the tag, and pushes

Pushing a v* tag triggers release.yml, which upgrades npm (OIDC needs npm ≥ 11.5.1), then pnpm publish — provenance is attached automatically. prepublishOnly rebuilds dist before publish.

License

MIT © 2026 nowo